diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index d97e231e..6b23e244 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -784,8 +784,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "with" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "assert" + } + ] }, { "type": "SYMBOL", @@ -6445,6 +6454,15 @@ }, "named": true, "value": "call_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_parenthesized_expression" + }, + "named": true, + "value": "parenthesized_expression" } ] } @@ -7828,6 +7846,46 @@ } ] }, + "decorator_parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "type_assertion": { "type": "PREC_LEFT", "value": "unary", diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index fda12024..30a9bc38 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -1729,6 +1729,10 @@ { "type": "member_expression", "named": true + }, + { + "type": "parenthesized_expression", + "named": true } ] } @@ -4399,10 +4403,22 @@ "multiple": false, "required": true, "types": [ + { + "type": "call_expression", + "named": true + }, { "type": "expression", "named": true }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, { "type": "sequence_expression", "named": true @@ -5883,6 +5899,10 @@ "type": "as", "named": false }, + { + "type": "assert", + "named": false + }, { "type": "asserts", "named": false diff --git a/tsx/src/parser.c b/tsx/src/parser.c index cf8fd09e..5c69810e 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5917 +#define STATE_COUNT 5925 #define LARGE_STATE_COUNT 1132 -#define SYMBOL_COUNT 397 +#define SYMBOL_COUNT 399 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 174 +#define TOKEN_COUNT 175 #define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 44 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -40,393 +40,395 @@ enum ts_symbol_identifiers { anon_sym_import = 14, anon_sym_from = 15, anon_sym_with = 16, - anon_sym_var = 17, - anon_sym_let = 18, - anon_sym_const = 19, - anon_sym_BANG = 20, - anon_sym_else = 21, - anon_sym_if = 22, - anon_sym_switch = 23, - anon_sym_for = 24, - anon_sym_LPAREN = 25, - anon_sym_RPAREN = 26, - anon_sym_await = 27, - anon_sym_in = 28, - anon_sym_of = 29, - anon_sym_while = 30, - anon_sym_do = 31, - anon_sym_try = 32, - anon_sym_break = 33, - anon_sym_continue = 34, - anon_sym_debugger = 35, - anon_sym_return = 36, - anon_sym_throw = 37, - anon_sym_SEMI = 38, - anon_sym_COLON = 39, - anon_sym_case = 40, - anon_sym_catch = 41, - anon_sym_finally = 42, - anon_sym_yield = 43, - anon_sym_LBRACK = 44, - anon_sym_RBRACK = 45, - sym__glimmer_template_content = 46, - sym_glimmer_opening_tag = 47, - sym_glimmer_closing_tag = 48, - aux_sym_jsx_text_token1 = 49, - aux_sym_jsx_text_token2 = 50, - sym_html_character_reference = 51, - anon_sym_GT = 52, - sym_jsx_identifier = 53, - anon_sym_DOT = 54, - anon_sym_LT_SLASH = 55, - anon_sym_SLASH_GT = 56, - anon_sym_DQUOTE = 57, - anon_sym_SQUOTE = 58, - sym_unescaped_double_jsx_string_fragment = 59, - sym_unescaped_single_jsx_string_fragment = 60, - anon_sym_class = 61, - anon_sym_async = 62, - anon_sym_function = 63, - anon_sym_EQ_GT = 64, - anon_sym_QMARK_DOT = 65, - anon_sym_new = 66, - anon_sym_using = 67, - anon_sym_PLUS_EQ = 68, - anon_sym_DASH_EQ = 69, - anon_sym_STAR_EQ = 70, - anon_sym_SLASH_EQ = 71, - anon_sym_PERCENT_EQ = 72, - anon_sym_CARET_EQ = 73, - anon_sym_AMP_EQ = 74, - anon_sym_PIPE_EQ = 75, - anon_sym_GT_GT_EQ = 76, - anon_sym_GT_GT_GT_EQ = 77, - anon_sym_LT_LT_EQ = 78, - anon_sym_STAR_STAR_EQ = 79, - anon_sym_AMP_AMP_EQ = 80, - anon_sym_PIPE_PIPE_EQ = 81, - anon_sym_QMARK_QMARK_EQ = 82, - anon_sym_DOT_DOT_DOT = 83, - anon_sym_AMP_AMP = 84, - anon_sym_PIPE_PIPE = 85, - anon_sym_GT_GT = 86, - anon_sym_GT_GT_GT = 87, - anon_sym_LT_LT = 88, - anon_sym_AMP = 89, - anon_sym_CARET = 90, - anon_sym_PIPE = 91, - anon_sym_PLUS = 92, - anon_sym_DASH = 93, - anon_sym_SLASH = 94, - anon_sym_PERCENT = 95, - anon_sym_STAR_STAR = 96, - anon_sym_LT = 97, - anon_sym_LT_EQ = 98, - anon_sym_EQ_EQ = 99, - anon_sym_EQ_EQ_EQ = 100, - anon_sym_BANG_EQ = 101, - anon_sym_BANG_EQ_EQ = 102, - anon_sym_GT_EQ = 103, - anon_sym_QMARK_QMARK = 104, - anon_sym_instanceof = 105, - anon_sym_TILDE = 106, - anon_sym_void = 107, - anon_sym_delete = 108, - anon_sym_PLUS_PLUS = 109, - anon_sym_DASH_DASH = 110, - sym_unescaped_double_string_fragment = 111, - sym_unescaped_single_string_fragment = 112, - sym_escape_sequence = 113, - sym_comment = 114, - anon_sym_BQUOTE = 115, - anon_sym_DOLLAR_LBRACE = 116, - anon_sym_SLASH2 = 117, - sym_regex_pattern = 118, - sym_regex_flags = 119, - sym_number = 120, - sym_private_property_identifier = 121, - anon_sym_target = 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__function_signature_automatic_semicolon = 172, - sym___error_recovery = 173, - sym_program = 174, - sym_export_statement = 175, - sym_namespace_export = 176, - sym_export_clause = 177, - sym_export_specifier = 178, - sym__module_export_name = 179, - sym_declaration = 180, - sym_import = 181, - sym_import_statement = 182, - sym_import_clause = 183, - sym__from_clause = 184, - sym_namespace_import = 185, - sym_named_imports = 186, - sym_import_specifier = 187, - sym_import_attribute = 188, - sym_statement = 189, - sym_expression_statement = 190, - sym_variable_declaration = 191, - sym_lexical_declaration = 192, - sym_variable_declarator = 193, - sym_statement_block = 194, - sym_else_clause = 195, - sym_if_statement = 196, - sym_switch_statement = 197, - sym_for_statement = 198, - sym_for_in_statement = 199, - sym__for_header = 200, - sym_while_statement = 201, - sym_do_statement = 202, - sym_try_statement = 203, - sym_with_statement = 204, - sym_break_statement = 205, - sym_continue_statement = 206, - sym_debugger_statement = 207, - sym_return_statement = 208, - sym_throw_statement = 209, - sym_empty_statement = 210, - sym_labeled_statement = 211, - sym_switch_body = 212, - sym_switch_case = 213, - sym_switch_default = 214, - sym_catch_clause = 215, - sym_finally_clause = 216, - sym_parenthesized_expression = 217, - sym_expression = 218, - sym_primary_expression = 219, - sym_yield_expression = 220, - sym_object = 221, - sym_object_pattern = 222, - sym_assignment_pattern = 223, - sym_object_assignment_pattern = 224, - sym_array = 225, - sym_array_pattern = 226, - sym_glimmer_template = 227, - sym_jsx_element = 228, - sym_jsx_text = 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_as_expression = 290, - sym_satisfies_expression = 291, - sym_instantiation_expression = 292, - sym_import_require_clause = 293, - sym_extends_clause = 294, - sym__extends_clause_single = 295, - sym_implements_clause = 296, - sym_ambient_declaration = 297, - sym_abstract_class_declaration = 298, - sym_module = 299, - sym_internal_module = 300, - sym__module = 301, - sym_import_alias = 302, - sym_nested_type_identifier = 303, - sym_interface_declaration = 304, - sym_extends_type_clause = 305, - sym_enum_declaration = 306, - sym_enum_body = 307, - sym_enum_assignment = 308, - sym_type_alias_declaration = 309, - sym_accessibility_modifier = 310, - sym_override_modifier = 311, - sym_required_parameter = 312, - sym_optional_parameter = 313, - sym__parameter_name = 314, - sym_omitting_type_annotation = 315, - sym_adding_type_annotation = 316, - sym_opting_type_annotation = 317, - sym_type_annotation = 318, - sym__type_query_member_expression_in_type_annotation = 319, - sym__type_query_call_expression_in_type_annotation = 320, - sym_asserts = 321, - sym_asserts_annotation = 322, - sym_type = 323, - sym_tuple_parameter = 324, - sym_optional_tuple_parameter = 325, - sym_optional_type = 326, - sym_rest_type = 327, - sym__tuple_type_member = 328, - sym_constructor_type = 329, - sym_primary_type = 330, - sym_template_type = 331, - sym_template_literal_type = 332, - sym_infer_type = 333, - sym_conditional_type = 334, - sym_generic_type = 335, - sym_type_predicate = 336, - sym_type_predicate_annotation = 337, - sym__type_query_member_expression = 338, - sym__type_query_subscript_expression = 339, - sym__type_query_call_expression = 340, - sym__type_query_instantiation_expression = 341, - sym_type_query = 342, - sym_index_type_query = 343, - sym_lookup_type = 344, - sym_mapped_type_clause = 345, - sym_literal_type = 346, - sym__number = 347, - sym_existential_type = 348, - sym_flow_maybe_type = 349, - sym_parenthesized_type = 350, - sym_predefined_type = 351, - sym_type_arguments = 352, - sym_object_type = 353, - sym_call_signature = 354, - sym_property_signature = 355, - sym_type_parameters = 356, - sym_type_parameter = 357, - sym_default_type = 358, - sym_constraint = 359, - sym_construct_signature = 360, - sym_index_signature = 361, - sym_array_type = 362, - sym_tuple_type = 363, - sym_readonly_type = 364, - sym_union_type = 365, - sym_intersection_type = 366, - sym_function_type = 367, - aux_sym_program_repeat1 = 368, - aux_sym_export_statement_repeat1 = 369, - aux_sym_export_clause_repeat1 = 370, - aux_sym_named_imports_repeat1 = 371, - aux_sym_variable_declaration_repeat1 = 372, - aux_sym_switch_body_repeat1 = 373, - aux_sym_object_repeat1 = 374, - aux_sym_object_pattern_repeat1 = 375, - aux_sym_array_repeat1 = 376, - aux_sym_array_pattern_repeat1 = 377, - aux_sym_glimmer_template_repeat1 = 378, - aux_sym_jsx_element_repeat1 = 379, - aux_sym__jsx_string_repeat1 = 380, - aux_sym__jsx_string_repeat2 = 381, - aux_sym_sequence_expression_repeat1 = 382, - aux_sym_string_repeat1 = 383, - aux_sym_string_repeat2 = 384, - aux_sym_template_string_repeat1 = 385, - aux_sym_class_body_repeat1 = 386, - aux_sym_formal_parameters_repeat1 = 387, - aux_sym__jsx_start_opening_element_repeat1 = 388, - aux_sym_extends_clause_repeat1 = 389, - aux_sym_implements_clause_repeat1 = 390, - aux_sym_extends_type_clause_repeat1 = 391, - aux_sym_enum_body_repeat1 = 392, - aux_sym_template_literal_type_repeat1 = 393, - aux_sym_object_type_repeat1 = 394, - aux_sym_type_parameters_repeat1 = 395, - aux_sym_tuple_type_repeat1 = 396, - alias_sym_interface_body = 397, - alias_sym_property_identifier = 398, - alias_sym_shorthand_property_identifier = 399, - alias_sym_shorthand_property_identifier_pattern = 400, - alias_sym_statement_identifier = 401, - alias_sym_this_type = 402, - alias_sym_type_identifier = 403, + anon_sym_assert = 17, + anon_sym_var = 18, + anon_sym_let = 19, + anon_sym_const = 20, + anon_sym_BANG = 21, + anon_sym_else = 22, + anon_sym_if = 23, + anon_sym_switch = 24, + anon_sym_for = 25, + anon_sym_LPAREN = 26, + anon_sym_RPAREN = 27, + anon_sym_await = 28, + anon_sym_in = 29, + anon_sym_of = 30, + anon_sym_while = 31, + anon_sym_do = 32, + anon_sym_try = 33, + anon_sym_break = 34, + anon_sym_continue = 35, + anon_sym_debugger = 36, + anon_sym_return = 37, + anon_sym_throw = 38, + anon_sym_SEMI = 39, + anon_sym_COLON = 40, + anon_sym_case = 41, + anon_sym_catch = 42, + anon_sym_finally = 43, + 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, + aux_sym_jsx_text_token1 = 50, + aux_sym_jsx_text_token2 = 51, + sym_html_character_reference = 52, + anon_sym_GT = 53, + sym_jsx_identifier = 54, + anon_sym_DOT = 55, + anon_sym_LT_SLASH = 56, + anon_sym_SLASH_GT = 57, + anon_sym_DQUOTE = 58, + anon_sym_SQUOTE = 59, + sym_unescaped_double_jsx_string_fragment = 60, + sym_unescaped_single_jsx_string_fragment = 61, + anon_sym_class = 62, + anon_sym_async = 63, + anon_sym_function = 64, + anon_sym_EQ_GT = 65, + anon_sym_QMARK_DOT = 66, + anon_sym_new = 67, + anon_sym_using = 68, + anon_sym_PLUS_EQ = 69, + anon_sym_DASH_EQ = 70, + anon_sym_STAR_EQ = 71, + anon_sym_SLASH_EQ = 72, + anon_sym_PERCENT_EQ = 73, + anon_sym_CARET_EQ = 74, + anon_sym_AMP_EQ = 75, + anon_sym_PIPE_EQ = 76, + anon_sym_GT_GT_EQ = 77, + anon_sym_GT_GT_GT_EQ = 78, + anon_sym_LT_LT_EQ = 79, + anon_sym_STAR_STAR_EQ = 80, + anon_sym_AMP_AMP_EQ = 81, + anon_sym_PIPE_PIPE_EQ = 82, + anon_sym_QMARK_QMARK_EQ = 83, + anon_sym_DOT_DOT_DOT = 84, + anon_sym_AMP_AMP = 85, + anon_sym_PIPE_PIPE = 86, + anon_sym_GT_GT = 87, + anon_sym_GT_GT_GT = 88, + anon_sym_LT_LT = 89, + anon_sym_AMP = 90, + anon_sym_CARET = 91, + anon_sym_PIPE = 92, + anon_sym_PLUS = 93, + anon_sym_DASH = 94, + anon_sym_SLASH = 95, + anon_sym_PERCENT = 96, + anon_sym_STAR_STAR = 97, + anon_sym_LT = 98, + anon_sym_LT_EQ = 99, + anon_sym_EQ_EQ = 100, + anon_sym_EQ_EQ_EQ = 101, + anon_sym_BANG_EQ = 102, + anon_sym_BANG_EQ_EQ = 103, + anon_sym_GT_EQ = 104, + anon_sym_QMARK_QMARK = 105, + anon_sym_instanceof = 106, + anon_sym_TILDE = 107, + anon_sym_void = 108, + anon_sym_delete = 109, + anon_sym_PLUS_PLUS = 110, + anon_sym_DASH_DASH = 111, + sym_unescaped_double_string_fragment = 112, + sym_unescaped_single_string_fragment = 113, + sym_escape_sequence = 114, + sym_comment = 115, + anon_sym_BQUOTE = 116, + anon_sym_DOLLAR_LBRACE = 117, + anon_sym_SLASH2 = 118, + sym_regex_pattern = 119, + sym_regex_flags = 120, + sym_number = 121, + sym_private_property_identifier = 122, + anon_sym_target = 123, + sym_this = 124, + sym_super = 125, + sym_true = 126, + sym_false = 127, + sym_null = 128, + sym_undefined = 129, + anon_sym_AT = 130, + anon_sym_static = 131, + anon_sym_readonly = 132, + anon_sym_get = 133, + anon_sym_set = 134, + anon_sym_QMARK = 135, + anon_sym_declare = 136, + anon_sym_public = 137, + anon_sym_private = 138, + anon_sym_protected = 139, + anon_sym_override = 140, + anon_sym_module = 141, + anon_sym_any = 142, + anon_sym_number = 143, + anon_sym_boolean = 144, + anon_sym_string = 145, + anon_sym_symbol = 146, + anon_sym_object = 147, + anon_sym_abstract = 148, + anon_sym_accessor = 149, + anon_sym_satisfies = 150, + anon_sym_require = 151, + anon_sym_extends = 152, + anon_sym_implements = 153, + anon_sym_global = 154, + anon_sym_interface = 155, + anon_sym_enum = 156, + anon_sym_DASH_QMARK_COLON = 157, + anon_sym_PLUS_QMARK_COLON = 158, + anon_sym_QMARK_COLON = 159, + anon_sym_asserts = 160, + anon_sym_infer = 161, + anon_sym_is = 162, + anon_sym_keyof = 163, + anon_sym_unique = 164, + anon_sym_unknown = 165, + anon_sym_never = 166, + anon_sym_LBRACE_PIPE = 167, + anon_sym_PIPE_RBRACE = 168, + sym__automatic_semicolon = 169, + sym__template_chars = 170, + sym__ternary_qmark = 171, + sym_html_comment = 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_text = 230, + sym_jsx_expression = 231, + sym_jsx_opening_element = 232, + sym_nested_identifier = 233, + sym_jsx_namespace_name = 234, + sym_jsx_closing_element = 235, + sym_jsx_self_closing_element = 236, + sym_jsx_attribute = 237, + sym__jsx_string = 238, + sym_class = 239, + sym_class_declaration = 240, + sym_class_heritage = 241, + sym_function_expression = 242, + sym_function_declaration = 243, + sym_generator_function = 244, + sym_generator_function_declaration = 245, + sym_arrow_function = 246, + sym__call_signature = 247, + sym__formal_parameter = 248, + sym_optional_chain = 249, + sym_call_expression = 250, + sym_new_expression = 251, + sym_await_expression = 252, + sym_member_expression = 253, + sym_subscript_expression = 254, + sym_assignment_expression = 255, + sym__augmented_assignment_lhs = 256, + sym_augmented_assignment_expression = 257, + sym__initializer = 258, + sym__destructuring_pattern = 259, + sym_spread_element = 260, + sym_ternary_expression = 261, + sym_binary_expression = 262, + sym_unary_expression = 263, + sym_update_expression = 264, + sym_sequence_expression = 265, + sym_string = 266, + sym_template_string = 267, + sym_template_substitution = 268, + sym_regex = 269, + sym_meta_property = 270, + sym_arguments = 271, + sym_decorator = 272, + sym_decorator_member_expression = 273, + sym_decorator_call_expression = 274, + sym_class_body = 275, + sym_formal_parameters = 276, + sym_class_static_block = 277, + sym_pattern = 278, + sym_rest_pattern = 279, + sym_method_definition = 280, + sym_pair = 281, + sym_pair_pattern = 282, + sym__property_name = 283, + sym_computed_property_name = 284, + sym_public_field_definition = 285, + sym__import_identifier = 286, + sym_non_null_expression = 287, + sym_method_signature = 288, + sym_abstract_method_signature = 289, + sym_function_signature = 290, + sym_decorator_parenthesized_expression = 291, + sym_as_expression = 292, + sym_satisfies_expression = 293, + sym_instantiation_expression = 294, + sym_import_require_clause = 295, + sym_extends_clause = 296, + sym__extends_clause_single = 297, + sym_implements_clause = 298, + sym_ambient_declaration = 299, + sym_abstract_class_declaration = 300, + sym_module = 301, + sym_internal_module = 302, + sym__module = 303, + sym_import_alias = 304, + sym_nested_type_identifier = 305, + sym_interface_declaration = 306, + sym_extends_type_clause = 307, + sym_enum_declaration = 308, + sym_enum_body = 309, + sym_enum_assignment = 310, + sym_type_alias_declaration = 311, + sym_accessibility_modifier = 312, + sym_override_modifier = 313, + sym_required_parameter = 314, + sym_optional_parameter = 315, + sym__parameter_name = 316, + sym_omitting_type_annotation = 317, + sym_adding_type_annotation = 318, + sym_opting_type_annotation = 319, + sym_type_annotation = 320, + sym__type_query_member_expression_in_type_annotation = 321, + sym__type_query_call_expression_in_type_annotation = 322, + sym_asserts = 323, + sym_asserts_annotation = 324, + sym_type = 325, + sym_tuple_parameter = 326, + sym_optional_tuple_parameter = 327, + sym_optional_type = 328, + sym_rest_type = 329, + sym__tuple_type_member = 330, + sym_constructor_type = 331, + sym_primary_type = 332, + sym_template_type = 333, + sym_template_literal_type = 334, + sym_infer_type = 335, + sym_conditional_type = 336, + sym_generic_type = 337, + sym_type_predicate = 338, + sym_type_predicate_annotation = 339, + sym__type_query_member_expression = 340, + sym__type_query_subscript_expression = 341, + sym__type_query_call_expression = 342, + sym__type_query_instantiation_expression = 343, + sym_type_query = 344, + sym_index_type_query = 345, + sym_lookup_type = 346, + sym_mapped_type_clause = 347, + sym_literal_type = 348, + sym__number = 349, + sym_existential_type = 350, + sym_flow_maybe_type = 351, + sym_parenthesized_type = 352, + sym_predefined_type = 353, + sym_type_arguments = 354, + sym_object_type = 355, + sym_call_signature = 356, + sym_property_signature = 357, + sym_type_parameters = 358, + sym_type_parameter = 359, + sym_default_type = 360, + sym_constraint = 361, + sym_construct_signature = 362, + sym_index_signature = 363, + sym_array_type = 364, + sym_tuple_type = 365, + sym_readonly_type = 366, + sym_union_type = 367, + sym_intersection_type = 368, + sym_function_type = 369, + aux_sym_program_repeat1 = 370, + aux_sym_export_statement_repeat1 = 371, + aux_sym_export_clause_repeat1 = 372, + aux_sym_named_imports_repeat1 = 373, + aux_sym_variable_declaration_repeat1 = 374, + aux_sym_switch_body_repeat1 = 375, + aux_sym_object_repeat1 = 376, + aux_sym_object_pattern_repeat1 = 377, + aux_sym_array_repeat1 = 378, + aux_sym_array_pattern_repeat1 = 379, + aux_sym_glimmer_template_repeat1 = 380, + aux_sym_jsx_element_repeat1 = 381, + aux_sym__jsx_string_repeat1 = 382, + aux_sym__jsx_string_repeat2 = 383, + aux_sym_sequence_expression_repeat1 = 384, + aux_sym_string_repeat1 = 385, + aux_sym_string_repeat2 = 386, + aux_sym_template_string_repeat1 = 387, + aux_sym_class_body_repeat1 = 388, + aux_sym_formal_parameters_repeat1 = 389, + aux_sym__jsx_start_opening_element_repeat1 = 390, + aux_sym_extends_clause_repeat1 = 391, + aux_sym_implements_clause_repeat1 = 392, + aux_sym_extends_type_clause_repeat1 = 393, + aux_sym_enum_body_repeat1 = 394, + aux_sym_template_literal_type_repeat1 = 395, + aux_sym_object_type_repeat1 = 396, + aux_sym_type_parameters_repeat1 = 397, + aux_sym_tuple_type_repeat1 = 398, + alias_sym_interface_body = 399, + alias_sym_property_identifier = 400, + alias_sym_shorthand_property_identifier = 401, + alias_sym_shorthand_property_identifier_pattern = 402, + alias_sym_statement_identifier = 403, + alias_sym_this_type = 404, + alias_sym_type_identifier = 405, }; static const char * const ts_symbol_names[] = { @@ -447,6 +449,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_import] = "import", [anon_sym_from] = "from", [anon_sym_with] = "with", + [anon_sym_assert] = "assert", [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", @@ -720,6 +723,7 @@ static const char * const ts_symbol_names[] = { [sym_method_signature] = "method_signature", [sym_abstract_method_signature] = "abstract_method_signature", [sym_function_signature] = "function_signature", + [sym_decorator_parenthesized_expression] = "parenthesized_expression", [sym_as_expression] = "as_expression", [sym_satisfies_expression] = "satisfies_expression", [sym_instantiation_expression] = "instantiation_expression", @@ -854,6 +858,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_import] = anon_sym_import, [anon_sym_from] = anon_sym_from, [anon_sym_with] = anon_sym_with, + [anon_sym_assert] = anon_sym_assert, [anon_sym_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, @@ -1127,6 +1132,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_method_signature] = sym_method_signature, [sym_abstract_method_signature] = sym_abstract_method_signature, [sym_function_signature] = sym_function_signature, + [sym_decorator_parenthesized_expression] = sym_parenthesized_expression, [sym_as_expression] = sym_as_expression, [sym_satisfies_expression] = sym_satisfies_expression, [sym_instantiation_expression] = sym_instantiation_expression, @@ -1312,6 +1318,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_assert] = { + .visible = true, + .named = false, + }, [anon_sym_var] = { .visible = true, .named = false, @@ -2409,6 +2419,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_decorator_parenthesized_expression] = { + .visible = true, + .named = true, + }, [sym_as_expression] = { .visible = true, .named = true, @@ -4659,57 +4673,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 14, + [18] = 18, [19] = 14, - [20] = 14, - [21] = 17, - [22] = 22, + [20] = 17, + [21] = 14, + [22] = 14, [23] = 17, [24] = 17, [25] = 14, - [26] = 14, - [27] = 17, - [28] = 14, + [26] = 17, + [27] = 14, + [28] = 17, [29] = 17, - [30] = 17, + [30] = 14, [31] = 31, [32] = 32, - [33] = 32, + [33] = 33, [34] = 34, - [35] = 35, + [35] = 31, [36] = 36, [37] = 37, [38] = 38, - [39] = 39, - [40] = 38, - [41] = 41, - [42] = 31, - [43] = 34, - [44] = 31, - [45] = 36, - [46] = 31, - [47] = 47, - [48] = 48, - [49] = 39, - [50] = 31, - [51] = 37, - [52] = 41, - [53] = 31, - [54] = 35, - [55] = 31, - [56] = 31, - [57] = 31, - [58] = 31, - [59] = 48, - [60] = 39, - [61] = 41, - [62] = 48, - [63] = 32, - [64] = 34, - [65] = 36, - [66] = 37, - [67] = 38, - [68] = 35, + [39] = 38, + [40] = 32, + [41] = 34, + [42] = 37, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 33, + [47] = 36, + [48] = 43, + [49] = 44, + [50] = 44, + [51] = 44, + [52] = 45, + [53] = 44, + [54] = 44, + [55] = 44, + [56] = 44, + [57] = 44, + [58] = 44, + [59] = 38, + [60] = 32, + [61] = 31, + [62] = 37, + [63] = 43, + [64] = 45, + [65] = 33, + [66] = 36, + [67] = 34, + [68] = 68, [69] = 69, [70] = 69, [71] = 69, @@ -4718,84 +4732,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [74] = 74, [75] = 75, [76] = 76, - [77] = 76, - [78] = 78, - [79] = 78, - [80] = 80, - [81] = 78, + [77] = 77, + [78] = 72, + [79] = 77, + [80] = 72, + [81] = 81, [82] = 82, [83] = 83, [84] = 84, - [85] = 84, - [86] = 86, - [87] = 86, - [88] = 86, - [89] = 86, - [90] = 86, + [85] = 85, + [86] = 84, + [87] = 84, + [88] = 84, + [89] = 84, + [90] = 83, [91] = 91, - [92] = 91, - [93] = 93, + [92] = 92, + [93] = 91, [94] = 94, [95] = 95, [96] = 96, - [97] = 95, + [97] = 91, [98] = 91, - [99] = 93, - [100] = 91, - [101] = 91, - [102] = 93, - [103] = 91, + [99] = 91, + [100] = 92, + [101] = 94, + [102] = 92, + [103] = 96, [104] = 96, - [105] = 96, + [105] = 91, [106] = 106, - [107] = 83, - [108] = 108, + [107] = 107, + [108] = 85, [109] = 91, - [110] = 93, + [110] = 91, [111] = 91, - [112] = 84, - [113] = 93, - [114] = 91, - [115] = 115, - [116] = 116, - [117] = 91, - [118] = 93, - [119] = 95, + [112] = 83, + [113] = 94, + [114] = 114, + [115] = 91, + [116] = 92, + [117] = 117, + [118] = 92, + [119] = 91, [120] = 91, - [121] = 95, - [122] = 91, - [123] = 106, - [124] = 94, - [125] = 93, - [126] = 91, + [121] = 92, + [122] = 94, + [123] = 95, + [124] = 106, + [125] = 92, + [126] = 92, [127] = 91, [128] = 91, - [129] = 93, + [129] = 91, [130] = 91, [131] = 131, [132] = 131, [133] = 131, - [134] = 134, - [135] = 93, - [136] = 131, + [134] = 131, + [135] = 131, + [136] = 92, [137] = 131, [138] = 131, [139] = 131, - [140] = 91, - [141] = 131, - [142] = 131, + [140] = 131, + [141] = 141, + [142] = 91, [143] = 143, [144] = 144, - [145] = 145, - [146] = 145, - [147] = 145, - [148] = 145, - [149] = 145, - [150] = 145, - [151] = 145, + [145] = 144, + [146] = 144, + [147] = 144, + [148] = 144, + [149] = 144, + [150] = 144, + [151] = 151, [152] = 152, - [153] = 145, - [154] = 145, + [153] = 144, + [154] = 144, [155] = 155, [156] = 155, [157] = 155, @@ -4807,26 +4821,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 155, [164] = 164, [165] = 165, - [166] = 164, - [167] = 164, - [168] = 165, - [169] = 165, - [170] = 170, - [171] = 164, + [166] = 166, + [167] = 165, + [168] = 166, + [169] = 166, + [170] = 165, + [171] = 166, [172] = 165, - [173] = 170, - [174] = 170, + [173] = 164, + [174] = 164, [175] = 175, [176] = 176, - [177] = 176, - [178] = 170, - [179] = 170, - [180] = 170, - [181] = 176, - [182] = 175, - [183] = 170, - [184] = 170, - [185] = 170, + [177] = 164, + [178] = 175, + [179] = 164, + [180] = 175, + [181] = 164, + [182] = 176, + [183] = 164, + [184] = 164, + [185] = 164, [186] = 186, [187] = 186, [188] = 188, @@ -4834,39 +4848,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [190] = 189, [191] = 191, [192] = 188, - [193] = 189, + [193] = 191, [194] = 188, [195] = 191, - [196] = 191, + [196] = 189, [197] = 197, - [198] = 197, - [199] = 197, - [200] = 197, - [201] = 197, - [202] = 197, - [203] = 203, - [204] = 204, + [198] = 198, + [199] = 199, + [200] = 199, + [201] = 199, + [202] = 199, + [203] = 199, + [204] = 199, [205] = 205, - [206] = 197, + [206] = 199, [207] = 207, [208] = 208, - [209] = 209, - [210] = 203, - [211] = 211, + [209] = 207, + [210] = 210, + [211] = 197, [212] = 212, [213] = 213, - [214] = 212, - [215] = 212, + [214] = 214, + [215] = 207, [216] = 216, - [217] = 203, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, [222] = 222, [223] = 223, - [224] = 224, - [225] = 225, + [224] = 197, + [225] = 217, [226] = 226, [227] = 227, [228] = 228, @@ -4879,60 +4893,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [235] = 235, [236] = 236, [237] = 237, - [238] = 238, + [238] = 232, [239] = 239, - [240] = 228, + [240] = 240, [241] = 241, [242] = 242, [243] = 243, [244] = 244, - [245] = 238, + [245] = 245, [246] = 246, [247] = 247, [248] = 248, - [249] = 203, - [250] = 250, - [251] = 250, - [252] = 203, - [253] = 203, - [254] = 250, - [255] = 250, - [256] = 203, - [257] = 203, - [258] = 250, - [259] = 203, - [260] = 250, + [249] = 249, + [250] = 197, + [251] = 249, + [252] = 197, + [253] = 253, + [254] = 249, + [255] = 249, + [256] = 249, + [257] = 197, + [258] = 197, + [259] = 197, + [260] = 197, [261] = 261, - [262] = 262, - [263] = 250, - [264] = 203, + [262] = 249, + [263] = 249, + [264] = 197, [265] = 265, [266] = 266, [267] = 266, - [268] = 266, - [269] = 269, - [270] = 266, - [271] = 271, - [272] = 272, + [268] = 268, + [269] = 266, + [270] = 270, + [271] = 266, + [272] = 266, [273] = 266, [274] = 266, [275] = 275, [276] = 266, [277] = 277, - [278] = 266, + [278] = 278, [279] = 266, - [280] = 280, + [280] = 278, [281] = 266, - [282] = 269, - [283] = 277, - [284] = 266, - [285] = 271, + [282] = 282, + [283] = 266, + [284] = 282, + [285] = 266, [286] = 286, [287] = 266, - [288] = 265, - [289] = 266, - [290] = 265, - [291] = 266, + [288] = 277, + [289] = 277, + [290] = 266, + [291] = 270, [292] = 292, [293] = 293, [294] = 294, @@ -4948,327 +4962,327 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [304] = 304, [305] = 305, [306] = 306, - [307] = 303, + [307] = 307, [308] = 308, [309] = 309, - [310] = 308, - [311] = 309, + [310] = 310, + [311] = 311, [312] = 312, - [313] = 313, + [313] = 312, [314] = 314, - [315] = 308, - [316] = 316, - [317] = 304, + [315] = 315, + [316] = 311, + [317] = 317, [318] = 305, - [319] = 306, - [320] = 303, - [321] = 308, - [322] = 309, - [323] = 309, - [324] = 304, + [319] = 319, + [320] = 308, + [321] = 321, + [322] = 301, + [323] = 323, + [324] = 324, [325] = 325, - [326] = 304, - [327] = 327, - [328] = 305, - [329] = 305, - [330] = 306, - [331] = 303, - [332] = 308, - [333] = 309, - [334] = 334, - [335] = 302, - [336] = 306, - [337] = 306, - [338] = 304, - [339] = 305, - [340] = 304, - [341] = 303, - [342] = 303, + [326] = 317, + [327] = 312, + [328] = 317, + [329] = 308, + [330] = 301, + [331] = 323, + [332] = 324, + [333] = 312, + [334] = 312, + [335] = 317, + [336] = 308, + [337] = 337, + [338] = 323, + [339] = 324, + [340] = 312, + [341] = 325, + [342] = 317, [343] = 308, - [344] = 309, - [345] = 345, - [346] = 306, - [347] = 347, - [348] = 348, - [349] = 304, - [350] = 305, - [351] = 351, - [352] = 305, - [353] = 306, - [354] = 354, - [355] = 309, - [356] = 303, - [357] = 308, - [358] = 358, - [359] = 309, - [360] = 304, - [361] = 303, - [362] = 306, - [363] = 303, - [364] = 308, - [365] = 309, - [366] = 316, - [367] = 367, - [368] = 313, - [369] = 304, + [344] = 301, + [345] = 323, + [346] = 324, + [347] = 317, + [348] = 312, + [349] = 317, + [350] = 308, + [351] = 301, + [352] = 323, + [353] = 324, + [354] = 312, + [355] = 317, + [356] = 308, + [357] = 301, + [358] = 323, + [359] = 324, + [360] = 308, + [361] = 312, + [362] = 317, + [363] = 308, + [364] = 301, + [365] = 323, + [366] = 324, + [367] = 301, + [368] = 323, + [369] = 324, [370] = 370, - [371] = 305, - [372] = 308, - [373] = 305, - [374] = 306, + [371] = 301, + [372] = 323, + [373] = 324, + [374] = 374, [375] = 375, [376] = 376, [377] = 377, - [378] = 376, - [379] = 375, + [378] = 375, + [379] = 379, [380] = 380, [381] = 381, [382] = 382, - [383] = 383, + [383] = 377, [384] = 384, [385] = 385, - [386] = 386, + [386] = 377, [387] = 387, [388] = 388, [389] = 389, - [390] = 390, + [390] = 389, [391] = 391, - [392] = 392, + [392] = 385, [393] = 393, - [394] = 391, - [395] = 395, + [394] = 394, + [395] = 375, [396] = 396, [397] = 397, [398] = 398, [399] = 399, [400] = 400, [401] = 401, - [402] = 391, + [402] = 402, [403] = 403, [404] = 404, - [405] = 401, + [405] = 405, [406] = 406, - [407] = 399, + [407] = 407, [408] = 408, - [409] = 377, - [410] = 380, - [411] = 381, - [412] = 382, - [413] = 383, - [414] = 384, - [415] = 385, - [416] = 386, - [417] = 387, - [418] = 389, - [419] = 390, - [420] = 392, - [421] = 408, - [422] = 403, - [423] = 395, + [409] = 409, + [410] = 381, + [411] = 411, + [412] = 396, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 391, + [417] = 377, + [418] = 418, + [419] = 419, + [420] = 391, + [421] = 385, + [422] = 394, + [423] = 375, [424] = 396, - [425] = 406, - [426] = 426, - [427] = 398, - [428] = 428, - [429] = 391, + [425] = 398, + [426] = 399, + [427] = 400, + [428] = 401, + [429] = 402, [430] = 403, - [431] = 406, - [432] = 432, - [433] = 432, - [434] = 401, - [435] = 399, - [436] = 408, - [437] = 377, - [438] = 376, - [439] = 375, - [440] = 380, - [441] = 381, - [442] = 382, - [443] = 383, - [444] = 384, - [445] = 385, - [446] = 386, - [447] = 387, - [448] = 389, - [449] = 390, - [450] = 392, - [451] = 377, - [452] = 395, - [453] = 396, - [454] = 454, - [455] = 398, - [456] = 376, - [457] = 375, - [458] = 391, - [459] = 459, - [460] = 404, - [461] = 395, - [462] = 401, - [463] = 396, - [464] = 399, - [465] = 408, - [466] = 397, - [467] = 377, - [468] = 375, - [469] = 380, - [470] = 381, - [471] = 382, - [472] = 383, - [473] = 384, - [474] = 385, - [475] = 386, - [476] = 387, - [477] = 389, - [478] = 390, - [479] = 479, - [480] = 392, - [481] = 388, - [482] = 380, - [483] = 395, - [484] = 396, - [485] = 381, - [486] = 382, - [487] = 398, - [488] = 398, - [489] = 391, - [490] = 383, - [491] = 403, - [492] = 406, - [493] = 384, - [494] = 385, - [495] = 432, - [496] = 376, - [497] = 401, - [498] = 399, - [499] = 408, - [500] = 388, - [501] = 377, - [502] = 375, - [503] = 380, - [504] = 381, - [505] = 382, - [506] = 383, - [507] = 384, - [508] = 385, - [509] = 386, - [510] = 387, - [511] = 389, - [512] = 390, - [513] = 386, - [514] = 392, - [515] = 398, - [516] = 404, - [517] = 387, - [518] = 395, - [519] = 396, - [520] = 401, - [521] = 398, - [522] = 404, - [523] = 391, - [524] = 403, - [525] = 406, - [526] = 432, - [527] = 376, - [528] = 401, - [529] = 399, - [530] = 408, - [531] = 377, - [532] = 375, - [533] = 380, - [534] = 381, - [535] = 382, - [536] = 383, - [537] = 384, - [538] = 385, - [539] = 386, - [540] = 387, - [541] = 389, - [542] = 390, - [543] = 392, - [544] = 544, - [545] = 395, - [546] = 396, - [547] = 547, - [548] = 389, - [549] = 398, - [550] = 390, - [551] = 399, - [552] = 391, - [553] = 403, - [554] = 406, - [555] = 432, - [556] = 376, - [557] = 408, - [558] = 398, - [559] = 392, - [560] = 377, - [561] = 403, - [562] = 406, - [563] = 375, - [564] = 404, - [565] = 459, - [566] = 380, - [567] = 381, - [568] = 382, - [569] = 404, - [570] = 398, - [571] = 401, - [572] = 399, - [573] = 408, - [574] = 383, - [575] = 377, - [576] = 375, - [577] = 380, - [578] = 381, - [579] = 382, - [580] = 383, - [581] = 384, - [582] = 385, - [583] = 386, - [584] = 387, - [585] = 384, - [586] = 389, - [587] = 390, - [588] = 385, - [589] = 392, - [590] = 386, - [591] = 387, - [592] = 592, - [593] = 395, - [594] = 396, - [595] = 389, - [596] = 398, - [597] = 398, - [598] = 390, - [599] = 392, - [600] = 391, - [601] = 403, - [602] = 406, - [603] = 388, - [604] = 398, + [431] = 404, + [432] = 405, + [433] = 406, + [434] = 407, + [435] = 408, + [436] = 409, + [437] = 397, + [438] = 413, + [439] = 414, + [440] = 377, + [441] = 419, + [442] = 442, + [443] = 376, + [444] = 391, + [445] = 398, + [446] = 389, + [447] = 385, + [448] = 385, + [449] = 394, + [450] = 375, + [451] = 396, + [452] = 397, + [453] = 398, + [454] = 399, + [455] = 400, + [456] = 401, + [457] = 402, + [458] = 403, + [459] = 404, + [460] = 405, + [461] = 406, + [462] = 407, + [463] = 408, + [464] = 418, + [465] = 409, + [466] = 466, + [467] = 413, + [468] = 414, + [469] = 377, + [470] = 419, + [471] = 391, + [472] = 385, + [473] = 394, + [474] = 375, + [475] = 399, + [476] = 396, + [477] = 398, + [478] = 399, + [479] = 400, + [480] = 401, + [481] = 402, + [482] = 403, + [483] = 404, + [484] = 405, + [485] = 406, + [486] = 407, + [487] = 408, + [488] = 409, + [489] = 400, + [490] = 401, + [491] = 413, + [492] = 414, + [493] = 493, + [494] = 377, + [495] = 394, + [496] = 419, + [497] = 442, + [498] = 442, + [499] = 376, + [500] = 376, + [501] = 389, + [502] = 397, + [503] = 418, + [504] = 385, + [505] = 394, + [506] = 375, + [507] = 377, + [508] = 396, + [509] = 398, + [510] = 399, + [511] = 400, + [512] = 401, + [513] = 402, + [514] = 403, + [515] = 404, + [516] = 409, + [517] = 406, + [518] = 407, + [519] = 408, + [520] = 402, + [521] = 409, + [522] = 403, + [523] = 404, + [524] = 405, + [525] = 413, + [526] = 414, + [527] = 396, + [528] = 398, + [529] = 377, + [530] = 466, + [531] = 399, + [532] = 419, + [533] = 400, + [534] = 442, + [535] = 376, + [536] = 401, + [537] = 389, + [538] = 397, + [539] = 402, + [540] = 419, + [541] = 385, + [542] = 394, + [543] = 375, + [544] = 396, + [545] = 398, + [546] = 399, + [547] = 400, + [548] = 401, + [549] = 402, + [550] = 403, + [551] = 404, + [552] = 405, + [553] = 406, + [554] = 407, + [555] = 408, + [556] = 409, + [557] = 406, + [558] = 413, + [559] = 414, + [560] = 403, + [561] = 404, + [562] = 377, + [563] = 405, + [564] = 406, + [565] = 419, + [566] = 442, + [567] = 376, + [568] = 407, + [569] = 389, + [570] = 397, + [571] = 408, + [572] = 409, + [573] = 442, + [574] = 376, + [575] = 391, + [576] = 418, + [577] = 391, + [578] = 385, + [579] = 394, + [580] = 375, + [581] = 396, + [582] = 398, + [583] = 399, + [584] = 400, + [585] = 401, + [586] = 402, + [587] = 403, + [588] = 404, + [589] = 405, + [590] = 406, + [591] = 591, + [592] = 407, + [593] = 408, + [594] = 409, + [595] = 595, + [596] = 407, + [597] = 408, + [598] = 413, + [599] = 414, + [600] = 442, + [601] = 377, + [602] = 413, + [603] = 414, + [604] = 419, [605] = 605, - [606] = 393, - [607] = 607, - [608] = 608, - [609] = 395, - [610] = 396, - [611] = 432, - [612] = 376, - [613] = 613, - [614] = 432, - [615] = 403, - [616] = 406, - [617] = 404, - [618] = 618, - [619] = 401, - [620] = 404, - [621] = 398, - [622] = 404, - [623] = 432, - [624] = 376, - [625] = 432, - [626] = 399, - [627] = 408, + [606] = 442, + [607] = 376, + [608] = 377, + [609] = 377, + [610] = 419, + [611] = 413, + [612] = 414, + [613] = 389, + [614] = 397, + [615] = 415, + [616] = 394, + [617] = 442, + [618] = 376, + [619] = 619, + [620] = 391, + [621] = 391, + [622] = 389, + [623] = 377, + [624] = 397, + [625] = 389, + [626] = 397, + [627] = 405, [628] = 628, [629] = 628, [630] = 628, @@ -5285,110 +5299,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 640, [642] = 640, [643] = 643, - [644] = 643, - [645] = 645, - [646] = 645, - [647] = 223, - [648] = 218, + [644] = 644, + [645] = 231, + [646] = 644, + [647] = 643, + [648] = 245, [649] = 643, - [650] = 645, + [650] = 644, [651] = 651, [652] = 652, [653] = 653, [654] = 654, - [655] = 655, - [656] = 654, - [657] = 654, + [655] = 651, + [656] = 656, + [657] = 651, [658] = 658, [659] = 659, [660] = 660, - [661] = 660, + [661] = 661, [662] = 659, - [663] = 663, - [664] = 663, - [665] = 663, - [666] = 659, - [667] = 660, + [663] = 660, + [664] = 661, + [665] = 659, + [666] = 660, + [667] = 661, [668] = 668, - [669] = 669, - [670] = 668, + [669] = 668, + [670] = 670, [671] = 671, [672] = 671, [673] = 671, - [674] = 674, - [675] = 674, - [676] = 671, + [674] = 670, + [675] = 675, + [676] = 676, [677] = 671, - [678] = 678, - [679] = 669, - [680] = 671, - [681] = 674, - [682] = 671, - [683] = 671, - [684] = 222, - [685] = 685, - [686] = 232, - [687] = 687, - [688] = 222, - [689] = 689, - [690] = 690, - [691] = 671, + [678] = 671, + [679] = 675, + [680] = 675, + [681] = 671, + [682] = 682, + [683] = 226, + [684] = 671, + [685] = 671, + [686] = 686, + [687] = 243, + [688] = 671, + [689] = 218, + [690] = 218, + [691] = 246, [692] = 671, - [693] = 231, - [694] = 235, - [695] = 695, - [696] = 668, - [697] = 671, - [698] = 233, - [699] = 236, - [700] = 231, - [701] = 235, + [693] = 693, + [694] = 243, + [695] = 671, + [696] = 696, + [697] = 697, + [698] = 668, + [699] = 220, + [700] = 696, + [701] = 239, [702] = 671, - [703] = 689, - [704] = 689, - [705] = 232, - [706] = 669, - [707] = 207, - [708] = 678, - [709] = 671, + [703] = 239, + [704] = 226, + [705] = 696, + [706] = 706, + [707] = 671, + [708] = 671, + [709] = 210, [710] = 671, - [711] = 671, + [711] = 214, [712] = 671, - [713] = 208, - [714] = 714, + [713] = 670, + [714] = 676, [715] = 715, - [716] = 671, + [716] = 716, [717] = 717, [718] = 718, - [719] = 220, - [720] = 224, + [719] = 719, + [720] = 720, [721] = 721, [722] = 722, [723] = 723, - [724] = 718, + [724] = 724, [725] = 725, - [726] = 213, - [727] = 718, - [728] = 718, - [729] = 729, + [726] = 726, + [727] = 726, + [728] = 728, + [729] = 671, [730] = 730, [731] = 731, [732] = 732, - [733] = 733, + [733] = 726, [734] = 734, - [735] = 718, + [735] = 735, [736] = 736, - [737] = 737, - [738] = 718, - [739] = 739, - [740] = 740, - [741] = 718, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 718, - [747] = 718, + [737] = 228, + [738] = 738, + [739] = 236, + [740] = 726, + [741] = 213, + [742] = 726, + [743] = 726, + [744] = 726, + [745] = 726, + [746] = 746, + [747] = 726, [748] = 748, [749] = 749, [750] = 750, @@ -5403,13 +5417,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [759] = 759, [760] = 760, [761] = 761, - [762] = 762, - [763] = 763, + [762] = 246, + [763] = 220, [764] = 764, [765] = 765, [766] = 766, [767] = 767, - [768] = 221, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, @@ -5424,17 +5438,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [780] = 780, [781] = 781, [782] = 782, - [783] = 783, + [783] = 775, [784] = 784, [785] = 785, - [786] = 786, + [786] = 775, [787] = 787, [788] = 788, [789] = 789, [790] = 790, - [791] = 791, + [791] = 775, [792] = 792, - [793] = 225, + [793] = 793, [794] = 794, [795] = 795, [796] = 796, @@ -5442,7 +5456,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [798] = 798, [799] = 799, [800] = 800, - [801] = 774, + [801] = 801, [802] = 802, [803] = 803, [804] = 804, @@ -5460,12 +5474,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [816] = 816, [817] = 817, [818] = 818, - [819] = 774, + [819] = 819, [820] = 820, [821] = 821, [822] = 822, - [823] = 233, - [824] = 236, + [823] = 823, + [824] = 824, [825] = 825, [826] = 826, [827] = 827, @@ -5477,7 +5491,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [833] = 833, [834] = 834, [835] = 835, - [836] = 774, + [836] = 836, [837] = 837, [838] = 838, [839] = 839, @@ -5488,7 +5502,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [844] = 844, [845] = 845, [846] = 846, - [847] = 847, + [847] = 775, [848] = 848, [849] = 849, [850] = 850, @@ -5496,14 +5510,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [852] = 852, [853] = 853, [854] = 854, - [855] = 855, - [856] = 774, + [855] = 247, + [856] = 856, [857] = 857, [858] = 858, [859] = 859, [860] = 860, [861] = 861, - [862] = 862, + [862] = 222, [863] = 863, [864] = 864, [865] = 865, @@ -5512,69 +5526,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [868] = 868, [869] = 869, [870] = 870, - [871] = 871, - [872] = 871, - [873] = 870, - [874] = 870, + [871] = 870, + [872] = 872, + [873] = 872, + [874] = 872, [875] = 870, - [876] = 871, + [876] = 872, [877] = 870, - [878] = 871, - [879] = 871, + [878] = 870, + [879] = 872, [880] = 880, [881] = 881, - [882] = 882, + [882] = 720, [883] = 883, [884] = 884, [885] = 885, [886] = 886, - [887] = 721, - [888] = 725, + [887] = 887, + [888] = 888, [889] = 889, [890] = 890, [891] = 891, - [892] = 892, + [892] = 730, [893] = 893, [894] = 894, - [895] = 895, - [896] = 896, - [897] = 895, + [895] = 894, + [896] = 894, + [897] = 894, [898] = 894, - [899] = 896, - [900] = 896, - [901] = 894, - [902] = 896, - [903] = 894, - [904] = 894, - [905] = 896, + [899] = 899, + [900] = 899, + [901] = 901, + [902] = 901, + [903] = 899, + [904] = 899, + [905] = 899, [906] = 894, - [907] = 896, - [908] = 894, - [909] = 896, - [910] = 895, + [907] = 901, + [908] = 899, + [909] = 899, + [910] = 894, [911] = 911, [912] = 912, [913] = 913, [914] = 914, [915] = 914, - [916] = 916, - [917] = 914, + [916] = 914, + [917] = 917, [918] = 918, - [919] = 916, - [920] = 916, - [921] = 914, - [922] = 918, - [923] = 923, + [919] = 917, + [920] = 917, + [921] = 917, + [922] = 922, + [923] = 922, [924] = 914, - [925] = 918, - [926] = 914, - [927] = 916, - [928] = 916, - [929] = 918, - [930] = 916, - [931] = 918, - [932] = 916, - [933] = 914, + [925] = 914, + [926] = 922, + [927] = 922, + [928] = 914, + [929] = 922, + [930] = 917, + [931] = 922, + [932] = 914, + [933] = 922, [934] = 934, [935] = 935, [936] = 936, @@ -5583,152 +5597,152 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [939] = 939, [940] = 940, [941] = 941, - [942] = 934, + [942] = 942, [943] = 943, [944] = 944, - [945] = 945, + [945] = 938, [946] = 946, - [947] = 947, - [948] = 935, - [949] = 937, - [950] = 938, + [947] = 939, + [948] = 948, + [949] = 949, + [950] = 950, [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, + [952] = 938, + [953] = 939, + [954] = 934, [955] = 941, - [956] = 946, - [957] = 953, - [958] = 958, - [959] = 959, - [960] = 939, - [961] = 961, - [962] = 940, - [963] = 958, - [964] = 947, - [965] = 935, - [966] = 966, - [967] = 947, - [968] = 935, - [969] = 934, - [970] = 970, - [971] = 937, - [972] = 938, - [973] = 939, - [974] = 940, - [975] = 943, - [976] = 954, - [977] = 934, - [978] = 943, - [979] = 944, - [980] = 945, - [981] = 944, - [982] = 945, - [983] = 959, - [984] = 941, - [985] = 946, - [986] = 953, - [987] = 958, - [988] = 952, - [989] = 959, + [956] = 942, + [957] = 948, + [958] = 941, + [959] = 942, + [960] = 943, + [961] = 944, + [962] = 949, + [963] = 963, + [964] = 950, + [965] = 948, + [966] = 949, + [967] = 950, + [968] = 951, + [969] = 941, + [970] = 942, + [971] = 951, + [972] = 972, + [973] = 973, + [974] = 941, + [975] = 942, + [976] = 935, + [977] = 936, + [978] = 937, + [979] = 979, + [980] = 938, + [981] = 939, + [982] = 943, + [983] = 944, + [984] = 943, + [985] = 948, + [986] = 949, + [987] = 950, + [988] = 988, + [989] = 989, [990] = 990, - [991] = 954, - [992] = 947, - [993] = 935, - [994] = 939, - [995] = 940, - [996] = 934, - [997] = 943, - [998] = 944, - [999] = 945, - [1000] = 946, - [1001] = 941, - [1002] = 946, - [1003] = 953, - [1004] = 958, - [1005] = 959, - [1006] = 1006, - [1007] = 952, - [1008] = 947, - [1009] = 1009, - [1010] = 939, - [1011] = 940, - [1012] = 945, - [1013] = 940, - [1014] = 943, - [1015] = 944, - [1016] = 945, - [1017] = 1017, - [1018] = 952, - [1019] = 952, - [1020] = 966, - [1021] = 954, - [1022] = 959, - [1023] = 1009, - [1024] = 1024, - [1025] = 1025, + [991] = 951, + [992] = 992, + [993] = 993, + [994] = 943, + [995] = 944, + [996] = 972, + [997] = 973, + [998] = 935, + [999] = 936, + [1000] = 937, + [1001] = 1001, + [1002] = 1002, + [1003] = 992, + [1004] = 944, + [1005] = 938, + [1006] = 939, + [1007] = 938, + [1008] = 941, + [1009] = 942, + [1010] = 943, + [1011] = 944, + [1012] = 939, + [1013] = 1002, + [1014] = 948, + [1015] = 949, + [1016] = 1016, + [1017] = 950, + [1018] = 951, + [1019] = 943, + [1020] = 944, + [1021] = 993, + [1022] = 948, + [1023] = 949, + [1024] = 950, + [1025] = 973, [1026] = 1026, [1027] = 1027, - [1028] = 941, - [1029] = 946, - [1030] = 953, - [1031] = 958, - [1032] = 959, - [1033] = 1033, - [1034] = 954, - [1035] = 1035, - [1036] = 937, - [1037] = 938, - [1038] = 1038, - [1039] = 936, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 948, + [1032] = 949, + [1033] = 1016, + [1034] = 972, + [1035] = 973, + [1036] = 993, + [1037] = 1037, + [1038] = 1001, + [1039] = 1039, [1040] = 1040, - [1041] = 1040, - [1042] = 1033, - [1043] = 934, - [1044] = 952, - [1045] = 943, - [1046] = 1046, - [1047] = 954, - [1048] = 941, - [1049] = 946, - [1050] = 953, - [1051] = 958, - [1052] = 959, + [1041] = 1041, + [1042] = 935, + [1043] = 936, + [1044] = 950, + [1045] = 937, + [1046] = 1016, + [1047] = 972, + [1048] = 973, + [1049] = 951, + [1050] = 935, + [1051] = 936, + [1052] = 937, [1053] = 1053, [1054] = 1054, - [1055] = 947, - [1056] = 935, - [1057] = 941, - [1058] = 944, - [1059] = 952, - [1060] = 937, - [1061] = 938, - [1062] = 939, - [1063] = 939, - [1064] = 940, - [1065] = 953, - [1066] = 947, - [1067] = 958, - [1068] = 934, - [1069] = 943, - [1070] = 937, - [1071] = 944, - [1072] = 945, - [1073] = 938, - [1074] = 1046, - [1075] = 1075, - [1076] = 937, - [1077] = 970, - [1078] = 954, - [1079] = 938, - [1080] = 1080, - [1081] = 1081, - [1082] = 970, - [1083] = 970, - [1084] = 970, - [1085] = 970, - [1086] = 970, - [1087] = 935, + [1055] = 1037, + [1056] = 993, + [1057] = 1016, + [1058] = 1058, + [1059] = 993, + [1060] = 1016, + [1061] = 972, + [1062] = 973, + [1063] = 935, + [1064] = 936, + [1065] = 937, + [1066] = 1058, + [1067] = 993, + [1068] = 993, + [1069] = 972, + [1070] = 973, + [1071] = 935, + [1072] = 936, + [1073] = 937, + [1074] = 1016, + [1075] = 979, + [1076] = 938, + [1077] = 939, + [1078] = 972, + [1079] = 934, + [1080] = 1016, + [1081] = 941, + [1082] = 942, + [1083] = 934, + [1084] = 934, + [1085] = 934, + [1086] = 934, + [1087] = 951, [1088] = 1088, [1089] = 1088, [1090] = 1088, @@ -5743,358 +5757,358 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1099] = 1088, [1100] = 1100, [1101] = 1101, - [1102] = 1101, - [1103] = 1100, + [1102] = 1100, + [1103] = 1101, [1104] = 1104, - [1105] = 1100, - [1106] = 1104, - [1107] = 1101, - [1108] = 1104, + [1105] = 1104, + [1106] = 1100, + [1107] = 1104, + [1108] = 1101, [1109] = 1109, - [1110] = 1109, - [1111] = 1111, + [1110] = 1110, + [1111] = 1109, [1112] = 1112, - [1113] = 1112, - [1114] = 1114, - [1115] = 1114, - [1116] = 1116, - [1117] = 1111, - [1118] = 1118, + [1113] = 1113, + [1114] = 1113, + [1115] = 1112, + [1116] = 1113, + [1117] = 1117, + [1118] = 1110, [1119] = 1119, - [1120] = 1112, - [1121] = 1112, - [1122] = 1112, - [1123] = 1112, - [1124] = 1119, - [1125] = 1125, - [1126] = 1118, - [1127] = 1116, - [1128] = 1118, - [1129] = 1119, - [1130] = 1130, - [1131] = 1116, - [1132] = 1112, - [1133] = 1133, - [1134] = 1133, - [1135] = 1135, - [1136] = 1112, - [1137] = 1133, - [1138] = 1138, + [1120] = 1113, + [1121] = 1113, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1117, + [1126] = 1113, + [1127] = 1123, + [1128] = 1123, + [1129] = 1124, + [1130] = 1124, + [1131] = 1117, + [1132] = 1132, + [1133] = 1132, + [1134] = 1113, + [1135] = 1132, + [1136] = 1113, + [1137] = 1137, + [1138] = 1113, [1139] = 1139, [1140] = 1140, - [1141] = 1112, - [1142] = 1112, + [1141] = 1113, + [1142] = 1142, [1143] = 1143, - [1144] = 1112, - [1145] = 1145, + [1144] = 1144, + [1145] = 1113, [1146] = 1146, [1147] = 1147, [1148] = 1148, - [1149] = 1109, + [1149] = 1149, [1150] = 1150, - [1151] = 1151, + [1151] = 1113, [1152] = 1152, - [1153] = 1138, + [1153] = 1113, [1154] = 1154, - [1155] = 1143, - [1156] = 1143, - [1157] = 1112, - [1158] = 1139, - [1159] = 1159, - [1160] = 1145, - [1161] = 1112, - [1162] = 1138, - [1163] = 1145, - [1164] = 1164, + [1155] = 1155, + [1156] = 1154, + [1157] = 1140, + [1158] = 1154, + [1159] = 1155, + [1160] = 1140, + [1161] = 1143, + [1162] = 1162, + [1163] = 1109, + [1164] = 1152, [1165] = 1165, - [1166] = 1148, - [1167] = 1167, - [1168] = 1112, - [1169] = 725, - [1170] = 1170, - [1171] = 1171, - [1172] = 1112, - [1173] = 1173, - [1174] = 1112, - [1175] = 1148, - [1176] = 1176, - [1177] = 1148, - [1178] = 1111, - [1179] = 1125, - [1180] = 1112, - [1181] = 721, - [1182] = 1148, + [1166] = 1166, + [1167] = 1155, + [1168] = 1152, + [1169] = 1113, + [1170] = 1113, + [1171] = 1152, + [1172] = 1152, + [1173] = 1110, + [1174] = 720, + [1175] = 1175, + [1176] = 1122, + [1177] = 1113, + [1178] = 730, + [1179] = 1179, + [1180] = 1180, + [1181] = 1113, + [1182] = 1182, [1183] = 1183, - [1184] = 1184, + [1184] = 1175, [1185] = 1185, - [1186] = 1176, - [1187] = 1187, - [1188] = 1176, - [1189] = 1173, - [1190] = 1148, - [1191] = 1191, - [1192] = 1173, - [1193] = 1185, + [1186] = 1185, + [1187] = 1152, + [1188] = 1188, + [1189] = 1189, + [1190] = 1185, + [1191] = 1189, + [1192] = 1192, + [1193] = 1152, [1194] = 1194, - [1195] = 1195, - [1196] = 1148, - [1197] = 1112, + [1195] = 1113, + [1196] = 1185, + [1197] = 1185, [1198] = 1185, - [1199] = 1185, - [1200] = 1185, - [1201] = 1191, - [1202] = 1148, - [1203] = 1194, - [1204] = 1185, - [1205] = 1205, - [1206] = 1185, + [1199] = 1182, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1152, + [1206] = 1175, [1207] = 1185, - [1208] = 1148, + [1208] = 1185, [1209] = 1209, - [1210] = 1210, - [1211] = 1185, + [1210] = 1185, + [1211] = 1152, [1212] = 1212, - [1213] = 1148, - [1214] = 1187, + [1213] = 1182, + [1214] = 1192, [1215] = 1215, - [1216] = 1148, - [1217] = 1140, - [1218] = 1151, - [1219] = 1184, - [1220] = 1173, + [1216] = 1216, + [1217] = 1215, + [1218] = 1152, + [1219] = 1152, + [1220] = 1182, [1221] = 1221, - [1222] = 1222, - [1223] = 1151, - [1224] = 1224, - [1225] = 1148, - [1226] = 1226, - [1227] = 1227, - [1228] = 1215, - [1229] = 1140, - [1230] = 1151, + [1222] = 1188, + [1223] = 1165, + [1224] = 1202, + [1225] = 1144, + [1226] = 1182, + [1227] = 1165, + [1228] = 1228, + [1229] = 1229, + [1230] = 1221, [1231] = 1231, - [1232] = 1224, - [1233] = 1226, - [1234] = 1187, - [1235] = 1231, - [1236] = 1236, - [1237] = 1173, - [1238] = 1238, - [1239] = 1173, - [1240] = 1184, - [1241] = 1241, - [1242] = 1222, - [1243] = 1243, - [1244] = 1140, - [1245] = 1222, - [1246] = 1224, - [1247] = 1147, - [1248] = 1154, - [1249] = 1210, - [1250] = 1148, - [1251] = 1187, - [1252] = 1152, - [1253] = 1183, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1188, + [1236] = 1182, + [1237] = 1152, + [1238] = 1229, + [1239] = 1229, + [1240] = 1216, + [1241] = 1232, + [1242] = 1144, + [1243] = 1165, + [1244] = 1244, + [1245] = 1144, + [1246] = 1202, + [1247] = 1215, + [1248] = 1248, + [1249] = 1204, + [1250] = 1216, + [1251] = 1179, + [1252] = 1150, + [1253] = 1216, [1254] = 1215, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 725, + [1255] = 1162, + [1256] = 1139, + [1257] = 1146, + [1258] = 1147, [1259] = 1148, - [1260] = 1224, - [1261] = 1215, - [1262] = 1256, + [1260] = 1149, + [1261] = 1261, + [1262] = 1215, [1263] = 1263, - [1264] = 1183, - [1265] = 1187, - [1266] = 1165, - [1267] = 1159, - [1268] = 1187, - [1269] = 1269, - [1270] = 1257, - [1271] = 1146, - [1272] = 1167, - [1273] = 1215, - [1274] = 1215, - [1275] = 1224, - [1276] = 1269, - [1277] = 1257, - [1278] = 1224, - [1279] = 721, - [1280] = 1173, - [1281] = 1173, - [1282] = 1184, - [1283] = 1173, - [1284] = 1269, - [1285] = 1140, - [1286] = 1224, - [1287] = 1151, - [1288] = 1212, - [1289] = 1187, + [1264] = 1264, + [1265] = 1263, + [1266] = 1152, + [1267] = 1267, + [1268] = 1152, + [1269] = 1179, + [1270] = 1216, + [1271] = 720, + [1272] = 730, + [1273] = 1202, + [1274] = 1248, + [1275] = 1188, + [1276] = 1202, + [1277] = 1264, + [1278] = 1263, + [1279] = 1202, + [1280] = 1215, + [1281] = 1182, + [1282] = 1182, + [1283] = 1216, + [1284] = 1182, + [1285] = 1264, + [1286] = 1286, + [1287] = 1215, + [1288] = 1165, + [1289] = 1289, [1290] = 1290, - [1291] = 1140, - [1292] = 1151, - [1293] = 1293, - [1294] = 1241, - [1295] = 1290, - [1296] = 1173, - [1297] = 1215, - [1298] = 1215, - [1299] = 1183, - [1300] = 1300, - [1301] = 1187, - [1302] = 1183, - [1303] = 1187, - [1304] = 1224, - [1305] = 1305, - [1306] = 1306, - [1307] = 1151, - [1308] = 1308, - [1309] = 1306, - [1310] = 1194, - [1311] = 1306, - [1312] = 1215, - [1313] = 1187, - [1314] = 1191, - [1315] = 1306, + [1291] = 1289, + [1292] = 1209, + [1293] = 1144, + [1294] = 1179, + [1295] = 1216, + [1296] = 1182, + [1297] = 1165, + [1298] = 1144, + [1299] = 1216, + [1300] = 1179, + [1301] = 1234, + [1302] = 1302, + [1303] = 1202, + [1304] = 1202, + [1305] = 1215, + [1306] = 1202, + [1307] = 1216, + [1308] = 1216, + [1309] = 1309, + [1310] = 1309, + [1311] = 1311, + [1312] = 1202, + [1313] = 1189, + [1314] = 1215, + [1315] = 1309, [1316] = 1316, - [1317] = 1306, - [1318] = 1306, - [1319] = 1319, - [1320] = 1224, - [1321] = 1224, - [1322] = 1322, - [1323] = 1224, + [1317] = 1216, + [1318] = 1192, + [1319] = 1215, + [1320] = 1165, + [1321] = 1309, + [1322] = 1144, + [1323] = 1309, [1324] = 1215, - [1325] = 1215, - [1326] = 1215, - [1327] = 1224, - [1328] = 1140, - [1329] = 1183, - [1330] = 1224, - [1331] = 1255, - [1332] = 1215, - [1333] = 1215, - [1334] = 1263, - [1335] = 1215, - [1336] = 1231, - [1337] = 1183, - [1338] = 1224, - [1339] = 1224, - [1340] = 1224, - [1341] = 1183, - [1342] = 1215, - [1343] = 1210, - [1344] = 1183, - [1345] = 1345, + [1325] = 1325, + [1326] = 1216, + [1327] = 1179, + [1328] = 1215, + [1329] = 1309, + [1330] = 1330, + [1331] = 1215, + [1332] = 1267, + [1333] = 1216, + [1334] = 1216, + [1335] = 1216, + [1336] = 1179, + [1337] = 1216, + [1338] = 1179, + [1339] = 1215, + [1340] = 1215, + [1341] = 1215, + [1342] = 1261, + [1343] = 1204, + [1344] = 1221, + [1345] = 1179, [1346] = 1346, [1347] = 1347, [1348] = 1346, - [1349] = 1215, - [1350] = 1241, + [1349] = 1349, + [1350] = 1346, [1351] = 1351, - [1352] = 1345, - [1353] = 1346, - [1354] = 1347, - [1355] = 1346, - [1356] = 1351, - [1357] = 1345, - [1358] = 1358, - [1359] = 1347, - [1360] = 1345, - [1361] = 1358, - [1362] = 1347, + [1352] = 1346, + [1353] = 1347, + [1354] = 1354, + [1355] = 1347, + [1356] = 1349, + [1357] = 1351, + [1358] = 1346, + [1359] = 1354, + [1360] = 1347, + [1361] = 1349, + [1362] = 1354, [1363] = 1351, - [1364] = 1358, - [1365] = 1345, - [1366] = 1345, - [1367] = 1347, + [1364] = 1354, + [1365] = 1351, + [1366] = 1215, + [1367] = 1354, [1368] = 1351, - [1369] = 1347, - [1370] = 1346, - [1371] = 1351, - [1372] = 1293, - [1373] = 1345, - [1374] = 1345, - [1375] = 1347, - [1376] = 1224, - [1377] = 1358, - [1378] = 1358, - [1379] = 1183, - [1380] = 1345, - [1381] = 1347, - [1382] = 1346, - [1383] = 1347, - [1384] = 1351, - [1385] = 1358, - [1386] = 1386, - [1387] = 1386, - [1388] = 1386, - [1389] = 1386, - [1390] = 1386, - [1391] = 1386, - [1392] = 1386, - [1393] = 1386, - [1394] = 1386, - [1395] = 1395, + [1369] = 1179, + [1370] = 1351, + [1371] = 1349, + [1372] = 1346, + [1373] = 1290, + [1374] = 1349, + [1375] = 1216, + [1376] = 1351, + [1377] = 1354, + [1378] = 1347, + [1379] = 1347, + [1380] = 1351, + [1381] = 1349, + [1382] = 1349, + [1383] = 1234, + [1384] = 1349, + [1385] = 1351, + [1386] = 1349, + [1387] = 1387, + [1388] = 1387, + [1389] = 1387, + [1390] = 1387, + [1391] = 1387, + [1392] = 1387, + [1393] = 1387, + [1394] = 1387, + [1395] = 1387, [1396] = 1396, - [1397] = 1395, - [1398] = 1395, - [1399] = 1395, - [1400] = 1395, - [1401] = 1395, - [1402] = 1402, + [1397] = 1396, + [1398] = 1396, + [1399] = 1399, + [1400] = 1396, + [1401] = 1396, + [1402] = 1396, [1403] = 1403, - [1404] = 1403, + [1404] = 1404, [1405] = 1405, - [1406] = 1405, - [1407] = 1407, - [1408] = 1403, - [1409] = 1405, - [1410] = 1405, - [1411] = 1403, - [1412] = 1402, - [1413] = 1402, - [1414] = 1402, - [1415] = 1402, - [1416] = 1403, - [1417] = 1405, - [1418] = 1418, - [1419] = 1418, - [1420] = 1418, - [1421] = 1418, - [1422] = 1418, - [1423] = 1418, - [1424] = 1418, - [1425] = 223, + [1406] = 1403, + [1407] = 1405, + [1408] = 1405, + [1409] = 1409, + [1410] = 1404, + [1411] = 1405, + [1412] = 1404, + [1413] = 1403, + [1414] = 1404, + [1415] = 1403, + [1416] = 1405, + [1417] = 1404, + [1418] = 1403, + [1419] = 1419, + [1420] = 1419, + [1421] = 1419, + [1422] = 1419, + [1423] = 1419, + [1424] = 1419, + [1425] = 1419, [1426] = 1426, [1427] = 1427, - [1428] = 218, - [1429] = 1429, + [1428] = 245, + [1429] = 231, [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, [1434] = 1434, - [1435] = 213, - [1436] = 211, - [1437] = 218, - [1438] = 1438, - [1439] = 1439, - [1440] = 913, - [1441] = 208, - [1442] = 1442, + [1435] = 1435, + [1436] = 1436, + [1437] = 913, + [1438] = 911, + [1439] = 212, + [1440] = 1440, + [1441] = 1441, + [1442] = 210, [1443] = 1443, - [1444] = 1444, - [1445] = 207, - [1446] = 223, - [1447] = 911, - [1448] = 1448, + [1444] = 214, + [1445] = 231, + [1446] = 1446, + [1447] = 1447, + [1448] = 245, [1449] = 1449, [1450] = 1450, - [1451] = 912, - [1452] = 1452, - [1453] = 232, + [1451] = 1451, + [1452] = 213, + [1453] = 912, [1454] = 1454, [1455] = 1455, [1456] = 1456, @@ -6106,10 +6120,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 208, - [1466] = 207, - [1467] = 213, - [1468] = 222, + [1465] = 1465, + [1466] = 1466, + [1467] = 652, + [1468] = 1468, [1469] = 1469, [1470] = 1470, [1471] = 1471, @@ -6121,29 +6135,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 220, - [1481] = 224, - [1482] = 658, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, [1483] = 1483, [1484] = 1484, - [1485] = 1485, - [1486] = 1486, + [1485] = 210, + [1486] = 214, [1487] = 1487, [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1493, + [1493] = 653, [1494] = 1494, [1495] = 1495, [1496] = 1496, [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 1500, + [1500] = 243, [1501] = 1501, - [1502] = 655, + [1502] = 1502, [1503] = 1503, [1504] = 1504, [1505] = 1505, @@ -6154,8 +6168,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1513, - [1514] = 1514, + [1513] = 213, + [1514] = 654, [1515] = 1515, [1516] = 1516, [1517] = 1517, @@ -6167,14 +6181,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 653, + [1526] = 1526, [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1532, - [1533] = 1533, + [1532] = 1511, + [1533] = 226, [1534] = 1534, [1535] = 1535, [1536] = 1536, @@ -6188,13 +6202,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 652, + [1547] = 1547, [1548] = 1548, - [1549] = 1549, + [1549] = 1506, [1550] = 1550, [1551] = 1551, - [1552] = 1552, - [1553] = 1455, + [1552] = 1506, + [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, @@ -6203,15 +6217,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1559] = 1559, [1560] = 1560, [1561] = 1561, - [1562] = 1562, - [1563] = 651, + [1562] = 1511, + [1563] = 1563, [1564] = 1564, [1565] = 1565, [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, + [1567] = 1506, + [1568] = 228, + [1569] = 236, + [1570] = 656, [1571] = 1571, [1572] = 1572, [1573] = 1573, @@ -6230,986 +6244,986 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1589, + [1589] = 1506, [1590] = 1590, [1591] = 1591, [1592] = 1592, [1593] = 1593, [1594] = 1594, - [1595] = 1455, - [1596] = 1459, - [1597] = 1459, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, [1598] = 1598, - [1599] = 1599, - [1600] = 1600, - [1601] = 1459, + [1599] = 1511, + [1600] = 658, + [1601] = 1601, [1602] = 1602, - [1603] = 1455, + [1603] = 1603, [1604] = 1604, [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 1455, + [1608] = 1608, [1609] = 1609, [1610] = 1610, [1611] = 1611, [1612] = 1612, [1613] = 1613, - [1614] = 221, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, + [1614] = 1614, + [1615] = 1543, + [1616] = 1435, + [1617] = 1544, [1618] = 1618, [1619] = 1619, - [1620] = 225, - [1621] = 1621, - [1622] = 231, - [1623] = 1607, - [1624] = 1624, - [1625] = 1621, + [1620] = 222, + [1621] = 1578, + [1622] = 239, + [1623] = 1623, + [1624] = 1547, + [1625] = 1625, [1626] = 1626, - [1627] = 1627, + [1627] = 1548, [1628] = 1628, - [1629] = 1629, - [1630] = 1588, + [1629] = 1551, + [1630] = 1630, [1631] = 1631, - [1632] = 1604, + [1632] = 1632, [1633] = 1633, - [1634] = 1599, - [1635] = 1635, - [1636] = 1636, - [1637] = 1637, + [1634] = 1634, + [1635] = 1479, + [1636] = 1488, + [1637] = 1490, [1638] = 1638, [1639] = 1639, [1640] = 1640, - [1641] = 1638, - [1642] = 1611, - [1643] = 233, - [1644] = 1644, - [1645] = 1537, - [1646] = 1592, + [1641] = 1641, + [1642] = 228, + [1643] = 236, + [1644] = 1502, + [1645] = 1645, + [1646] = 1646, [1647] = 1647, - [1648] = 1638, + [1648] = 1648, [1649] = 1649, [1650] = 1650, - [1651] = 1651, + [1651] = 1525, [1652] = 1652, - [1653] = 220, - [1654] = 1654, - [1655] = 1471, - [1656] = 224, - [1657] = 1474, - [1658] = 1658, - [1659] = 236, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1663, - [1664] = 1664, - [1665] = 1665, - [1666] = 1666, - [1667] = 1667, - [1668] = 1479, - [1669] = 1456, - [1670] = 236, - [1671] = 1457, - [1672] = 1672, - [1673] = 1673, - [1674] = 1429, - [1675] = 1675, + [1653] = 1653, + [1654] = 222, + [1655] = 1632, + [1656] = 239, + [1657] = 1527, + [1658] = 1632, + [1659] = 1530, + [1660] = 1578, + [1661] = 1488, + [1662] = 1640, + [1663] = 1534, + [1664] = 1653, + [1665] = 1538, + [1666] = 1640, + [1667] = 1518, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, + [1672] = 1541, + [1673] = 1542, + [1674] = 1543, + [1675] = 1544, [1676] = 1676, - [1677] = 1579, - [1678] = 1588, - [1679] = 1592, - [1680] = 1680, - [1681] = 1681, - [1682] = 1460, - [1683] = 1461, - [1684] = 1593, - [1685] = 1484, - [1686] = 1686, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 1547, + [1681] = 1548, + [1682] = 1682, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 218, [1687] = 1687, - [1688] = 1688, + [1688] = 1551, [1689] = 1689, - [1690] = 1690, - [1691] = 1599, - [1692] = 1692, - [1693] = 1693, - [1694] = 1600, - [1695] = 1695, - [1696] = 1696, - [1697] = 1600, - [1698] = 1698, - [1699] = 1699, - [1700] = 1498, - [1701] = 1607, - [1702] = 1621, - [1703] = 1703, + [1690] = 220, + [1691] = 1433, + [1692] = 1431, + [1693] = 1432, + [1694] = 246, + [1695] = 1574, + [1696] = 243, + [1697] = 1697, + [1698] = 1632, + [1699] = 1502, + [1700] = 1700, + [1701] = 1701, + [1702] = 218, + [1703] = 1640, [1704] = 1704, [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1462, - [1709] = 1709, - [1710] = 1638, - [1711] = 1432, - [1712] = 1485, - [1713] = 1576, - [1714] = 1582, - [1715] = 1611, - [1716] = 1537, - [1717] = 1456, - [1718] = 1457, - [1719] = 235, - [1720] = 1720, - [1721] = 1460, - [1722] = 1461, - [1723] = 1462, - [1724] = 1463, + [1706] = 1697, + [1707] = 1649, + [1708] = 1708, + [1709] = 1542, + [1710] = 247, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 226, + [1717] = 1557, + [1718] = 1718, + [1719] = 1430, + [1720] = 1507, + [1721] = 1721, + [1722] = 1558, + [1723] = 1723, + [1724] = 1724, [1725] = 1725, - [1726] = 1579, - [1727] = 221, + [1726] = 1726, + [1727] = 1479, [1728] = 1728, - [1729] = 1463, + [1729] = 1729, [1730] = 1730, - [1731] = 1593, + [1731] = 1731, [1732] = 1732, [1733] = 1733, [1734] = 1734, - [1735] = 1735, - [1736] = 1584, - [1737] = 1585, - [1738] = 1621, - [1739] = 1739, - [1740] = 1602, - [1741] = 231, - [1742] = 1604, - [1743] = 1743, + [1735] = 1527, + [1736] = 246, + [1737] = 1560, + [1738] = 1561, + [1739] = 1575, + [1740] = 1508, + [1741] = 1530, + [1742] = 1454, + [1743] = 1632, [1744] = 1744, [1745] = 1745, - [1746] = 1471, - [1747] = 1474, - [1748] = 1479, - [1749] = 1749, - [1750] = 232, + [1746] = 1557, + [1747] = 1747, + [1748] = 1558, + [1749] = 1640, + [1750] = 1750, [1751] = 1751, - [1752] = 1484, - [1753] = 1485, - [1754] = 1498, - [1755] = 1605, - [1756] = 1681, - [1757] = 1576, - [1758] = 1590, - [1759] = 1759, - [1760] = 225, - [1761] = 1582, - [1762] = 1602, - [1763] = 1739, - [1764] = 1764, - [1765] = 1765, - [1766] = 1751, + [1752] = 1507, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1508, + [1760] = 1572, + [1761] = 1761, + [1762] = 1560, + [1763] = 1763, + [1764] = 1561, + [1765] = 247, + [1766] = 1490, [1767] = 1767, - [1768] = 1768, - [1769] = 1590, - [1770] = 233, - [1771] = 222, - [1772] = 1772, - [1773] = 1773, - [1774] = 1621, - [1775] = 1638, - [1776] = 235, - [1777] = 1777, - [1778] = 1778, - [1779] = 1431, - [1780] = 1430, + [1768] = 1572, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1573, + [1773] = 1574, + [1774] = 1774, + [1775] = 1775, + [1776] = 1776, + [1777] = 220, + [1778] = 1573, + [1779] = 1575, + [1780] = 1454, [1781] = 1781, - [1782] = 1434, - [1783] = 1783, + [1782] = 1782, + [1783] = 1518, [1784] = 1784, [1785] = 1785, - [1786] = 1584, - [1787] = 1585, + [1786] = 1534, + [1787] = 1538, [1788] = 1788, - [1789] = 1605, - [1790] = 1582, - [1791] = 1484, - [1792] = 1498, + [1789] = 1541, + [1790] = 1525, + [1791] = 1585, + [1792] = 1490, [1793] = 1793, - [1794] = 1681, - [1795] = 1590, - [1796] = 912, - [1797] = 1797, - [1798] = 1448, - [1799] = 1793, - [1800] = 1800, - [1801] = 1801, - [1802] = 1751, - [1803] = 1803, - [1804] = 1793, - [1805] = 1581, - [1806] = 1806, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, + [1797] = 1446, + [1798] = 1443, + [1799] = 1441, + [1800] = 1440, + [1801] = 913, + [1802] = 1802, + [1803] = 1537, + [1804] = 1804, + [1805] = 1805, + [1806] = 1625, [1807] = 1807, - [1808] = 1808, - [1809] = 913, - [1810] = 1810, - [1811] = 1811, - [1812] = 1812, - [1813] = 1438, - [1814] = 1814, - [1815] = 1793, - [1816] = 1591, - [1817] = 1803, - [1818] = 1818, - [1819] = 1610, - [1820] = 1793, + [1808] = 1451, + [1809] = 1809, + [1810] = 1449, + [1811] = 1450, + [1812] = 1447, + [1813] = 1809, + [1814] = 1625, + [1815] = 1603, + [1816] = 1436, + [1817] = 1593, + [1818] = 1649, + [1819] = 1653, + [1820] = 1697, [1821] = 1821, - [1822] = 1443, - [1823] = 1821, - [1824] = 911, - [1825] = 1793, - [1826] = 1599, - [1827] = 1600, - [1828] = 1800, - [1829] = 1607, - [1830] = 1830, - [1831] = 1801, - [1832] = 1548, - [1833] = 1793, - [1834] = 1811, - [1835] = 1781, - [1836] = 1797, - [1837] = 1801, - [1838] = 1578, - [1839] = 1485, - [1840] = 1576, - [1841] = 1474, - [1842] = 1479, - [1843] = 1611, - [1844] = 1537, - [1845] = 1548, - [1846] = 1456, - [1847] = 1847, - [1848] = 1457, - [1849] = 1818, - [1850] = 1460, - [1851] = 1461, - [1852] = 1462, - [1853] = 1463, - [1854] = 1854, - [1855] = 1803, - [1856] = 1449, - [1857] = 1803, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 1781, - [1863] = 1863, - [1864] = 1439, - [1865] = 1442, - [1866] = 1578, - [1867] = 1548, - [1868] = 1868, - [1869] = 1444, - [1870] = 1803, - [1871] = 1871, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1579, - [1876] = 1588, - [1877] = 1592, - [1878] = 1593, - [1879] = 1452, - [1880] = 1450, - [1881] = 1584, - [1882] = 1585, - [1883] = 1602, - [1884] = 1604, + [1822] = 1822, + [1823] = 1592, + [1824] = 1824, + [1825] = 1825, + [1826] = 1585, + [1827] = 1592, + [1828] = 1828, + [1829] = 1829, + [1830] = 911, + [1831] = 1585, + [1832] = 1802, + [1833] = 1804, + [1834] = 1807, + [1835] = 1809, + [1836] = 1836, + [1837] = 1837, + [1838] = 1592, + [1839] = 1837, + [1840] = 1809, + [1841] = 1794, + [1842] = 1802, + [1843] = 1809, + [1844] = 1802, + [1845] = 1845, + [1846] = 1846, + [1847] = 1802, + [1848] = 1848, + [1849] = 1849, + [1850] = 1802, + [1851] = 1802, + [1852] = 1852, + [1853] = 1849, + [1854] = 912, + [1855] = 1855, + [1856] = 1856, + [1857] = 1507, + [1858] = 1508, + [1859] = 1518, + [1860] = 1525, + [1861] = 1527, + [1862] = 1530, + [1863] = 1534, + [1864] = 1538, + [1865] = 1541, + [1866] = 1542, + [1867] = 1543, + [1868] = 1544, + [1869] = 1547, + [1870] = 1548, + [1871] = 1551, + [1872] = 1557, + [1873] = 1558, + [1874] = 1560, + [1875] = 1561, + [1876] = 1572, + [1877] = 1573, + [1878] = 1574, + [1879] = 1575, + [1880] = 1454, + [1881] = 1578, + [1882] = 1849, + [1883] = 1829, + [1884] = 1884, [1885] = 1885, - [1886] = 1739, - [1887] = 1578, - [1888] = 1471, - [1889] = 1605, - [1890] = 1580, - [1891] = 1891, - [1892] = 1594, - [1893] = 1589, - [1894] = 1513, - [1895] = 1895, - [1896] = 1606, - [1897] = 1469, - [1898] = 1470, - [1899] = 1609, - [1900] = 1472, - [1901] = 1473, - [1902] = 1475, - [1903] = 1476, - [1904] = 1477, - [1905] = 1478, - [1906] = 1906, - [1907] = 1631, - [1908] = 1709, - [1909] = 1810, - [1910] = 1598, - [1911] = 658, - [1912] = 1483, - [1913] = 1486, - [1914] = 1487, - [1915] = 1915, - [1916] = 1854, - [1917] = 1488, - [1918] = 1489, - [1919] = 1490, - [1920] = 1491, - [1921] = 1492, - [1922] = 1493, - [1923] = 1494, - [1924] = 1495, - [1925] = 1496, - [1926] = 1497, - [1927] = 1499, - [1928] = 1500, - [1929] = 1501, - [1930] = 1454, - [1931] = 1931, - [1932] = 655, - [1933] = 1503, - [1934] = 1504, - [1935] = 1505, - [1936] = 1506, - [1937] = 1507, - [1938] = 1508, - [1939] = 1509, - [1940] = 1510, - [1941] = 1511, - [1942] = 1512, - [1943] = 1514, - [1944] = 1515, - [1945] = 1516, - [1946] = 1517, - [1947] = 1518, - [1948] = 1519, - [1949] = 1520, - [1950] = 1521, - [1951] = 1522, - [1952] = 1523, - [1953] = 1524, - [1954] = 1525, - [1955] = 1458, - [1956] = 653, - [1957] = 1527, - [1958] = 1528, - [1959] = 1529, - [1960] = 1530, - [1961] = 1531, - [1962] = 1532, - [1963] = 1533, - [1964] = 1534, - [1965] = 1535, - [1966] = 1536, - [1967] = 1612, - [1968] = 1538, - [1969] = 1539, - [1970] = 1540, - [1971] = 1541, - [1972] = 1542, - [1973] = 1543, - [1974] = 1544, - [1975] = 1545, - [1976] = 1546, - [1977] = 1464, - [1978] = 652, - [1979] = 1549, - [1980] = 1550, - [1981] = 1551, - [1982] = 1552, - [1983] = 1554, - [1984] = 1555, - [1985] = 1556, - [1986] = 1557, - [1987] = 1558, - [1988] = 1559, - [1989] = 1560, - [1990] = 1561, - [1991] = 1562, - [1992] = 651, - [1993] = 1564, - [1994] = 1565, - [1995] = 1566, - [1996] = 1567, - [1997] = 1568, - [1998] = 1569, - [1999] = 1570, - [2000] = 1571, - [2001] = 1572, - [2002] = 1573, - [2003] = 1574, - [2004] = 1575, - [2005] = 211, - [2006] = 2006, - [2007] = 1895, - [2008] = 1709, - [2009] = 2009, - [2010] = 1548, - [2011] = 1578, - [2012] = 1583, - [2013] = 1586, - [2014] = 1587, - [2015] = 1895, - [2016] = 2016, + [1886] = 1886, + [1887] = 1887, + [1888] = 1479, + [1889] = 1488, + [1890] = 1502, + [1891] = 1596, + [1892] = 1487, + [1893] = 1489, + [1894] = 1491, + [1895] = 1492, + [1896] = 1466, + [1897] = 653, + [1898] = 1494, + [1899] = 1495, + [1900] = 1496, + [1901] = 1497, + [1902] = 1498, + [1903] = 1499, + [1904] = 1501, + [1905] = 1503, + [1906] = 1504, + [1907] = 1505, + [1908] = 1509, + [1909] = 1510, + [1910] = 1512, + [1911] = 654, + [1912] = 1515, + [1913] = 1516, + [1914] = 1517, + [1915] = 1519, + [1916] = 1520, + [1917] = 1521, + [1918] = 1523, + [1919] = 1524, + [1920] = 1526, + [1921] = 1528, + [1922] = 1529, + [1923] = 1531, + [1924] = 212, + [1925] = 1925, + [1926] = 1926, + [1927] = 1670, + [1928] = 1555, + [1929] = 1556, + [1930] = 1585, + [1931] = 1565, + [1932] = 1566, + [1933] = 1592, + [1934] = 1934, + [1935] = 1539, + [1936] = 1540, + [1937] = 1550, + [1938] = 1535, + [1939] = 1563, + [1940] = 1564, + [1941] = 1536, + [1942] = 1942, + [1943] = 1553, + [1944] = 1926, + [1945] = 1668, + [1946] = 1468, + [1947] = 1545, + [1948] = 1948, + [1949] = 1949, + [1950] = 1591, + [1951] = 1668, + [1952] = 1596, + [1953] = 1761, + [1954] = 1954, + [1955] = 1955, + [1956] = 1670, + [1957] = 1957, + [1958] = 1958, + [1959] = 1805, + [1960] = 1960, + [1961] = 1961, + [1962] = 1822, + [1963] = 1926, + [1964] = 1585, + [1965] = 1592, + [1966] = 1603, + [1967] = 1593, + [1968] = 1926, + [1969] = 1585, + [1970] = 1592, + [1971] = 1926, + [1972] = 1668, + [1973] = 1761, + [1974] = 1670, + [1975] = 1522, + [1976] = 656, + [1977] = 1653, + [1978] = 1553, + [1979] = 1948, + [1980] = 1559, + [1981] = 1571, + [1982] = 1949, + [1983] = 1507, + [1984] = 1508, + [1985] = 1576, + [1986] = 1518, + [1987] = 1577, + [1988] = 1525, + [1989] = 1527, + [1990] = 1530, + [1991] = 1961, + [1992] = 1534, + [1993] = 1822, + [1994] = 1538, + [1995] = 1541, + [1996] = 1542, + [1997] = 1543, + [1998] = 1544, + [1999] = 1547, + [2000] = 1548, + [2001] = 1551, + [2002] = 1557, + [2003] = 1558, + [2004] = 1546, + [2005] = 1560, + [2006] = 1561, + [2007] = 1579, + [2008] = 1591, + [2009] = 1572, + [2010] = 1573, + [2011] = 1574, + [2012] = 1575, + [2013] = 1454, + [2014] = 1580, + [2015] = 1581, + [2016] = 1582, [2017] = 2017, [2018] = 2018, - [2019] = 2019, - [2020] = 1631, - [2021] = 2021, - [2022] = 1577, - [2023] = 1647, - [2024] = 1739, - [2025] = 1915, - [2026] = 1854, - [2027] = 1895, - [2028] = 1548, - [2029] = 1578, - [2030] = 1581, - [2031] = 1591, - [2032] = 1895, - [2033] = 1548, - [2034] = 1578, - [2035] = 1895, - [2036] = 1631, - [2037] = 1647, - [2038] = 1709, - [2039] = 1594, - [2040] = 1577, - [2041] = 1580, - [2042] = 1647, - [2043] = 1581, - [2044] = 2006, + [2019] = 1484, + [2020] = 1761, + [2021] = 1603, + [2022] = 1583, + [2023] = 2017, + [2024] = 1584, + [2025] = 1586, + [2026] = 2026, + [2027] = 1587, + [2028] = 2028, + [2029] = 1588, + [2030] = 1590, + [2031] = 212, + [2032] = 1594, + [2033] = 1595, + [2034] = 1597, + [2035] = 1554, + [2036] = 1926, + [2037] = 658, + [2038] = 1697, + [2039] = 1926, + [2040] = 1479, + [2041] = 1488, + [2042] = 1490, + [2043] = 1502, + [2044] = 2044, [2045] = 2045, - [2046] = 2009, - [2047] = 1599, - [2048] = 1600, - [2049] = 1607, - [2050] = 1751, - [2051] = 1485, - [2052] = 1576, - [2053] = 1582, - [2054] = 1605, - [2055] = 1611, - [2056] = 1537, - [2057] = 1456, - [2058] = 1457, - [2059] = 1460, - [2060] = 1461, - [2061] = 1462, - [2062] = 1463, - [2063] = 1895, - [2064] = 1584, - [2065] = 1585, - [2066] = 1602, - [2067] = 1604, - [2068] = 2068, - [2069] = 2069, - [2070] = 1471, - [2071] = 1474, - [2072] = 1479, - [2073] = 1484, - [2074] = 1498, - [2075] = 2045, - [2076] = 1590, + [2046] = 1601, + [2047] = 1805, + [2048] = 2048, + [2049] = 1602, + [2050] = 2050, + [2051] = 1507, + [2052] = 1508, + [2053] = 1518, + [2054] = 1525, + [2055] = 1527, + [2056] = 1530, + [2057] = 1534, + [2058] = 1538, + [2059] = 1541, + [2060] = 1542, + [2061] = 1543, + [2062] = 1544, + [2063] = 1547, + [2064] = 1548, + [2065] = 1551, + [2066] = 1557, + [2067] = 1558, + [2068] = 1560, + [2069] = 1561, + [2070] = 1572, + [2071] = 1573, + [2072] = 1574, + [2073] = 1575, + [2074] = 1454, + [2075] = 1578, + [2076] = 1604, [2077] = 2077, - [2078] = 2078, + [2078] = 1605, [2079] = 2079, - [2080] = 1579, - [2081] = 1588, - [2082] = 1592, - [2083] = 1593, - [2084] = 2084, - [2085] = 1810, - [2086] = 2086, + [2080] = 2080, + [2081] = 1593, + [2082] = 1479, + [2083] = 1488, + [2084] = 1490, + [2085] = 1502, + [2086] = 1606, [2087] = 2087, - [2088] = 2088, - [2089] = 1591, - [2090] = 1681, - [2091] = 1599, - [2092] = 1600, - [2093] = 1607, - [2094] = 1485, - [2095] = 1576, - [2096] = 1582, - [2097] = 1605, - [2098] = 1611, - [2099] = 1537, - [2100] = 1456, - [2101] = 1457, - [2102] = 1460, - [2103] = 1461, - [2104] = 1462, - [2105] = 1463, - [2106] = 1584, - [2107] = 1585, - [2108] = 1602, - [2109] = 1604, + [2088] = 1607, + [2089] = 1608, + [2090] = 1609, + [2091] = 1610, + [2092] = 1611, + [2093] = 1612, + [2094] = 1455, + [2095] = 1456, + [2096] = 1457, + [2097] = 1458, + [2098] = 1459, + [2099] = 1460, + [2100] = 1461, + [2101] = 1462, + [2102] = 1463, + [2103] = 1464, + [2104] = 1465, + [2105] = 1598, + [2106] = 652, + [2107] = 1613, + [2108] = 1469, + [2109] = 1470, [2110] = 1471, - [2111] = 1474, - [2112] = 1479, - [2113] = 1484, - [2114] = 1498, - [2115] = 1590, - [2116] = 1579, - [2117] = 1588, - [2118] = 1592, - [2119] = 1593, - [2120] = 2120, - [2121] = 2121, - [2122] = 211, - [2123] = 1631, - [2124] = 2124, - [2125] = 1728, - [2126] = 1730, - [2127] = 1733, - [2128] = 1734, - [2129] = 1764, + [2111] = 1472, + [2112] = 1473, + [2113] = 1474, + [2114] = 1649, + [2115] = 1475, + [2116] = 1476, + [2117] = 1477, + [2118] = 1478, + [2119] = 1480, + [2120] = 1481, + [2121] = 1482, + [2122] = 1483, + [2123] = 1578, + [2124] = 1734, + [2125] = 2125, + [2126] = 2126, + [2127] = 1934, + [2128] = 1683, + [2129] = 1805, [2130] = 2130, - [2131] = 216, - [2132] = 247, - [2133] = 229, + [2131] = 1625, + [2132] = 1689, + [2133] = 1757, [2134] = 2134, - [2135] = 2135, + [2135] = 233, [2136] = 2136, - [2137] = 244, + [2137] = 2137, [2138] = 2138, - [2139] = 216, - [2140] = 247, - [2141] = 1854, - [2142] = 226, + [2139] = 230, + [2140] = 2140, + [2141] = 1744, + [2142] = 1745, [2143] = 2143, [2144] = 2144, - [2145] = 2145, + [2145] = 1753, [2146] = 2146, - [2147] = 1577, - [2148] = 1580, - [2149] = 1647, - [2150] = 237, - [2151] = 246, - [2152] = 1629, - [2153] = 234, - [2154] = 239, - [2155] = 219, - [2156] = 230, - [2157] = 242, - [2158] = 243, - [2159] = 2159, - [2160] = 2160, - [2161] = 1732, - [2162] = 2135, - [2163] = 2136, - [2164] = 2164, - [2165] = 1906, - [2166] = 1810, - [2167] = 1781, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 1720, - [2172] = 226, - [2173] = 1765, - [2174] = 2174, - [2175] = 1617, - [2176] = 1619, - [2177] = 1635, - [2178] = 1639, - [2179] = 1667, - [2180] = 1743, - [2181] = 1744, - [2182] = 1633, - [2183] = 1636, - [2184] = 1681, - [2185] = 1739, - [2186] = 1751, - [2187] = 2135, - [2188] = 2188, - [2189] = 2136, - [2190] = 1637, - [2191] = 1640, - [2192] = 1644, - [2193] = 1631, - [2194] = 1649, - [2195] = 1707, - [2196] = 1647, - [2197] = 1725, - [2198] = 2198, - [2199] = 2135, - [2200] = 2136, - [2201] = 2201, + [2147] = 1754, + [2148] = 1756, + [2149] = 1641, + [2150] = 1649, + [2151] = 1653, + [2152] = 1697, + [2153] = 2153, + [2154] = 2154, + [2155] = 1668, + [2156] = 1761, + [2157] = 2157, + [2158] = 1708, + [2159] = 1614, + [2160] = 1711, + [2161] = 1712, + [2162] = 2153, + [2163] = 1934, + [2164] = 2154, + [2165] = 2165, + [2166] = 2166, + [2167] = 1714, + [2168] = 1769, + [2169] = 1718, + [2170] = 2153, + [2171] = 2171, + [2172] = 2154, + [2173] = 1585, + [2174] = 1592, + [2175] = 2153, + [2176] = 1585, + [2177] = 1592, + [2178] = 2165, + [2179] = 2166, + [2180] = 2165, + [2181] = 2166, + [2182] = 2182, + [2183] = 2154, + [2184] = 2165, + [2185] = 2166, + [2186] = 2165, + [2187] = 2166, + [2188] = 1721, + [2189] = 1724, + [2190] = 1725, + [2191] = 1726, + [2192] = 1729, + [2193] = 1730, + [2194] = 1731, + [2195] = 2195, + [2196] = 219, + [2197] = 235, + [2198] = 1684, + [2199] = 2199, + [2200] = 237, + [2201] = 216, [2202] = 2202, - [2203] = 2135, - [2204] = 2136, - [2205] = 1548, - [2206] = 1578, - [2207] = 1548, - [2208] = 1578, - [2209] = 2201, - [2210] = 2202, - [2211] = 2201, - [2212] = 2202, - [2213] = 2201, - [2214] = 2202, - [2215] = 2201, - [2216] = 2202, - [2217] = 1772, - [2218] = 2218, - [2219] = 237, - [2220] = 1749, - [2221] = 1651, - [2222] = 1652, - [2223] = 1654, - [2224] = 2224, - [2225] = 1660, - [2226] = 1662, - [2227] = 1778, - [2228] = 246, - [2229] = 2124, - [2230] = 2135, - [2231] = 229, - [2232] = 1783, - [2233] = 1784, - [2234] = 2234, - [2235] = 2198, - [2236] = 1788, - [2237] = 1613, - [2238] = 1650, - [2239] = 2174, - [2240] = 1906, - [2241] = 1759, - [2242] = 1699, - [2243] = 1618, - [2244] = 2136, - [2245] = 1680, - [2246] = 1663, - [2247] = 1664, - [2248] = 1665, - [2249] = 1666, - [2250] = 1705, + [2203] = 2203, + [2204] = 2204, + [2205] = 1771, + [2206] = 240, + [2207] = 2207, + [2208] = 1728, + [2209] = 1776, + [2210] = 2210, + [2211] = 2211, + [2212] = 2199, + [2213] = 1732, + [2214] = 2214, + [2215] = 1782, + [2216] = 241, + [2217] = 1700, + [2218] = 242, + [2219] = 1774, + [2220] = 1775, + [2221] = 1781, + [2222] = 1626, + [2223] = 1784, + [2224] = 1723, + [2225] = 2134, + [2226] = 2203, + [2227] = 1646, + [2228] = 1758, + [2229] = 1763, + [2230] = 1715, + [2231] = 2231, + [2232] = 1682, + [2233] = 1713, + [2234] = 1634, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2153, + [2243] = 2154, + [2244] = 2244, + [2245] = 2245, + [2246] = 1671, + [2247] = 229, + [2248] = 2248, + [2249] = 234, + [2250] = 2250, [2251] = 2251, - [2252] = 2252, - [2253] = 2253, + [2252] = 2136, + [2253] = 2240, [2254] = 2254, [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 234, - [2259] = 239, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, - [2263] = 1615, - [2264] = 219, - [2265] = 230, - [2266] = 2234, - [2267] = 1672, + [2256] = 2157, + [2257] = 1767, + [2258] = 2203, + [2259] = 1638, + [2260] = 1676, + [2261] = 223, + [2262] = 1685, + [2263] = 1687, + [2264] = 2153, + [2265] = 2154, + [2266] = 1639, + [2267] = 240, [2268] = 2268, - [2269] = 1673, - [2270] = 2159, - [2271] = 1675, - [2272] = 1676, - [2273] = 2254, - [2274] = 1627, - [2275] = 2275, - [2276] = 2276, - [2277] = 1594, - [2278] = 2278, - [2279] = 1696, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 1686, - [2284] = 2284, - [2285] = 2124, - [2286] = 2286, - [2287] = 2135, - [2288] = 2136, - [2289] = 1698, - [2290] = 1745, - [2291] = 2124, - [2292] = 244, - [2293] = 2293, - [2294] = 242, - [2295] = 2295, - [2296] = 243, - [2297] = 2297, - [2298] = 1687, - [2299] = 1688, - [2300] = 1689, - [2301] = 1690, - [2302] = 1695, - [2303] = 1692, - [2304] = 2304, - [2305] = 2305, - [2306] = 2275, + [2269] = 2269, + [2270] = 1631, + [2271] = 1668, + [2272] = 2272, + [2273] = 1701, + [2274] = 1647, + [2275] = 1619, + [2276] = 1623, + [2277] = 1628, + [2278] = 2203, + [2279] = 1507, + [2280] = 1508, + [2281] = 1518, + [2282] = 1525, + [2283] = 1527, + [2284] = 1530, + [2285] = 1534, + [2286] = 1538, + [2287] = 1541, + [2288] = 1542, + [2289] = 1543, + [2290] = 1544, + [2291] = 1547, + [2292] = 1548, + [2293] = 1551, + [2294] = 1557, + [2295] = 1558, + [2296] = 1560, + [2297] = 1561, + [2298] = 1572, + [2299] = 1573, + [2300] = 1574, + [2301] = 1575, + [2302] = 1454, + [2303] = 1578, + [2304] = 229, + [2305] = 1479, + [2306] = 1488, [2307] = 2307, - [2308] = 2124, - [2309] = 1599, - [2310] = 1600, - [2311] = 1607, - [2312] = 1485, - [2313] = 1576, - [2314] = 1582, - [2315] = 1605, - [2316] = 1611, - [2317] = 1537, - [2318] = 1456, - [2319] = 1457, - [2320] = 1460, - [2321] = 1461, - [2322] = 1462, - [2323] = 1463, - [2324] = 1584, - [2325] = 1585, - [2326] = 1602, - [2327] = 1604, - [2328] = 1471, - [2329] = 1474, - [2330] = 1479, - [2331] = 1484, - [2332] = 1498, - [2333] = 1590, - [2334] = 2334, - [2335] = 1579, - [2336] = 1588, - [2337] = 1592, - [2338] = 1593, - [2339] = 2339, - [2340] = 2124, - [2341] = 2341, - [2342] = 2342, - [2343] = 2343, - [2344] = 2124, - [2345] = 1767, - [2346] = 2124, - [2347] = 1768, - [2348] = 1693, - [2349] = 2349, - [2350] = 2350, - [2351] = 1703, - [2352] = 1704, - [2353] = 1810, - [2354] = 1810, - [2355] = 2124, - [2356] = 2276, - [2357] = 1599, - [2358] = 1600, - [2359] = 1607, - [2360] = 1485, - [2361] = 1576, - [2362] = 1582, - [2363] = 1605, - [2364] = 1611, - [2365] = 1537, - [2366] = 1456, - [2367] = 1457, - [2368] = 1460, - [2369] = 1461, - [2370] = 1462, - [2371] = 1463, - [2372] = 1584, - [2373] = 1585, - [2374] = 1602, - [2375] = 1604, - [2376] = 1471, - [2377] = 1474, - [2378] = 1479, - [2379] = 1484, - [2380] = 1498, - [2381] = 1590, - [2382] = 1579, - [2383] = 1588, - [2384] = 1592, - [2385] = 1593, - [2386] = 1594, - [2387] = 2387, - [2388] = 2388, - [2389] = 1590, + [2308] = 1490, + [2309] = 1502, + [2310] = 1650, + [2311] = 2311, + [2312] = 2312, + [2313] = 2203, + [2314] = 2254, + [2315] = 1553, + [2316] = 2316, + [2317] = 2317, + [2318] = 2203, + [2319] = 2319, + [2320] = 2320, + [2321] = 234, + [2322] = 2203, + [2323] = 2323, + [2324] = 2324, + [2325] = 1822, + [2326] = 221, + [2327] = 2327, + [2328] = 1591, + [2329] = 2255, + [2330] = 1596, + [2331] = 1761, + [2332] = 223, + [2333] = 233, + [2334] = 1805, + [2335] = 230, + [2336] = 219, + [2337] = 235, + [2338] = 1648, + [2339] = 1677, + [2340] = 237, + [2341] = 216, + [2342] = 1633, + [2343] = 241, + [2344] = 1805, + [2345] = 2203, + [2346] = 1507, + [2347] = 1508, + [2348] = 1518, + [2349] = 1525, + [2350] = 1527, + [2351] = 1530, + [2352] = 1534, + [2353] = 1538, + [2354] = 1541, + [2355] = 1542, + [2356] = 1543, + [2357] = 1544, + [2358] = 1547, + [2359] = 1548, + [2360] = 1551, + [2361] = 1557, + [2362] = 1558, + [2363] = 1560, + [2364] = 1561, + [2365] = 1572, + [2366] = 1573, + [2367] = 1574, + [2368] = 1575, + [2369] = 1454, + [2370] = 1578, + [2371] = 2371, + [2372] = 242, + [2373] = 1479, + [2374] = 1488, + [2375] = 1490, + [2376] = 1502, + [2377] = 1553, + [2378] = 1678, + [2379] = 1679, + [2380] = 2380, + [2381] = 2203, + [2382] = 1645, + [2383] = 1704, + [2384] = 1630, + [2385] = 221, + [2386] = 2153, + [2387] = 2154, + [2388] = 1785, + [2389] = 2389, [2390] = 2390, [2391] = 2391, - [2392] = 2392, - [2393] = 1591, - [2394] = 2394, - [2395] = 1631, - [2396] = 2396, - [2397] = 1647, - [2398] = 1709, + [2392] = 1653, + [2393] = 2393, + [2394] = 2390, + [2395] = 2395, + [2396] = 2390, + [2397] = 2397, + [2398] = 1585, [2399] = 2399, [2400] = 2400, - [2401] = 2400, - [2402] = 2402, - [2403] = 2403, - [2404] = 1906, - [2405] = 2405, - [2406] = 1594, - [2407] = 1739, - [2408] = 2396, - [2409] = 2409, - [2410] = 2410, - [2411] = 2400, - [2412] = 1709, - [2413] = 1810, - [2414] = 1548, - [2415] = 1578, - [2416] = 2416, + [2401] = 1592, + [2402] = 1670, + [2403] = 1805, + [2404] = 2390, + [2405] = 1479, + [2406] = 1488, + [2407] = 1490, + [2408] = 1502, + [2409] = 1591, + [2410] = 1596, + [2411] = 2411, + [2412] = 2412, + [2413] = 2390, + [2414] = 1934, + [2415] = 2411, + [2416] = 1593, [2417] = 2417, - [2418] = 1812, - [2419] = 1577, - [2420] = 1580, + [2418] = 2418, + [2419] = 2419, + [2420] = 2390, [2421] = 2421, - [2422] = 1581, - [2423] = 2390, - [2424] = 1579, - [2425] = 1588, - [2426] = 2400, - [2427] = 1592, - [2428] = 1593, - [2429] = 2429, - [2430] = 2430, - [2431] = 2431, - [2432] = 2402, - [2433] = 2433, - [2434] = 2434, - [2435] = 2435, - [2436] = 2400, - [2437] = 2400, - [2438] = 1599, - [2439] = 1600, - [2440] = 2440, - [2441] = 2441, - [2442] = 1607, - [2443] = 1485, - [2444] = 2400, - [2445] = 1576, - [2446] = 1582, - [2447] = 1605, - [2448] = 1611, - [2449] = 1537, - [2450] = 1456, - [2451] = 1457, - [2452] = 1460, - [2453] = 2391, - [2454] = 1461, - [2455] = 1462, - [2456] = 1463, - [2457] = 1584, - [2458] = 1585, - [2459] = 1602, - [2460] = 1604, - [2461] = 2409, - [2462] = 2462, - [2463] = 1471, - [2464] = 1474, - [2465] = 1479, - [2466] = 1484, - [2467] = 1498, - [2468] = 1810, - [2469] = 1810, + [2422] = 1670, + [2423] = 2423, + [2424] = 2424, + [2425] = 1668, + [2426] = 2426, + [2427] = 1761, + [2428] = 1603, + [2429] = 1507, + [2430] = 1508, + [2431] = 1518, + [2432] = 1525, + [2433] = 1527, + [2434] = 1530, + [2435] = 1534, + [2436] = 2436, + [2437] = 1538, + [2438] = 1541, + [2439] = 1542, + [2440] = 1543, + [2441] = 1544, + [2442] = 1547, + [2443] = 1548, + [2444] = 1551, + [2445] = 1557, + [2446] = 1558, + [2447] = 1560, + [2448] = 1561, + [2449] = 2400, + [2450] = 1572, + [2451] = 1573, + [2452] = 1574, + [2453] = 1575, + [2454] = 1454, + [2455] = 2455, + [2456] = 2426, + [2457] = 1578, + [2458] = 2421, + [2459] = 2455, + [2460] = 2460, + [2461] = 2461, + [2462] = 1795, + [2463] = 2463, + [2464] = 2390, + [2465] = 2465, + [2466] = 2466, + [2467] = 1805, + [2468] = 1805, + [2469] = 1553, [2470] = 2470, [2471] = 2471, [2472] = 2472, [2473] = 2473, - [2474] = 2474, - [2475] = 1631, - [2476] = 1647, - [2477] = 1821, - [2478] = 2478, + [2474] = 1805, + [2475] = 1649, + [2476] = 1653, + [2477] = 2477, + [2478] = 1697, [2479] = 2479, [2480] = 2480, [2481] = 2481, - [2482] = 1810, + [2482] = 2482, [2483] = 2483, - [2484] = 2484, - [2485] = 2485, - [2486] = 2486, - [2487] = 2487, - [2488] = 2488, + [2484] = 913, + [2485] = 1668, + [2486] = 1670, + [2487] = 911, + [2488] = 1603, [2489] = 2489, [2490] = 2490, - [2491] = 1709, - [2492] = 1594, - [2493] = 2493, - [2494] = 1681, - [2495] = 1739, - [2496] = 1751, + [2491] = 2491, + [2492] = 2492, + [2493] = 1593, + [2494] = 2494, + [2495] = 2495, + [2496] = 1553, [2497] = 2497, - [2498] = 912, - [2499] = 1709, - [2500] = 913, - [2501] = 1581, - [2502] = 911, - [2503] = 1591, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 1761, + [2503] = 2503, [2504] = 2504, [2505] = 2505, - [2506] = 2506, + [2506] = 1670, [2507] = 2507, [2508] = 2508, - [2509] = 2509, - [2510] = 1594, + [2509] = 1553, + [2510] = 1794, [2511] = 2511, - [2512] = 2512, - [2513] = 2513, - [2514] = 2514, + [2512] = 912, + [2513] = 2166, + [2514] = 2165, [2515] = 2515, - [2516] = 2516, - [2517] = 2201, - [2518] = 2202, - [2519] = 2519, - [2520] = 2201, - [2521] = 1906, + [2516] = 2166, + [2517] = 2517, + [2518] = 1649, + [2519] = 1447, + [2520] = 1934, + [2521] = 1653, [2522] = 2522, - [2523] = 2202, + [2523] = 2523, [2524] = 2524, [2525] = 2525, [2526] = 2526, [2527] = 2527, - [2528] = 2528, - [2529] = 2529, - [2530] = 2201, - [2531] = 2202, - [2532] = 2532, - [2533] = 2201, + [2528] = 2165, + [2529] = 2165, + [2530] = 2530, + [2531] = 2166, + [2532] = 1697, + [2533] = 2166, [2534] = 2534, - [2535] = 2202, + [2535] = 2307, [2536] = 2536, - [2537] = 2201, - [2538] = 2538, - [2539] = 2202, - [2540] = 1681, - [2541] = 1739, - [2542] = 1751, + [2537] = 2165, + [2538] = 2166, + [2539] = 2539, + [2540] = 2540, + [2541] = 2166, + [2542] = 2542, [2543] = 2543, [2544] = 2544, - [2545] = 2201, - [2546] = 2202, - [2547] = 2201, - [2548] = 2202, - [2549] = 2278, - [2550] = 1594, - [2551] = 1594, - [2552] = 2552, - [2553] = 1443, + [2545] = 2545, + [2546] = 1553, + [2547] = 2165, + [2548] = 1553, + [2549] = 2165, + [2550] = 2550, + [2551] = 2551, + [2552] = 2165, + [2553] = 2166, [2554] = 2554, - [2555] = 2555, + [2555] = 243, [2556] = 2556, - [2557] = 2557, + [2557] = 226, [2558] = 2558, [2559] = 2559, - [2560] = 2560, - [2561] = 2555, - [2562] = 2555, + [2560] = 239, + [2561] = 2561, + [2562] = 2562, [2563] = 2563, [2564] = 2564, [2565] = 2565, - [2566] = 2555, + [2566] = 2566, [2567] = 2567, - [2568] = 235, + [2568] = 2568, [2569] = 2569, [2570] = 2570, [2571] = 2571, @@ -7217,149 +7231,149 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2573] = 2573, [2574] = 2574, [2575] = 2575, - [2576] = 2576, + [2576] = 2570, [2577] = 2577, [2578] = 2578, - [2579] = 2555, - [2580] = 222, + [2579] = 2579, + [2580] = 2570, [2581] = 2581, - [2582] = 2582, + [2582] = 2570, [2583] = 2583, [2584] = 2584, [2585] = 2585, - [2586] = 2555, + [2586] = 2586, [2587] = 2587, [2588] = 2588, [2589] = 2589, - [2590] = 2590, - [2591] = 2591, + [2590] = 1231, + [2591] = 243, [2592] = 2592, [2593] = 2593, - [2594] = 231, - [2595] = 1170, + [2594] = 2594, + [2595] = 2595, [2596] = 2596, [2597] = 2597, - [2598] = 232, - [2599] = 2599, + [2598] = 226, + [2599] = 2570, [2600] = 2600, - [2601] = 2555, + [2601] = 1183, [2602] = 2602, [2603] = 2603, - [2604] = 2604, + [2604] = 2570, [2605] = 2605, [2606] = 2606, - [2607] = 2555, - [2608] = 222, + [2607] = 2570, + [2608] = 2570, [2609] = 2609, [2610] = 2610, - [2611] = 2555, - [2612] = 2612, + [2611] = 2611, + [2612] = 218, [2613] = 2613, - [2614] = 232, + [2614] = 2614, [2615] = 2615, [2616] = 2616, - [2617] = 2617, - [2618] = 2480, - [2619] = 2619, + [2617] = 2570, + [2618] = 2618, + [2619] = 2503, [2620] = 2620, - [2621] = 231, + [2621] = 218, [2622] = 2622, [2623] = 2623, [2624] = 2624, - [2625] = 2479, + [2625] = 2625, [2626] = 2626, - [2627] = 235, - [2628] = 1221, - [2629] = 2629, - [2630] = 2286, - [2631] = 2268, + [2627] = 239, + [2628] = 2628, + [2629] = 2500, + [2630] = 2630, + [2631] = 2171, [2632] = 2632, [2633] = 2633, [2634] = 2634, - [2635] = 2130, + [2635] = 2138, [2636] = 2636, [2637] = 2637, [2638] = 2638, - [2639] = 2639, - [2640] = 2224, + [2639] = 2202, + [2640] = 2244, [2641] = 2641, - [2642] = 2390, - [2643] = 2388, - [2644] = 2435, - [2645] = 2388, - [2646] = 2410, - [2647] = 2647, - [2648] = 2440, - [2649] = 2647, - [2650] = 2650, - [2651] = 2650, - [2652] = 2390, - [2653] = 2391, - [2654] = 2431, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, + [2645] = 2463, + [2646] = 2646, + [2647] = 2397, + [2648] = 2455, + [2649] = 2471, + [2650] = 2419, + [2651] = 2465, + [2652] = 2426, + [2653] = 2400, + [2654] = 2470, [2655] = 2655, - [2656] = 2656, - [2657] = 2434, - [2658] = 2409, - [2659] = 2659, - [2660] = 2402, - [2661] = 2405, - [2662] = 2662, - [2663] = 2403, - [2664] = 2410, - [2665] = 2391, - [2666] = 2409, - [2667] = 2435, - [2668] = 2462, - [2669] = 2440, - [2670] = 2402, - [2671] = 1209, + [2656] = 2393, + [2657] = 2400, + [2658] = 2426, + [2659] = 2421, + [2660] = 2455, + [2661] = 2646, + [2662] = 2418, + [2663] = 2421, + [2664] = 2664, + [2665] = 2465, + [2666] = 2471, + [2667] = 2419, + [2668] = 2418, + [2669] = 2643, + [2670] = 2423, + [2671] = 1201, [2672] = 2672, [2673] = 2673, - [2674] = 2672, + [2674] = 2674, [2675] = 2675, [2676] = 2676, [2677] = 2677, [2678] = 2678, - [2679] = 2673, - [2680] = 2675, + [2679] = 2679, + [2680] = 2680, [2681] = 2681, [2682] = 2682, - [2683] = 2683, - [2684] = 2684, - [2685] = 2683, - [2686] = 2673, + [2683] = 2681, + [2684] = 2681, + [2685] = 2680, + [2686] = 2676, [2687] = 2687, - [2688] = 2682, - [2689] = 2675, - [2690] = 2690, - [2691] = 2673, - [2692] = 2678, - [2693] = 2690, - [2694] = 2694, - [2695] = 1243, - [2696] = 2441, - [2697] = 2697, + [2688] = 2678, + [2689] = 2680, + [2690] = 2679, + [2691] = 2680, + [2692] = 2692, + [2693] = 2692, + [2694] = 2673, + [2695] = 2695, + [2696] = 2696, + [2697] = 1244, [2698] = 2698, [2699] = 2699, [2700] = 2700, [2701] = 2701, - [2702] = 1238, - [2703] = 2703, - [2704] = 2704, + [2702] = 2702, + [2703] = 1233, + [2704] = 1228, [2705] = 2705, [2706] = 2706, [2707] = 2707, [2708] = 2708, - [2709] = 2709, - [2710] = 1227, + [2709] = 1203, + [2710] = 2710, [2711] = 2711, [2712] = 2712, [2713] = 2713, - [2714] = 1236, + [2714] = 1194, [2715] = 2715, [2716] = 2716, [2717] = 2717, - [2718] = 2718, + [2718] = 2391, [2719] = 2719, [2720] = 2720, [2721] = 2721, @@ -7377,20 +7391,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2733] = 2733, [2734] = 2734, [2735] = 2735, - [2736] = 2736, + [2736] = 2731, [2737] = 2737, [2738] = 2738, - [2739] = 2726, + [2739] = 2739, [2740] = 2740, [2741] = 2741, [2742] = 2742, - [2743] = 2743, + [2743] = 2726, [2744] = 2744, - [2745] = 2740, + [2745] = 2745, [2746] = 2746, - [2747] = 2747, + [2747] = 2739, [2748] = 2748, - [2749] = 2749, + [2749] = 2746, [2750] = 2750, [2751] = 2751, [2752] = 2752, @@ -7399,635 +7413,635 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2755] = 2755, [2756] = 2756, [2757] = 2757, - [2758] = 2743, - [2759] = 2720, + [2758] = 2758, + [2759] = 2759, [2760] = 2760, - [2761] = 2721, - [2762] = 2724, + [2761] = 2761, + [2762] = 2762, [2763] = 2763, [2764] = 2764, - [2765] = 2737, - [2766] = 2738, - [2767] = 2764, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, [2768] = 2768, - [2769] = 2741, + [2769] = 2752, [2770] = 2770, - [2771] = 2771, - [2772] = 2742, + [2771] = 2721, + [2772] = 2753, [2773] = 2773, - [2774] = 2774, - [2775] = 2775, + [2774] = 2742, + [2775] = 2765, [2776] = 2776, [2777] = 2777, - [2778] = 2763, - [2779] = 2779, - [2780] = 1434, - [2781] = 1429, - [2782] = 1430, - [2783] = 1555, - [2784] = 1570, - [2785] = 1527, - [2786] = 1528, - [2787] = 1529, - [2788] = 1530, - [2789] = 1531, - [2790] = 1532, - [2791] = 1533, - [2792] = 1534, - [2793] = 1535, - [2794] = 1536, - [2795] = 1612, - [2796] = 1538, - [2797] = 1571, - [2798] = 1539, - [2799] = 1565, - [2800] = 1572, - [2801] = 1573, - [2802] = 1566, - [2803] = 1549, - [2804] = 1550, - [2805] = 1551, - [2806] = 1552, - [2807] = 1554, - [2808] = 1567, - [2809] = 1568, - [2810] = 1556, - [2811] = 1557, - [2812] = 1558, - [2813] = 1559, - [2814] = 1569, - [2815] = 1564, - [2816] = 1540, - [2817] = 2817, - [2818] = 1444, + [2778] = 2770, + [2779] = 2773, + [2780] = 2744, + [2781] = 2781, + [2782] = 1431, + [2783] = 1432, + [2784] = 1433, + [2785] = 1481, + [2786] = 1494, + [2787] = 1505, + [2788] = 1495, + [2789] = 1496, + [2790] = 1504, + [2791] = 1497, + [2792] = 1498, + [2793] = 1515, + [2794] = 1516, + [2795] = 1517, + [2796] = 1519, + [2797] = 1521, + [2798] = 1523, + [2799] = 1524, + [2800] = 1613, + [2801] = 1469, + [2802] = 1470, + [2803] = 1471, + [2804] = 1472, + [2805] = 1473, + [2806] = 1474, + [2807] = 1475, + [2808] = 1476, + [2809] = 1477, + [2810] = 1478, + [2811] = 1480, + [2812] = 1482, + [2813] = 1499, + [2814] = 1526, + [2815] = 1528, + [2816] = 1501, + [2817] = 1503, + [2818] = 1520, [2819] = 2819, - [2820] = 2817, - [2821] = 1430, - [2822] = 1503, - [2823] = 1464, - [2824] = 1429, - [2825] = 1454, - [2826] = 1434, - [2827] = 1483, - [2828] = 223, - [2829] = 1458, - [2830] = 1486, - [2831] = 1505, - [2832] = 1507, - [2833] = 1452, - [2834] = 1512, - [2835] = 1514, - [2836] = 1515, - [2837] = 1516, - [2838] = 1519, - [2839] = 1520, - [2840] = 1521, - [2841] = 1522, - [2842] = 1431, - [2843] = 218, - [2844] = 1449, - [2845] = 1499, - [2846] = 1501, - [2847] = 1448, - [2848] = 1450, - [2849] = 1475, - [2850] = 1554, - [2851] = 1488, - [2852] = 1489, - [2853] = 1491, - [2854] = 1492, - [2855] = 1493, - [2856] = 1574, - [2857] = 1473, - [2858] = 2858, - [2859] = 1583, - [2860] = 1495, - [2861] = 1497, - [2862] = 1476, - [2863] = 1477, - [2864] = 1478, - [2865] = 1500, - [2866] = 1560, - [2867] = 1561, - [2868] = 1562, - [2869] = 1469, - [2870] = 1429, - [2871] = 1430, - [2872] = 1504, - [2873] = 1434, - [2874] = 1506, - [2875] = 1508, - [2876] = 1509, - [2877] = 1510, - [2878] = 1511, - [2879] = 1517, - [2880] = 1523, - [2881] = 1525, - [2882] = 2882, - [2883] = 2883, - [2884] = 2884, - [2885] = 2885, - [2886] = 2858, - [2887] = 1470, - [2888] = 2882, - [2889] = 2883, - [2890] = 2884, - [2891] = 2885, - [2892] = 2858, - [2893] = 1472, - [2894] = 2882, - [2895] = 2883, - [2896] = 2884, - [2897] = 1527, - [2898] = 1528, - [2899] = 1529, - [2900] = 1530, - [2901] = 1531, - [2902] = 1532, - [2903] = 1533, - [2904] = 2858, - [2905] = 1534, - [2906] = 1535, - [2907] = 1536, - [2908] = 1612, - [2909] = 1538, - [2910] = 1539, - [2911] = 2882, - [2912] = 2883, - [2913] = 2884, - [2914] = 2885, - [2915] = 1540, - [2916] = 2858, - [2917] = 2882, - [2918] = 2883, - [2919] = 2884, - [2920] = 2858, - [2921] = 1549, - [2922] = 2885, - [2923] = 1541, - [2924] = 1550, - [2925] = 1542, - [2926] = 1551, - [2927] = 1544, - [2928] = 1545, - [2929] = 1552, - [2930] = 1555, - [2931] = 1556, - [2932] = 1557, - [2933] = 1558, - [2934] = 1559, - [2935] = 1564, - [2936] = 1565, - [2937] = 1566, - [2938] = 1567, - [2939] = 1568, - [2940] = 1569, - [2941] = 1570, - [2942] = 1571, - [2943] = 1572, - [2944] = 1573, - [2945] = 2858, - [2946] = 2858, - [2947] = 1487, - [2948] = 2858, - [2949] = 1431, - [2950] = 2885, - [2951] = 2951, - [2952] = 2952, - [2953] = 1439, + [2820] = 245, + [2821] = 2819, + [2822] = 231, + [2823] = 2823, + [2824] = 1443, + [2825] = 1461, + [2826] = 1456, + [2827] = 1433, + [2828] = 1441, + [2829] = 1601, + [2830] = 1455, + [2831] = 1571, + [2832] = 1431, + [2833] = 1576, + [2834] = 1612, + [2835] = 1611, + [2836] = 1460, + [2837] = 1459, + [2838] = 1462, + [2839] = 1432, + [2840] = 1435, + [2841] = 1604, + [2842] = 1466, + [2843] = 1606, + [2844] = 1554, + [2845] = 1598, + [2846] = 1440, + [2847] = 1597, + [2848] = 1594, + [2849] = 1451, + [2850] = 1555, + [2851] = 1446, + [2852] = 1602, + [2853] = 1509, + [2854] = 1510, + [2855] = 1550, + [2856] = 1584, + [2857] = 1529, + [2858] = 1587, + [2859] = 1512, + [2860] = 1590, + [2861] = 1595, + [2862] = 1433, + [2863] = 1431, + [2864] = 1432, + [2865] = 1605, + [2866] = 1607, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 2870, + [2871] = 1608, + [2872] = 1609, + [2873] = 1610, + [2874] = 1457, + [2875] = 2875, + [2876] = 1463, + [2877] = 1465, + [2878] = 2875, + [2879] = 2867, + [2880] = 2868, + [2881] = 2869, + [2882] = 2870, + [2883] = 1539, + [2884] = 2875, + [2885] = 1540, + [2886] = 2868, + [2887] = 2869, + [2888] = 2870, + [2889] = 1545, + [2890] = 1546, + [2891] = 2875, + [2892] = 2867, + [2893] = 2868, + [2894] = 2869, + [2895] = 2870, + [2896] = 1556, + [2897] = 1565, + [2898] = 2875, + [2899] = 2875, + [2900] = 2875, + [2901] = 1435, + [2902] = 2867, + [2903] = 1566, + [2904] = 2868, + [2905] = 1577, + [2906] = 1613, + [2907] = 1579, + [2908] = 2869, + [2909] = 1469, + [2910] = 1470, + [2911] = 1471, + [2912] = 1472, + [2913] = 1473, + [2914] = 1474, + [2915] = 1580, + [2916] = 1475, + [2917] = 2870, + [2918] = 1582, + [2919] = 2875, + [2920] = 1483, + [2921] = 1484, + [2922] = 1476, + [2923] = 1583, + [2924] = 1477, + [2925] = 1489, + [2926] = 1491, + [2927] = 1478, + [2928] = 1480, + [2929] = 1481, + [2930] = 1482, + [2931] = 1494, + [2932] = 1495, + [2933] = 1496, + [2934] = 1497, + [2935] = 1498, + [2936] = 1499, + [2937] = 1501, + [2938] = 1503, + [2939] = 1504, + [2940] = 1505, + [2941] = 1515, + [2942] = 1516, + [2943] = 2875, + [2944] = 1517, + [2945] = 1519, + [2946] = 1520, + [2947] = 1521, + [2948] = 1523, + [2949] = 1524, + [2950] = 1526, + [2951] = 1528, + [2952] = 2867, + [2953] = 2953, [2954] = 2954, [2955] = 2955, [2956] = 2956, - [2957] = 2957, - [2958] = 2958, - [2959] = 1442, - [2960] = 2955, - [2961] = 2957, - [2962] = 2962, - [2963] = 2963, - [2964] = 2957, - [2965] = 2957, + [2957] = 1443, + [2958] = 1440, + [2959] = 2959, + [2960] = 2953, + [2961] = 2961, + [2962] = 2953, + [2963] = 2961, + [2964] = 2964, + [2965] = 2965, [2966] = 2966, - [2967] = 1444, - [2968] = 2955, + [2967] = 2967, + [2968] = 2968, [2969] = 2969, - [2970] = 2970, + [2970] = 1449, [2971] = 2971, - [2972] = 2957, - [2973] = 1450, + [2972] = 2953, + [2973] = 2961, [2974] = 2974, - [2975] = 2957, + [2975] = 2975, [2976] = 2976, [2977] = 2977, - [2978] = 2957, - [2979] = 2979, + [2978] = 2953, + [2979] = 2961, [2980] = 2980, [2981] = 2981, - [2982] = 2982, - [2983] = 2983, - [2984] = 2955, - [2985] = 2955, + [2982] = 2961, + [2983] = 2953, + [2984] = 2984, + [2985] = 2985, [2986] = 2986, - [2987] = 1438, + [2987] = 2987, [2988] = 2988, [2989] = 2989, [2990] = 2990, - [2991] = 2991, + [2991] = 2953, [2992] = 2992, - [2993] = 2993, - [2994] = 1503, - [2995] = 1524, - [2996] = 1452, + [2993] = 1436, + [2994] = 2994, + [2995] = 1450, + [2996] = 1496, [2997] = 2997, [2998] = 2998, - [2999] = 2999, - [3000] = 1586, - [3001] = 1587, - [3002] = 1483, - [3003] = 1527, - [3004] = 1528, - [3005] = 1486, - [3006] = 1529, - [3007] = 911, - [3008] = 1464, - [3009] = 1530, - [3010] = 1431, - [3011] = 3011, - [3012] = 1531, - [3013] = 1532, - [3014] = 1490, - [3015] = 1505, - [3016] = 1533, - [3017] = 1534, - [3018] = 1535, - [3019] = 1507, - [3020] = 1512, - [3021] = 1514, - [3022] = 1515, - [3023] = 1516, - [3024] = 1519, - [3025] = 1520, - [3026] = 1521, - [3027] = 1522, + [2999] = 1598, + [3000] = 1563, + [3001] = 1564, + [3002] = 1528, + [3003] = 1571, + [3004] = 1435, + [3005] = 1576, + [3006] = 1458, + [3007] = 912, + [3008] = 1505, + [3009] = 3009, + [3010] = 1515, + [3011] = 1516, + [3012] = 913, + [3013] = 1497, + [3014] = 1586, + [3015] = 1554, + [3016] = 3016, + [3017] = 1464, + [3018] = 911, + [3019] = 1531, + [3020] = 1601, + [3021] = 1604, + [3022] = 1498, + [3023] = 1606, + [3024] = 1517, + [3025] = 1519, + [3026] = 2997, + [3027] = 1499, [3028] = 3028, - [3029] = 1458, - [3030] = 3011, - [3031] = 2958, - [3032] = 1536, - [3033] = 1612, - [3034] = 3028, - [3035] = 1538, - [3036] = 1539, - [3037] = 3028, - [3038] = 1454, - [3039] = 1549, - [3040] = 1550, - [3041] = 1551, - [3042] = 3042, - [3043] = 1552, - [3044] = 3044, - [3045] = 3011, - [3046] = 1554, - [3047] = 1555, - [3048] = 1556, - [3049] = 1557, - [3050] = 1558, - [3051] = 1559, - [3052] = 1564, - [3053] = 1565, - [3054] = 1566, - [3055] = 1567, - [3056] = 1568, - [3057] = 1569, - [3058] = 1570, - [3059] = 1571, - [3060] = 1572, - [3061] = 1494, - [3062] = 1543, - [3063] = 1573, - [3064] = 1546, - [3065] = 3065, - [3066] = 1575, - [3067] = 3042, - [3068] = 3068, - [3069] = 3069, - [3070] = 3070, - [3071] = 1496, - [3072] = 3072, - [3073] = 3028, - [3074] = 3011, - [3075] = 912, - [3076] = 1518, - [3077] = 913, - [3078] = 3078, - [3079] = 1540, - [3080] = 3080, + [3029] = 3029, + [3030] = 1520, + [3031] = 1611, + [3032] = 1612, + [3033] = 1521, + [3034] = 1466, + [3035] = 1455, + [3036] = 1456, + [3037] = 2998, + [3038] = 3038, + [3039] = 3039, + [3040] = 1526, + [3041] = 1501, + [3042] = 1459, + [3043] = 1460, + [3044] = 1461, + [3045] = 3016, + [3046] = 1462, + [3047] = 1441, + [3048] = 1503, + [3049] = 3049, + [3050] = 1581, + [3051] = 2997, + [3052] = 2988, + [3053] = 1613, + [3054] = 1487, + [3055] = 1469, + [3056] = 1523, + [3057] = 3057, + [3058] = 1470, + [3059] = 1492, + [3060] = 1471, + [3061] = 1472, + [3062] = 2998, + [3063] = 3063, + [3064] = 1473, + [3065] = 1474, + [3066] = 1475, + [3067] = 1476, + [3068] = 1588, + [3069] = 1477, + [3070] = 2997, + [3071] = 1478, + [3072] = 1480, + [3073] = 1524, + [3074] = 3074, + [3075] = 2998, + [3076] = 1481, + [3077] = 1482, + [3078] = 1494, + [3079] = 1495, + [3080] = 1504, [3081] = 3081, [3082] = 3082, [3083] = 3083, - [3084] = 3084, - [3085] = 1429, - [3086] = 3084, - [3087] = 1430, + [3084] = 1451, + [3085] = 3085, + [3086] = 1594, + [3087] = 1597, [3088] = 3088, - [3089] = 1434, - [3090] = 3084, + [3089] = 3089, + [3090] = 3090, [3091] = 3091, - [3092] = 1444, + [3092] = 3092, [3093] = 3093, [3094] = 3094, [3095] = 3095, - [3096] = 3096, - [3097] = 3097, - [3098] = 1450, + [3096] = 1436, + [3097] = 1446, + [3098] = 3098, [3099] = 3099, - [3100] = 3100, - [3101] = 1448, - [3102] = 1499, + [3100] = 3099, + [3101] = 1449, + [3102] = 3102, [3103] = 3103, - [3104] = 1501, + [3104] = 3104, [3105] = 3105, [3106] = 3106, - [3107] = 1475, - [3108] = 3108, - [3109] = 3109, + [3107] = 3107, + [3108] = 3099, + [3109] = 231, [3110] = 3110, - [3111] = 3084, - [3112] = 3112, - [3113] = 3113, - [3114] = 218, + [3111] = 3111, + [3112] = 1450, + [3113] = 1555, + [3114] = 3114, [3115] = 3115, - [3116] = 3082, - [3117] = 3082, - [3118] = 223, + [3116] = 3116, + [3117] = 3117, + [3118] = 3118, [3119] = 3119, - [3120] = 1438, - [3121] = 3121, - [3122] = 3122, - [3123] = 3082, - [3124] = 3124, - [3125] = 1449, - [3126] = 3126, - [3127] = 3127, - [3128] = 3082, + [3120] = 3120, + [3121] = 3104, + [3122] = 245, + [3123] = 3123, + [3124] = 3104, + [3125] = 3125, + [3126] = 1433, + [3127] = 1431, + [3128] = 3128, [3129] = 3129, [3130] = 3130, - [3131] = 3131, + [3131] = 1432, [3132] = 3132, - [3133] = 3133, + [3133] = 3104, [3134] = 3134, [3135] = 3135, - [3136] = 3136, - [3137] = 1439, - [3138] = 1442, + [3136] = 3104, + [3137] = 3099, + [3138] = 1440, [3139] = 3139, [3140] = 3140, - [3141] = 1478, - [3142] = 1542, - [3143] = 1494, - [3144] = 1543, - [3145] = 1508, - [3146] = 1495, - [3147] = 1511, - [3148] = 1545, - [3149] = 1546, - [3150] = 1496, - [3151] = 1497, - [3152] = 3152, + [3141] = 1443, + [3142] = 3142, + [3143] = 1465, + [3144] = 1459, + [3145] = 1611, + [3146] = 1590, + [3147] = 1460, + [3148] = 1461, + [3149] = 1539, + [3150] = 1565, + [3151] = 1462, + [3152] = 1458, [3153] = 912, - [3154] = 1500, - [3155] = 1522, - [3156] = 653, - [3157] = 3157, - [3158] = 1515, - [3159] = 652, - [3160] = 1476, - [3161] = 1509, - [3162] = 1477, - [3163] = 1473, - [3164] = 1586, - [3165] = 1483, - [3166] = 1519, - [3167] = 1431, - [3168] = 1487, - [3169] = 1517, - [3170] = 1488, - [3171] = 1469, - [3172] = 655, - [3173] = 1470, - [3174] = 1518, - [3175] = 1560, - [3176] = 1561, - [3177] = 1562, - [3178] = 1512, - [3179] = 1516, - [3180] = 651, - [3181] = 1587, - [3182] = 3182, - [3183] = 1486, - [3184] = 1583, - [3185] = 1489, + [3154] = 1566, + [3155] = 1577, + [3156] = 1576, + [3157] = 1456, + [3158] = 1609, + [3159] = 1546, + [3160] = 1545, + [3161] = 1550, + [3162] = 3162, + [3163] = 1610, + [3164] = 1579, + [3165] = 1580, + [3166] = 656, + [3167] = 3167, + [3168] = 1564, + [3169] = 1483, + [3170] = 1484, + [3171] = 1463, + [3172] = 1487, + [3173] = 1489, + [3174] = 1491, + [3175] = 1492, + [3176] = 1464, + [3177] = 1581, + [3178] = 1612, + [3179] = 1455, + [3180] = 1595, + [3181] = 3181, + [3182] = 911, + [3183] = 3183, + [3184] = 1435, + [3185] = 1601, [3186] = 658, - [3187] = 1472, - [3188] = 1504, - [3189] = 1574, - [3190] = 1575, - [3191] = 1452, - [3192] = 1520, - [3193] = 911, - [3194] = 1514, - [3195] = 913, - [3196] = 1490, - [3197] = 3197, - [3198] = 1521, - [3199] = 1491, - [3200] = 1492, - [3201] = 1506, - [3202] = 1523, - [3203] = 1503, - [3204] = 1524, - [3205] = 1505, - [3206] = 1541, - [3207] = 1525, - [3208] = 1493, - [3209] = 1507, - [3210] = 1510, - [3211] = 1544, - [3212] = 3212, - [3213] = 3213, + [3187] = 1582, + [3188] = 1583, + [3189] = 1602, + [3190] = 1509, + [3191] = 1510, + [3192] = 1512, + [3193] = 654, + [3194] = 1584, + [3195] = 1540, + [3196] = 1605, + [3197] = 652, + [3198] = 1441, + [3199] = 1571, + [3200] = 1604, + [3201] = 1563, + [3202] = 1606, + [3203] = 1586, + [3204] = 1587, + [3205] = 1556, + [3206] = 1607, + [3207] = 1588, + [3208] = 1457, + [3209] = 913, + [3210] = 1529, + [3211] = 1531, + [3212] = 1608, + [3213] = 653, [3214] = 3214, [3215] = 3215, - [3216] = 1448, - [3217] = 3217, + [3216] = 3215, + [3217] = 3215, [3218] = 3218, - [3219] = 1450, - [3220] = 2958, - [3221] = 1499, - [3222] = 1501, - [3223] = 3223, - [3224] = 3224, - [3225] = 3214, - [3226] = 1431, - [3227] = 1442, - [3228] = 3218, + [3219] = 3219, + [3220] = 3220, + [3221] = 1446, + [3222] = 3219, + [3223] = 1555, + [3224] = 3220, + [3225] = 1449, + [3226] = 3226, + [3227] = 1450, + [3228] = 1440, [3229] = 3229, [3230] = 3230, - [3231] = 3214, + [3231] = 3231, [3232] = 3232, [3233] = 3233, - [3234] = 1439, - [3235] = 3235, - [3236] = 3235, + [3234] = 3219, + [3235] = 3220, + [3236] = 2988, [3237] = 3237, - [3238] = 3238, - [3239] = 3217, - [3240] = 3218, - [3241] = 1475, - [3242] = 3213, - [3243] = 3218, - [3244] = 3244, - [3245] = 1449, - [3246] = 3217, - [3247] = 1438, + [3238] = 1451, + [3239] = 1594, + [3240] = 3240, + [3241] = 1597, + [3242] = 3215, + [3243] = 1436, + [3244] = 3231, + [3245] = 3245, + [3246] = 3240, + [3247] = 3247, [3248] = 3248, - [3249] = 1470, + [3249] = 1435, [3250] = 3250, - [3251] = 3251, + [3251] = 1484, [3252] = 3252, [3253] = 3253, [3254] = 3254, [3255] = 3255, - [3256] = 3256, - [3257] = 3257, + [3256] = 1539, + [3257] = 1540, [3258] = 3258, [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 1472, - [3263] = 1473, - [3264] = 3264, - [3265] = 1560, - [3266] = 1561, - [3267] = 1562, - [3268] = 651, - [3269] = 3250, + [3260] = 1487, + [3261] = 3254, + [3262] = 3262, + [3263] = 3259, + [3264] = 3254, + [3265] = 1509, + [3266] = 3259, + [3267] = 3104, + [3268] = 1510, + [3269] = 1512, [3270] = 3270, - [3271] = 3251, - [3272] = 3252, - [3273] = 3253, - [3274] = 3254, - [3275] = 3255, - [3276] = 3256, - [3277] = 3257, - [3278] = 3259, - [3279] = 3260, - [3280] = 3261, - [3281] = 3281, - [3282] = 1476, - [3283] = 1477, - [3284] = 1478, - [3285] = 3238, - [3286] = 1574, - [3287] = 3257, - [3288] = 1575, - [3289] = 3261, - [3290] = 3290, - [3291] = 3251, - [3292] = 3260, + [3271] = 654, + [3272] = 1545, + [3273] = 3273, + [3274] = 3274, + [3275] = 3275, + [3276] = 1546, + [3277] = 3277, + [3278] = 3278, + [3279] = 3279, + [3280] = 1556, + [3281] = 1565, + [3282] = 1529, + [3283] = 1183, + [3284] = 1531, + [3285] = 1566, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, + [3289] = 3289, + [3290] = 3259, + [3291] = 3291, + [3292] = 1489, [3293] = 3293, - [3294] = 3082, + [3294] = 3294, [3295] = 3295, [3296] = 3296, [3297] = 3297, [3298] = 3298, - [3299] = 3257, - [3300] = 3252, - [3301] = 3261, - [3302] = 3253, - [3303] = 3303, - [3304] = 3254, - [3305] = 3257, - [3306] = 1493, - [3307] = 3307, - [3308] = 1500, - [3309] = 3255, - [3310] = 3310, - [3311] = 3311, - [3312] = 3312, - [3313] = 3258, - [3314] = 658, - [3315] = 218, + [3299] = 1491, + [3300] = 1584, + [3301] = 1595, + [3302] = 3302, + [3303] = 3259, + [3304] = 3252, + [3305] = 3305, + [3306] = 3306, + [3307] = 245, + [3308] = 3104, + [3309] = 3309, + [3310] = 3273, + [3311] = 231, + [3312] = 3253, + [3313] = 656, + [3314] = 3314, + [3315] = 3104, [3316] = 3316, - [3317] = 3082, - [3318] = 3318, - [3319] = 223, - [3320] = 3320, - [3321] = 1583, - [3322] = 1487, - [3323] = 1488, - [3324] = 3082, - [3325] = 1489, - [3326] = 3256, - [3327] = 1490, - [3328] = 1491, - [3329] = 1492, - [3330] = 1494, - [3331] = 3229, - [3332] = 1495, - [3333] = 1496, - [3334] = 1497, - [3335] = 1454, - [3336] = 3336, - [3337] = 3337, - [3338] = 3257, + [3317] = 1492, + [3318] = 3259, + [3319] = 3104, + [3320] = 3229, + [3321] = 3321, + [3322] = 3322, + [3323] = 3323, + [3324] = 3324, + [3325] = 1577, + [3326] = 3326, + [3327] = 1579, + [3328] = 3254, + [3329] = 1580, + [3330] = 1581, + [3331] = 1466, + [3332] = 1440, + [3333] = 3226, + [3334] = 3306, + [3335] = 1582, + [3336] = 1583, + [3337] = 1586, + [3338] = 1587, [3339] = 3339, [3340] = 3340, - [3341] = 655, + [3341] = 3341, [3342] = 3342, - [3343] = 1504, - [3344] = 3261, + [3343] = 653, + [3344] = 1588, [3345] = 3345, - [3346] = 1506, + [3346] = 1590, [3347] = 3347, [3348] = 3348, - [3349] = 3349, - [3350] = 3250, - [3351] = 1450, - [3352] = 1508, - [3353] = 3353, - [3354] = 1469, - [3355] = 3355, - [3356] = 1509, - [3357] = 1510, + [3349] = 3252, + [3350] = 3294, + [3351] = 3351, + [3352] = 3352, + [3353] = 3253, + [3354] = 3354, + [3355] = 3348, + [3356] = 3352, + [3357] = 3270, [3358] = 3358, - [3359] = 3359, - [3360] = 3360, - [3361] = 1511, - [3362] = 3250, - [3363] = 1517, - [3364] = 1586, + [3359] = 1554, + [3360] = 3352, + [3361] = 3361, + [3362] = 3273, + [3363] = 3363, + [3364] = 1550, [3365] = 3365, - [3366] = 1587, - [3367] = 3367, - [3368] = 3368, - [3369] = 1518, + [3366] = 3366, + [3367] = 3298, + [3368] = 3279, + [3369] = 3352, [3370] = 3370, [3371] = 3371, - [3372] = 3082, - [3373] = 3367, - [3374] = 3082, - [3375] = 3251, - [3376] = 3252, - [3377] = 3377, - [3378] = 3253, - [3379] = 3254, - [3380] = 3255, - [3381] = 3256, + [3372] = 3372, + [3373] = 3270, + [3374] = 3374, + [3375] = 3375, + [3376] = 3273, + [3377] = 3279, + [3378] = 3286, + [3379] = 3287, + [3380] = 3289, + [3381] = 3381, [3382] = 3382, [3383] = 3383, [3384] = 3384, - [3385] = 3347, - [3386] = 3386, + [3385] = 658, + [3386] = 3286, [3387] = 3387, [3388] = 3388, [3389] = 3389, @@ -8035,111 +8049,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3391] = 3391, [3392] = 3392, [3393] = 3393, - [3394] = 3257, - [3395] = 1523, + [3394] = 1602, + [3395] = 3259, [3396] = 3396, - [3397] = 3397, + [3397] = 3104, [3398] = 3398, - [3399] = 1524, - [3400] = 3258, - [3401] = 3293, - [3402] = 3355, - [3403] = 1525, - [3404] = 3404, - [3405] = 3259, - [3406] = 3260, - [3407] = 3261, - [3408] = 1458, - [3409] = 3365, - [3410] = 3410, - [3411] = 653, - [3412] = 3368, - [3413] = 3340, + [3399] = 1605, + [3400] = 3294, + [3401] = 3398, + [3402] = 3402, + [3403] = 3322, + [3404] = 1607, + [3405] = 1608, + [3406] = 3286, + [3407] = 3407, + [3408] = 3252, + [3409] = 3253, + [3410] = 3254, + [3411] = 3254, + [3412] = 3412, + [3413] = 3413, [3414] = 3414, - [3415] = 3244, - [3416] = 3082, - [3417] = 3417, - [3418] = 3418, - [3419] = 3419, - [3420] = 3082, - [3421] = 1541, - [3422] = 1170, - [3423] = 1542, - [3424] = 3424, - [3425] = 3425, - [3426] = 1543, - [3427] = 3427, - [3428] = 1544, - [3429] = 3429, - [3430] = 1545, - [3431] = 1546, - [3432] = 1464, - [3433] = 652, - [3434] = 3434, - [3435] = 3435, - [3436] = 3436, - [3437] = 3437, - [3438] = 3257, - [3439] = 3439, - [3440] = 3440, - [3441] = 3259, - [3442] = 3353, + [3415] = 3233, + [3416] = 1609, + [3417] = 1610, + [3418] = 3287, + [3419] = 1457, + [3420] = 3420, + [3421] = 1458, + [3422] = 3363, + [3423] = 3423, + [3424] = 3287, + [3425] = 1563, + [3426] = 1564, + [3427] = 1463, + [3428] = 1464, + [3429] = 1465, + [3430] = 3270, + [3431] = 1598, + [3432] = 3289, + [3433] = 3348, + [3434] = 652, + [3435] = 3289, + [3436] = 3384, + [3437] = 3104, + [3438] = 3438, + [3439] = 3414, + [3440] = 1483, + [3441] = 3441, + [3442] = 3442, [3443] = 3443, - [3444] = 3444, - [3445] = 3445, - [3446] = 3353, + [3444] = 3104, + [3445] = 3259, + [3446] = 3446, [3447] = 3447, - [3448] = 911, + [3448] = 3279, [3449] = 3449, [3450] = 3450, [3451] = 3451, - [3452] = 3452, + [3452] = 3449, [3453] = 3453, - [3454] = 3454, + [3454] = 3226, [3455] = 3455, [3456] = 3456, [3457] = 3457, - [3458] = 3458, - [3459] = 1438, - [3460] = 3460, - [3461] = 3461, - [3462] = 3449, - [3463] = 208, - [3464] = 3461, - [3465] = 3461, - [3466] = 3466, + [3458] = 3450, + [3459] = 3457, + [3460] = 3450, + [3461] = 3457, + [3462] = 3462, + [3463] = 3457, + [3464] = 228, + [3465] = 236, + [3466] = 3457, [3467] = 3450, - [3468] = 3461, + [3468] = 3450, [3469] = 3469, - [3470] = 3450, - [3471] = 3461, - [3472] = 3450, - [3473] = 3461, - [3474] = 3450, - [3475] = 3461, - [3476] = 3238, - [3477] = 912, - [3478] = 3478, - [3479] = 3461, - [3480] = 220, - [3481] = 207, - [3482] = 224, - [3483] = 3469, - [3484] = 913, + [3470] = 1436, + [3471] = 1449, + [3472] = 1450, + [3473] = 3473, + [3474] = 3474, + [3475] = 3475, + [3476] = 913, + [3477] = 3450, + [3478] = 3450, + [3479] = 911, + [3480] = 912, + [3481] = 3481, + [3482] = 210, + [3483] = 214, + [3484] = 3484, [3485] = 3485, [3486] = 3450, - [3487] = 1439, - [3488] = 1442, + [3487] = 3487, + [3488] = 3451, [3489] = 3489, [3490] = 3490, - [3491] = 3491, + [3491] = 3457, [3492] = 3492, [3493] = 3493, [3494] = 3494, - [3495] = 1575, - [3496] = 1458, + [3495] = 3495, + [3496] = 3496, [3497] = 3497, - [3498] = 3230, + [3498] = 3498, [3499] = 3499, [3500] = 3500, [3501] = 3501, @@ -8147,7 +8161,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3503] = 3503, [3504] = 3504, [3505] = 3505, - [3506] = 3303, + [3506] = 3506, [3507] = 3507, [3508] = 3508, [3509] = 3509, @@ -8155,7 +8169,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3511] = 3511, [3512] = 3512, [3513] = 3513, - [3514] = 3514, + [3514] = 3181, [3515] = 3515, [3516] = 3516, [3517] = 3517, @@ -8163,58 +8177,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3519] = 3519, [3520] = 3520, [3521] = 3521, - [3522] = 3522, + [3522] = 3351, [3523] = 3523, [3524] = 3524, - [3525] = 3525, + [3525] = 3515, [3526] = 3526, [3527] = 3527, - [3528] = 3528, + [3528] = 3507, [3529] = 3529, [3530] = 3530, - [3531] = 3345, + [3531] = 3531, [3532] = 3532, [3533] = 3533, [3534] = 3534, [3535] = 3535, - [3536] = 3536, + [3536] = 3230, [3537] = 3537, [3538] = 3538, [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3528, + [3542] = 3542, [3543] = 3543, [3544] = 3544, [3545] = 3545, - [3546] = 3500, - [3547] = 3505, + [3546] = 3546, + [3547] = 1554, [3548] = 3548, - [3549] = 220, - [3550] = 224, + [3549] = 3523, + [3550] = 3550, [3551] = 3551, [3552] = 3552, [3553] = 3553, [3554] = 3554, [3555] = 3555, [3556] = 3556, - [3557] = 3527, + [3557] = 3557, [3558] = 3558, [3559] = 3559, - [3560] = 3509, + [3560] = 3560, [3561] = 3561, - [3562] = 3521, - [3563] = 3563, + [3562] = 3562, + [3563] = 3423, [3564] = 3564, [3565] = 3565, [3566] = 3566, - [3567] = 3567, + [3567] = 228, [3568] = 3568, [3569] = 3569, - [3570] = 3570, + [3570] = 3526, [3571] = 3571, [3572] = 3572, - [3573] = 3573, + [3573] = 236, [3574] = 3574, [3575] = 3575, [3576] = 3576, @@ -8222,382 +8236,382 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3578] = 3578, [3579] = 3579, [3580] = 3580, - [3581] = 1454, - [3582] = 3582, + [3581] = 3581, + [3582] = 3568, [3583] = 3583, [3584] = 3584, - [3585] = 3585, + [3585] = 1449, [3586] = 3586, [3587] = 3587, [3588] = 3588, [3589] = 3589, - [3590] = 3590, - [3591] = 3591, + [3590] = 1450, + [3591] = 3530, [3592] = 3592, [3593] = 3593, [3594] = 3594, [3595] = 3595, - [3596] = 3197, - [3597] = 3597, - [3598] = 3598, + [3596] = 3596, + [3597] = 3534, + [3598] = 3278, [3599] = 3599, - [3600] = 3600, + [3600] = 3507, [3601] = 3601, [3602] = 3602, [3603] = 3603, [3604] = 3604, [3605] = 3605, - [3606] = 3515, + [3606] = 3606, [3607] = 3607, [3608] = 3608, - [3609] = 3609, - [3610] = 3610, + [3609] = 1598, + [3610] = 3588, [3611] = 3611, [3612] = 3612, [3613] = 3613, [3614] = 3614, [3615] = 3615, - [3616] = 3541, - [3617] = 3617, - [3618] = 1438, - [3619] = 3602, - [3620] = 3620, - [3621] = 3500, - [3622] = 3622, - [3623] = 3591, + [3616] = 3616, + [3617] = 3512, + [3618] = 1581, + [3619] = 1586, + [3620] = 1588, + [3621] = 3545, + [3622] = 3529, + [3623] = 1458, [3624] = 3624, - [3625] = 3522, + [3625] = 1464, [3626] = 3626, [3627] = 3627, [3628] = 3628, - [3629] = 3544, - [3630] = 3630, + [3629] = 1563, + [3630] = 1564, [3631] = 3631, - [3632] = 213, + [3632] = 3632, [3633] = 3633, - [3634] = 3508, + [3634] = 3634, [3635] = 3635, [3636] = 3636, - [3637] = 3509, - [3638] = 3638, - [3639] = 3624, - [3640] = 1490, - [3641] = 1494, - [3642] = 1496, + [3637] = 3637, + [3638] = 3438, + [3639] = 3639, + [3640] = 3531, + [3641] = 3641, + [3642] = 3642, [3643] = 3643, [3644] = 3644, - [3645] = 3316, - [3646] = 3646, - [3647] = 1464, - [3648] = 3648, - [3649] = 1439, + [3645] = 3645, + [3646] = 1487, + [3647] = 3647, + [3648] = 1436, + [3649] = 3649, [3650] = 3650, - [3651] = 3534, + [3651] = 1492, [3652] = 3652, [3653] = 3653, - [3654] = 1442, + [3654] = 3505, [3655] = 3655, [3656] = 3656, [3657] = 3657, [3658] = 3658, [3659] = 3659, - [3660] = 3371, + [3660] = 3650, [3661] = 3661, [3662] = 3662, [3663] = 3663, [3664] = 3664, [3665] = 3665, - [3666] = 3666, - [3667] = 3410, + [3666] = 1531, + [3667] = 3667, [3668] = 3668, [3669] = 3669, - [3670] = 3593, - [3671] = 3671, - [3672] = 3544, + [3670] = 3670, + [3671] = 3523, + [3672] = 3672, [3673] = 3673, - [3674] = 3674, + [3674] = 3295, [3675] = 3675, [3676] = 3676, [3677] = 3677, [3678] = 3678, - [3679] = 1518, + [3679] = 3679, [3680] = 3680, - [3681] = 3545, + [3681] = 3681, [3682] = 3682, [3683] = 3683, - [3684] = 1524, + [3684] = 3684, [3685] = 3685, [3686] = 3686, [3687] = 3687, - [3688] = 3688, + [3688] = 3553, [3689] = 3689, - [3690] = 3620, + [3690] = 3568, [3691] = 3691, [3692] = 3692, - [3693] = 3693, - [3694] = 3626, - [3695] = 3695, + [3693] = 3680, + [3694] = 3530, + [3695] = 1466, [3696] = 3696, - [3697] = 3697, - [3698] = 1586, - [3699] = 1587, + [3697] = 213, + [3698] = 3650, + [3699] = 3663, [3700] = 3700, [3701] = 3701, - [3702] = 3626, + [3702] = 3702, [3703] = 3703, [3704] = 3704, [3705] = 3705, [3706] = 3706, [3707] = 3707, [3708] = 3708, - [3709] = 3709, - [3710] = 3710, + [3709] = 3653, + [3710] = 3624, [3711] = 3711, [3712] = 3712, [3713] = 3713, [3714] = 3714, - [3715] = 1543, + [3715] = 3715, [3716] = 3716, - [3717] = 3620, - [3718] = 1546, + [3717] = 3717, + [3718] = 3718, [3719] = 3719, - [3720] = 3652, + [3720] = 3662, [3721] = 3721, [3722] = 3722, [3723] = 3723, - [3724] = 3724, + [3724] = 1700, [3725] = 3725, - [3726] = 3726, - [3727] = 1696, - [3728] = 658, + [3726] = 1633, + [3727] = 3727, + [3728] = 3728, [3729] = 3729, [3730] = 3730, - [3731] = 3729, - [3732] = 1636, - [3733] = 1637, - [3734] = 1640, - [3735] = 1644, + [3731] = 3731, + [3732] = 3635, + [3733] = 3733, + [3734] = 3734, + [3735] = 3735, [3736] = 3736, [3737] = 3737, - [3738] = 3724, - [3739] = 3729, - [3740] = 3565, + [3738] = 3738, + [3739] = 656, + [3740] = 3740, [3741] = 3741, - [3742] = 3741, - [3743] = 3535, - [3744] = 1649, - [3745] = 3745, - [3746] = 3741, - [3747] = 1518, - [3748] = 1524, + [3742] = 3229, + [3743] = 3574, + [3744] = 3744, + [3745] = 3735, + [3746] = 3746, + [3747] = 3747, + [3748] = 3748, [3749] = 3749, - [3750] = 3656, - [3751] = 1675, - [3752] = 1676, + [3750] = 3750, + [3751] = 3751, + [3752] = 3524, [3753] = 3753, [3754] = 3754, - [3755] = 1586, - [3756] = 1587, - [3757] = 1707, - [3758] = 3657, - [3759] = 3501, - [3760] = 3760, + [3755] = 3755, + [3756] = 3737, + [3757] = 3757, + [3758] = 3758, + [3759] = 3500, + [3760] = 3183, [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 3765, - [3766] = 3764, + [3762] = 3537, + [3763] = 1725, + [3764] = 1726, + [3765] = 1729, + [3766] = 3735, [3767] = 3767, - [3768] = 3768, - [3769] = 3764, - [3770] = 3770, - [3771] = 1543, - [3772] = 1546, - [3773] = 3749, + [3768] = 1730, + [3769] = 3233, + [3770] = 3747, + [3771] = 3753, + [3772] = 3772, + [3773] = 3773, [3774] = 3774, - [3775] = 3775, + [3775] = 3758, [3776] = 3776, - [3777] = 3658, - [3778] = 3737, - [3779] = 3770, - [3780] = 3774, - [3781] = 1575, - [3782] = 3697, + [3777] = 3607, + [3778] = 1731, + [3779] = 3779, + [3780] = 1734, + [3781] = 3781, + [3782] = 1581, [3783] = 3783, - [3784] = 3784, - [3785] = 3785, - [3786] = 3630, + [3784] = 1586, + [3785] = 1588, + [3786] = 3736, [3787] = 3787, [3788] = 3788, - [3789] = 3789, - [3790] = 655, - [3791] = 3791, - [3792] = 3792, - [3793] = 3793, - [3794] = 3767, - [3795] = 3795, + [3789] = 658, + [3790] = 3678, + [3791] = 3543, + [3792] = 1638, + [3793] = 1639, + [3794] = 3794, + [3795] = 3679, [3796] = 3796, - [3797] = 3797, + [3797] = 3728, [3798] = 3798, - [3799] = 3753, + [3799] = 3572, [3800] = 3800, - [3801] = 1652, - [3802] = 3502, - [3803] = 1654, - [3804] = 3804, - [3805] = 3805, - [3806] = 3806, - [3807] = 3753, - [3808] = 3808, - [3809] = 3809, - [3810] = 3627, + [3801] = 3749, + [3802] = 3753, + [3803] = 3803, + [3804] = 3736, + [3805] = 3681, + [3806] = 3796, + [3807] = 3682, + [3808] = 3731, + [3809] = 3736, + [3810] = 3787, [3811] = 3811, - [3812] = 3812, - [3813] = 1490, - [3814] = 3628, - [3815] = 3775, - [3816] = 3631, - [3817] = 1494, + [3812] = 1458, + [3813] = 1464, + [3814] = 1201, + [3815] = 1775, + [3816] = 1781, + [3817] = 3817, [3818] = 3818, - [3819] = 3753, - [3820] = 3820, - [3821] = 3157, - [3822] = 1496, + [3819] = 1563, + [3820] = 1564, + [3821] = 3787, + [3822] = 3822, [3823] = 3823, - [3824] = 3514, - [3825] = 3635, + [3824] = 3788, + [3825] = 3735, [3826] = 3826, - [3827] = 3539, - [3828] = 3800, - [3829] = 3829, - [3830] = 3569, - [3831] = 3804, - [3832] = 3760, + [3827] = 3827, + [3828] = 1487, + [3829] = 1492, + [3830] = 3753, + [3831] = 3736, + [3832] = 3822, [3833] = 3833, - [3834] = 1725, - [3835] = 3835, - [3836] = 3753, - [3837] = 1209, - [3838] = 3745, - [3839] = 3659, - [3840] = 3741, - [3841] = 3841, + [3834] = 3772, + [3835] = 3497, + [3836] = 3823, + [3837] = 1531, + [3838] = 3838, + [3839] = 3737, + [3840] = 3840, + [3841] = 3733, [3842] = 3842, - [3843] = 3723, - [3844] = 3729, + [3843] = 3843, + [3844] = 3844, [3845] = 3845, - [3846] = 3229, - [3847] = 3847, - [3848] = 653, - [3849] = 3575, - [3850] = 3850, - [3851] = 3662, - [3852] = 3761, + [3846] = 652, + [3847] = 3593, + [3848] = 3848, + [3849] = 3787, + [3850] = 3757, + [3851] = 1769, + [3852] = 3817, [3853] = 3853, - [3854] = 3499, - [3855] = 3804, - [3856] = 3841, - [3857] = 3764, - [3858] = 3858, - [3859] = 3577, - [3860] = 3580, - [3861] = 3749, - [3862] = 3842, - [3863] = 3741, - [3864] = 3864, - [3865] = 3804, + [3854] = 3725, + [3855] = 1771, + [3856] = 653, + [3857] = 654, + [3858] = 3783, + [3859] = 3859, + [3860] = 3848, + [3861] = 3552, + [3862] = 3862, + [3863] = 3848, + [3864] = 3520, + [3865] = 3865, [3866] = 3866, - [3867] = 3714, - [3868] = 652, - [3869] = 651, - [3870] = 3870, - [3871] = 3729, - [3872] = 3753, - [3873] = 3873, - [3874] = 3745, - [3875] = 1730, - [3876] = 3804, - [3877] = 3760, - [3878] = 3729, - [3879] = 3764, + [3867] = 3735, + [3868] = 3779, + [3869] = 3869, + [3870] = 3787, + [3871] = 3642, + [3872] = 3735, + [3873] = 3596, + [3874] = 3753, + [3875] = 3601, + [3876] = 3728, + [3877] = 3877, + [3878] = 3878, + [3879] = 3737, [3880] = 3880, - [3881] = 3763, - [3882] = 3736, - [3883] = 3883, - [3884] = 3736, - [3885] = 3764, - [3886] = 3886, - [3887] = 1759, - [3888] = 1618, - [3889] = 3889, - [3890] = 3890, - [3891] = 3812, - [3892] = 3892, - [3893] = 3754, - [3894] = 3804, - [3895] = 1733, - [3896] = 3724, - [3897] = 3796, - [3898] = 3721, - [3899] = 3741, - [3900] = 3244, - [3901] = 3530, + [3881] = 3818, + [3882] = 3559, + [3883] = 1677, + [3884] = 3749, + [3885] = 3495, + [3886] = 3499, + [3887] = 1678, + [3888] = 3560, + [3889] = 3737, + [3890] = 3878, + [3891] = 3737, + [3892] = 3853, + [3893] = 3541, + [3894] = 3894, + [3895] = 3895, + [3896] = 3896, + [3897] = 3897, + [3898] = 3844, + [3899] = 3869, + [3900] = 3900, + [3901] = 3641, [3902] = 3902, [3903] = 3903, - [3904] = 3689, - [3905] = 3798, - [3906] = 3906, - [3907] = 3792, - [3908] = 3692, - [3909] = 3853, - [3910] = 3753, - [3911] = 3911, - [3912] = 3912, - [3913] = 3795, - [3914] = 3914, + [3904] = 3895, + [3905] = 3905, + [3906] = 3737, + [3907] = 3736, + [3908] = 3818, + [3909] = 3787, + [3910] = 3853, + [3911] = 3753, + [3912] = 3639, + [3913] = 3913, + [3914] = 3798, [3915] = 3915, - [3916] = 3722, - [3917] = 3787, - [3918] = 3789, - [3919] = 769, - [3920] = 770, - [3921] = 771, - [3922] = 772, - [3923] = 773, - [3924] = 731, - [3925] = 775, - [3926] = 776, - [3927] = 777, - [3928] = 778, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 3919, + [3920] = 856, + [3921] = 857, + [3922] = 858, + [3923] = 3923, + [3924] = 3924, + [3925] = 3925, + [3926] = 3926, + [3927] = 3927, + [3928] = 3928, [3929] = 3929, [3930] = 3930, - [3931] = 3931, - [3932] = 3571, - [3933] = 3933, - [3934] = 787, - [3935] = 788, - [3936] = 789, - [3937] = 3937, + [3931] = 3741, + [3932] = 3932, + [3933] = 3896, + [3934] = 3934, + [3935] = 3900, + [3936] = 3729, + [3937] = 863, [3938] = 3938, - [3939] = 3939, - [3940] = 3940, - [3941] = 3941, - [3942] = 3942, - [3943] = 3943, - [3944] = 3944, - [3945] = 3945, - [3946] = 3946, - [3947] = 3947, + [3939] = 864, + [3940] = 865, + [3941] = 866, + [3942] = 867, + [3943] = 716, + [3944] = 868, + [3945] = 750, + [3946] = 808, + [3947] = 751, [3948] = 3948, [3949] = 3949, [3950] = 3950, - [3951] = 3633, + [3951] = 3951, [3952] = 3952, - [3953] = 820, - [3954] = 821, - [3955] = 822, - [3956] = 3956, + [3953] = 3527, + [3954] = 758, + [3955] = 759, + [3956] = 760, [3957] = 3957, [3958] = 3958, [3959] = 3959, @@ -8606,185 +8620,185 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3962] = 3962, [3963] = 3963, [3964] = 3964, - [3965] = 830, - [3966] = 832, - [3967] = 833, - [3968] = 834, + [3965] = 3965, + [3966] = 3966, + [3967] = 3967, + [3968] = 3968, [3969] = 3969, [3970] = 3970, [3971] = 3971, [3972] = 3972, [3973] = 3973, [3974] = 3974, - [3975] = 3975, + [3975] = 776, [3976] = 3976, - [3977] = 3977, - [3978] = 3978, + [3977] = 777, + [3978] = 778, [3979] = 3979, [3980] = 3980, - [3981] = 3829, + [3981] = 3981, [3982] = 3982, [3983] = 3983, - [3984] = 3960, - [3985] = 840, - [3986] = 3986, - [3987] = 842, - [3988] = 843, - [3989] = 844, - [3990] = 740, + [3984] = 3984, + [3985] = 3985, + [3986] = 779, + [3987] = 780, + [3988] = 781, + [3989] = 782, + [3990] = 3990, [3991] = 3991, - [3992] = 742, - [3993] = 744, + [3992] = 3992, + [3993] = 3993, [3994] = 3994, - [3995] = 850, - [3996] = 3996, + [3995] = 3995, + [3996] = 3838, [3997] = 3997, - [3998] = 3971, - [3999] = 3999, + [3998] = 3998, + [3999] = 788, [4000] = 4000, - [4001] = 4001, - [4002] = 858, - [4003] = 4003, - [4004] = 4004, - [4005] = 4005, - [4006] = 4006, - [4007] = 4007, - [4008] = 4008, + [4001] = 3952, + [4002] = 789, + [4003] = 790, + [4004] = 792, + [4005] = 718, + [4006] = 736, + [4007] = 717, + [4008] = 795, [4009] = 4009, [4010] = 4010, [4011] = 4011, [4012] = 4012, [4013] = 4013, - [4014] = 4014, - [4015] = 4015, - [4016] = 3950, + [4014] = 4009, + [4015] = 801, + [4016] = 4016, [4017] = 4017, - [4018] = 3952, + [4018] = 4018, [4019] = 4019, [4020] = 4020, - [4021] = 752, - [4022] = 753, - [4023] = 4023, - [4024] = 756, + [4021] = 4021, + [4022] = 4022, + [4023] = 3980, + [4024] = 3915, [4025] = 4025, [4026] = 4026, - [4027] = 764, - [4028] = 765, + [4027] = 4027, + [4028] = 4028, [4029] = 4029, - [4030] = 766, - [4031] = 767, - [4032] = 780, - [4033] = 3964, - [4034] = 3970, - [4035] = 795, + [4030] = 4030, + [4031] = 746, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 4035, [4036] = 4036, - [4037] = 3999, - [4038] = 743, - [4039] = 4011, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, [4040] = 4040, [4041] = 4041, - [4042] = 802, - [4043] = 811, + [4042] = 4042, + [4043] = 4043, [4044] = 4044, - [4045] = 817, + [4045] = 4045, [4046] = 4046, - [4047] = 717, - [4048] = 732, - [4049] = 745, - [4050] = 825, - [4051] = 4051, - [4052] = 4052, - [4053] = 729, - [4054] = 748, - [4055] = 4055, - [4056] = 4056, + [4047] = 4011, + [4048] = 4048, + [4049] = 810, + [4050] = 748, + [4051] = 735, + [4052] = 811, + [4053] = 4053, + [4054] = 812, + [4055] = 813, + [4056] = 4025, [4057] = 4057, - [4058] = 722, - [4059] = 4059, - [4060] = 4060, - [4061] = 3979, - [4062] = 4001, - [4063] = 4063, + [4058] = 4058, + [4059] = 814, + [4060] = 724, + [4061] = 3950, + [4062] = 815, + [4063] = 816, [4064] = 4064, - [4065] = 4065, - [4066] = 4066, + [4065] = 817, + [4066] = 818, [4067] = 4067, [4068] = 4068, [4069] = 4069, [4070] = 4070, - [4071] = 4071, - [4072] = 839, - [4073] = 845, - [4074] = 846, - [4075] = 847, - [4076] = 848, - [4077] = 849, - [4078] = 852, - [4079] = 4079, - [4080] = 750, + [4071] = 820, + [4072] = 821, + [4073] = 824, + [4074] = 723, + [4075] = 715, + [4076] = 719, + [4077] = 828, + [4078] = 4078, + [4079] = 4067, + [4080] = 4080, [4081] = 4081, - [4082] = 751, - [4083] = 723, + [4082] = 4082, + [4083] = 4083, [4084] = 4084, - [4085] = 4085, + [4085] = 3957, [4086] = 4086, [4087] = 4087, - [4088] = 4088, + [4088] = 3606, [4089] = 4089, - [4090] = 4090, + [4090] = 4030, [4091] = 4091, - [4092] = 3960, - [4093] = 4093, - [4094] = 4094, - [4095] = 3971, - [4096] = 4000, - [4097] = 757, - [4098] = 758, - [4099] = 4099, - [4100] = 759, - [4101] = 760, - [4102] = 762, - [4103] = 4103, - [4104] = 4020, - [4105] = 4105, - [4106] = 4025, - [4107] = 4107, + [4092] = 4092, + [4093] = 3976, + [4094] = 4033, + [4095] = 835, + [4096] = 836, + [4097] = 837, + [4098] = 838, + [4099] = 3990, + [4100] = 3991, + [4101] = 839, + [4102] = 840, + [4103] = 841, + [4104] = 4104, + [4105] = 844, + [4106] = 845, + [4107] = 728, [4108] = 4108, [4109] = 4109, - [4110] = 4110, - [4111] = 4111, + [4110] = 4017, + [4111] = 4020, [4112] = 4112, - [4113] = 4040, + [4113] = 4113, [4114] = 4114, [4115] = 4115, [4116] = 4116, [4117] = 4117, - [4118] = 3960, + [4118] = 4118, [4119] = 4119, - [4120] = 3971, - [4121] = 4121, - [4122] = 4122, - [4123] = 4123, - [4124] = 4020, - [4125] = 4125, - [4126] = 4126, + [4120] = 848, + [4121] = 849, + [4122] = 850, + [4123] = 851, + [4124] = 853, + [4125] = 3976, + [4126] = 3990, [4127] = 4127, [4128] = 4128, - [4129] = 3971, + [4129] = 4129, [4130] = 4130, - [4131] = 4131, + [4131] = 4017, [4132] = 4132, [4133] = 4133, - [4134] = 4020, + [4134] = 4134, [4135] = 4135, [4136] = 4136, [4137] = 4137, - [4138] = 4138, + [4138] = 3990, [4139] = 4139, [4140] = 4140, [4141] = 4141, [4142] = 4142, - [4143] = 4143, + [4143] = 4017, [4144] = 4144, [4145] = 4145, [4146] = 4146, @@ -8795,26 +8809,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4151] = 4151, [4152] = 4152, [4153] = 4153, - [4154] = 3994, - [4155] = 4155, + [4154] = 4154, + [4155] = 4036, [4156] = 4156, [4157] = 4157, [4158] = 4158, [4159] = 4159, [4160] = 4160, [4161] = 4161, - [4162] = 3947, + [4162] = 4162, [4163] = 4163, [4164] = 4164, [4165] = 4165, [4166] = 4166, [4167] = 4167, [4168] = 4168, - [4169] = 4152, + [4169] = 4169, [4170] = 4170, [4171] = 4171, [4172] = 4172, - [4173] = 4081, + [4173] = 4173, [4174] = 4174, [4175] = 4175, [4176] = 4176, @@ -8830,43 +8844,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4186] = 4186, [4187] = 4187, [4188] = 4188, - [4189] = 4064, + [4189] = 4189, [4190] = 4190, - [4191] = 3948, - [4192] = 3959, - [4193] = 4012, - [4194] = 4014, - [4195] = 4195, - [4196] = 4196, + [4191] = 4191, + [4192] = 4012, + [4193] = 4069, + [4194] = 4194, + [4195] = 4158, + [4196] = 4159, [4197] = 4197, [4198] = 4198, [4199] = 4199, [4200] = 4200, - [4201] = 4023, - [4202] = 4202, - [4203] = 4046, + [4201] = 4201, + [4202] = 4178, + [4203] = 4203, [4204] = 4204, [4205] = 4205, - [4206] = 4206, - [4207] = 4207, + [4206] = 4109, + [4207] = 4117, [4208] = 4208, [4209] = 4209, [4210] = 4210, [4211] = 4211, [4212] = 4212, - [4213] = 3939, + [4213] = 4213, [4214] = 4214, [4215] = 4215, - [4216] = 3996, + [4216] = 4216, [4217] = 4217, [4218] = 4218, - [4219] = 4170, + [4219] = 4219, [4220] = 4220, - [4221] = 4051, - [4222] = 4222, + [4221] = 4221, + [4222] = 4177, [4223] = 4223, - [4224] = 4224, - [4225] = 4225, + [4224] = 4078, + [4225] = 3976, [4226] = 4226, [4227] = 4227, [4228] = 4228, @@ -8875,336 +8889,336 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4231] = 4231, [4232] = 4232, [4233] = 4233, - [4234] = 4234, - [4235] = 1696, - [4236] = 1725, + [4234] = 4068, + [4235] = 4064, + [4236] = 4236, [4237] = 4237, - [4238] = 4207, - [4239] = 3947, + [4238] = 4238, + [4239] = 4239, [4240] = 4240, [4241] = 4241, [4242] = 4242, - [4243] = 4152, - [4244] = 4177, - [4245] = 4179, + [4243] = 4243, + [4244] = 4244, + [4245] = 4245, [4246] = 4246, - [4247] = 4199, + [4247] = 4247, [4248] = 4248, [4249] = 4249, [4250] = 4250, [4251] = 4251, - [4252] = 4252, + [4252] = 4170, [4253] = 4253, [4254] = 4254, - [4255] = 4255, - [4256] = 4256, - [4257] = 4055, - [4258] = 1759, - [4259] = 4259, - [4260] = 4260, - [4261] = 1618, + [4255] = 3983, + [4256] = 4174, + [4257] = 4257, + [4258] = 4180, + [4259] = 1700, + [4260] = 1633, + [4261] = 4182, [4262] = 4262, - [4263] = 4263, - [4264] = 1730, - [4265] = 1733, - [4266] = 4266, + [4263] = 4203, + [4264] = 4264, + [4265] = 4265, + [4266] = 4046, [4267] = 4267, [4268] = 4268, [4269] = 4269, - [4270] = 1636, - [4271] = 4271, - [4272] = 1637, - [4273] = 1640, - [4274] = 1644, - [4275] = 1649, - [4276] = 1707, + [4270] = 4270, + [4271] = 4210, + [4272] = 4272, + [4273] = 4273, + [4274] = 4274, + [4275] = 1769, + [4276] = 1771, [4277] = 4277, [4278] = 4278, - [4279] = 4279, - [4280] = 4280, - [4281] = 1652, - [4282] = 1654, + [4279] = 1677, + [4280] = 1678, + [4281] = 4281, + [4282] = 4282, [4283] = 4283, [4284] = 4284, [4285] = 4285, - [4286] = 814, + [4286] = 4286, [4287] = 4287, [4288] = 4288, [4289] = 4289, [4290] = 4290, [4291] = 4291, - [4292] = 4292, - [4293] = 4293, - [4294] = 869, - [4295] = 779, - [4296] = 4020, - [4297] = 1675, - [4298] = 1676, - [4299] = 4299, + [4292] = 1725, + [4293] = 1726, + [4294] = 1729, + [4295] = 1730, + [4296] = 4296, + [4297] = 1731, + [4298] = 4298, + [4299] = 1734, [4300] = 4300, [4301] = 4301, - [4302] = 4302, + [4302] = 4053, [4303] = 4303, [4304] = 4304, [4305] = 4305, [4306] = 4306, [4307] = 4307, - [4308] = 4308, - [4309] = 4309, + [4308] = 1775, + [4309] = 1781, [4310] = 4310, [4311] = 4311, [4312] = 4312, - [4313] = 4177, + [4313] = 4313, [4314] = 4314, [4315] = 4315, - [4316] = 4199, - [4317] = 4317, - [4318] = 4025, - [4319] = 4179, - [4320] = 4000, + [4316] = 4316, + [4317] = 4174, + [4318] = 4318, + [4319] = 1638, + [4320] = 1639, [4321] = 4321, [4322] = 4322, - [4323] = 4171, + [4323] = 4323, [4324] = 4324, [4325] = 4325, [4326] = 4326, - [4327] = 865, - [4328] = 754, - [4329] = 221, + [4327] = 4327, + [4328] = 4328, + [4329] = 4329, [4330] = 4330, - [4331] = 225, + [4331] = 4331, [4332] = 4332, - [4333] = 4333, - [4334] = 4057, + [4333] = 4270, + [4334] = 4334, [4335] = 4335, - [4336] = 4013, - [4337] = 4337, - [4338] = 3949, + [4336] = 861, + [4337] = 4175, + [4338] = 4338, [4339] = 4339, - [4340] = 3964, - [4341] = 3970, - [4342] = 3997, - [4343] = 3866, - [4344] = 4344, - [4345] = 4051, - [4346] = 799, - [4347] = 4347, - [4348] = 816, - [4349] = 4349, + [4340] = 4340, + [4341] = 4341, + [4342] = 859, + [4343] = 860, + [4344] = 3952, + [4345] = 4345, + [4346] = 247, + [4347] = 4017, + [4348] = 4013, + [4349] = 222, [4350] = 4350, - [4351] = 4351, - [4352] = 4352, - [4353] = 4353, - [4354] = 4211, - [4355] = 4355, + [4351] = 3915, + [4352] = 4025, + [4353] = 4089, + [4354] = 4354, + [4355] = 4046, [4356] = 4356, - [4357] = 4006, + [4357] = 4357, [4358] = 4358, [4359] = 4359, - [4360] = 3555, - [4361] = 3579, - [4362] = 4059, + [4360] = 4360, + [4361] = 4361, + [4362] = 4362, [4363] = 4363, - [4364] = 797, - [4365] = 798, - [4366] = 4366, + [4364] = 4364, + [4365] = 4365, + [4366] = 3990, [4367] = 4367, [4368] = 4368, - [4369] = 4369, - [4370] = 4370, + [4369] = 819, + [4370] = 825, [4371] = 4371, [4372] = 4372, - [4373] = 1512, + [4373] = 4373, [4374] = 4374, - [4375] = 1516, - [4376] = 4376, - [4377] = 4377, - [4378] = 4378, - [4379] = 4379, + [4375] = 4180, + [4376] = 4170, + [4377] = 4182, + [4378] = 3991, + [4379] = 3730, [4380] = 4380, - [4381] = 4381, + [4381] = 766, [4382] = 4382, - [4383] = 4383, + [4383] = 769, [4384] = 4384, [4385] = 4385, - [4386] = 4386, - [4387] = 4387, + [4386] = 1611, + [4387] = 1456, [4388] = 4388, [4389] = 4389, - [4390] = 828, - [4391] = 829, + [4390] = 4390, + [4391] = 4391, [4392] = 4392, - [4393] = 831, - [4394] = 4013, + [4393] = 4058, + [4394] = 3957, [4395] = 4395, [4396] = 4396, [4397] = 4397, - [4398] = 4398, + [4398] = 4203, [4399] = 4399, [4400] = 4400, [4401] = 4401, - [4402] = 4402, - [4403] = 4029, - [4404] = 4404, - [4405] = 4405, + [4402] = 3656, + [4403] = 3669, + [4404] = 793, + [4405] = 794, [4406] = 4406, [4407] = 4407, - [4408] = 4408, + [4408] = 4020, [4409] = 4409, - [4410] = 4410, + [4410] = 4219, [4411] = 4411, [4412] = 4412, - [4413] = 4408, - [4414] = 4409, + [4413] = 4413, + [4414] = 4414, [4415] = 4415, [4416] = 4416, [4417] = 4417, [4418] = 4418, - [4419] = 4419, - [4420] = 208, - [4421] = 207, - [4422] = 4422, + [4419] = 3995, + [4420] = 4420, + [4421] = 4421, + [4422] = 3748, [4423] = 4423, [4424] = 4424, [4425] = 4425, - [4426] = 4426, - [4427] = 4415, - [4428] = 4428, - [4429] = 4412, + [4426] = 4421, + [4427] = 4427, + [4428] = 210, + [4429] = 214, [4430] = 4430, [4431] = 4431, [4432] = 4432, [4433] = 4433, - [4434] = 4423, + [4434] = 4434, [4435] = 4435, [4436] = 4436, - [4437] = 4418, - [4438] = 4419, + [4437] = 4437, + [4438] = 4421, [4439] = 4439, - [4440] = 4418, - [4441] = 4423, - [4442] = 4424, - [4443] = 4419, + [4440] = 4427, + [4441] = 4441, + [4442] = 4442, + [4443] = 4421, [4444] = 4444, [4445] = 4445, - [4446] = 4426, - [4447] = 4411, - [4448] = 4435, + [4446] = 4432, + [4447] = 4447, + [4448] = 4448, [4449] = 4449, [4450] = 4450, - [4451] = 4424, - [4452] = 3845, + [4451] = 4427, + [4452] = 4433, [4453] = 4453, - [4454] = 4416, + [4454] = 4421, [4455] = 4455, - [4456] = 4432, - [4457] = 4457, - [4458] = 4408, - [4459] = 4411, - [4460] = 4460, + [4456] = 4456, + [4457] = 4430, + [4458] = 4458, + [4459] = 4431, + [4460] = 4423, [4461] = 4461, - [4462] = 4423, - [4463] = 4424, + [4462] = 4462, + [4463] = 4430, [4464] = 4464, - [4465] = 4465, - [4466] = 4408, - [4467] = 4423, + [4465] = 4431, + [4466] = 4466, + [4467] = 4467, [4468] = 4468, [4469] = 4469, - [4470] = 4415, - [4471] = 4424, - [4472] = 4472, + [4470] = 4436, + [4471] = 4471, + [4472] = 4424, [4473] = 4473, [4474] = 4474, [4475] = 4475, - [4476] = 4417, - [4477] = 4477, - [4478] = 4478, - [4479] = 4479, - [4480] = 4411, - [4481] = 4428, - [4482] = 4482, - [4483] = 4415, - [4484] = 4419, - [4485] = 4415, - [4486] = 4411, - [4487] = 4417, - [4488] = 4419, - [4489] = 4489, - [4490] = 4423, + [4476] = 4434, + [4477] = 4444, + [4478] = 4450, + [4479] = 4423, + [4480] = 4480, + [4481] = 4481, + [4482] = 4434, + [4483] = 4455, + [4484] = 4423, + [4485] = 4434, + [4486] = 4430, + [4487] = 4487, + [4488] = 4488, + [4489] = 4423, + [4490] = 4490, [4491] = 4424, - [4492] = 4492, + [4492] = 4424, [4493] = 4493, - [4494] = 4494, - [4495] = 4495, - [4496] = 4496, - [4497] = 4418, + [4494] = 4432, + [4495] = 4450, + [4496] = 4434, + [4497] = 4455, [4498] = 4498, - [4499] = 4499, - [4500] = 4464, + [4499] = 4458, + [4500] = 4500, [4501] = 4501, [4502] = 4502, - [4503] = 4417, - [4504] = 4504, - [4505] = 4505, - [4506] = 4504, - [4507] = 4411, - [4508] = 4508, - [4509] = 4408, - [4510] = 4461, - [4511] = 4465, - [4512] = 4508, - [4513] = 4513, - [4514] = 4514, + [4503] = 4431, + [4504] = 4421, + [4505] = 4427, + [4506] = 4442, + [4507] = 4431, + [4508] = 4430, + [4509] = 4431, + [4510] = 4510, + [4511] = 4511, + [4512] = 4427, + [4513] = 3803, + [4514] = 4432, [4515] = 4515, - [4516] = 4419, - [4517] = 4417, - [4518] = 4461, - [4519] = 4410, + [4516] = 4435, + [4517] = 4450, + [4518] = 4430, + [4519] = 4424, [4520] = 4520, - [4521] = 4461, + [4521] = 4500, [4522] = 4522, - [4523] = 4461, - [4524] = 4415, - [4525] = 4464, - [4526] = 4408, - [4527] = 4527, - [4528] = 4465, - [4529] = 4464, - [4530] = 4415, - [4531] = 4531, - [4532] = 4418, - [4533] = 4465, - [4534] = 4419, + [4523] = 4523, + [4524] = 4450, + [4525] = 4455, + [4526] = 4526, + [4527] = 4461, + [4528] = 4528, + [4529] = 4423, + [4530] = 4424, + [4531] = 4420, + [4532] = 4532, + [4533] = 4501, + [4534] = 4432, [4535] = 4535, - [4536] = 4536, - [4537] = 4464, - [4538] = 3793, - [4539] = 4461, + [4536] = 4434, + [4537] = 4537, + [4538] = 4421, + [4539] = 4427, [4540] = 4540, - [4541] = 4423, - [4542] = 4542, - [4543] = 4418, - [4544] = 4411, - [4545] = 4408, - [4546] = 4424, - [4547] = 4464, - [4548] = 4548, + [4541] = 4541, + [4542] = 4444, + [4543] = 4450, + [4544] = 4468, + [4545] = 4444, + [4546] = 4546, + [4547] = 4430, + [4548] = 4444, [4549] = 4549, - [4550] = 4550, - [4551] = 4465, - [4552] = 4464, - [4553] = 4531, - [4554] = 4418, - [4555] = 4555, - [4556] = 4556, - [4557] = 4557, - [4558] = 4558, + [4550] = 4467, + [4551] = 4551, + [4552] = 4431, + [4553] = 4553, + [4554] = 4423, + [4555] = 4424, + [4556] = 4444, + [4557] = 4455, + [4558] = 4427, [4559] = 4559, [4560] = 4560, - [4561] = 4561, + [4561] = 4444, [4562] = 4562, - [4563] = 4563, + [4563] = 4434, [4564] = 4564, [4565] = 4565, [4566] = 4566, @@ -9222,7 +9236,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4578] = 4578, [4579] = 4579, [4580] = 4580, - [4581] = 4581, + [4581] = 4569, [4582] = 4582, [4583] = 4583, [4584] = 4584, @@ -9231,12 +9245,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4587] = 4587, [4588] = 4588, [4589] = 4589, - [4590] = 4590, + [4590] = 3968, [4591] = 4591, [4592] = 4592, [4593] = 4593, [4594] = 4594, - [4595] = 4595, + [4595] = 4571, [4596] = 4596, [4597] = 4597, [4598] = 4598, @@ -9248,83 +9262,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4604] = 4604, [4605] = 4605, [4606] = 4606, - [4607] = 4556, - [4608] = 4557, + [4607] = 4607, + [4608] = 4608, [4609] = 4609, - [4610] = 4610, - [4611] = 4611, - [4612] = 4559, - [4613] = 4560, + [4610] = 4572, + [4611] = 4583, + [4612] = 4612, + [4613] = 4613, [4614] = 4614, [4615] = 4615, - [4616] = 4570, - [4617] = 4594, - [4618] = 4618, + [4616] = 4616, + [4617] = 4617, + [4618] = 4606, [4619] = 4619, - [4620] = 4620, + [4620] = 4567, [4621] = 4621, - [4622] = 4622, - [4623] = 4623, + [4622] = 4594, + [4623] = 4569, [4624] = 4624, - [4625] = 4625, + [4625] = 4571, [4626] = 4626, [4627] = 4627, - [4628] = 4628, + [4628] = 4582, [4629] = 4629, - [4630] = 4594, - [4631] = 4599, - [4632] = 4600, + [4630] = 4630, + [4631] = 4631, + [4632] = 4632, [4633] = 4633, [4634] = 4634, [4635] = 4635, - [4636] = 4636, + [4636] = 4565, [4637] = 4637, [4638] = 4638, [4639] = 4639, - [4640] = 4556, + [4640] = 4640, [4641] = 4641, - [4642] = 4557, + [4642] = 4606, [4643] = 4643, - [4644] = 4559, - [4645] = 4560, + [4644] = 4572, + [4645] = 4583, [4646] = 4646, [4647] = 4647, - [4648] = 4565, - [4649] = 4566, - [4650] = 4567, - [4651] = 4568, - [4652] = 4652, - [4653] = 4570, + [4648] = 4648, + [4649] = 4649, + [4650] = 4619, + [4651] = 4567, + [4652] = 4572, + [4653] = 4569, [4654] = 4654, - [4655] = 4655, - [4656] = 4656, + [4655] = 4571, + [4656] = 4583, [4657] = 4657, [4658] = 4658, - [4659] = 4599, - [4660] = 4660, - [4661] = 4600, - [4662] = 4662, - [4663] = 4663, + [4659] = 4577, + [4660] = 4578, + [4661] = 4579, + [4662] = 4580, + [4663] = 4582, [4664] = 4664, [4665] = 4665, [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 4669, - [4670] = 4599, - [4671] = 4600, + [4669] = 3552, + [4670] = 4670, + [4671] = 4671, [4672] = 4672, [4673] = 4673, [4674] = 4674, [4675] = 4675, - [4676] = 4676, - [4677] = 4559, + [4676] = 4572, + [4677] = 4583, [4678] = 4678, - [4679] = 4560, + [4679] = 4679, [4680] = 4680, - [4681] = 4681, + [4681] = 4569, [4682] = 4682, - [4683] = 4683, + [4683] = 4571, [4684] = 4684, [4685] = 4685, [4686] = 4686, @@ -9335,94 +9349,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4691] = 4691, [4692] = 4692, [4693] = 4693, - [4694] = 3502, - [4695] = 4599, - [4696] = 4600, + [4694] = 4572, + [4695] = 4583, + [4696] = 4696, [4697] = 4697, [4698] = 4698, - [4699] = 4559, + [4699] = 4699, [4700] = 4700, - [4701] = 4560, + [4701] = 4569, [4702] = 4702, - [4703] = 4703, - [4704] = 4604, - [4705] = 4705, + [4703] = 4571, + [4704] = 4704, + [4705] = 4616, [4706] = 4706, [4707] = 4707, [4708] = 4708, [4709] = 4709, [4710] = 4710, [4711] = 4711, - [4712] = 4712, + [4712] = 4690, [4713] = 4713, [4714] = 4714, [4715] = 4715, [4716] = 4716, [4717] = 4717, - [4718] = 4597, + [4718] = 4718, [4719] = 4719, [4720] = 4720, [4721] = 4721, - [4722] = 4565, + [4722] = 4722, [4723] = 4723, [4724] = 4724, [4725] = 4725, - [4726] = 4566, + [4726] = 4726, [4727] = 4727, [4728] = 4728, [4729] = 4729, [4730] = 4730, [4731] = 4731, - [4732] = 4567, + [4732] = 4732, [4733] = 4733, [4734] = 4734, - [4735] = 4568, + [4735] = 4735, [4736] = 4736, [4737] = 4737, [4738] = 4738, [4739] = 4739, [4740] = 4740, - [4741] = 4570, + [4741] = 4741, [4742] = 4742, [4743] = 4743, [4744] = 4744, [4745] = 4745, [4746] = 4746, - [4747] = 734, + [4747] = 4747, [4748] = 4748, [4749] = 4749, - [4750] = 4594, - [4751] = 4751, + [4750] = 4750, + [4751] = 734, [4752] = 4752, - [4753] = 4353, - [4754] = 4754, - [4755] = 4556, - [4756] = 4557, + [4753] = 4606, + [4754] = 4752, + [4755] = 4755, + [4756] = 4756, [4757] = 4757, [4758] = 4758, [4759] = 4759, [4760] = 4760, - [4761] = 4761, + [4761] = 4412, [4762] = 4762, [4763] = 4763, [4764] = 4764, [4765] = 4765, - [4766] = 4766, + [4766] = 4647, [4767] = 4767, - [4768] = 4768, + [4768] = 4756, [4769] = 4769, - [4770] = 4770, + [4770] = 4619, [4771] = 4771, [4772] = 4772, [4773] = 4773, [4774] = 4774, [4775] = 4775, - [4776] = 4557, + [4776] = 4776, [4777] = 4777, - [4778] = 4200, - [4779] = 4779, + [4778] = 4778, + [4779] = 4730, [4780] = 4780, - [4781] = 4781, + [4781] = 4567, [4782] = 4782, [4783] = 4783, [4784] = 4784, @@ -9432,64 +9446,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4788] = 4788, [4789] = 4789, [4790] = 4790, - [4791] = 4791, + [4791] = 4567, [4792] = 4792, - [4793] = 4559, + [4793] = 4793, [4794] = 4794, [4795] = 4795, - [4796] = 4560, + [4796] = 4796, [4797] = 4797, - [4798] = 1454, - [4799] = 4799, + [4798] = 4798, + [4799] = 4577, [4800] = 4800, [4801] = 4801, [4802] = 4802, - [4803] = 4803, - [4804] = 4792, + [4803] = 4578, + [4804] = 4804, [4805] = 4805, [4806] = 4806, [4807] = 4807, [4808] = 4808, [4809] = 4809, [4810] = 4810, - [4811] = 1458, - [4812] = 4812, - [4813] = 4719, + [4811] = 4811, + [4812] = 4579, + [4813] = 4813, [4814] = 4814, [4815] = 4815, [4816] = 4816, [4817] = 4817, [4818] = 4818, [4819] = 4819, - [4820] = 4820, - [4821] = 4821, + [4820] = 4566, + [4821] = 4569, [4822] = 4822, - [4823] = 4823, - [4824] = 4824, + [4823] = 4571, + [4824] = 4580, [4825] = 4825, [4826] = 4826, [4827] = 4827, [4828] = 4828, - [4829] = 4829, - [4830] = 4830, + [4829] = 4679, + [4830] = 4735, [4831] = 4831, [4832] = 4832, [4833] = 4833, [4834] = 4834, - [4835] = 4835, + [4835] = 4603, [4836] = 4836, - [4837] = 4623, - [4838] = 4838, - [4839] = 4839, + [4837] = 4837, + [4838] = 4582, + [4839] = 4682, [4840] = 4840, [4841] = 4841, [4842] = 4842, [4843] = 4843, [4844] = 4844, - [4845] = 3539, - [4846] = 4583, + [4845] = 4845, + [4846] = 4846, [4847] = 4847, - [4848] = 4848, + [4848] = 4759, [4849] = 4849, [4850] = 4850, [4851] = 4851, @@ -9502,10 +9516,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4858] = 4858, [4859] = 4859, [4860] = 4860, - [4861] = 4861, + [4861] = 4834, [4862] = 4862, [4863] = 4863, - [4864] = 1464, + [4864] = 4864, [4865] = 4865, [4866] = 4866, [4867] = 4867, @@ -9513,12 +9527,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4869] = 4869, [4870] = 4870, [4871] = 4871, - [4872] = 4872, + [4872] = 4582, [4873] = 4873, [4874] = 4874, [4875] = 4875, [4876] = 4876, - [4877] = 4570, + [4877] = 4877, [4878] = 4878, [4879] = 4879, [4880] = 4880, @@ -9526,33 +9540,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4855, + [4885] = 4885, [4886] = 4886, [4887] = 4887, [4888] = 4888, - [4889] = 4889, + [4889] = 4619, [4890] = 4890, [4891] = 4891, - [4892] = 4886, + [4892] = 4890, [4893] = 4893, - [4894] = 4594, - [4895] = 4895, + [4894] = 4894, + [4895] = 4893, [4896] = 4896, - [4897] = 4889, - [4898] = 4898, - [4899] = 4890, + [4897] = 4897, + [4898] = 4897, + [4899] = 4899, [4900] = 4900, [4901] = 4901, - [4902] = 4812, - [4903] = 4754, - [4904] = 4821, + [4902] = 4902, + [4903] = 4606, + [4904] = 4904, [4905] = 4905, [4906] = 4906, - [4907] = 4615, + [4907] = 4907, [4908] = 4908, [4909] = 4909, [4910] = 4910, - [4911] = 4728, + [4911] = 4911, [4912] = 4912, [4913] = 4913, [4914] = 4914, @@ -9560,7 +9574,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4916] = 4916, [4917] = 4917, [4918] = 4918, - [4919] = 4919, + [4919] = 3497, [4920] = 4920, [4921] = 4921, [4922] = 4922, @@ -9581,18 +9595,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4937] = 4937, [4938] = 4938, [4939] = 4939, - [4940] = 4940, + [4940] = 1554, [4941] = 4941, [4942] = 4942, [4943] = 4943, [4944] = 4944, - [4945] = 4945, + [4945] = 4250, [4946] = 4946, [4947] = 4947, [4948] = 4948, [4949] = 4949, [4950] = 4950, - [4951] = 4951, + [4951] = 4720, [4952] = 4952, [4953] = 4953, [4954] = 4954, @@ -9616,18 +9630,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4972] = 4972, [4973] = 4973, [4974] = 4974, - [4975] = 4556, + [4975] = 4975, [4976] = 4976, [4977] = 4977, [4978] = 4978, [4979] = 4979, [4980] = 4980, [4981] = 4981, - [4982] = 4594, - [4983] = 3514, + [4982] = 4982, + [4983] = 4983, [4984] = 4984, [4985] = 4985, - [4986] = 4557, + [4986] = 4986, [4987] = 4987, [4988] = 4988, [4989] = 4989, @@ -9645,7 +9659,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5001] = 5001, [5002] = 5002, [5003] = 5003, - [5004] = 4707, + [5004] = 5004, [5005] = 5005, [5006] = 5006, [5007] = 5007, @@ -9660,48 +9674,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5016] = 5016, [5017] = 5017, [5018] = 5018, - [5019] = 4787, - [5020] = 4748, + [5019] = 5019, + [5020] = 5020, [5021] = 5021, [5022] = 5022, [5023] = 5023, [5024] = 5024, - [5025] = 5025, + [5025] = 1598, [5026] = 5026, [5027] = 5027, [5028] = 5028, - [5029] = 4585, - [5030] = 5030, - [5031] = 4588, - [5032] = 5032, + [5029] = 5029, + [5030] = 4616, + [5031] = 5031, + [5032] = 4744, [5033] = 5033, [5034] = 5034, [5035] = 5035, [5036] = 5036, - [5037] = 5037, - [5038] = 4559, - [5039] = 5039, + [5037] = 3635, + [5038] = 5038, + [5039] = 4954, [5040] = 5040, [5041] = 5041, [5042] = 5042, - [5043] = 4637, + [5043] = 5043, [5044] = 5044, [5045] = 5045, - [5046] = 4557, + [5046] = 5046, [5047] = 5047, [5048] = 5048, - [5049] = 5049, - [5050] = 4749, + [5049] = 4619, + [5050] = 5050, [5051] = 5051, [5052] = 5052, - [5053] = 4623, + [5053] = 5053, [5054] = 5054, [5055] = 5055, - [5056] = 4591, + [5056] = 5056, [5057] = 5057, [5058] = 5058, [5059] = 5059, - [5060] = 5060, + [5060] = 4567, [5061] = 5061, [5062] = 5062, [5063] = 5063, @@ -9709,120 +9723,120 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5065] = 5065, [5066] = 5066, [5067] = 5067, - [5068] = 4654, - [5069] = 5069, - [5070] = 5070, + [5068] = 5068, + [5069] = 3560, + [5070] = 4591, [5071] = 5071, [5072] = 5072, [5073] = 5073, [5074] = 5074, [5075] = 5075, - [5076] = 5034, + [5076] = 4567, [5077] = 5077, [5078] = 5078, - [5079] = 1493, - [5080] = 5080, + [5079] = 5079, + [5080] = 4772, [5081] = 5081, - [5082] = 5082, - [5083] = 4773, + [5082] = 1466, + [5083] = 5083, [5084] = 5084, [5085] = 5085, - [5086] = 4781, - [5087] = 5087, - [5088] = 1500, - [5089] = 5089, + [5086] = 4603, + [5087] = 4606, + [5088] = 5088, + [5089] = 4682, [5090] = 5090, - [5091] = 4841, - [5092] = 5092, + [5091] = 5091, + [5092] = 4890, [5093] = 5093, - [5094] = 5094, - [5095] = 4599, - [5096] = 4600, + [5094] = 1584, + [5095] = 5095, + [5096] = 5096, [5097] = 5097, - [5098] = 5098, + [5098] = 1595, [5099] = 5099, [5100] = 5100, - [5101] = 4836, + [5101] = 5101, [5102] = 5102, [5103] = 5103, [5104] = 5104, [5105] = 5105, - [5106] = 4771, + [5106] = 5106, [5107] = 5107, [5108] = 5108, [5109] = 5109, - [5110] = 5110, + [5110] = 4818, [5111] = 5111, - [5112] = 4773, + [5112] = 5112, [5113] = 5113, [5114] = 5114, [5115] = 5115, [5116] = 5116, - [5117] = 4972, + [5117] = 5117, [5118] = 5118, [5119] = 5119, - [5120] = 4615, - [5121] = 4707, + [5120] = 5120, + [5121] = 5121, [5122] = 5122, [5123] = 5123, - [5124] = 4583, - [5125] = 3530, - [5126] = 734, + [5124] = 4671, + [5125] = 5125, + [5126] = 4565, [5127] = 5127, - [5128] = 4785, - [5129] = 5129, - [5130] = 5130, + [5128] = 5128, + [5129] = 4690, + [5130] = 4591, [5131] = 5131, [5132] = 5132, [5133] = 5133, - [5134] = 5134, - [5135] = 4781, - [5136] = 3522, + [5134] = 734, + [5135] = 5135, + [5136] = 4721, [5137] = 5137, [5138] = 5138, - [5139] = 4791, + [5139] = 4606, [5140] = 5140, [5141] = 5141, [5142] = 5142, - [5143] = 4337, - [5144] = 5144, - [5145] = 4560, + [5143] = 5143, + [5144] = 3588, + [5145] = 5145, [5146] = 5146, - [5147] = 4571, - [5148] = 5148, - [5149] = 4594, + [5147] = 5147, + [5148] = 4906, + [5149] = 5149, [5150] = 5150, - [5151] = 5151, - [5152] = 5152, - [5153] = 5153, - [5154] = 5154, - [5155] = 4841, - [5156] = 4599, - [5157] = 4600, - [5158] = 5158, + [5151] = 4572, + [5152] = 4907, + [5153] = 4583, + [5154] = 4963, + [5155] = 4912, + [5156] = 4671, + [5157] = 4672, + [5158] = 4621, [5159] = 5159, - [5160] = 4972, + [5160] = 5160, [5161] = 5161, [5162] = 5162, [5163] = 5163, - [5164] = 4604, - [5165] = 5165, - [5166] = 5166, + [5164] = 5164, + [5165] = 4923, + [5166] = 4616, [5167] = 5167, - [5168] = 4973, + [5168] = 5168, [5169] = 5169, - [5170] = 4604, - [5171] = 5171, + [5170] = 4593, + [5171] = 4637, [5172] = 5172, [5173] = 5173, [5174] = 5174, [5175] = 5175, - [5176] = 4898, + [5176] = 4925, [5177] = 5177, [5178] = 5178, [5179] = 5179, [5180] = 5180, - [5181] = 2605, + [5181] = 5181, [5182] = 5182, [5183] = 5183, [5184] = 5184, @@ -9834,28 +9848,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5190] = 5190, [5191] = 5191, [5192] = 5192, - [5193] = 2591, - [5194] = 2574, + [5193] = 5193, + [5194] = 5194, [5195] = 5195, [5196] = 5196, [5197] = 5197, - [5198] = 5198, - [5199] = 5180, + [5198] = 2563, + [5199] = 5199, [5200] = 5200, [5201] = 5201, [5202] = 5202, [5203] = 5203, - [5204] = 5204, + [5204] = 2571, [5205] = 5205, - [5206] = 5177, + [5206] = 5206, [5207] = 5207, - [5208] = 2593, + [5208] = 5208, [5209] = 5209, [5210] = 5210, - [5211] = 5211, - [5212] = 5212, - [5213] = 5213, - [5214] = 2613, + [5211] = 1682, + [5212] = 5186, + [5213] = 5210, + [5214] = 5214, [5215] = 5215, [5216] = 5216, [5217] = 5217, @@ -9870,311 +9884,311 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5226] = 5226, [5227] = 5227, [5228] = 5228, - [5229] = 5192, + [5229] = 5229, [5230] = 5230, [5231] = 5231, - [5232] = 5232, + [5232] = 3730, [5233] = 5233, [5234] = 5234, [5235] = 5235, [5236] = 5236, - [5237] = 5224, - [5238] = 5207, - [5239] = 5178, + [5237] = 5237, + [5238] = 5238, + [5239] = 5207, [5240] = 5240, [5241] = 5241, [5242] = 5242, [5243] = 5243, - [5244] = 5207, - [5245] = 5180, - [5246] = 5182, - [5247] = 5209, + [5244] = 5215, + [5245] = 5245, + [5246] = 5246, + [5247] = 5247, [5248] = 5248, [5249] = 5249, - [5250] = 2584, + [5250] = 5250, [5251] = 5251, - [5252] = 5190, - [5253] = 1765, + [5252] = 5252, + [5253] = 5221, [5254] = 5254, - [5255] = 1772, - [5256] = 5211, + [5255] = 5187, + [5256] = 5230, [5257] = 5257, - [5258] = 5258, - [5259] = 5195, + [5258] = 5231, + [5259] = 5259, [5260] = 5260, - [5261] = 5210, - [5262] = 5212, - [5263] = 5215, + [5261] = 5261, + [5262] = 5262, + [5263] = 5263, [5264] = 5264, - [5265] = 5207, - [5266] = 5183, - [5267] = 5267, - [5268] = 5268, - [5269] = 5269, - [5270] = 5270, - [5271] = 5271, - [5272] = 5202, - [5273] = 5204, - [5274] = 5205, + [5265] = 5265, + [5266] = 5237, + [5267] = 2618, + [5268] = 5241, + [5269] = 2569, + [5270] = 5243, + [5271] = 5246, + [5272] = 5272, + [5273] = 5249, + [5274] = 5274, [5275] = 5275, [5276] = 5276, - [5277] = 5277, - [5278] = 5278, + [5277] = 5207, + [5278] = 5207, [5279] = 5279, [5280] = 5280, [5281] = 5281, [5282] = 5282, - [5283] = 5202, + [5283] = 5283, [5284] = 5284, - [5285] = 5231, - [5286] = 5286, - [5287] = 5204, - [5288] = 5288, - [5289] = 5279, - [5290] = 5225, - [5291] = 5236, - [5292] = 5240, - [5293] = 5189, - [5294] = 5248, - [5295] = 5295, - [5296] = 5205, - [5297] = 5297, - [5298] = 5201, - [5299] = 5299, + [5285] = 5193, + [5286] = 5195, + [5287] = 5287, + [5288] = 5196, + [5289] = 5289, + [5290] = 5254, + [5291] = 5291, + [5292] = 5205, + [5293] = 5293, + [5294] = 5294, + [5295] = 5228, + [5296] = 5199, + [5297] = 5235, + [5298] = 5298, + [5299] = 5240, [5300] = 5300, - [5301] = 5177, + [5301] = 5301, [5302] = 5302, [5303] = 5303, [5304] = 5304, [5305] = 5305, - [5306] = 5236, - [5307] = 5286, + [5306] = 5306, + [5307] = 5307, [5308] = 5308, [5309] = 5309, [5310] = 5310, [5311] = 5311, - [5312] = 2610, - [5313] = 5281, - [5314] = 5225, + [5312] = 5312, + [5313] = 5313, + [5314] = 5314, [5315] = 5315, - [5316] = 5236, + [5316] = 5194, [5317] = 5317, - [5318] = 5240, + [5318] = 5318, [5319] = 5319, - [5320] = 5303, - [5321] = 5321, - [5322] = 5322, - [5323] = 5323, - [5324] = 5324, - [5325] = 5185, - [5326] = 5225, - [5327] = 5224, - [5328] = 5328, - [5329] = 5302, - [5330] = 5228, - [5331] = 5331, - [5332] = 5332, - [5333] = 5333, - [5334] = 5264, - [5335] = 5233, + [5320] = 5320, + [5321] = 2572, + [5322] = 5308, + [5323] = 2589, + [5324] = 5228, + [5325] = 5235, + [5326] = 5326, + [5327] = 5240, + [5328] = 5317, + [5329] = 2559, + [5330] = 5330, + [5331] = 1684, + [5332] = 1685, + [5333] = 5262, + [5334] = 2565, + [5335] = 5335, [5336] = 5336, - [5337] = 5337, - [5338] = 5338, - [5339] = 2590, - [5340] = 3787, - [5341] = 5336, + [5337] = 5202, + [5338] = 5318, + [5339] = 5209, + [5340] = 5340, + [5341] = 5335, [5342] = 5342, - [5343] = 5257, - [5344] = 5333, - [5345] = 5225, + [5343] = 5343, + [5344] = 5252, + [5345] = 2583, [5346] = 5346, - [5347] = 5280, - [5348] = 5348, - [5349] = 5348, - [5350] = 2577, - [5351] = 5351, - [5352] = 5352, + [5347] = 5228, + [5348] = 5319, + [5349] = 5342, + [5350] = 5350, + [5351] = 2566, + [5352] = 2605, [5353] = 5353, [5354] = 5354, - [5355] = 5355, - [5356] = 5269, - [5357] = 5240, + [5355] = 5350, + [5356] = 5215, + [5357] = 5357, [5358] = 5358, - [5359] = 5359, - [5360] = 5218, - [5361] = 5361, - [5362] = 5332, - [5363] = 2581, - [5364] = 5364, - [5365] = 5365, - [5366] = 5366, + [5359] = 5201, + [5360] = 2584, + [5361] = 5221, + [5362] = 5320, + [5363] = 5282, + [5364] = 2615, + [5365] = 5217, + [5366] = 5193, [5367] = 5367, - [5368] = 5368, - [5369] = 2559, + [5368] = 5276, + [5369] = 5226, [5370] = 5370, - [5371] = 5224, - [5372] = 5323, + [5371] = 5371, + [5372] = 5372, [5373] = 5373, [5374] = 5374, - [5375] = 5228, - [5376] = 5376, + [5375] = 5357, + [5376] = 5370, [5377] = 5377, [5378] = 5378, - [5379] = 5249, + [5379] = 5235, [5380] = 5380, - [5381] = 5233, - [5382] = 5192, - [5383] = 5383, - [5384] = 5384, - [5385] = 5225, - [5386] = 5386, - [5387] = 5387, + [5381] = 5381, + [5382] = 5382, + [5383] = 2574, + [5384] = 2588, + [5385] = 5385, + [5386] = 5228, + [5387] = 5229, [5388] = 5388, - [5389] = 5389, - [5390] = 5390, - [5391] = 5236, - [5392] = 5373, - [5393] = 5223, - [5394] = 5394, - [5395] = 5395, - [5396] = 5396, + [5389] = 5272, + [5390] = 5190, + [5391] = 5391, + [5392] = 5195, + [5393] = 5183, + [5394] = 5236, + [5395] = 5235, + [5396] = 5280, [5397] = 5397, - [5398] = 5352, - [5399] = 5240, - [5400] = 5346, - [5401] = 5401, - [5402] = 5228, - [5403] = 1749, - [5404] = 5404, - [5405] = 3722, + [5398] = 5398, + [5399] = 5248, + [5400] = 5400, + [5401] = 5250, + [5402] = 5388, + [5403] = 5240, + [5404] = 5342, + [5405] = 3729, [5406] = 5406, - [5407] = 5407, + [5407] = 5196, [5408] = 5408, - [5409] = 2576, - [5410] = 2578, + [5409] = 5236, + [5410] = 5235, [5411] = 5411, - [5412] = 5351, - [5413] = 5413, - [5414] = 3789, - [5415] = 5297, - [5416] = 5236, - [5417] = 2570, - [5418] = 5299, - [5419] = 2571, - [5420] = 5300, + [5412] = 5412, + [5413] = 5400, + [5414] = 5414, + [5415] = 5415, + [5416] = 5199, + [5417] = 5305, + [5418] = 5418, + [5419] = 5419, + [5420] = 5420, [5421] = 5421, - [5422] = 5233, + [5422] = 5422, [5423] = 5423, - [5424] = 5202, + [5424] = 5217, [5425] = 5425, - [5426] = 5426, - [5427] = 5427, + [5426] = 5312, + [5427] = 5236, [5428] = 5428, - [5429] = 2557, + [5429] = 5248, [5430] = 5430, - [5431] = 2603, - [5432] = 2587, - [5433] = 5204, - [5434] = 5205, - [5435] = 5387, - [5436] = 5230, - [5437] = 5277, - [5438] = 5222, + [5431] = 5193, + [5432] = 5432, + [5433] = 5236, + [5434] = 5206, + [5435] = 5228, + [5436] = 5259, + [5437] = 5195, + [5438] = 5248, [5439] = 5439, - [5440] = 5224, - [5441] = 5228, - [5442] = 5233, - [5443] = 5324, - [5444] = 2567, + [5440] = 5250, + [5441] = 5281, + [5442] = 5304, + [5443] = 5430, + [5444] = 5250, [5445] = 5445, - [5446] = 5177, - [5447] = 5321, - [5448] = 5448, - [5449] = 5207, - [5450] = 5427, - [5451] = 5240, - [5452] = 2597, + [5446] = 5446, + [5447] = 5447, + [5448] = 5284, + [5449] = 5248, + [5450] = 5450, + [5451] = 5451, + [5452] = 5452, [5453] = 5453, - [5454] = 5351, - [5455] = 5207, - [5456] = 5207, - [5457] = 5457, - [5458] = 5458, - [5459] = 5459, - [5460] = 5187, - [5461] = 5413, - [5462] = 5462, - [5463] = 5315, - [5464] = 5384, - [5465] = 5202, - [5466] = 2604, - [5467] = 5204, - [5468] = 5355, - [5469] = 5257, - [5470] = 5205, - [5471] = 5471, - [5472] = 5269, - [5473] = 5473, - [5474] = 5474, - [5475] = 2569, - [5476] = 5476, - [5477] = 5177, - [5478] = 5279, - [5479] = 5397, - [5480] = 5376, + [5454] = 5343, + [5455] = 5250, + [5456] = 5456, + [5457] = 5207, + [5458] = 5240, + [5459] = 5196, + [5460] = 5283, + [5461] = 5193, + [5462] = 5263, + [5463] = 5463, + [5464] = 5207, + [5465] = 5195, + [5466] = 5186, + [5467] = 5196, + [5468] = 2596, + [5469] = 5199, + [5470] = 5187, + [5471] = 5184, + [5472] = 5472, + [5473] = 5272, + [5474] = 5199, + [5475] = 5475, + [5476] = 5400, + [5477] = 2600, + [5478] = 5408, + [5479] = 5308, + [5480] = 5207, [5481] = 5481, - [5482] = 5317, - [5483] = 5389, - [5484] = 5394, - [5485] = 5355, + [5482] = 5482, + [5483] = 5224, + [5484] = 2586, + [5485] = 5485, [5486] = 5486, - [5487] = 5395, - [5488] = 5488, - [5489] = 5489, - [5490] = 5373, - [5491] = 5491, - [5492] = 5426, - [5493] = 5406, - [5494] = 5494, + [5487] = 3896, + [5488] = 5326, + [5489] = 5264, + [5490] = 5445, + [5491] = 5456, + [5492] = 3900, + [5493] = 5493, + [5494] = 2587, [5495] = 5495, - [5496] = 5186, - [5497] = 5497, - [5498] = 5179, - [5499] = 3866, - [5500] = 5383, - [5501] = 5267, - [5502] = 5278, + [5496] = 5496, + [5497] = 5229, + [5498] = 5411, + [5499] = 5499, + [5500] = 5289, + [5501] = 5398, + [5502] = 5421, [5503] = 5503, - [5504] = 5504, - [5505] = 5505, - [5506] = 5235, + [5504] = 2597, + [5505] = 5294, + [5506] = 2606, [5507] = 5507, - [5508] = 5508, + [5508] = 5298, [5509] = 5509, - [5510] = 5209, - [5511] = 5225, - [5512] = 5383, - [5513] = 5236, - [5514] = 5211, - [5515] = 5387, - [5516] = 5240, - [5517] = 5209, - [5518] = 5338, - [5519] = 5211, - [5520] = 5264, - [5521] = 5280, - [5522] = 5388, - [5523] = 5213, - [5524] = 5524, - [5525] = 5406, - [5526] = 5526, - [5527] = 5448, - [5528] = 5528, - [5529] = 5529, - [5530] = 5530, + [5510] = 5510, + [5511] = 5511, + [5512] = 5512, + [5513] = 5432, + [5514] = 5215, + [5515] = 5515, + [5516] = 5221, + [5517] = 5228, + [5518] = 5276, + [5519] = 5235, + [5520] = 5475, + [5521] = 5206, + [5522] = 5240, + [5523] = 5510, + [5524] = 5234, + [5525] = 5353, + [5526] = 5350, + [5527] = 5240, + [5528] = 5354, + [5529] = 5264, + [5530] = 5230, [5531] = 5531, [5532] = 5532, - [5533] = 5533, + [5533] = 2567, [5534] = 5534, [5535] = 5535, [5536] = 5536, @@ -10193,371 +10207,379 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5549] = 5549, [5550] = 5550, [5551] = 5551, - [5552] = 5552, + [5552] = 5547, [5553] = 5553, [5554] = 5554, [5555] = 5555, - [5556] = 5543, + [5556] = 5556, [5557] = 5557, [5558] = 5558, [5559] = 5559, - [5560] = 5530, - [5561] = 5529, + [5560] = 5560, + [5561] = 5561, [5562] = 5562, [5563] = 5563, [5564] = 5564, - [5565] = 5565, - [5566] = 5555, + [5565] = 5547, + [5566] = 5566, [5567] = 5567, [5568] = 5568, - [5569] = 5537, + [5569] = 5553, [5570] = 5570, [5571] = 5571, [5572] = 5572, - [5573] = 5547, + [5573] = 5573, [5574] = 5574, [5575] = 5575, - [5576] = 5576, - [5577] = 5539, - [5578] = 5564, - [5579] = 5540, - [5580] = 5541, - [5581] = 5581, + [5576] = 5535, + [5577] = 5577, + [5578] = 5550, + [5579] = 5579, + [5580] = 5580, + [5581] = 5570, [5582] = 5582, [5583] = 5583, [5584] = 5584, - [5585] = 5531, + [5585] = 5558, [5586] = 5586, - [5587] = 5568, - [5588] = 5588, - [5589] = 5530, - [5590] = 5538, - [5591] = 5591, + [5587] = 5559, + [5588] = 5566, + [5589] = 5589, + [5590] = 5590, + [5591] = 5536, [5592] = 5592, - [5593] = 5565, - [5594] = 5530, + [5593] = 5593, + [5594] = 5594, [5595] = 5595, - [5596] = 5535, + [5596] = 5562, [5597] = 5536, - [5598] = 5598, + [5598] = 5556, [5599] = 5599, - [5600] = 5584, - [5601] = 5601, - [5602] = 5537, + [5600] = 5600, + [5601] = 5538, + [5602] = 5557, [5603] = 5603, - [5604] = 5534, - [5605] = 5557, - [5606] = 5550, + [5604] = 5604, + [5605] = 5547, + [5606] = 5548, [5607] = 5607, - [5608] = 5531, - [5609] = 5609, - [5610] = 5538, + [5608] = 5582, + [5609] = 5590, + [5610] = 5541, [5611] = 5611, - [5612] = 5529, - [5613] = 5535, - [5614] = 5568, - [5615] = 5615, + [5612] = 5550, + [5613] = 5613, + [5614] = 5600, + [5615] = 5595, [5616] = 5616, - [5617] = 5554, - [5618] = 5588, - [5619] = 5530, - [5620] = 5544, - [5621] = 5586, - [5622] = 5622, - [5623] = 5570, - [5624] = 5624, - [5625] = 5592, + [5617] = 5617, + [5618] = 5613, + [5619] = 5553, + [5620] = 5620, + [5621] = 5584, + [5622] = 5562, + [5623] = 5623, + [5624] = 5595, + [5625] = 5544, [5626] = 5626, - [5627] = 5545, - [5628] = 5628, - [5629] = 5629, - [5630] = 5574, - [5631] = 5616, - [5632] = 5632, - [5633] = 5628, + [5627] = 5558, + [5628] = 5599, + [5629] = 5613, + [5630] = 5607, + [5631] = 5631, + [5632] = 5626, + [5633] = 5571, [5634] = 5634, - [5635] = 5546, - [5636] = 5533, - [5637] = 5628, - [5638] = 5638, - [5639] = 5624, - [5640] = 5552, - [5641] = 5562, + [5635] = 5635, + [5636] = 5636, + [5637] = 5559, + [5638] = 5550, + [5639] = 5639, + [5640] = 5640, + [5641] = 5534, [5642] = 5642, - [5643] = 5583, - [5644] = 5553, - [5645] = 5563, - [5646] = 5551, - [5647] = 5543, - [5648] = 5554, - [5649] = 5649, - [5650] = 5544, - [5651] = 5651, - [5652] = 5536, - [5653] = 5595, - [5654] = 5595, - [5655] = 5537, - [5656] = 5538, - [5657] = 5657, - [5658] = 5540, - [5659] = 5544, - [5660] = 5583, - [5661] = 5661, - [5662] = 5616, - [5663] = 5541, - [5664] = 5558, - [5665] = 5665, - [5666] = 5666, - [5667] = 5667, - [5668] = 5603, - [5669] = 5545, - [5670] = 5546, - [5671] = 5586, - [5672] = 5672, - [5673] = 5588, - [5674] = 5552, - [5675] = 5675, - [5676] = 5624, - [5677] = 5677, - [5678] = 5574, - [5679] = 5679, - [5680] = 5680, - [5681] = 5681, - [5682] = 5682, + [5643] = 5643, + [5644] = 5604, + [5645] = 5554, + [5646] = 5646, + [5647] = 5550, + [5648] = 5575, + [5649] = 5590, + [5650] = 5650, + [5651] = 5626, + [5652] = 5556, + [5653] = 5541, + [5654] = 5650, + [5655] = 5655, + [5656] = 5656, + [5657] = 5543, + [5658] = 5655, + [5659] = 5659, + [5660] = 5556, + [5661] = 5607, + [5662] = 5643, + [5663] = 5631, + [5664] = 5664, + [5665] = 5583, + [5666] = 5554, + [5667] = 5571, + [5668] = 5668, + [5669] = 5556, + [5670] = 5670, + [5671] = 5550, + [5672] = 5636, + [5673] = 5636, + [5674] = 5674, + [5675] = 5558, + [5676] = 5676, + [5677] = 5650, + [5678] = 5678, + [5679] = 5566, + [5680] = 5536, + [5681] = 5643, + [5682] = 5562, [5683] = 5683, [5684] = 5684, - [5685] = 5553, - [5686] = 5595, - [5687] = 5687, - [5688] = 5545, - [5689] = 5554, - [5690] = 5615, + [5685] = 5655, + [5686] = 5558, + [5687] = 5656, + [5688] = 5635, + [5689] = 5689, + [5690] = 5600, [5691] = 5691, - [5692] = 5692, - [5693] = 5693, - [5694] = 5588, - [5695] = 5539, - [5696] = 5546, - [5697] = 5595, - [5698] = 5698, - [5699] = 5616, - [5700] = 5700, - [5701] = 5592, - [5702] = 5702, - [5703] = 5628, - [5704] = 5704, + [5692] = 5554, + [5693] = 5550, + [5694] = 5659, + [5695] = 5678, + [5696] = 5683, + [5697] = 5697, + [5698] = 5559, + [5699] = 5546, + [5700] = 5559, + [5701] = 5623, + [5702] = 5595, + [5703] = 5566, + [5704] = 5613, [5705] = 5705, - [5706] = 5706, - [5707] = 5707, - [5708] = 5571, - [5709] = 5571, - [5710] = 5565, - [5711] = 5601, - [5712] = 5666, - [5713] = 5628, - [5714] = 5529, - [5715] = 5565, - [5716] = 5549, - [5717] = 5574, - [5718] = 5582, - [5719] = 5534, - [5720] = 5616, - [5721] = 5562, - [5722] = 5582, - [5723] = 5693, - [5724] = 5550, - [5725] = 5725, + [5706] = 5604, + [5707] = 5541, + [5708] = 5643, + [5709] = 5626, + [5710] = 5710, + [5711] = 5556, + [5712] = 5712, + [5713] = 5713, + [5714] = 5697, + [5715] = 5546, + [5716] = 5716, + [5717] = 5551, + [5718] = 5718, + [5719] = 5551, + [5720] = 5643, + [5721] = 5721, + [5722] = 5643, + [5723] = 5535, + [5724] = 5570, + [5725] = 5635, [5726] = 5726, - [5727] = 5574, - [5728] = 5568, - [5729] = 5726, - [5730] = 5557, - [5731] = 5731, - [5732] = 5529, - [5733] = 5601, - [5734] = 5557, - [5735] = 5529, - [5736] = 5558, - [5737] = 5563, - [5738] = 5551, - [5739] = 5628, - [5740] = 5557, - [5741] = 5529, - [5742] = 5571, - [5743] = 5539, - [5744] = 5657, - [5745] = 5541, + [5727] = 5583, + [5728] = 5636, + [5729] = 5547, + [5730] = 5590, + [5731] = 5534, + [5732] = 5543, + [5733] = 5555, + [5734] = 5573, + [5735] = 5593, + [5736] = 5736, + [5737] = 5664, + [5738] = 5566, + [5739] = 5555, + [5740] = 5740, + [5741] = 5741, + [5742] = 5547, + [5743] = 5553, + [5744] = 5595, + [5745] = 5571, [5746] = 5746, - [5747] = 5539, - [5748] = 5535, - [5749] = 5540, - [5750] = 5551, - [5751] = 5543, - [5752] = 5638, - [5753] = 5530, - [5754] = 5541, - [5755] = 5603, - [5756] = 5665, - [5757] = 5534, - [5758] = 5672, - [5759] = 5726, - [5760] = 5559, - [5761] = 5761, - [5762] = 5762, - [5763] = 5763, - [5764] = 5530, - [5765] = 5731, - [5766] = 5762, - [5767] = 5562, - [5768] = 5763, - [5769] = 5543, - [5770] = 5567, - [5771] = 5567, - [5772] = 5535, - [5773] = 5624, - [5774] = 5591, - [5775] = 5582, - [5776] = 5642, - [5777] = 5777, - [5778] = 5533, - [5779] = 5565, - [5780] = 5780, - [5781] = 5586, - [5782] = 5680, - [5783] = 5533, - [5784] = 5592, - [5785] = 5552, - [5786] = 5786, - [5787] = 5598, - [5788] = 5539, - [5789] = 5540, - [5790] = 5681, - [5791] = 5588, - [5792] = 5792, - [5793] = 5657, - [5794] = 5541, - [5795] = 5795, - [5796] = 5575, - [5797] = 5595, - [5798] = 5583, - [5799] = 5799, - [5800] = 5601, - [5801] = 5634, - [5802] = 5550, - [5803] = 5562, - [5804] = 5731, - [5805] = 5562, - [5806] = 5574, - [5807] = 5551, - [5808] = 5666, - [5809] = 5809, - [5810] = 5572, - [5811] = 5551, - [5812] = 5563, - [5813] = 5563, - [5814] = 5726, - [5815] = 5558, - [5816] = 5543, - [5817] = 5568, - [5818] = 5557, - [5819] = 5819, - [5820] = 5820, - [5821] = 5529, - [5822] = 5563, - [5823] = 5563, - [5824] = 5562, - [5825] = 5586, - [5826] = 5539, - [5827] = 5574, - [5828] = 5540, - [5829] = 5541, - [5830] = 5531, - [5831] = 5592, - [5832] = 5531, - [5833] = 5536, - [5834] = 5537, - [5835] = 5583, - [5836] = 5538, - [5837] = 5603, - [5838] = 5530, - [5839] = 5551, - [5840] = 5672, - [5841] = 5615, - [5842] = 5616, - [5843] = 5540, - [5844] = 5666, - [5845] = 5762, - [5846] = 5777, - [5847] = 5557, - [5848] = 5544, - [5849] = 5545, - [5850] = 5588, - [5851] = 5546, - [5852] = 5552, - [5853] = 5563, - [5854] = 5615, - [5855] = 5553, - [5856] = 5856, - [5857] = 5554, - [5858] = 5763, - [5859] = 5582, - [5860] = 5536, - [5861] = 5528, - [5862] = 5657, - [5863] = 5595, - [5864] = 5563, - [5865] = 5615, - [5866] = 5866, - [5867] = 5586, - [5868] = 5868, - [5869] = 5567, - [5870] = 5539, - [5871] = 5553, - [5872] = 5592, - [5873] = 5672, - [5874] = 5571, - [5875] = 5601, - [5876] = 5866, - [5877] = 5799, - [5878] = 5667, - [5879] = 5762, - [5880] = 5666, - [5881] = 5868, - [5882] = 5628, - [5883] = 5615, + [5747] = 5554, + [5748] = 5534, + [5749] = 5716, + [5750] = 5697, + [5751] = 5558, + [5752] = 5559, + [5753] = 5566, + [5754] = 5572, + [5755] = 5543, + [5756] = 5656, + [5757] = 5757, + [5758] = 5607, + [5759] = 5561, + [5760] = 5760, + [5761] = 5536, + [5762] = 5561, + [5763] = 5659, + [5764] = 5547, + [5765] = 5553, + [5766] = 5710, + [5767] = 5767, + [5768] = 5558, + [5769] = 5650, + [5770] = 5655, + [5771] = 5559, + [5772] = 5566, + [5773] = 5705, + [5774] = 5590, + [5775] = 5611, + [5776] = 5776, + [5777] = 5650, + [5778] = 5778, + [5779] = 5655, + [5780] = 5678, + [5781] = 5691, + [5782] = 5620, + [5783] = 5683, + [5784] = 5568, + [5785] = 5684, + [5786] = 5575, + [5787] = 5549, + [5788] = 5554, + [5789] = 5712, + [5790] = 5536, + [5791] = 5791, + [5792] = 5697, + [5793] = 5568, + [5794] = 5554, + [5795] = 5564, + [5796] = 5604, + [5797] = 5535, + [5798] = 5546, + [5799] = 5600, + [5800] = 5551, + [5801] = 5541, + [5802] = 5577, + [5803] = 5575, + [5804] = 5564, + [5805] = 5805, + [5806] = 5607, + [5807] = 5570, + [5808] = 5650, + [5809] = 5553, + [5810] = 5568, + [5811] = 5600, + [5812] = 5757, + [5813] = 5590, + [5814] = 5655, + [5815] = 5564, + [5816] = 5736, + [5817] = 5595, + [5818] = 5613, + [5819] = 5555, + [5820] = 5573, + [5821] = 5571, + [5822] = 5710, + [5823] = 5536, + [5824] = 5593, + [5825] = 5590, + [5826] = 5547, + [5827] = 5626, + [5828] = 5553, + [5829] = 5553, + [5830] = 5830, + [5831] = 5571, + [5832] = 5832, + [5833] = 5713, + [5834] = 5558, + [5835] = 5646, + [5836] = 5559, + [5837] = 5566, + [5838] = 5583, + [5839] = 5712, + [5840] = 5626, + [5841] = 5841, + [5842] = 5842, + [5843] = 5713, + [5844] = 5757, + [5845] = 5568, + [5846] = 5536, + [5847] = 5607, + [5848] = 5848, + [5849] = 5623, + [5850] = 5850, + [5851] = 5716, + [5852] = 5575, + [5853] = 5853, + [5854] = 5571, + [5855] = 5656, + [5856] = 5537, + [5857] = 5710, + [5858] = 5659, + [5859] = 5678, + [5860] = 5712, + [5861] = 5571, + [5862] = 5623, + [5863] = 5767, + [5864] = 5713, + [5865] = 5568, + [5866] = 5683, + [5867] = 5604, + [5868] = 5716, + [5869] = 5573, + [5870] = 5656, + [5871] = 5697, + [5872] = 5571, + [5873] = 5623, + [5874] = 5561, + [5875] = 5546, + [5876] = 5535, + [5877] = 5551, + [5878] = 5570, + [5879] = 5659, + [5880] = 5575, + [5881] = 5583, + [5882] = 5555, + [5883] = 5573, [5884] = 5616, - [5885] = 5885, - [5886] = 5675, - [5887] = 5533, - [5888] = 5707, - [5889] = 5763, - [5890] = 5534, - [5891] = 5557, - [5892] = 5529, - [5893] = 5582, - [5894] = 5681, - [5895] = 5550, - [5896] = 5539, - [5897] = 5558, - [5898] = 5603, - [5899] = 5672, - [5900] = 5762, - [5901] = 5901, - [5902] = 5540, - [5903] = 5541, - [5904] = 5681, - [5905] = 5533, - [5906] = 5624, - [5907] = 5588, - [5908] = 5541, - [5909] = 5543, - [5910] = 5568, - [5911] = 5557, - [5912] = 5615, - [5913] = 5567, - [5914] = 5530, - [5915] = 5763, - [5916] = 5540, + [5885] = 5718, + [5886] = 5886, + [5887] = 5577, + [5888] = 5650, + [5889] = 5594, + [5890] = 5577, + [5891] = 5623, + [5892] = 5595, + [5893] = 5593, + [5894] = 5740, + [5895] = 5567, + [5896] = 5848, + [5897] = 5678, + [5898] = 5636, + [5899] = 5899, + [5900] = 5635, + [5901] = 5534, + [5902] = 5547, + [5903] = 5593, + [5904] = 5553, + [5905] = 5905, + [5906] = 5541, + [5907] = 5655, + [5908] = 5558, + [5909] = 5559, + [5910] = 5910, + [5911] = 5911, + [5912] = 5566, + [5913] = 5536, + [5914] = 5561, + [5915] = 5607, + [5916] = 5626, + [5917] = 5716, + [5918] = 5710, + [5919] = 5712, + [5920] = 5623, + [5921] = 5713, + [5922] = 5683, + [5923] = 5562, + [5924] = 5543, }; static TSCharacterRange extras_character_set_1[] = { @@ -10960,7 +10982,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '[', 171, '\\', 108, ']', 172, - '{', 161, + '`', 307, + '{', 162, '|', 252, '}', 164, ); @@ -10969,7 +10992,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && (lookahead < '{' || '~' < lookahead)) ADVANCE(325); END_STATE(); case 14: @@ -10981,33 +11003,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 201, '(', 167, ')', 168, - '+', 254, + '*', 154, + '+', 253, ',', 163, - '-', 258, + '-', 257, '.', 196, - '/', 261, + '/', 31, '0', 314, ':', 170, ';', 169, - '<', 274, + '<', 267, '=', 160, '>', 191, - '?', 329, + '?', 328, '@', 327, '[', 171, '\\', 108, ']', 172, - '`', 307, '{', 161, '|', 252, '}', 164, - '~', 283, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(325); + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(325); END_STATE(); case 15: ADVANCE_MAP( @@ -11017,34 +11040,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 242, '\'', 201, '(', 167, - '*', 154, - '+', 253, + ')', 168, + '+', 254, ',', 163, - '-', 257, + '-', 258, '.', 196, - '/', 31, + '/', 261, '0', 314, ':', 170, ';', 169, - '<', 267, + '<', 274, '=', 160, '>', 191, - '?', 328, + '?', 329, '@', 327, '[', 171, '\\', 108, ']', 172, '`', 307, - '{', 162, + '{', 161, '|', 252, '}', 164, + '~', 283, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '[' || '^' < lookahead)) ADVANCE(325); END_STATE(); case 16: ADVANCE_MAP( @@ -13757,6 +13780,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(303); END_STATE(); case 265: + ACCEPT_TOKEN(anon_sym_assert); if (lookahead == 's') ADVANCE(304); END_STATE(); case 266: @@ -14042,7 +14066,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [28] = {.lex_state = 151, .external_lex_state = 2}, [29] = {.lex_state = 151, .external_lex_state = 2}, [30] = {.lex_state = 151, .external_lex_state = 2}, - [31] = {.lex_state = 12, .external_lex_state = 2}, + [31] = {.lex_state = 151, .external_lex_state = 2}, [32] = {.lex_state = 151, .external_lex_state = 2}, [33] = {.lex_state = 151, .external_lex_state = 2}, [34] = {.lex_state = 151, .external_lex_state = 2}, @@ -14053,19 +14077,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [39] = {.lex_state = 151, .external_lex_state = 2}, [40] = {.lex_state = 151, .external_lex_state = 2}, [41] = {.lex_state = 151, .external_lex_state = 2}, - [42] = {.lex_state = 12, .external_lex_state = 2}, + [42] = {.lex_state = 151, .external_lex_state = 2}, [43] = {.lex_state = 151, .external_lex_state = 2}, [44] = {.lex_state = 12, .external_lex_state = 2}, [45] = {.lex_state = 151, .external_lex_state = 2}, - [46] = {.lex_state = 12, .external_lex_state = 2}, + [46] = {.lex_state = 151, .external_lex_state = 2}, [47] = {.lex_state = 151, .external_lex_state = 2}, [48] = {.lex_state = 151, .external_lex_state = 2}, - [49] = {.lex_state = 151, .external_lex_state = 2}, + [49] = {.lex_state = 12, .external_lex_state = 2}, [50] = {.lex_state = 12, .external_lex_state = 2}, - [51] = {.lex_state = 151, .external_lex_state = 2}, + [51] = {.lex_state = 12, .external_lex_state = 2}, [52] = {.lex_state = 151, .external_lex_state = 2}, [53] = {.lex_state = 12, .external_lex_state = 2}, - [54] = {.lex_state = 151, .external_lex_state = 2}, + [54] = {.lex_state = 12, .external_lex_state = 2}, [55] = {.lex_state = 12, .external_lex_state = 2}, [56] = {.lex_state = 12, .external_lex_state = 2}, [57] = {.lex_state = 12, .external_lex_state = 2}, @@ -14083,36 +14107,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 4, .external_lex_state = 4}, [70] = {.lex_state = 4, .external_lex_state = 4}, [71] = {.lex_state = 4, .external_lex_state = 4}, - [72] = {.lex_state = 4, .external_lex_state = 3}, + [72] = {.lex_state = 12, .external_lex_state = 2}, [73] = {.lex_state = 4, .external_lex_state = 3}, [74] = {.lex_state = 4, .external_lex_state = 3}, [75] = {.lex_state = 4, .external_lex_state = 3}, [76] = {.lex_state = 4, .external_lex_state = 3}, [77] = {.lex_state = 4, .external_lex_state = 3}, [78] = {.lex_state = 12, .external_lex_state = 2}, - [79] = {.lex_state = 12, .external_lex_state = 2}, - [80] = {.lex_state = 4, .external_lex_state = 3}, - [81] = {.lex_state = 12, .external_lex_state = 2}, + [79] = {.lex_state = 4, .external_lex_state = 3}, + [80] = {.lex_state = 12, .external_lex_state = 2}, + [81] = {.lex_state = 4, .external_lex_state = 3}, [82] = {.lex_state = 4, .external_lex_state = 3}, [83] = {.lex_state = 4, .external_lex_state = 3}, - [84] = {.lex_state = 4, .external_lex_state = 3}, + [84] = {.lex_state = 12, .external_lex_state = 2}, [85] = {.lex_state = 4, .external_lex_state = 3}, [86] = {.lex_state = 12, .external_lex_state = 2}, [87] = {.lex_state = 12, .external_lex_state = 2}, [88] = {.lex_state = 12, .external_lex_state = 2}, [89] = {.lex_state = 12, .external_lex_state = 2}, - [90] = {.lex_state = 12, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 3}, [91] = {.lex_state = 4, .external_lex_state = 3}, [92] = {.lex_state = 4, .external_lex_state = 3}, [93] = {.lex_state = 4, .external_lex_state = 3}, - [94] = {.lex_state = 4, .external_lex_state = 4}, - [95] = {.lex_state = 4, .external_lex_state = 3}, + [94] = {.lex_state = 4, .external_lex_state = 3}, + [95] = {.lex_state = 4, .external_lex_state = 4}, [96] = {.lex_state = 4, .external_lex_state = 4}, - [97] = {.lex_state = 4, .external_lex_state = 3}, + [97] = {.lex_state = 4, .external_lex_state = 4}, [98] = {.lex_state = 4, .external_lex_state = 4}, [99] = {.lex_state = 4, .external_lex_state = 4}, [100] = {.lex_state = 4, .external_lex_state = 4}, - [101] = {.lex_state = 4, .external_lex_state = 4}, + [101] = {.lex_state = 4, .external_lex_state = 3}, [102] = {.lex_state = 4, .external_lex_state = 4}, [103] = {.lex_state = 4, .external_lex_state = 4}, [104] = {.lex_state = 4, .external_lex_state = 4}, @@ -14121,13 +14145,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 4, .external_lex_state = 3}, [108] = {.lex_state = 4, .external_lex_state = 3}, [109] = {.lex_state = 4, .external_lex_state = 3}, - [110] = {.lex_state = 4, .external_lex_state = 4}, + [110] = {.lex_state = 4, .external_lex_state = 3}, [111] = {.lex_state = 4, .external_lex_state = 4}, [112] = {.lex_state = 4, .external_lex_state = 3}, [113] = {.lex_state = 4, .external_lex_state = 3}, - [114] = {.lex_state = 4, .external_lex_state = 4}, - [115] = {.lex_state = 4, .external_lex_state = 3}, - [116] = {.lex_state = 4, .external_lex_state = 3}, + [114] = {.lex_state = 4, .external_lex_state = 3}, + [115] = {.lex_state = 4, .external_lex_state = 4}, + [116] = {.lex_state = 4, .external_lex_state = 4}, [117] = {.lex_state = 4, .external_lex_state = 3}, [118] = {.lex_state = 4, .external_lex_state = 3}, [119] = {.lex_state = 4, .external_lex_state = 3}, @@ -14145,14 +14169,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [131] = {.lex_state = 4, .external_lex_state = 3}, [132] = {.lex_state = 4, .external_lex_state = 3}, [133] = {.lex_state = 4, .external_lex_state = 3}, - [134] = {.lex_state = 12, .external_lex_state = 2}, + [134] = {.lex_state = 4, .external_lex_state = 3}, [135] = {.lex_state = 4, .external_lex_state = 3}, [136] = {.lex_state = 4, .external_lex_state = 3}, [137] = {.lex_state = 4, .external_lex_state = 3}, [138] = {.lex_state = 4, .external_lex_state = 3}, [139] = {.lex_state = 4, .external_lex_state = 3}, [140] = {.lex_state = 4, .external_lex_state = 3}, - [141] = {.lex_state = 4, .external_lex_state = 3}, + [141] = {.lex_state = 12, .external_lex_state = 2}, [142] = {.lex_state = 4, .external_lex_state = 3}, [143] = {.lex_state = 12, .external_lex_state = 2}, [144] = {.lex_state = 12, .external_lex_state = 2}, @@ -14175,13 +14199,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [161] = {.lex_state = 150, .external_lex_state = 3}, [162] = {.lex_state = 150, .external_lex_state = 3}, [163] = {.lex_state = 150, .external_lex_state = 3}, - [164] = {.lex_state = 151, .external_lex_state = 2}, + [164] = {.lex_state = 6, .external_lex_state = 3}, [165] = {.lex_state = 151, .external_lex_state = 2}, [166] = {.lex_state = 151, .external_lex_state = 2}, [167] = {.lex_state = 151, .external_lex_state = 2}, [168] = {.lex_state = 151, .external_lex_state = 2}, [169] = {.lex_state = 151, .external_lex_state = 2}, - [170] = {.lex_state = 6, .external_lex_state = 3}, + [170] = {.lex_state = 151, .external_lex_state = 2}, [171] = {.lex_state = 151, .external_lex_state = 2}, [172] = {.lex_state = 151, .external_lex_state = 2}, [173] = {.lex_state = 6, .external_lex_state = 4}, @@ -14218,14 +14242,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [204] = {.lex_state = 151, .external_lex_state = 2}, [205] = {.lex_state = 151, .external_lex_state = 2}, [206] = {.lex_state = 151, .external_lex_state = 2}, - [207] = {.lex_state = 150, .external_lex_state = 4}, - [208] = {.lex_state = 150, .external_lex_state = 4}, + [207] = {.lex_state = 151, .external_lex_state = 2}, + [208] = {.lex_state = 151, .external_lex_state = 2}, [209] = {.lex_state = 151, .external_lex_state = 2}, - [210] = {.lex_state = 151, .external_lex_state = 5}, - [211] = {.lex_state = 150, .external_lex_state = 4}, - [212] = {.lex_state = 151, .external_lex_state = 2}, + [210] = {.lex_state = 150, .external_lex_state = 4}, + [211] = {.lex_state = 151, .external_lex_state = 5}, + [212] = {.lex_state = 150, .external_lex_state = 4}, [213] = {.lex_state = 150, .external_lex_state = 4}, - [214] = {.lex_state = 151, .external_lex_state = 2}, + [214] = {.lex_state = 150, .external_lex_state = 4}, [215] = {.lex_state = 151, .external_lex_state = 2}, [216] = {.lex_state = 150, .external_lex_state = 4}, [217] = {.lex_state = 151, .external_lex_state = 2}, @@ -14235,15 +14259,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [221] = {.lex_state = 150, .external_lex_state = 4}, [222] = {.lex_state = 150, .external_lex_state = 4}, [223] = {.lex_state = 150, .external_lex_state = 4}, - [224] = {.lex_state = 150, .external_lex_state = 4}, - [225] = {.lex_state = 150, .external_lex_state = 4}, + [224] = {.lex_state = 151, .external_lex_state = 2}, + [225] = {.lex_state = 151, .external_lex_state = 2}, [226] = {.lex_state = 150, .external_lex_state = 4}, [227] = {.lex_state = 151, .external_lex_state = 2}, - [228] = {.lex_state = 151, .external_lex_state = 2}, + [228] = {.lex_state = 150, .external_lex_state = 4}, [229] = {.lex_state = 150, .external_lex_state = 4}, [230] = {.lex_state = 150, .external_lex_state = 4}, [231] = {.lex_state = 150, .external_lex_state = 4}, - [232] = {.lex_state = 150, .external_lex_state = 4}, + [232] = {.lex_state = 151, .external_lex_state = 2}, [233] = {.lex_state = 150, .external_lex_state = 4}, [234] = {.lex_state = 150, .external_lex_state = 4}, [235] = {.lex_state = 150, .external_lex_state = 4}, @@ -14251,12 +14275,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 150, .external_lex_state = 4}, [238] = {.lex_state = 151, .external_lex_state = 2}, [239] = {.lex_state = 150, .external_lex_state = 4}, - [240] = {.lex_state = 151, .external_lex_state = 2}, - [241] = {.lex_state = 151, .external_lex_state = 2}, + [240] = {.lex_state = 150, .external_lex_state = 4}, + [241] = {.lex_state = 150, .external_lex_state = 4}, [242] = {.lex_state = 150, .external_lex_state = 4}, [243] = {.lex_state = 150, .external_lex_state = 4}, - [244] = {.lex_state = 150, .external_lex_state = 4}, - [245] = {.lex_state = 151, .external_lex_state = 2}, + [244] = {.lex_state = 151, .external_lex_state = 2}, + [245] = {.lex_state = 150, .external_lex_state = 4}, [246] = {.lex_state = 150, .external_lex_state = 4}, [247] = {.lex_state = 150, .external_lex_state = 4}, [248] = {.lex_state = 151, .external_lex_state = 2}, @@ -14280,23 +14304,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [266] = {.lex_state = 151, .external_lex_state = 2}, [267] = {.lex_state = 151, .external_lex_state = 2}, [268] = {.lex_state = 151, .external_lex_state = 2}, - [269] = {.lex_state = 4, .external_lex_state = 3}, + [269] = {.lex_state = 151, .external_lex_state = 2}, [270] = {.lex_state = 151, .external_lex_state = 2}, - [271] = {.lex_state = 4, .external_lex_state = 3}, + [271] = {.lex_state = 151, .external_lex_state = 2}, [272] = {.lex_state = 151, .external_lex_state = 2}, [273] = {.lex_state = 151, .external_lex_state = 2}, [274] = {.lex_state = 151, .external_lex_state = 2}, [275] = {.lex_state = 151, .external_lex_state = 2}, [276] = {.lex_state = 151, .external_lex_state = 2}, [277] = {.lex_state = 151, .external_lex_state = 2}, - [278] = {.lex_state = 151, .external_lex_state = 2}, + [278] = {.lex_state = 4, .external_lex_state = 3}, [279] = {.lex_state = 151, .external_lex_state = 2}, - [280] = {.lex_state = 151, .external_lex_state = 2}, + [280] = {.lex_state = 4, .external_lex_state = 3}, [281] = {.lex_state = 151, .external_lex_state = 2}, [282] = {.lex_state = 4, .external_lex_state = 3}, [283] = {.lex_state = 151, .external_lex_state = 2}, - [284] = {.lex_state = 151, .external_lex_state = 2}, - [285] = {.lex_state = 4, .external_lex_state = 3}, + [284] = {.lex_state = 4, .external_lex_state = 3}, + [285] = {.lex_state = 151, .external_lex_state = 2}, [286] = {.lex_state = 151, .external_lex_state = 2}, [287] = {.lex_state = 151, .external_lex_state = 2}, [288] = {.lex_state = 151, .external_lex_state = 2}, @@ -14305,8 +14329,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [291] = {.lex_state = 151, .external_lex_state = 2}, [292] = {.lex_state = 151, .external_lex_state = 2}, [293] = {.lex_state = 151, .external_lex_state = 2}, - [294] = {.lex_state = 151, .external_lex_state = 2}, - [295] = {.lex_state = 151, .external_lex_state = 5}, + [294] = {.lex_state = 151, .external_lex_state = 5}, + [295] = {.lex_state = 151, .external_lex_state = 2}, [296] = {.lex_state = 151, .external_lex_state = 2}, [297] = {.lex_state = 151, .external_lex_state = 2}, [298] = {.lex_state = 151, .external_lex_state = 2}, @@ -14656,18 +14680,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 6, .external_lex_state = 4}, [643] = {.lex_state = 6, .external_lex_state = 4}, [644] = {.lex_state = 6, .external_lex_state = 4}, - [645] = {.lex_state = 6, .external_lex_state = 4}, + [645] = {.lex_state = 151, .external_lex_state = 2}, [646] = {.lex_state = 6, .external_lex_state = 4}, - [647] = {.lex_state = 151, .external_lex_state = 2}, + [647] = {.lex_state = 6, .external_lex_state = 4}, [648] = {.lex_state = 151, .external_lex_state = 2}, [649] = {.lex_state = 6, .external_lex_state = 4}, [650] = {.lex_state = 6, .external_lex_state = 4}, - [651] = {.lex_state = 151, .external_lex_state = 2}, + [651] = {.lex_state = 6, .external_lex_state = 4}, [652] = {.lex_state = 151, .external_lex_state = 2}, [653] = {.lex_state = 151, .external_lex_state = 2}, - [654] = {.lex_state = 6, .external_lex_state = 4}, - [655] = {.lex_state = 151, .external_lex_state = 2}, - [656] = {.lex_state = 6, .external_lex_state = 4}, + [654] = {.lex_state = 151, .external_lex_state = 2}, + [655] = {.lex_state = 6, .external_lex_state = 4}, + [656] = {.lex_state = 151, .external_lex_state = 2}, [657] = {.lex_state = 6, .external_lex_state = 4}, [658] = {.lex_state = 151, .external_lex_state = 2}, [659] = {.lex_state = 6, .external_lex_state = 4}, @@ -14685,79 +14709,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [671] = {.lex_state = 6, .external_lex_state = 3}, [672] = {.lex_state = 6, .external_lex_state = 3}, [673] = {.lex_state = 6, .external_lex_state = 4}, - [674] = {.lex_state = 6, .external_lex_state = 4}, + [674] = {.lex_state = 6, .external_lex_state = 3}, [675] = {.lex_state = 6, .external_lex_state = 4}, [676] = {.lex_state = 6, .external_lex_state = 4}, [677] = {.lex_state = 6, .external_lex_state = 4}, [678] = {.lex_state = 6, .external_lex_state = 4}, - [679] = {.lex_state = 6, .external_lex_state = 3}, + [679] = {.lex_state = 6, .external_lex_state = 4}, [680] = {.lex_state = 6, .external_lex_state = 4}, [681] = {.lex_state = 6, .external_lex_state = 4}, - [682] = {.lex_state = 7, .external_lex_state = 3}, - [683] = {.lex_state = 7, .external_lex_state = 3}, - [684] = {.lex_state = 151, .external_lex_state = 5}, - [685] = {.lex_state = 151, .external_lex_state = 2}, - [686] = {.lex_state = 151, .external_lex_state = 5}, - [687] = {.lex_state = 6, .external_lex_state = 3}, - [688] = {.lex_state = 151, .external_lex_state = 5}, - [689] = {.lex_state = 6, .external_lex_state = 4}, - [690] = {.lex_state = 6, .external_lex_state = 3}, - [691] = {.lex_state = 6, .external_lex_state = 4}, + [682] = {.lex_state = 6, .external_lex_state = 3}, + [683] = {.lex_state = 151, .external_lex_state = 5}, + [684] = {.lex_state = 7, .external_lex_state = 3}, + [685] = {.lex_state = 7, .external_lex_state = 3}, + [686] = {.lex_state = 151, .external_lex_state = 2}, + [687] = {.lex_state = 151, .external_lex_state = 5}, + [688] = {.lex_state = 6, .external_lex_state = 3}, + [689] = {.lex_state = 151, .external_lex_state = 5}, + [690] = {.lex_state = 151, .external_lex_state = 2}, + [691] = {.lex_state = 151, .external_lex_state = 5}, [692] = {.lex_state = 6, .external_lex_state = 4}, - [693] = {.lex_state = 151, .external_lex_state = 2}, - [694] = {.lex_state = 151, .external_lex_state = 2}, - [695] = {.lex_state = 6, .external_lex_state = 3}, - [696] = {.lex_state = 6, .external_lex_state = 3}, + [693] = {.lex_state = 6, .external_lex_state = 3}, + [694] = {.lex_state = 151, .external_lex_state = 5}, + [695] = {.lex_state = 6, .external_lex_state = 4}, + [696] = {.lex_state = 6, .external_lex_state = 4}, [697] = {.lex_state = 6, .external_lex_state = 3}, - [698] = {.lex_state = 151, .external_lex_state = 5}, + [698] = {.lex_state = 6, .external_lex_state = 3}, [699] = {.lex_state = 151, .external_lex_state = 5}, - [700] = {.lex_state = 151, .external_lex_state = 5}, - [701] = {.lex_state = 151, .external_lex_state = 5}, + [700] = {.lex_state = 6, .external_lex_state = 4}, + [701] = {.lex_state = 151, .external_lex_state = 2}, [702] = {.lex_state = 6, .external_lex_state = 3}, - [703] = {.lex_state = 6, .external_lex_state = 4}, - [704] = {.lex_state = 6, .external_lex_state = 4}, - [705] = {.lex_state = 151, .external_lex_state = 5}, - [706] = {.lex_state = 6, .external_lex_state = 3}, - [707] = {.lex_state = 151, .external_lex_state = 2}, + [703] = {.lex_state = 151, .external_lex_state = 5}, + [704] = {.lex_state = 151, .external_lex_state = 5}, + [705] = {.lex_state = 6, .external_lex_state = 4}, + [706] = {.lex_state = 151, .external_lex_state = 2}, + [707] = {.lex_state = 6, .external_lex_state = 3}, [708] = {.lex_state = 6, .external_lex_state = 3}, - [709] = {.lex_state = 6, .external_lex_state = 3}, + [709] = {.lex_state = 151, .external_lex_state = 2}, [710] = {.lex_state = 6, .external_lex_state = 3}, - [711] = {.lex_state = 6, .external_lex_state = 3}, + [711] = {.lex_state = 151, .external_lex_state = 2}, [712] = {.lex_state = 6, .external_lex_state = 3}, - [713] = {.lex_state = 151, .external_lex_state = 2}, - [714] = {.lex_state = 151, .external_lex_state = 2}, - [715] = {.lex_state = 151, .external_lex_state = 2}, - [716] = {.lex_state = 6, .external_lex_state = 3}, + [713] = {.lex_state = 6, .external_lex_state = 3}, + [714] = {.lex_state = 6, .external_lex_state = 3}, + [715] = {.lex_state = 151, .external_lex_state = 5}, + [716] = {.lex_state = 151, .external_lex_state = 5}, [717] = {.lex_state = 151, .external_lex_state = 5}, - [718] = {.lex_state = 6, .external_lex_state = 3}, - [719] = {.lex_state = 151, .external_lex_state = 2}, - [720] = {.lex_state = 151, .external_lex_state = 2}, - [721] = {.lex_state = 151, .external_lex_state = 5}, - [722] = {.lex_state = 151, .external_lex_state = 5}, + [718] = {.lex_state = 151, .external_lex_state = 5}, + [719] = {.lex_state = 151, .external_lex_state = 5}, + [720] = {.lex_state = 151, .external_lex_state = 5}, + [721] = {.lex_state = 151, .external_lex_state = 2}, + [722] = {.lex_state = 151, .external_lex_state = 2}, [723] = {.lex_state = 151, .external_lex_state = 5}, - [724] = {.lex_state = 6, .external_lex_state = 3}, - [725] = {.lex_state = 151, .external_lex_state = 5}, - [726] = {.lex_state = 151, .external_lex_state = 2}, + [724] = {.lex_state = 151, .external_lex_state = 5}, + [725] = {.lex_state = 151, .external_lex_state = 2}, + [726] = {.lex_state = 6, .external_lex_state = 3}, [727] = {.lex_state = 6, .external_lex_state = 3}, - [728] = {.lex_state = 6, .external_lex_state = 3}, - [729] = {.lex_state = 151, .external_lex_state = 5}, - [730] = {.lex_state = 151, .external_lex_state = 2}, - [731] = {.lex_state = 151, .external_lex_state = 5}, + [728] = {.lex_state = 151, .external_lex_state = 5}, + [729] = {.lex_state = 6, .external_lex_state = 3}, + [730] = {.lex_state = 151, .external_lex_state = 5}, + [731] = {.lex_state = 151, .external_lex_state = 2}, [732] = {.lex_state = 151, .external_lex_state = 5}, - [733] = {.lex_state = 151, .external_lex_state = 2}, + [733] = {.lex_state = 6, .external_lex_state = 3}, [734] = {.lex_state = 151, .external_lex_state = 2}, - [735] = {.lex_state = 6, .external_lex_state = 3}, - [736] = {.lex_state = 151, .external_lex_state = 2}, - [737] = {.lex_state = 151, .external_lex_state = 5}, - [738] = {.lex_state = 6, .external_lex_state = 3}, + [735] = {.lex_state = 151, .external_lex_state = 5}, + [736] = {.lex_state = 151, .external_lex_state = 5}, + [737] = {.lex_state = 151, .external_lex_state = 2}, + [738] = {.lex_state = 151, .external_lex_state = 2}, [739] = {.lex_state = 151, .external_lex_state = 2}, - [740] = {.lex_state = 151, .external_lex_state = 5}, - [741] = {.lex_state = 6, .external_lex_state = 3}, - [742] = {.lex_state = 151, .external_lex_state = 5}, - [743] = {.lex_state = 151, .external_lex_state = 5}, - [744] = {.lex_state = 151, .external_lex_state = 5}, - [745] = {.lex_state = 151, .external_lex_state = 5}, - [746] = {.lex_state = 6, .external_lex_state = 3}, + [740] = {.lex_state = 6, .external_lex_state = 3}, + [741] = {.lex_state = 151, .external_lex_state = 2}, + [742] = {.lex_state = 6, .external_lex_state = 3}, + [743] = {.lex_state = 6, .external_lex_state = 3}, + [744] = {.lex_state = 6, .external_lex_state = 3}, + [745] = {.lex_state = 6, .external_lex_state = 3}, + [746] = {.lex_state = 151, .external_lex_state = 5}, [747] = {.lex_state = 6, .external_lex_state = 3}, [748] = {.lex_state = 151, .external_lex_state = 5}, [749] = {.lex_state = 151, .external_lex_state = 2}, @@ -14785,8 +14809,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [771] = {.lex_state = 151, .external_lex_state = 2}, [772] = {.lex_state = 151, .external_lex_state = 2}, [773] = {.lex_state = 151, .external_lex_state = 2}, - [774] = {.lex_state = 15, .external_lex_state = 2}, - [775] = {.lex_state = 151, .external_lex_state = 2}, + [774] = {.lex_state = 151, .external_lex_state = 2}, + [775] = {.lex_state = 13, .external_lex_state = 2}, [776] = {.lex_state = 151, .external_lex_state = 2}, [777] = {.lex_state = 151, .external_lex_state = 2}, [778] = {.lex_state = 151, .external_lex_state = 2}, @@ -14794,15 +14818,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [780] = {.lex_state = 151, .external_lex_state = 2}, [781] = {.lex_state = 151, .external_lex_state = 2}, [782] = {.lex_state = 151, .external_lex_state = 2}, - [783] = {.lex_state = 151, .external_lex_state = 2}, + [783] = {.lex_state = 13, .external_lex_state = 2}, [784] = {.lex_state = 151, .external_lex_state = 2}, [785] = {.lex_state = 151, .external_lex_state = 2}, - [786] = {.lex_state = 151, .external_lex_state = 2}, + [786] = {.lex_state = 13, .external_lex_state = 2}, [787] = {.lex_state = 151, .external_lex_state = 2}, [788] = {.lex_state = 151, .external_lex_state = 2}, [789] = {.lex_state = 151, .external_lex_state = 2}, [790] = {.lex_state = 151, .external_lex_state = 2}, - [791] = {.lex_state = 151, .external_lex_state = 2}, + [791] = {.lex_state = 13, .external_lex_state = 2}, [792] = {.lex_state = 151, .external_lex_state = 2}, [793] = {.lex_state = 151, .external_lex_state = 2}, [794] = {.lex_state = 151, .external_lex_state = 2}, @@ -14812,7 +14836,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [798] = {.lex_state = 151, .external_lex_state = 2}, [799] = {.lex_state = 151, .external_lex_state = 2}, [800] = {.lex_state = 151, .external_lex_state = 2}, - [801] = {.lex_state = 15, .external_lex_state = 2}, + [801] = {.lex_state = 151, .external_lex_state = 2}, [802] = {.lex_state = 151, .external_lex_state = 2}, [803] = {.lex_state = 151, .external_lex_state = 2}, [804] = {.lex_state = 151, .external_lex_state = 2}, @@ -14830,7 +14854,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [816] = {.lex_state = 151, .external_lex_state = 2}, [817] = {.lex_state = 151, .external_lex_state = 2}, [818] = {.lex_state = 151, .external_lex_state = 2}, - [819] = {.lex_state = 15, .external_lex_state = 2}, + [819] = {.lex_state = 151, .external_lex_state = 2}, [820] = {.lex_state = 151, .external_lex_state = 2}, [821] = {.lex_state = 151, .external_lex_state = 2}, [822] = {.lex_state = 151, .external_lex_state = 2}, @@ -14847,7 +14871,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [833] = {.lex_state = 151, .external_lex_state = 2}, [834] = {.lex_state = 151, .external_lex_state = 2}, [835] = {.lex_state = 151, .external_lex_state = 2}, - [836] = {.lex_state = 15, .external_lex_state = 2}, + [836] = {.lex_state = 151, .external_lex_state = 2}, [837] = {.lex_state = 151, .external_lex_state = 2}, [838] = {.lex_state = 151, .external_lex_state = 2}, [839] = {.lex_state = 151, .external_lex_state = 2}, @@ -14858,7 +14882,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [844] = {.lex_state = 151, .external_lex_state = 2}, [845] = {.lex_state = 151, .external_lex_state = 2}, [846] = {.lex_state = 151, .external_lex_state = 2}, - [847] = {.lex_state = 151, .external_lex_state = 2}, + [847] = {.lex_state = 13, .external_lex_state = 2}, [848] = {.lex_state = 151, .external_lex_state = 2}, [849] = {.lex_state = 151, .external_lex_state = 2}, [850] = {.lex_state = 151, .external_lex_state = 2}, @@ -14867,7 +14891,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [853] = {.lex_state = 151, .external_lex_state = 2}, [854] = {.lex_state = 151, .external_lex_state = 2}, [855] = {.lex_state = 151, .external_lex_state = 2}, - [856] = {.lex_state = 15, .external_lex_state = 2}, + [856] = {.lex_state = 151, .external_lex_state = 2}, [857] = {.lex_state = 151, .external_lex_state = 2}, [858] = {.lex_state = 151, .external_lex_state = 2}, [859] = {.lex_state = 151, .external_lex_state = 2}, @@ -14881,17 +14905,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [867] = {.lex_state = 151, .external_lex_state = 2}, [868] = {.lex_state = 151, .external_lex_state = 2}, [869] = {.lex_state = 151, .external_lex_state = 2}, - [870] = {.lex_state = 15, .external_lex_state = 2}, - [871] = {.lex_state = 15, .external_lex_state = 2}, - [872] = {.lex_state = 15, .external_lex_state = 2}, - [873] = {.lex_state = 15, .external_lex_state = 2}, - [874] = {.lex_state = 15, .external_lex_state = 2}, - [875] = {.lex_state = 15, .external_lex_state = 2}, - [876] = {.lex_state = 15, .external_lex_state = 2}, - [877] = {.lex_state = 15, .external_lex_state = 2}, - [878] = {.lex_state = 15, .external_lex_state = 2}, - [879] = {.lex_state = 15, .external_lex_state = 2}, - [880] = {.lex_state = 15, .external_lex_state = 2}, + [870] = {.lex_state = 13, .external_lex_state = 2}, + [871] = {.lex_state = 13, .external_lex_state = 2}, + [872] = {.lex_state = 13, .external_lex_state = 2}, + [873] = {.lex_state = 13, .external_lex_state = 2}, + [874] = {.lex_state = 13, .external_lex_state = 2}, + [875] = {.lex_state = 13, .external_lex_state = 2}, + [876] = {.lex_state = 13, .external_lex_state = 2}, + [877] = {.lex_state = 13, .external_lex_state = 2}, + [878] = {.lex_state = 13, .external_lex_state = 2}, + [879] = {.lex_state = 13, .external_lex_state = 2}, + [880] = {.lex_state = 13, .external_lex_state = 2}, [881] = {.lex_state = 151, .external_lex_state = 2}, [882] = {.lex_state = 151, .external_lex_state = 2}, [883] = {.lex_state = 151, .external_lex_state = 2}, @@ -14905,442 +14929,442 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [891] = {.lex_state = 151, .external_lex_state = 2}, [892] = {.lex_state = 151, .external_lex_state = 2}, [893] = {.lex_state = 151, .external_lex_state = 2}, - [894] = {.lex_state = 15, .external_lex_state = 2}, - [895] = {.lex_state = 15, .external_lex_state = 2}, - [896] = {.lex_state = 15, .external_lex_state = 2}, - [897] = {.lex_state = 15, .external_lex_state = 2}, - [898] = {.lex_state = 15, .external_lex_state = 2}, - [899] = {.lex_state = 15, .external_lex_state = 2}, - [900] = {.lex_state = 15, .external_lex_state = 2}, - [901] = {.lex_state = 15, .external_lex_state = 2}, - [902] = {.lex_state = 15, .external_lex_state = 2}, - [903] = {.lex_state = 15, .external_lex_state = 2}, - [904] = {.lex_state = 15, .external_lex_state = 2}, - [905] = {.lex_state = 15, .external_lex_state = 2}, - [906] = {.lex_state = 15, .external_lex_state = 2}, - [907] = {.lex_state = 15, .external_lex_state = 2}, - [908] = {.lex_state = 15, .external_lex_state = 2}, - [909] = {.lex_state = 15, .external_lex_state = 2}, - [910] = {.lex_state = 15, .external_lex_state = 2}, - [911] = {.lex_state = 14, .external_lex_state = 2}, - [912] = {.lex_state = 14, .external_lex_state = 2}, - [913] = {.lex_state = 14, .external_lex_state = 2}, - [914] = {.lex_state = 15, .external_lex_state = 2}, - [915] = {.lex_state = 15, .external_lex_state = 2}, - [916] = {.lex_state = 15, .external_lex_state = 2}, - [917] = {.lex_state = 15, .external_lex_state = 2}, - [918] = {.lex_state = 15, .external_lex_state = 2}, - [919] = {.lex_state = 15, .external_lex_state = 2}, - [920] = {.lex_state = 15, .external_lex_state = 2}, - [921] = {.lex_state = 15, .external_lex_state = 2}, - [922] = {.lex_state = 15, .external_lex_state = 2}, - [923] = {.lex_state = 17, .external_lex_state = 2}, - [924] = {.lex_state = 15, .external_lex_state = 2}, - [925] = {.lex_state = 15, .external_lex_state = 2}, - [926] = {.lex_state = 15, .external_lex_state = 2}, - [927] = {.lex_state = 15, .external_lex_state = 2}, - [928] = {.lex_state = 15, .external_lex_state = 2}, - [929] = {.lex_state = 15, .external_lex_state = 2}, - [930] = {.lex_state = 15, .external_lex_state = 2}, - [931] = {.lex_state = 15, .external_lex_state = 2}, - [932] = {.lex_state = 15, .external_lex_state = 2}, - [933] = {.lex_state = 15, .external_lex_state = 2}, - [934] = {.lex_state = 15, .external_lex_state = 2}, - [935] = {.lex_state = 15, .external_lex_state = 2}, - [936] = {.lex_state = 15, .external_lex_state = 2}, - [937] = {.lex_state = 15, .external_lex_state = 2}, - [938] = {.lex_state = 15, .external_lex_state = 2}, - [939] = {.lex_state = 15, .external_lex_state = 2}, - [940] = {.lex_state = 15, .external_lex_state = 2}, - [941] = {.lex_state = 15, .external_lex_state = 2}, - [942] = {.lex_state = 15, .external_lex_state = 2}, - [943] = {.lex_state = 15, .external_lex_state = 2}, - [944] = {.lex_state = 15, .external_lex_state = 2}, - [945] = {.lex_state = 15, .external_lex_state = 2}, - [946] = {.lex_state = 15, .external_lex_state = 2}, - [947] = {.lex_state = 15, .external_lex_state = 2}, - [948] = {.lex_state = 15, .external_lex_state = 2}, - [949] = {.lex_state = 15, .external_lex_state = 2}, - [950] = {.lex_state = 15, .external_lex_state = 2}, - [951] = {.lex_state = 15, .external_lex_state = 2}, - [952] = {.lex_state = 15, .external_lex_state = 2}, - [953] = {.lex_state = 15, .external_lex_state = 2}, - [954] = {.lex_state = 15, .external_lex_state = 2}, - [955] = {.lex_state = 15, .external_lex_state = 2}, - [956] = {.lex_state = 15, .external_lex_state = 2}, - [957] = {.lex_state = 15, .external_lex_state = 2}, - [958] = {.lex_state = 15, .external_lex_state = 2}, - [959] = {.lex_state = 15, .external_lex_state = 2}, - [960] = {.lex_state = 15, .external_lex_state = 2}, - [961] = {.lex_state = 15, .external_lex_state = 2}, - [962] = {.lex_state = 15, .external_lex_state = 2}, - [963] = {.lex_state = 15, .external_lex_state = 2}, - [964] = {.lex_state = 15, .external_lex_state = 2}, - [965] = {.lex_state = 15, .external_lex_state = 2}, - [966] = {.lex_state = 15, .external_lex_state = 2}, - [967] = {.lex_state = 15, .external_lex_state = 2}, - [968] = {.lex_state = 15, .external_lex_state = 2}, - [969] = {.lex_state = 15, .external_lex_state = 2}, - [970] = {.lex_state = 15, .external_lex_state = 2}, - [971] = {.lex_state = 15, .external_lex_state = 2}, - [972] = {.lex_state = 15, .external_lex_state = 2}, - [973] = {.lex_state = 15, .external_lex_state = 2}, - [974] = {.lex_state = 15, .external_lex_state = 2}, - [975] = {.lex_state = 15, .external_lex_state = 2}, - [976] = {.lex_state = 15, .external_lex_state = 2}, - [977] = {.lex_state = 15, .external_lex_state = 2}, - [978] = {.lex_state = 15, .external_lex_state = 2}, - [979] = {.lex_state = 15, .external_lex_state = 2}, - [980] = {.lex_state = 15, .external_lex_state = 2}, - [981] = {.lex_state = 15, .external_lex_state = 2}, - [982] = {.lex_state = 15, .external_lex_state = 2}, - [983] = {.lex_state = 15, .external_lex_state = 2}, - [984] = {.lex_state = 15, .external_lex_state = 2}, - [985] = {.lex_state = 15, .external_lex_state = 2}, - [986] = {.lex_state = 15, .external_lex_state = 2}, - [987] = {.lex_state = 15, .external_lex_state = 2}, - [988] = {.lex_state = 15, .external_lex_state = 2}, - [989] = {.lex_state = 15, .external_lex_state = 2}, - [990] = {.lex_state = 15, .external_lex_state = 2}, - [991] = {.lex_state = 15, .external_lex_state = 2}, - [992] = {.lex_state = 15, .external_lex_state = 2}, - [993] = {.lex_state = 15, .external_lex_state = 2}, - [994] = {.lex_state = 15, .external_lex_state = 2}, - [995] = {.lex_state = 15, .external_lex_state = 2}, - [996] = {.lex_state = 15, .external_lex_state = 2}, - [997] = {.lex_state = 15, .external_lex_state = 2}, - [998] = {.lex_state = 15, .external_lex_state = 2}, - [999] = {.lex_state = 15, .external_lex_state = 2}, - [1000] = {.lex_state = 15, .external_lex_state = 2}, - [1001] = {.lex_state = 15, .external_lex_state = 2}, - [1002] = {.lex_state = 15, .external_lex_state = 2}, - [1003] = {.lex_state = 15, .external_lex_state = 2}, - [1004] = {.lex_state = 15, .external_lex_state = 2}, - [1005] = {.lex_state = 15, .external_lex_state = 2}, - [1006] = {.lex_state = 15, .external_lex_state = 2}, - [1007] = {.lex_state = 15, .external_lex_state = 2}, - [1008] = {.lex_state = 15, .external_lex_state = 2}, - [1009] = {.lex_state = 15, .external_lex_state = 2}, - [1010] = {.lex_state = 15, .external_lex_state = 2}, - [1011] = {.lex_state = 15, .external_lex_state = 2}, - [1012] = {.lex_state = 15, .external_lex_state = 2}, - [1013] = {.lex_state = 15, .external_lex_state = 2}, - [1014] = {.lex_state = 15, .external_lex_state = 2}, - [1015] = {.lex_state = 15, .external_lex_state = 2}, - [1016] = {.lex_state = 15, .external_lex_state = 2}, - [1017] = {.lex_state = 15, .external_lex_state = 2}, - [1018] = {.lex_state = 15, .external_lex_state = 2}, - [1019] = {.lex_state = 15, .external_lex_state = 2}, - [1020] = {.lex_state = 15, .external_lex_state = 2}, - [1021] = {.lex_state = 15, .external_lex_state = 2}, - [1022] = {.lex_state = 15, .external_lex_state = 2}, - [1023] = {.lex_state = 15, .external_lex_state = 2}, - [1024] = {.lex_state = 15, .external_lex_state = 2}, - [1025] = {.lex_state = 15, .external_lex_state = 2}, - [1026] = {.lex_state = 15, .external_lex_state = 2}, - [1027] = {.lex_state = 15, .external_lex_state = 2}, - [1028] = {.lex_state = 15, .external_lex_state = 2}, - [1029] = {.lex_state = 15, .external_lex_state = 2}, - [1030] = {.lex_state = 15, .external_lex_state = 2}, - [1031] = {.lex_state = 15, .external_lex_state = 2}, - [1032] = {.lex_state = 15, .external_lex_state = 2}, - [1033] = {.lex_state = 15, .external_lex_state = 2}, - [1034] = {.lex_state = 15, .external_lex_state = 2}, - [1035] = {.lex_state = 15, .external_lex_state = 2}, - [1036] = {.lex_state = 15, .external_lex_state = 2}, - [1037] = {.lex_state = 15, .external_lex_state = 2}, - [1038] = {.lex_state = 15, .external_lex_state = 2}, - [1039] = {.lex_state = 15, .external_lex_state = 2}, - [1040] = {.lex_state = 15, .external_lex_state = 2}, - [1041] = {.lex_state = 15, .external_lex_state = 2}, - [1042] = {.lex_state = 15, .external_lex_state = 2}, - [1043] = {.lex_state = 15, .external_lex_state = 2}, - [1044] = {.lex_state = 15, .external_lex_state = 2}, - [1045] = {.lex_state = 15, .external_lex_state = 2}, - [1046] = {.lex_state = 15, .external_lex_state = 2}, - [1047] = {.lex_state = 15, .external_lex_state = 2}, - [1048] = {.lex_state = 15, .external_lex_state = 2}, - [1049] = {.lex_state = 15, .external_lex_state = 2}, - [1050] = {.lex_state = 15, .external_lex_state = 2}, - [1051] = {.lex_state = 15, .external_lex_state = 2}, - [1052] = {.lex_state = 15, .external_lex_state = 2}, - [1053] = {.lex_state = 15, .external_lex_state = 2}, - [1054] = {.lex_state = 15, .external_lex_state = 2}, - [1055] = {.lex_state = 15, .external_lex_state = 2}, - [1056] = {.lex_state = 15, .external_lex_state = 2}, - [1057] = {.lex_state = 15, .external_lex_state = 2}, - [1058] = {.lex_state = 15, .external_lex_state = 2}, - [1059] = {.lex_state = 15, .external_lex_state = 2}, - [1060] = {.lex_state = 15, .external_lex_state = 2}, - [1061] = {.lex_state = 15, .external_lex_state = 2}, - [1062] = {.lex_state = 15, .external_lex_state = 2}, - [1063] = {.lex_state = 15, .external_lex_state = 2}, - [1064] = {.lex_state = 15, .external_lex_state = 2}, - [1065] = {.lex_state = 15, .external_lex_state = 2}, - [1066] = {.lex_state = 15, .external_lex_state = 2}, - [1067] = {.lex_state = 15, .external_lex_state = 2}, - [1068] = {.lex_state = 15, .external_lex_state = 2}, - [1069] = {.lex_state = 15, .external_lex_state = 2}, - [1070] = {.lex_state = 15, .external_lex_state = 2}, - [1071] = {.lex_state = 15, .external_lex_state = 2}, - [1072] = {.lex_state = 15, .external_lex_state = 2}, - [1073] = {.lex_state = 15, .external_lex_state = 2}, - [1074] = {.lex_state = 15, .external_lex_state = 2}, - [1075] = {.lex_state = 15, .external_lex_state = 2}, - [1076] = {.lex_state = 15, .external_lex_state = 2}, - [1077] = {.lex_state = 15, .external_lex_state = 2}, - [1078] = {.lex_state = 15, .external_lex_state = 2}, - [1079] = {.lex_state = 15, .external_lex_state = 2}, - [1080] = {.lex_state = 15, .external_lex_state = 2}, - [1081] = {.lex_state = 15, .external_lex_state = 2}, - [1082] = {.lex_state = 15, .external_lex_state = 2}, - [1083] = {.lex_state = 15, .external_lex_state = 2}, - [1084] = {.lex_state = 15, .external_lex_state = 2}, - [1085] = {.lex_state = 15, .external_lex_state = 2}, - [1086] = {.lex_state = 15, .external_lex_state = 2}, - [1087] = {.lex_state = 15, .external_lex_state = 2}, - [1088] = {.lex_state = 13, .external_lex_state = 2}, - [1089] = {.lex_state = 13, .external_lex_state = 2}, - [1090] = {.lex_state = 13, .external_lex_state = 2}, - [1091] = {.lex_state = 13, .external_lex_state = 2}, - [1092] = {.lex_state = 13, .external_lex_state = 2}, - [1093] = {.lex_state = 13, .external_lex_state = 2}, - [1094] = {.lex_state = 13, .external_lex_state = 2}, - [1095] = {.lex_state = 13, .external_lex_state = 2}, - [1096] = {.lex_state = 13, .external_lex_state = 2}, - [1097] = {.lex_state = 13, .external_lex_state = 2}, - [1098] = {.lex_state = 13, .external_lex_state = 2}, - [1099] = {.lex_state = 13, .external_lex_state = 2}, - [1100] = {.lex_state = 7, .external_lex_state = 4}, - [1101] = {.lex_state = 6, .external_lex_state = 4}, + [894] = {.lex_state = 13, .external_lex_state = 2}, + [895] = {.lex_state = 13, .external_lex_state = 2}, + [896] = {.lex_state = 13, .external_lex_state = 2}, + [897] = {.lex_state = 13, .external_lex_state = 2}, + [898] = {.lex_state = 13, .external_lex_state = 2}, + [899] = {.lex_state = 13, .external_lex_state = 2}, + [900] = {.lex_state = 13, .external_lex_state = 2}, + [901] = {.lex_state = 13, .external_lex_state = 2}, + [902] = {.lex_state = 13, .external_lex_state = 2}, + [903] = {.lex_state = 13, .external_lex_state = 2}, + [904] = {.lex_state = 13, .external_lex_state = 2}, + [905] = {.lex_state = 13, .external_lex_state = 2}, + [906] = {.lex_state = 13, .external_lex_state = 2}, + [907] = {.lex_state = 13, .external_lex_state = 2}, + [908] = {.lex_state = 13, .external_lex_state = 2}, + [909] = {.lex_state = 13, .external_lex_state = 2}, + [910] = {.lex_state = 13, .external_lex_state = 2}, + [911] = {.lex_state = 15, .external_lex_state = 2}, + [912] = {.lex_state = 15, .external_lex_state = 2}, + [913] = {.lex_state = 15, .external_lex_state = 2}, + [914] = {.lex_state = 13, .external_lex_state = 2}, + [915] = {.lex_state = 13, .external_lex_state = 2}, + [916] = {.lex_state = 13, .external_lex_state = 2}, + [917] = {.lex_state = 13, .external_lex_state = 2}, + [918] = {.lex_state = 17, .external_lex_state = 2}, + [919] = {.lex_state = 13, .external_lex_state = 2}, + [920] = {.lex_state = 13, .external_lex_state = 2}, + [921] = {.lex_state = 13, .external_lex_state = 2}, + [922] = {.lex_state = 13, .external_lex_state = 2}, + [923] = {.lex_state = 13, .external_lex_state = 2}, + [924] = {.lex_state = 13, .external_lex_state = 2}, + [925] = {.lex_state = 13, .external_lex_state = 2}, + [926] = {.lex_state = 13, .external_lex_state = 2}, + [927] = {.lex_state = 13, .external_lex_state = 2}, + [928] = {.lex_state = 13, .external_lex_state = 2}, + [929] = {.lex_state = 13, .external_lex_state = 2}, + [930] = {.lex_state = 13, .external_lex_state = 2}, + [931] = {.lex_state = 13, .external_lex_state = 2}, + [932] = {.lex_state = 13, .external_lex_state = 2}, + [933] = {.lex_state = 13, .external_lex_state = 2}, + [934] = {.lex_state = 13, .external_lex_state = 2}, + [935] = {.lex_state = 13, .external_lex_state = 2}, + [936] = {.lex_state = 13, .external_lex_state = 2}, + [937] = {.lex_state = 13, .external_lex_state = 2}, + [938] = {.lex_state = 13, .external_lex_state = 2}, + [939] = {.lex_state = 13, .external_lex_state = 2}, + [940] = {.lex_state = 13, .external_lex_state = 2}, + [941] = {.lex_state = 13, .external_lex_state = 2}, + [942] = {.lex_state = 13, .external_lex_state = 2}, + [943] = {.lex_state = 13, .external_lex_state = 2}, + [944] = {.lex_state = 13, .external_lex_state = 2}, + [945] = {.lex_state = 13, .external_lex_state = 2}, + [946] = {.lex_state = 13, .external_lex_state = 2}, + [947] = {.lex_state = 13, .external_lex_state = 2}, + [948] = {.lex_state = 13, .external_lex_state = 2}, + [949] = {.lex_state = 13, .external_lex_state = 2}, + [950] = {.lex_state = 13, .external_lex_state = 2}, + [951] = {.lex_state = 13, .external_lex_state = 2}, + [952] = {.lex_state = 13, .external_lex_state = 2}, + [953] = {.lex_state = 13, .external_lex_state = 2}, + [954] = {.lex_state = 13, .external_lex_state = 2}, + [955] = {.lex_state = 13, .external_lex_state = 2}, + [956] = {.lex_state = 13, .external_lex_state = 2}, + [957] = {.lex_state = 13, .external_lex_state = 2}, + [958] = {.lex_state = 13, .external_lex_state = 2}, + [959] = {.lex_state = 13, .external_lex_state = 2}, + [960] = {.lex_state = 13, .external_lex_state = 2}, + [961] = {.lex_state = 13, .external_lex_state = 2}, + [962] = {.lex_state = 13, .external_lex_state = 2}, + [963] = {.lex_state = 13, .external_lex_state = 2}, + [964] = {.lex_state = 13, .external_lex_state = 2}, + [965] = {.lex_state = 13, .external_lex_state = 2}, + [966] = {.lex_state = 13, .external_lex_state = 2}, + [967] = {.lex_state = 13, .external_lex_state = 2}, + [968] = {.lex_state = 13, .external_lex_state = 2}, + [969] = {.lex_state = 13, .external_lex_state = 2}, + [970] = {.lex_state = 13, .external_lex_state = 2}, + [971] = {.lex_state = 13, .external_lex_state = 2}, + [972] = {.lex_state = 13, .external_lex_state = 2}, + [973] = {.lex_state = 13, .external_lex_state = 2}, + [974] = {.lex_state = 13, .external_lex_state = 2}, + [975] = {.lex_state = 13, .external_lex_state = 2}, + [976] = {.lex_state = 13, .external_lex_state = 2}, + [977] = {.lex_state = 13, .external_lex_state = 2}, + [978] = {.lex_state = 13, .external_lex_state = 2}, + [979] = {.lex_state = 13, .external_lex_state = 2}, + [980] = {.lex_state = 13, .external_lex_state = 2}, + [981] = {.lex_state = 13, .external_lex_state = 2}, + [982] = {.lex_state = 13, .external_lex_state = 2}, + [983] = {.lex_state = 13, .external_lex_state = 2}, + [984] = {.lex_state = 13, .external_lex_state = 2}, + [985] = {.lex_state = 13, .external_lex_state = 2}, + [986] = {.lex_state = 13, .external_lex_state = 2}, + [987] = {.lex_state = 13, .external_lex_state = 2}, + [988] = {.lex_state = 13, .external_lex_state = 2}, + [989] = {.lex_state = 13, .external_lex_state = 2}, + [990] = {.lex_state = 13, .external_lex_state = 2}, + [991] = {.lex_state = 13, .external_lex_state = 2}, + [992] = {.lex_state = 13, .external_lex_state = 2}, + [993] = {.lex_state = 13, .external_lex_state = 2}, + [994] = {.lex_state = 13, .external_lex_state = 2}, + [995] = {.lex_state = 13, .external_lex_state = 2}, + [996] = {.lex_state = 13, .external_lex_state = 2}, + [997] = {.lex_state = 13, .external_lex_state = 2}, + [998] = {.lex_state = 13, .external_lex_state = 2}, + [999] = {.lex_state = 13, .external_lex_state = 2}, + [1000] = {.lex_state = 13, .external_lex_state = 2}, + [1001] = {.lex_state = 13, .external_lex_state = 2}, + [1002] = {.lex_state = 13, .external_lex_state = 2}, + [1003] = {.lex_state = 13, .external_lex_state = 2}, + [1004] = {.lex_state = 13, .external_lex_state = 2}, + [1005] = {.lex_state = 13, .external_lex_state = 2}, + [1006] = {.lex_state = 13, .external_lex_state = 2}, + [1007] = {.lex_state = 13, .external_lex_state = 2}, + [1008] = {.lex_state = 13, .external_lex_state = 2}, + [1009] = {.lex_state = 13, .external_lex_state = 2}, + [1010] = {.lex_state = 13, .external_lex_state = 2}, + [1011] = {.lex_state = 13, .external_lex_state = 2}, + [1012] = {.lex_state = 13, .external_lex_state = 2}, + [1013] = {.lex_state = 13, .external_lex_state = 2}, + [1014] = {.lex_state = 13, .external_lex_state = 2}, + [1015] = {.lex_state = 13, .external_lex_state = 2}, + [1016] = {.lex_state = 13, .external_lex_state = 2}, + [1017] = {.lex_state = 13, .external_lex_state = 2}, + [1018] = {.lex_state = 13, .external_lex_state = 2}, + [1019] = {.lex_state = 13, .external_lex_state = 2}, + [1020] = {.lex_state = 13, .external_lex_state = 2}, + [1021] = {.lex_state = 13, .external_lex_state = 2}, + [1022] = {.lex_state = 13, .external_lex_state = 2}, + [1023] = {.lex_state = 13, .external_lex_state = 2}, + [1024] = {.lex_state = 13, .external_lex_state = 2}, + [1025] = {.lex_state = 13, .external_lex_state = 2}, + [1026] = {.lex_state = 13, .external_lex_state = 2}, + [1027] = {.lex_state = 13, .external_lex_state = 2}, + [1028] = {.lex_state = 13, .external_lex_state = 2}, + [1029] = {.lex_state = 13, .external_lex_state = 2}, + [1030] = {.lex_state = 13, .external_lex_state = 2}, + [1031] = {.lex_state = 13, .external_lex_state = 2}, + [1032] = {.lex_state = 13, .external_lex_state = 2}, + [1033] = {.lex_state = 13, .external_lex_state = 2}, + [1034] = {.lex_state = 13, .external_lex_state = 2}, + [1035] = {.lex_state = 13, .external_lex_state = 2}, + [1036] = {.lex_state = 13, .external_lex_state = 2}, + [1037] = {.lex_state = 13, .external_lex_state = 2}, + [1038] = {.lex_state = 13, .external_lex_state = 2}, + [1039] = {.lex_state = 13, .external_lex_state = 2}, + [1040] = {.lex_state = 13, .external_lex_state = 2}, + [1041] = {.lex_state = 13, .external_lex_state = 2}, + [1042] = {.lex_state = 13, .external_lex_state = 2}, + [1043] = {.lex_state = 13, .external_lex_state = 2}, + [1044] = {.lex_state = 13, .external_lex_state = 2}, + [1045] = {.lex_state = 13, .external_lex_state = 2}, + [1046] = {.lex_state = 13, .external_lex_state = 2}, + [1047] = {.lex_state = 13, .external_lex_state = 2}, + [1048] = {.lex_state = 13, .external_lex_state = 2}, + [1049] = {.lex_state = 13, .external_lex_state = 2}, + [1050] = {.lex_state = 13, .external_lex_state = 2}, + [1051] = {.lex_state = 13, .external_lex_state = 2}, + [1052] = {.lex_state = 13, .external_lex_state = 2}, + [1053] = {.lex_state = 13, .external_lex_state = 2}, + [1054] = {.lex_state = 13, .external_lex_state = 2}, + [1055] = {.lex_state = 13, .external_lex_state = 2}, + [1056] = {.lex_state = 13, .external_lex_state = 2}, + [1057] = {.lex_state = 13, .external_lex_state = 2}, + [1058] = {.lex_state = 13, .external_lex_state = 2}, + [1059] = {.lex_state = 13, .external_lex_state = 2}, + [1060] = {.lex_state = 13, .external_lex_state = 2}, + [1061] = {.lex_state = 13, .external_lex_state = 2}, + [1062] = {.lex_state = 13, .external_lex_state = 2}, + [1063] = {.lex_state = 13, .external_lex_state = 2}, + [1064] = {.lex_state = 13, .external_lex_state = 2}, + [1065] = {.lex_state = 13, .external_lex_state = 2}, + [1066] = {.lex_state = 13, .external_lex_state = 2}, + [1067] = {.lex_state = 13, .external_lex_state = 2}, + [1068] = {.lex_state = 13, .external_lex_state = 2}, + [1069] = {.lex_state = 13, .external_lex_state = 2}, + [1070] = {.lex_state = 13, .external_lex_state = 2}, + [1071] = {.lex_state = 13, .external_lex_state = 2}, + [1072] = {.lex_state = 13, .external_lex_state = 2}, + [1073] = {.lex_state = 13, .external_lex_state = 2}, + [1074] = {.lex_state = 13, .external_lex_state = 2}, + [1075] = {.lex_state = 13, .external_lex_state = 2}, + [1076] = {.lex_state = 13, .external_lex_state = 2}, + [1077] = {.lex_state = 13, .external_lex_state = 2}, + [1078] = {.lex_state = 13, .external_lex_state = 2}, + [1079] = {.lex_state = 13, .external_lex_state = 2}, + [1080] = {.lex_state = 13, .external_lex_state = 2}, + [1081] = {.lex_state = 13, .external_lex_state = 2}, + [1082] = {.lex_state = 13, .external_lex_state = 2}, + [1083] = {.lex_state = 13, .external_lex_state = 2}, + [1084] = {.lex_state = 13, .external_lex_state = 2}, + [1085] = {.lex_state = 13, .external_lex_state = 2}, + [1086] = {.lex_state = 13, .external_lex_state = 2}, + [1087] = {.lex_state = 13, .external_lex_state = 2}, + [1088] = {.lex_state = 14, .external_lex_state = 2}, + [1089] = {.lex_state = 14, .external_lex_state = 2}, + [1090] = {.lex_state = 14, .external_lex_state = 2}, + [1091] = {.lex_state = 14, .external_lex_state = 2}, + [1092] = {.lex_state = 14, .external_lex_state = 2}, + [1093] = {.lex_state = 14, .external_lex_state = 2}, + [1094] = {.lex_state = 14, .external_lex_state = 2}, + [1095] = {.lex_state = 14, .external_lex_state = 2}, + [1096] = {.lex_state = 14, .external_lex_state = 2}, + [1097] = {.lex_state = 14, .external_lex_state = 2}, + [1098] = {.lex_state = 14, .external_lex_state = 2}, + [1099] = {.lex_state = 14, .external_lex_state = 2}, + [1100] = {.lex_state = 6, .external_lex_state = 4}, + [1101] = {.lex_state = 7, .external_lex_state = 4}, [1102] = {.lex_state = 6, .external_lex_state = 4}, [1103] = {.lex_state = 7, .external_lex_state = 4}, [1104] = {.lex_state = 6, .external_lex_state = 4}, - [1105] = {.lex_state = 7, .external_lex_state = 4}, + [1105] = {.lex_state = 6, .external_lex_state = 4}, [1106] = {.lex_state = 6, .external_lex_state = 4}, [1107] = {.lex_state = 6, .external_lex_state = 4}, - [1108] = {.lex_state = 6, .external_lex_state = 4}, + [1108] = {.lex_state = 7, .external_lex_state = 4}, [1109] = {.lex_state = 6, .external_lex_state = 3}, [1110] = {.lex_state = 6, .external_lex_state = 3}, [1111] = {.lex_state = 6, .external_lex_state = 3}, - [1112] = {.lex_state = 6, .external_lex_state = 3}, + [1112] = {.lex_state = 14, .external_lex_state = 2}, [1113] = {.lex_state = 6, .external_lex_state = 3}, - [1114] = {.lex_state = 13, .external_lex_state = 2}, - [1115] = {.lex_state = 13, .external_lex_state = 2}, - [1116] = {.lex_state = 7, .external_lex_state = 4}, - [1117] = {.lex_state = 6, .external_lex_state = 3}, - [1118] = {.lex_state = 6, .external_lex_state = 4}, - [1119] = {.lex_state = 6, .external_lex_state = 4}, + [1114] = {.lex_state = 6, .external_lex_state = 3}, + [1115] = {.lex_state = 14, .external_lex_state = 2}, + [1116] = {.lex_state = 6, .external_lex_state = 4}, + [1117] = {.lex_state = 6, .external_lex_state = 4}, + [1118] = {.lex_state = 6, .external_lex_state = 3}, + [1119] = {.lex_state = 7, .external_lex_state = 4}, [1120] = {.lex_state = 6, .external_lex_state = 4}, [1121] = {.lex_state = 6, .external_lex_state = 4}, [1122] = {.lex_state = 6, .external_lex_state = 4}, - [1123] = {.lex_state = 6, .external_lex_state = 4}, + [1123] = {.lex_state = 7, .external_lex_state = 4}, [1124] = {.lex_state = 6, .external_lex_state = 4}, [1125] = {.lex_state = 6, .external_lex_state = 4}, [1126] = {.lex_state = 6, .external_lex_state = 4}, [1127] = {.lex_state = 7, .external_lex_state = 4}, - [1128] = {.lex_state = 6, .external_lex_state = 4}, + [1128] = {.lex_state = 7, .external_lex_state = 4}, [1129] = {.lex_state = 6, .external_lex_state = 4}, - [1130] = {.lex_state = 7, .external_lex_state = 4}, - [1131] = {.lex_state = 7, .external_lex_state = 4}, - [1132] = {.lex_state = 7, .external_lex_state = 3}, + [1130] = {.lex_state = 6, .external_lex_state = 4}, + [1131] = {.lex_state = 6, .external_lex_state = 4}, + [1132] = {.lex_state = 6, .external_lex_state = 4}, [1133] = {.lex_state = 6, .external_lex_state = 4}, - [1134] = {.lex_state = 6, .external_lex_state = 4}, - [1135] = {.lex_state = 6, .external_lex_state = 3}, + [1134] = {.lex_state = 7, .external_lex_state = 3}, + [1135] = {.lex_state = 6, .external_lex_state = 4}, [1136] = {.lex_state = 7, .external_lex_state = 3}, - [1137] = {.lex_state = 6, .external_lex_state = 4}, + [1137] = {.lex_state = 6, .external_lex_state = 3}, [1138] = {.lex_state = 6, .external_lex_state = 4}, - [1139] = {.lex_state = 7, .external_lex_state = 4}, - [1140] = {.lex_state = 7, .external_lex_state = 3}, - [1141] = {.lex_state = 6, .external_lex_state = 4}, + [1139] = {.lex_state = 7, .external_lex_state = 3}, + [1140] = {.lex_state = 6, .external_lex_state = 4}, + [1141] = {.lex_state = 6, .external_lex_state = 3}, [1142] = {.lex_state = 6, .external_lex_state = 3}, - [1143] = {.lex_state = 6, .external_lex_state = 4}, - [1144] = {.lex_state = 6, .external_lex_state = 3}, - [1145] = {.lex_state = 6, .external_lex_state = 4}, + [1143] = {.lex_state = 7, .external_lex_state = 4}, + [1144] = {.lex_state = 7, .external_lex_state = 3}, + [1145] = {.lex_state = 6, .external_lex_state = 3}, [1146] = {.lex_state = 7, .external_lex_state = 3}, [1147] = {.lex_state = 7, .external_lex_state = 3}, - [1148] = {.lex_state = 6, .external_lex_state = 3}, - [1149] = {.lex_state = 6, .external_lex_state = 3}, - [1150] = {.lex_state = 6, .external_lex_state = 3}, - [1151] = {.lex_state = 7, .external_lex_state = 3}, - [1152] = {.lex_state = 7, .external_lex_state = 3}, + [1148] = {.lex_state = 7, .external_lex_state = 3}, + [1149] = {.lex_state = 7, .external_lex_state = 3}, + [1150] = {.lex_state = 7, .external_lex_state = 3}, + [1151] = {.lex_state = 6, .external_lex_state = 4}, + [1152] = {.lex_state = 6, .external_lex_state = 4}, [1153] = {.lex_state = 6, .external_lex_state = 4}, - [1154] = {.lex_state = 7, .external_lex_state = 3}, + [1154] = {.lex_state = 6, .external_lex_state = 4}, [1155] = {.lex_state = 6, .external_lex_state = 4}, [1156] = {.lex_state = 6, .external_lex_state = 4}, [1157] = {.lex_state = 6, .external_lex_state = 4}, - [1158] = {.lex_state = 7, .external_lex_state = 4}, - [1159] = {.lex_state = 7, .external_lex_state = 3}, + [1158] = {.lex_state = 6, .external_lex_state = 4}, + [1159] = {.lex_state = 6, .external_lex_state = 4}, [1160] = {.lex_state = 6, .external_lex_state = 4}, - [1161] = {.lex_state = 6, .external_lex_state = 4}, - [1162] = {.lex_state = 6, .external_lex_state = 4}, - [1163] = {.lex_state = 6, .external_lex_state = 4}, + [1161] = {.lex_state = 7, .external_lex_state = 4}, + [1162] = {.lex_state = 7, .external_lex_state = 3}, + [1163] = {.lex_state = 6, .external_lex_state = 3}, [1164] = {.lex_state = 6, .external_lex_state = 3}, [1165] = {.lex_state = 7, .external_lex_state = 3}, - [1166] = {.lex_state = 6, .external_lex_state = 4}, - [1167] = {.lex_state = 7, .external_lex_state = 3}, + [1166] = {.lex_state = 6, .external_lex_state = 3}, + [1167] = {.lex_state = 6, .external_lex_state = 4}, [1168] = {.lex_state = 6, .external_lex_state = 3}, - [1169] = {.lex_state = 7, .external_lex_state = 3}, - [1170] = {.lex_state = 151, .external_lex_state = 2}, - [1171] = {.lex_state = 6, .external_lex_state = 3}, - [1172] = {.lex_state = 6, .external_lex_state = 3}, + [1169] = {.lex_state = 6, .external_lex_state = 3}, + [1170] = {.lex_state = 6, .external_lex_state = 3}, + [1171] = {.lex_state = 6, .external_lex_state = 4}, + [1172] = {.lex_state = 6, .external_lex_state = 4}, [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 = 4}, - [1177] = {.lex_state = 6, .external_lex_state = 4}, - [1178] = {.lex_state = 6, .external_lex_state = 3}, - [1179] = {.lex_state = 6, .external_lex_state = 3}, + [1174] = {.lex_state = 7, .external_lex_state = 3}, + [1175] = {.lex_state = 6, .external_lex_state = 4}, + [1176] = {.lex_state = 6, .external_lex_state = 3}, + [1177] = {.lex_state = 6, .external_lex_state = 3}, + [1178] = {.lex_state = 7, .external_lex_state = 3}, + [1179] = {.lex_state = 7, .external_lex_state = 3}, [1180] = {.lex_state = 6, .external_lex_state = 3}, - [1181] = {.lex_state = 7, .external_lex_state = 3}, - [1182] = {.lex_state = 6, .external_lex_state = 4}, - [1183] = {.lex_state = 7, .external_lex_state = 3}, - [1184] = {.lex_state = 6, .external_lex_state = 4}, + [1181] = {.lex_state = 6, .external_lex_state = 3}, + [1182] = {.lex_state = 6, .external_lex_state = 3}, + [1183] = {.lex_state = 151, .external_lex_state = 2}, + [1184] = {.lex_state = 6, .external_lex_state = 3}, [1185] = {.lex_state = 6, .external_lex_state = 3}, [1186] = {.lex_state = 6, .external_lex_state = 3}, - [1187] = {.lex_state = 6, .external_lex_state = 3}, - [1188] = {.lex_state = 6, .external_lex_state = 3}, - [1189] = {.lex_state = 6, .external_lex_state = 4}, - [1190] = {.lex_state = 6, .external_lex_state = 4}, + [1187] = {.lex_state = 6, .external_lex_state = 4}, + [1188] = {.lex_state = 6, .external_lex_state = 4}, + [1189] = {.lex_state = 6, .external_lex_state = 3}, + [1190] = {.lex_state = 6, .external_lex_state = 3}, [1191] = {.lex_state = 6, .external_lex_state = 3}, - [1192] = {.lex_state = 6, .external_lex_state = 4}, + [1192] = {.lex_state = 6, .external_lex_state = 3}, [1193] = {.lex_state = 6, .external_lex_state = 3}, - [1194] = {.lex_state = 6, .external_lex_state = 3}, - [1195] = {.lex_state = 151, .external_lex_state = 2}, + [1194] = {.lex_state = 151, .external_lex_state = 2}, + [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 = 6, .external_lex_state = 3}, - [1200] = {.lex_state = 6, .external_lex_state = 3}, - [1201] = {.lex_state = 6, .external_lex_state = 3}, + [1199] = {.lex_state = 6, .external_lex_state = 4}, + [1200] = {.lex_state = 7, .external_lex_state = 3}, + [1201] = {.lex_state = 151, .external_lex_state = 2}, [1202] = {.lex_state = 6, .external_lex_state = 3}, - [1203] = {.lex_state = 6, .external_lex_state = 3}, + [1203] = {.lex_state = 151, .external_lex_state = 2}, [1204] = {.lex_state = 6, .external_lex_state = 3}, [1205] = {.lex_state = 7, .external_lex_state = 3}, [1206] = {.lex_state = 6, .external_lex_state = 3}, [1207] = {.lex_state = 6, .external_lex_state = 3}, - [1208] = {.lex_state = 7, .external_lex_state = 3}, - [1209] = {.lex_state = 151, .external_lex_state = 2}, + [1208] = {.lex_state = 6, .external_lex_state = 3}, + [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 = 6, .external_lex_state = 3}, - [1213] = {.lex_state = 6, .external_lex_state = 3}, - [1214] = {.lex_state = 6, .external_lex_state = 4}, + [1212] = {.lex_state = 151, .external_lex_state = 2}, + [1213] = {.lex_state = 6, .external_lex_state = 4}, + [1214] = {.lex_state = 6, .external_lex_state = 3}, [1215] = {.lex_state = 6, .external_lex_state = 3}, [1216] = {.lex_state = 6, .external_lex_state = 3}, [1217] = {.lex_state = 6, .external_lex_state = 3}, [1218] = {.lex_state = 6, .external_lex_state = 3}, [1219] = {.lex_state = 6, .external_lex_state = 3}, - [1220] = {.lex_state = 6, .external_lex_state = 4}, - [1221] = {.lex_state = 151, .external_lex_state = 2}, - [1222] = {.lex_state = 6, .external_lex_state = 4}, + [1220] = {.lex_state = 7, .external_lex_state = 3}, + [1221] = {.lex_state = 6, .external_lex_state = 3}, + [1222] = {.lex_state = 6, .external_lex_state = 3}, [1223] = {.lex_state = 6, .external_lex_state = 4}, - [1224] = {.lex_state = 6, .external_lex_state = 3}, - [1225] = {.lex_state = 6, .external_lex_state = 3}, + [1224] = {.lex_state = 6, .external_lex_state = 4}, + [1225] = {.lex_state = 6, .external_lex_state = 4}, [1226] = {.lex_state = 6, .external_lex_state = 3}, - [1227] = {.lex_state = 151, .external_lex_state = 2}, - [1228] = {.lex_state = 6, .external_lex_state = 3}, + [1227] = {.lex_state = 6, .external_lex_state = 3}, + [1228] = {.lex_state = 151, .external_lex_state = 2}, [1229] = {.lex_state = 6, .external_lex_state = 4}, - [1230] = {.lex_state = 6, .external_lex_state = 4}, - [1231] = {.lex_state = 6, .external_lex_state = 3}, + [1230] = {.lex_state = 6, .external_lex_state = 3}, + [1231] = {.lex_state = 151, .external_lex_state = 2}, [1232] = {.lex_state = 6, .external_lex_state = 3}, - [1233] = {.lex_state = 6, .external_lex_state = 3}, - [1234] = {.lex_state = 6, .external_lex_state = 4}, + [1233] = {.lex_state = 151, .external_lex_state = 2}, + [1234] = {.lex_state = 6, .external_lex_state = 3}, [1235] = {.lex_state = 6, .external_lex_state = 3}, - [1236] = {.lex_state = 151, .external_lex_state = 2}, - [1237] = {.lex_state = 7, .external_lex_state = 3}, - [1238] = {.lex_state = 151, .external_lex_state = 2}, - [1239] = {.lex_state = 6, .external_lex_state = 3}, + [1236] = {.lex_state = 6, .external_lex_state = 4}, + [1237] = {.lex_state = 6, .external_lex_state = 3}, + [1238] = {.lex_state = 6, .external_lex_state = 4}, + [1239] = {.lex_state = 6, .external_lex_state = 4}, [1240] = {.lex_state = 6, .external_lex_state = 3}, [1241] = {.lex_state = 6, .external_lex_state = 3}, - [1242] = {.lex_state = 6, .external_lex_state = 4}, - [1243] = {.lex_state = 151, .external_lex_state = 2}, - [1244] = {.lex_state = 6, .external_lex_state = 4}, + [1242] = {.lex_state = 6, .external_lex_state = 3}, + [1243] = {.lex_state = 6, .external_lex_state = 4}, + [1244] = {.lex_state = 151, .external_lex_state = 2}, [1245] = {.lex_state = 6, .external_lex_state = 4}, [1246] = {.lex_state = 6, .external_lex_state = 4}, [1247] = {.lex_state = 6, .external_lex_state = 4}, - [1248] = {.lex_state = 6, .external_lex_state = 4}, + [1248] = {.lex_state = 6, .external_lex_state = 3}, [1249] = {.lex_state = 6, .external_lex_state = 3}, - [1250] = {.lex_state = 6, .external_lex_state = 3}, - [1251] = {.lex_state = 6, .external_lex_state = 4}, + [1250] = {.lex_state = 6, .external_lex_state = 4}, + [1251] = {.lex_state = 6, .external_lex_state = 3}, [1252] = {.lex_state = 6, .external_lex_state = 4}, [1253] = {.lex_state = 6, .external_lex_state = 4}, [1254] = {.lex_state = 6, .external_lex_state = 4}, [1255] = {.lex_state = 6, .external_lex_state = 4}, - [1256] = {.lex_state = 6, .external_lex_state = 3}, + [1256] = {.lex_state = 6, .external_lex_state = 4}, [1257] = {.lex_state = 6, .external_lex_state = 4}, [1258] = {.lex_state = 6, .external_lex_state = 4}, - [1259] = {.lex_state = 6, .external_lex_state = 3}, + [1259] = {.lex_state = 6, .external_lex_state = 4}, [1260] = {.lex_state = 6, .external_lex_state = 4}, [1261] = {.lex_state = 6, .external_lex_state = 4}, - [1262] = {.lex_state = 6, .external_lex_state = 3}, + [1262] = {.lex_state = 6, .external_lex_state = 4}, [1263] = {.lex_state = 6, .external_lex_state = 4}, - [1264] = {.lex_state = 6, .external_lex_state = 3}, - [1265] = {.lex_state = 7, .external_lex_state = 3}, - [1266] = {.lex_state = 6, .external_lex_state = 4}, + [1264] = {.lex_state = 6, .external_lex_state = 4}, + [1265] = {.lex_state = 6, .external_lex_state = 4}, + [1266] = {.lex_state = 6, .external_lex_state = 3}, [1267] = {.lex_state = 6, .external_lex_state = 4}, [1268] = {.lex_state = 6, .external_lex_state = 3}, [1269] = {.lex_state = 6, .external_lex_state = 4}, [1270] = {.lex_state = 6, .external_lex_state = 4}, [1271] = {.lex_state = 6, .external_lex_state = 4}, [1272] = {.lex_state = 6, .external_lex_state = 4}, - [1273] = {.lex_state = 6, .external_lex_state = 4}, - [1274] = {.lex_state = 6, .external_lex_state = 4}, - [1275] = {.lex_state = 6, .external_lex_state = 4}, - [1276] = {.lex_state = 6, .external_lex_state = 4}, + [1273] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 6, .external_lex_state = 3}, + [1275] = {.lex_state = 6, .external_lex_state = 3}, + [1276] = {.lex_state = 6, .external_lex_state = 3}, [1277] = {.lex_state = 6, .external_lex_state = 4}, [1278] = {.lex_state = 6, .external_lex_state = 4}, [1279] = {.lex_state = 6, .external_lex_state = 4}, - [1280] = {.lex_state = 6, .external_lex_state = 3}, + [1280] = {.lex_state = 6, .external_lex_state = 4}, [1281] = {.lex_state = 6, .external_lex_state = 3}, [1282] = {.lex_state = 6, .external_lex_state = 3}, - [1283] = {.lex_state = 6, .external_lex_state = 3}, - [1284] = {.lex_state = 6, .external_lex_state = 4}, + [1283] = {.lex_state = 6, .external_lex_state = 4}, + [1284] = {.lex_state = 6, .external_lex_state = 3}, [1285] = {.lex_state = 6, .external_lex_state = 4}, - [1286] = {.lex_state = 7, .external_lex_state = 3}, - [1287] = {.lex_state = 6, .external_lex_state = 4}, - [1288] = {.lex_state = 6, .external_lex_state = 3}, - [1289] = {.lex_state = 6, .external_lex_state = 3}, + [1286] = {.lex_state = 6, .external_lex_state = 3}, + [1287] = {.lex_state = 7, .external_lex_state = 3}, + [1288] = {.lex_state = 6, .external_lex_state = 4}, + [1289] = {.lex_state = 6, .external_lex_state = 4}, [1290] = {.lex_state = 6, .external_lex_state = 4}, - [1291] = {.lex_state = 6, .external_lex_state = 3}, + [1291] = {.lex_state = 6, .external_lex_state = 4}, [1292] = {.lex_state = 6, .external_lex_state = 3}, [1293] = {.lex_state = 6, .external_lex_state = 4}, - [1294] = {.lex_state = 6, .external_lex_state = 3}, - [1295] = {.lex_state = 6, .external_lex_state = 4}, + [1294] = {.lex_state = 6, .external_lex_state = 4}, + [1295] = {.lex_state = 7, .external_lex_state = 3}, [1296] = {.lex_state = 6, .external_lex_state = 3}, - [1297] = {.lex_state = 7, .external_lex_state = 3}, - [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 6, .external_lex_state = 4}, - [1300] = {.lex_state = 6, .external_lex_state = 3}, + [1297] = {.lex_state = 6, .external_lex_state = 3}, + [1298] = {.lex_state = 6, .external_lex_state = 3}, + [1299] = {.lex_state = 7, .external_lex_state = 3}, + [1300] = {.lex_state = 6, .external_lex_state = 4}, [1301] = {.lex_state = 6, .external_lex_state = 3}, - [1302] = {.lex_state = 6, .external_lex_state = 4}, + [1302] = {.lex_state = 6, .external_lex_state = 3}, [1303] = {.lex_state = 6, .external_lex_state = 3}, - [1304] = {.lex_state = 7, .external_lex_state = 3}, - [1305] = {.lex_state = 6, .external_lex_state = 3}, - [1306] = {.lex_state = 15, .external_lex_state = 2}, + [1304] = {.lex_state = 6, .external_lex_state = 3}, + [1305] = {.lex_state = 7, .external_lex_state = 3}, + [1306] = {.lex_state = 6, .external_lex_state = 3}, [1307] = {.lex_state = 6, .external_lex_state = 3}, - [1308] = {.lex_state = 6, .external_lex_state = 3}, - [1309] = {.lex_state = 15, .external_lex_state = 2}, - [1310] = {.lex_state = 6, .external_lex_state = 3}, - [1311] = {.lex_state = 15, .external_lex_state = 2}, - [1312] = {.lex_state = 6, .external_lex_state = 4}, + [1308] = {.lex_state = 6, .external_lex_state = 4}, + [1309] = {.lex_state = 13, .external_lex_state = 2}, + [1310] = {.lex_state = 13, .external_lex_state = 2}, + [1311] = {.lex_state = 6, .external_lex_state = 3}, + [1312] = {.lex_state = 6, .external_lex_state = 3}, [1313] = {.lex_state = 6, .external_lex_state = 3}, - [1314] = {.lex_state = 6, .external_lex_state = 3}, - [1315] = {.lex_state = 15, .external_lex_state = 2}, + [1314] = {.lex_state = 6, .external_lex_state = 4}, + [1315] = {.lex_state = 13, .external_lex_state = 2}, [1316] = {.lex_state = 6, .external_lex_state = 3}, - [1317] = {.lex_state = 15, .external_lex_state = 2}, - [1318] = {.lex_state = 15, .external_lex_state = 2}, + [1317] = {.lex_state = 6, .external_lex_state = 3}, + [1318] = {.lex_state = 6, .external_lex_state = 3}, [1319] = {.lex_state = 6, .external_lex_state = 3}, - [1320] = {.lex_state = 6, .external_lex_state = 4}, - [1321] = {.lex_state = 6, .external_lex_state = 4}, + [1320] = {.lex_state = 6, .external_lex_state = 3}, + [1321] = {.lex_state = 13, .external_lex_state = 2}, [1322] = {.lex_state = 6, .external_lex_state = 3}, - [1323] = {.lex_state = 6, .external_lex_state = 3}, + [1323] = {.lex_state = 13, .external_lex_state = 2}, [1324] = {.lex_state = 6, .external_lex_state = 3}, - [1325] = {.lex_state = 6, .external_lex_state = 4}, - [1326] = {.lex_state = 6, .external_lex_state = 3}, - [1327] = {.lex_state = 6, .external_lex_state = 3}, - [1328] = {.lex_state = 6, .external_lex_state = 3}, - [1329] = {.lex_state = 7, .external_lex_state = 3}, + [1325] = {.lex_state = 6, .external_lex_state = 3}, + [1326] = {.lex_state = 6, .external_lex_state = 4}, + [1327] = {.lex_state = 7, .external_lex_state = 3}, + [1328] = {.lex_state = 6, .external_lex_state = 4}, + [1329] = {.lex_state = 13, .external_lex_state = 2}, [1330] = {.lex_state = 6, .external_lex_state = 3}, [1331] = {.lex_state = 6, .external_lex_state = 3}, [1332] = {.lex_state = 6, .external_lex_state = 3}, @@ -15348,8 +15372,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1334] = {.lex_state = 6, .external_lex_state = 3}, [1335] = {.lex_state = 6, .external_lex_state = 3}, [1336] = {.lex_state = 6, .external_lex_state = 3}, - [1337] = {.lex_state = 6, .external_lex_state = 4}, - [1338] = {.lex_state = 6, .external_lex_state = 3}, + [1337] = {.lex_state = 6, .external_lex_state = 3}, + [1338] = {.lex_state = 6, .external_lex_state = 4}, [1339] = {.lex_state = 6, .external_lex_state = 3}, [1340] = {.lex_state = 6, .external_lex_state = 3}, [1341] = {.lex_state = 6, .external_lex_state = 3}, @@ -15357,46 +15381,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1343] = {.lex_state = 6, .external_lex_state = 3}, [1344] = {.lex_state = 6, .external_lex_state = 3}, [1345] = {.lex_state = 6, .external_lex_state = 3}, - [1346] = {.lex_state = 15, .external_lex_state = 2}, - [1347] = {.lex_state = 6, .external_lex_state = 3}, - [1348] = {.lex_state = 15, .external_lex_state = 2}, + [1346] = {.lex_state = 13, .external_lex_state = 2}, + [1347] = {.lex_state = 13, .external_lex_state = 2}, + [1348] = {.lex_state = 13, .external_lex_state = 2}, [1349] = {.lex_state = 6, .external_lex_state = 3}, - [1350] = {.lex_state = 6, .external_lex_state = 3}, - [1351] = {.lex_state = 15, .external_lex_state = 2}, - [1352] = {.lex_state = 6, .external_lex_state = 3}, - [1353] = {.lex_state = 15, .external_lex_state = 2}, - [1354] = {.lex_state = 6, .external_lex_state = 3}, - [1355] = {.lex_state = 15, .external_lex_state = 2}, - [1356] = {.lex_state = 15, .external_lex_state = 2}, + [1350] = {.lex_state = 13, .external_lex_state = 2}, + [1351] = {.lex_state = 6, .external_lex_state = 3}, + [1352] = {.lex_state = 13, .external_lex_state = 2}, + [1353] = {.lex_state = 13, .external_lex_state = 2}, + [1354] = {.lex_state = 13, .external_lex_state = 2}, + [1355] = {.lex_state = 13, .external_lex_state = 2}, + [1356] = {.lex_state = 6, .external_lex_state = 3}, [1357] = {.lex_state = 6, .external_lex_state = 3}, - [1358] = {.lex_state = 15, .external_lex_state = 2}, - [1359] = {.lex_state = 6, .external_lex_state = 3}, - [1360] = {.lex_state = 6, .external_lex_state = 3}, - [1361] = {.lex_state = 15, .external_lex_state = 2}, - [1362] = {.lex_state = 6, .external_lex_state = 3}, - [1363] = {.lex_state = 15, .external_lex_state = 2}, - [1364] = {.lex_state = 15, .external_lex_state = 2}, + [1358] = {.lex_state = 13, .external_lex_state = 2}, + [1359] = {.lex_state = 13, .external_lex_state = 2}, + [1360] = {.lex_state = 13, .external_lex_state = 2}, + [1361] = {.lex_state = 6, .external_lex_state = 3}, + [1362] = {.lex_state = 13, .external_lex_state = 2}, + [1363] = {.lex_state = 6, .external_lex_state = 3}, + [1364] = {.lex_state = 13, .external_lex_state = 2}, [1365] = {.lex_state = 6, .external_lex_state = 3}, [1366] = {.lex_state = 6, .external_lex_state = 3}, - [1367] = {.lex_state = 6, .external_lex_state = 3}, - [1368] = {.lex_state = 15, .external_lex_state = 2}, + [1367] = {.lex_state = 13, .external_lex_state = 2}, + [1368] = {.lex_state = 6, .external_lex_state = 3}, [1369] = {.lex_state = 6, .external_lex_state = 3}, - [1370] = {.lex_state = 15, .external_lex_state = 2}, - [1371] = {.lex_state = 15, .external_lex_state = 2}, - [1372] = {.lex_state = 6, .external_lex_state = 3}, + [1370] = {.lex_state = 6, .external_lex_state = 3}, + [1371] = {.lex_state = 6, .external_lex_state = 3}, + [1372] = {.lex_state = 13, .external_lex_state = 2}, [1373] = {.lex_state = 6, .external_lex_state = 3}, [1374] = {.lex_state = 6, .external_lex_state = 3}, [1375] = {.lex_state = 6, .external_lex_state = 3}, [1376] = {.lex_state = 6, .external_lex_state = 3}, - [1377] = {.lex_state = 15, .external_lex_state = 2}, - [1378] = {.lex_state = 15, .external_lex_state = 2}, - [1379] = {.lex_state = 6, .external_lex_state = 3}, + [1377] = {.lex_state = 13, .external_lex_state = 2}, + [1378] = {.lex_state = 13, .external_lex_state = 2}, + [1379] = {.lex_state = 13, .external_lex_state = 2}, [1380] = {.lex_state = 6, .external_lex_state = 3}, [1381] = {.lex_state = 6, .external_lex_state = 3}, - [1382] = {.lex_state = 15, .external_lex_state = 2}, + [1382] = {.lex_state = 6, .external_lex_state = 3}, [1383] = {.lex_state = 6, .external_lex_state = 3}, - [1384] = {.lex_state = 15, .external_lex_state = 2}, - [1385] = {.lex_state = 15, .external_lex_state = 2}, + [1384] = {.lex_state = 6, .external_lex_state = 3}, + [1385] = {.lex_state = 6, .external_lex_state = 3}, [1386] = {.lex_state = 6, .external_lex_state = 3}, [1387] = {.lex_state = 6, .external_lex_state = 3}, [1388] = {.lex_state = 6, .external_lex_state = 3}, @@ -15406,67 +15430,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1392] = {.lex_state = 6, .external_lex_state = 3}, [1393] = {.lex_state = 6, .external_lex_state = 3}, [1394] = {.lex_state = 6, .external_lex_state = 3}, - [1395] = {.lex_state = 15, .external_lex_state = 2}, - [1396] = {.lex_state = 15, .external_lex_state = 2}, - [1397] = {.lex_state = 15, .external_lex_state = 2}, - [1398] = {.lex_state = 15, .external_lex_state = 2}, - [1399] = {.lex_state = 15, .external_lex_state = 2}, - [1400] = {.lex_state = 15, .external_lex_state = 2}, - [1401] = {.lex_state = 15, .external_lex_state = 2}, - [1402] = {.lex_state = 13, .external_lex_state = 5}, - [1403] = {.lex_state = 15, .external_lex_state = 2}, - [1404] = {.lex_state = 15, .external_lex_state = 2}, - [1405] = {.lex_state = 15, .external_lex_state = 2}, - [1406] = {.lex_state = 15, .external_lex_state = 2}, - [1407] = {.lex_state = 15, .external_lex_state = 2}, - [1408] = {.lex_state = 15, .external_lex_state = 2}, - [1409] = {.lex_state = 15, .external_lex_state = 2}, - [1410] = {.lex_state = 15, .external_lex_state = 2}, - [1411] = {.lex_state = 15, .external_lex_state = 2}, - [1412] = {.lex_state = 13, .external_lex_state = 5}, - [1413] = {.lex_state = 13, .external_lex_state = 5}, - [1414] = {.lex_state = 13, .external_lex_state = 5}, - [1415] = {.lex_state = 13, .external_lex_state = 5}, - [1416] = {.lex_state = 15, .external_lex_state = 2}, - [1417] = {.lex_state = 15, .external_lex_state = 2}, - [1418] = {.lex_state = 151, .external_lex_state = 2}, + [1395] = {.lex_state = 6, .external_lex_state = 3}, + [1396] = {.lex_state = 13, .external_lex_state = 2}, + [1397] = {.lex_state = 13, .external_lex_state = 2}, + [1398] = {.lex_state = 13, .external_lex_state = 2}, + [1399] = {.lex_state = 13, .external_lex_state = 2}, + [1400] = {.lex_state = 13, .external_lex_state = 2}, + [1401] = {.lex_state = 13, .external_lex_state = 2}, + [1402] = {.lex_state = 13, .external_lex_state = 2}, + [1403] = {.lex_state = 13, .external_lex_state = 2}, + [1404] = {.lex_state = 14, .external_lex_state = 5}, + [1405] = {.lex_state = 13, .external_lex_state = 2}, + [1406] = {.lex_state = 13, .external_lex_state = 2}, + [1407] = {.lex_state = 13, .external_lex_state = 2}, + [1408] = {.lex_state = 13, .external_lex_state = 2}, + [1409] = {.lex_state = 13, .external_lex_state = 2}, + [1410] = {.lex_state = 14, .external_lex_state = 5}, + [1411] = {.lex_state = 13, .external_lex_state = 2}, + [1412] = {.lex_state = 14, .external_lex_state = 5}, + [1413] = {.lex_state = 13, .external_lex_state = 2}, + [1414] = {.lex_state = 14, .external_lex_state = 5}, + [1415] = {.lex_state = 13, .external_lex_state = 2}, + [1416] = {.lex_state = 13, .external_lex_state = 2}, + [1417] = {.lex_state = 14, .external_lex_state = 5}, + [1418] = {.lex_state = 13, .external_lex_state = 2}, [1419] = {.lex_state = 151, .external_lex_state = 2}, [1420] = {.lex_state = 151, .external_lex_state = 2}, [1421] = {.lex_state = 151, .external_lex_state = 2}, [1422] = {.lex_state = 151, .external_lex_state = 2}, [1423] = {.lex_state = 151, .external_lex_state = 2}, [1424] = {.lex_state = 151, .external_lex_state = 2}, - [1425] = {.lex_state = 8, .external_lex_state = 4}, - [1426] = {.lex_state = 13, .external_lex_state = 5}, - [1427] = {.lex_state = 13, .external_lex_state = 5}, + [1425] = {.lex_state = 151, .external_lex_state = 2}, + [1426] = {.lex_state = 14, .external_lex_state = 5}, + [1427] = {.lex_state = 14, .external_lex_state = 5}, [1428] = {.lex_state = 8, .external_lex_state = 4}, - [1429] = {.lex_state = 8, .external_lex_state = 3}, + [1429] = {.lex_state = 8, .external_lex_state = 4}, [1430] = {.lex_state = 8, .external_lex_state = 3}, [1431] = {.lex_state = 8, .external_lex_state = 3}, [1432] = {.lex_state = 8, .external_lex_state = 3}, - [1433] = {.lex_state = 151, .external_lex_state = 2}, - [1434] = {.lex_state = 8, .external_lex_state = 3}, - [1435] = {.lex_state = 8, .external_lex_state = 4}, - [1436] = {.lex_state = 8, .external_lex_state = 4}, + [1433] = {.lex_state = 8, .external_lex_state = 3}, + [1434] = {.lex_state = 151, .external_lex_state = 2}, + [1435] = {.lex_state = 8, .external_lex_state = 3}, + [1436] = {.lex_state = 8, .external_lex_state = 3}, [1437] = {.lex_state = 8, .external_lex_state = 3}, [1438] = {.lex_state = 8, .external_lex_state = 3}, - [1439] = {.lex_state = 8, .external_lex_state = 3}, + [1439] = {.lex_state = 8, .external_lex_state = 4}, [1440] = {.lex_state = 8, .external_lex_state = 3}, - [1441] = {.lex_state = 8, .external_lex_state = 4}, - [1442] = {.lex_state = 8, .external_lex_state = 3}, + [1441] = {.lex_state = 8, .external_lex_state = 3}, + [1442] = {.lex_state = 8, .external_lex_state = 4}, [1443] = {.lex_state = 8, .external_lex_state = 3}, - [1444] = {.lex_state = 8, .external_lex_state = 3}, - [1445] = {.lex_state = 8, .external_lex_state = 4}, + [1444] = {.lex_state = 8, .external_lex_state = 4}, + [1445] = {.lex_state = 8, .external_lex_state = 3}, [1446] = {.lex_state = 8, .external_lex_state = 3}, [1447] = {.lex_state = 8, .external_lex_state = 3}, [1448] = {.lex_state = 8, .external_lex_state = 3}, [1449] = {.lex_state = 8, .external_lex_state = 3}, [1450] = {.lex_state = 8, .external_lex_state = 3}, [1451] = {.lex_state = 8, .external_lex_state = 3}, - [1452] = {.lex_state = 8, .external_lex_state = 3}, - [1453] = {.lex_state = 8, .external_lex_state = 4}, + [1452] = {.lex_state = 8, .external_lex_state = 4}, + [1453] = {.lex_state = 8, .external_lex_state = 3}, [1454] = {.lex_state = 8, .external_lex_state = 3}, - [1455] = {.lex_state = 15, .external_lex_state = 5}, + [1455] = {.lex_state = 8, .external_lex_state = 3}, [1456] = {.lex_state = 8, .external_lex_state = 3}, [1457] = {.lex_state = 8, .external_lex_state = 3}, [1458] = {.lex_state = 8, .external_lex_state = 3}, @@ -15479,7 +15503,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1465] = {.lex_state = 8, .external_lex_state = 3}, [1466] = {.lex_state = 8, .external_lex_state = 3}, [1467] = {.lex_state = 8, .external_lex_state = 3}, - [1468] = {.lex_state = 8, .external_lex_state = 4}, + [1468] = {.lex_state = 8, .external_lex_state = 3}, [1469] = {.lex_state = 8, .external_lex_state = 3}, [1470] = {.lex_state = 8, .external_lex_state = 3}, [1471] = {.lex_state = 8, .external_lex_state = 3}, @@ -15491,8 +15515,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1477] = {.lex_state = 8, .external_lex_state = 3}, [1478] = {.lex_state = 8, .external_lex_state = 3}, [1479] = {.lex_state = 8, .external_lex_state = 3}, - [1480] = {.lex_state = 8, .external_lex_state = 4}, - [1481] = {.lex_state = 8, .external_lex_state = 4}, + [1480] = {.lex_state = 8, .external_lex_state = 3}, + [1481] = {.lex_state = 8, .external_lex_state = 3}, [1482] = {.lex_state = 8, .external_lex_state = 3}, [1483] = {.lex_state = 8, .external_lex_state = 3}, [1484] = {.lex_state = 8, .external_lex_state = 3}, @@ -15511,13 +15535,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1497] = {.lex_state = 8, .external_lex_state = 3}, [1498] = {.lex_state = 8, .external_lex_state = 3}, [1499] = {.lex_state = 8, .external_lex_state = 3}, - [1500] = {.lex_state = 8, .external_lex_state = 3}, + [1500] = {.lex_state = 8, .external_lex_state = 4}, [1501] = {.lex_state = 8, .external_lex_state = 3}, [1502] = {.lex_state = 8, .external_lex_state = 3}, [1503] = {.lex_state = 8, .external_lex_state = 3}, [1504] = {.lex_state = 8, .external_lex_state = 3}, [1505] = {.lex_state = 8, .external_lex_state = 3}, - [1506] = {.lex_state = 8, .external_lex_state = 3}, + [1506] = {.lex_state = 13, .external_lex_state = 5}, [1507] = {.lex_state = 8, .external_lex_state = 3}, [1508] = {.lex_state = 8, .external_lex_state = 3}, [1509] = {.lex_state = 8, .external_lex_state = 3}, @@ -15544,7 +15568,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1530] = {.lex_state = 8, .external_lex_state = 3}, [1531] = {.lex_state = 8, .external_lex_state = 3}, [1532] = {.lex_state = 8, .external_lex_state = 3}, - [1533] = {.lex_state = 8, .external_lex_state = 3}, + [1533] = {.lex_state = 8, .external_lex_state = 4}, [1534] = {.lex_state = 8, .external_lex_state = 3}, [1535] = {.lex_state = 8, .external_lex_state = 3}, [1536] = {.lex_state = 8, .external_lex_state = 3}, @@ -15560,11 +15584,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1546] = {.lex_state = 8, .external_lex_state = 3}, [1547] = {.lex_state = 8, .external_lex_state = 3}, [1548] = {.lex_state = 8, .external_lex_state = 3}, - [1549] = {.lex_state = 8, .external_lex_state = 3}, + [1549] = {.lex_state = 13, .external_lex_state = 5}, [1550] = {.lex_state = 8, .external_lex_state = 3}, [1551] = {.lex_state = 8, .external_lex_state = 3}, - [1552] = {.lex_state = 8, .external_lex_state = 3}, - [1553] = {.lex_state = 15, .external_lex_state = 5}, + [1552] = {.lex_state = 13, .external_lex_state = 5}, + [1553] = {.lex_state = 8, .external_lex_state = 3}, [1554] = {.lex_state = 8, .external_lex_state = 3}, [1555] = {.lex_state = 8, .external_lex_state = 3}, [1556] = {.lex_state = 8, .external_lex_state = 3}, @@ -15578,9 +15602,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1564] = {.lex_state = 8, .external_lex_state = 3}, [1565] = {.lex_state = 8, .external_lex_state = 3}, [1566] = {.lex_state = 8, .external_lex_state = 3}, - [1567] = {.lex_state = 8, .external_lex_state = 3}, - [1568] = {.lex_state = 8, .external_lex_state = 3}, - [1569] = {.lex_state = 8, .external_lex_state = 3}, + [1567] = {.lex_state = 13, .external_lex_state = 5}, + [1568] = {.lex_state = 8, .external_lex_state = 4}, + [1569] = {.lex_state = 8, .external_lex_state = 4}, [1570] = {.lex_state = 8, .external_lex_state = 3}, [1571] = {.lex_state = 8, .external_lex_state = 3}, [1572] = {.lex_state = 8, .external_lex_state = 3}, @@ -15600,13 +15624,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1586] = {.lex_state = 8, .external_lex_state = 3}, [1587] = {.lex_state = 8, .external_lex_state = 3}, [1588] = {.lex_state = 8, .external_lex_state = 3}, - [1589] = {.lex_state = 8, .external_lex_state = 3}, + [1589] = {.lex_state = 13, .external_lex_state = 5}, [1590] = {.lex_state = 8, .external_lex_state = 3}, [1591] = {.lex_state = 8, .external_lex_state = 3}, [1592] = {.lex_state = 8, .external_lex_state = 3}, [1593] = {.lex_state = 8, .external_lex_state = 3}, [1594] = {.lex_state = 8, .external_lex_state = 3}, - [1595] = {.lex_state = 15, .external_lex_state = 5}, + [1595] = {.lex_state = 8, .external_lex_state = 3}, [1596] = {.lex_state = 8, .external_lex_state = 3}, [1597] = {.lex_state = 8, .external_lex_state = 3}, [1598] = {.lex_state = 8, .external_lex_state = 3}, @@ -15614,275 +15638,275 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1600] = {.lex_state = 8, .external_lex_state = 3}, [1601] = {.lex_state = 8, .external_lex_state = 3}, [1602] = {.lex_state = 8, .external_lex_state = 3}, - [1603] = {.lex_state = 15, .external_lex_state = 5}, + [1603] = {.lex_state = 8, .external_lex_state = 3}, [1604] = {.lex_state = 8, .external_lex_state = 3}, [1605] = {.lex_state = 8, .external_lex_state = 3}, [1606] = {.lex_state = 8, .external_lex_state = 3}, [1607] = {.lex_state = 8, .external_lex_state = 3}, - [1608] = {.lex_state = 15, .external_lex_state = 5}, + [1608] = {.lex_state = 8, .external_lex_state = 3}, [1609] = {.lex_state = 8, .external_lex_state = 3}, [1610] = {.lex_state = 8, .external_lex_state = 3}, [1611] = {.lex_state = 8, .external_lex_state = 3}, [1612] = {.lex_state = 8, .external_lex_state = 3}, [1613] = {.lex_state = 8, .external_lex_state = 3}, [1614] = {.lex_state = 8, .external_lex_state = 3}, - [1615] = {.lex_state = 8, .external_lex_state = 3}, + [1615] = {.lex_state = 8, .external_lex_state = 4}, [1616] = {.lex_state = 8, .external_lex_state = 4}, - [1617] = {.lex_state = 8, .external_lex_state = 3}, - [1618] = {.lex_state = 8, .external_lex_state = 3}, + [1617] = {.lex_state = 8, .external_lex_state = 4}, + [1618] = {.lex_state = 8, .external_lex_state = 4}, [1619] = {.lex_state = 8, .external_lex_state = 3}, [1620] = {.lex_state = 8, .external_lex_state = 3}, - [1621] = {.lex_state = 15, .external_lex_state = 5}, + [1621] = {.lex_state = 8, .external_lex_state = 4}, [1622] = {.lex_state = 8, .external_lex_state = 3}, - [1623] = {.lex_state = 8, .external_lex_state = 4}, + [1623] = {.lex_state = 8, .external_lex_state = 3}, [1624] = {.lex_state = 8, .external_lex_state = 4}, - [1625] = {.lex_state = 15, .external_lex_state = 5}, - [1626] = {.lex_state = 8, .external_lex_state = 4}, - [1627] = {.lex_state = 8, .external_lex_state = 3}, - [1628] = {.lex_state = 8, .external_lex_state = 4}, - [1629] = {.lex_state = 8, .external_lex_state = 3}, - [1630] = {.lex_state = 8, .external_lex_state = 4}, + [1625] = {.lex_state = 8, .external_lex_state = 4}, + [1626] = {.lex_state = 8, .external_lex_state = 3}, + [1627] = {.lex_state = 8, .external_lex_state = 4}, + [1628] = {.lex_state = 8, .external_lex_state = 3}, + [1629] = {.lex_state = 8, .external_lex_state = 4}, + [1630] = {.lex_state = 8, .external_lex_state = 3}, [1631] = {.lex_state = 8, .external_lex_state = 3}, - [1632] = {.lex_state = 8, .external_lex_state = 4}, + [1632] = {.lex_state = 13, .external_lex_state = 5}, [1633] = {.lex_state = 8, .external_lex_state = 3}, - [1634] = {.lex_state = 8, .external_lex_state = 4}, - [1635] = {.lex_state = 8, .external_lex_state = 3}, - [1636] = {.lex_state = 8, .external_lex_state = 3}, - [1637] = {.lex_state = 8, .external_lex_state = 3}, - [1638] = {.lex_state = 15, .external_lex_state = 5}, + [1634] = {.lex_state = 8, .external_lex_state = 3}, + [1635] = {.lex_state = 8, .external_lex_state = 4}, + [1636] = {.lex_state = 8, .external_lex_state = 4}, + [1637] = {.lex_state = 8, .external_lex_state = 4}, + [1638] = {.lex_state = 8, .external_lex_state = 3}, [1639] = {.lex_state = 8, .external_lex_state = 3}, - [1640] = {.lex_state = 8, .external_lex_state = 3}, - [1641] = {.lex_state = 15, .external_lex_state = 5}, - [1642] = {.lex_state = 8, .external_lex_state = 4}, - [1643] = {.lex_state = 8, .external_lex_state = 4}, - [1644] = {.lex_state = 8, .external_lex_state = 3}, - [1645] = {.lex_state = 8, .external_lex_state = 4}, - [1646] = {.lex_state = 8, .external_lex_state = 4}, + [1640] = {.lex_state = 13, .external_lex_state = 5}, + [1641] = {.lex_state = 8, .external_lex_state = 3}, + [1642] = {.lex_state = 8, .external_lex_state = 3}, + [1643] = {.lex_state = 8, .external_lex_state = 3}, + [1644] = {.lex_state = 8, .external_lex_state = 4}, + [1645] = {.lex_state = 8, .external_lex_state = 3}, + [1646] = {.lex_state = 8, .external_lex_state = 3}, [1647] = {.lex_state = 8, .external_lex_state = 3}, - [1648] = {.lex_state = 15, .external_lex_state = 5}, + [1648] = {.lex_state = 8, .external_lex_state = 3}, [1649] = {.lex_state = 8, .external_lex_state = 3}, [1650] = {.lex_state = 8, .external_lex_state = 3}, - [1651] = {.lex_state = 8, .external_lex_state = 3}, - [1652] = {.lex_state = 8, .external_lex_state = 3}, + [1651] = {.lex_state = 8, .external_lex_state = 4}, + [1652] = {.lex_state = 8, .external_lex_state = 4}, [1653] = {.lex_state = 8, .external_lex_state = 3}, - [1654] = {.lex_state = 8, .external_lex_state = 3}, - [1655] = {.lex_state = 8, .external_lex_state = 4}, - [1656] = {.lex_state = 8, .external_lex_state = 3}, + [1654] = {.lex_state = 8, .external_lex_state = 4}, + [1655] = {.lex_state = 13, .external_lex_state = 5}, + [1656] = {.lex_state = 8, .external_lex_state = 4}, [1657] = {.lex_state = 8, .external_lex_state = 4}, [1658] = {.lex_state = 13, .external_lex_state = 5}, [1659] = {.lex_state = 8, .external_lex_state = 4}, - [1660] = {.lex_state = 8, .external_lex_state = 3}, - [1661] = {.lex_state = 15, .external_lex_state = 5}, - [1662] = {.lex_state = 8, .external_lex_state = 3}, - [1663] = {.lex_state = 8, .external_lex_state = 3}, + [1660] = {.lex_state = 8, .external_lex_state = 4}, + [1661] = {.lex_state = 8, .external_lex_state = 4}, + [1662] = {.lex_state = 13, .external_lex_state = 5}, + [1663] = {.lex_state = 8, .external_lex_state = 4}, [1664] = {.lex_state = 8, .external_lex_state = 3}, - [1665] = {.lex_state = 8, .external_lex_state = 3}, - [1666] = {.lex_state = 8, .external_lex_state = 3}, - [1667] = {.lex_state = 8, .external_lex_state = 3}, - [1668] = {.lex_state = 8, .external_lex_state = 4}, + [1665] = {.lex_state = 8, .external_lex_state = 4}, + [1666] = {.lex_state = 13, .external_lex_state = 5}, + [1667] = {.lex_state = 8, .external_lex_state = 4}, + [1668] = {.lex_state = 8, .external_lex_state = 3}, [1669] = {.lex_state = 8, .external_lex_state = 4}, [1670] = {.lex_state = 8, .external_lex_state = 3}, - [1671] = {.lex_state = 8, .external_lex_state = 4}, - [1672] = {.lex_state = 8, .external_lex_state = 3}, - [1673] = {.lex_state = 8, .external_lex_state = 3}, + [1671] = {.lex_state = 8, .external_lex_state = 3}, + [1672] = {.lex_state = 8, .external_lex_state = 4}, + [1673] = {.lex_state = 8, .external_lex_state = 4}, [1674] = {.lex_state = 8, .external_lex_state = 4}, - [1675] = {.lex_state = 8, .external_lex_state = 3}, + [1675] = {.lex_state = 8, .external_lex_state = 4}, [1676] = {.lex_state = 8, .external_lex_state = 3}, - [1677] = {.lex_state = 8, .external_lex_state = 4}, - [1678] = {.lex_state = 8, .external_lex_state = 4}, - [1679] = {.lex_state = 8, .external_lex_state = 4}, - [1680] = {.lex_state = 8, .external_lex_state = 3}, - [1681] = {.lex_state = 8, .external_lex_state = 3}, - [1682] = {.lex_state = 8, .external_lex_state = 4}, - [1683] = {.lex_state = 8, .external_lex_state = 4}, - [1684] = {.lex_state = 8, .external_lex_state = 4}, - [1685] = {.lex_state = 8, .external_lex_state = 4}, - [1686] = {.lex_state = 8, .external_lex_state = 3}, + [1677] = {.lex_state = 8, .external_lex_state = 3}, + [1678] = {.lex_state = 8, .external_lex_state = 3}, + [1679] = {.lex_state = 8, .external_lex_state = 3}, + [1680] = {.lex_state = 8, .external_lex_state = 4}, + [1681] = {.lex_state = 8, .external_lex_state = 4}, + [1682] = {.lex_state = 8, .external_lex_state = 3}, + [1683] = {.lex_state = 8, .external_lex_state = 3}, + [1684] = {.lex_state = 8, .external_lex_state = 3}, + [1685] = {.lex_state = 8, .external_lex_state = 3}, + [1686] = {.lex_state = 8, .external_lex_state = 4}, [1687] = {.lex_state = 8, .external_lex_state = 3}, - [1688] = {.lex_state = 8, .external_lex_state = 3}, + [1688] = {.lex_state = 8, .external_lex_state = 4}, [1689] = {.lex_state = 8, .external_lex_state = 3}, [1690] = {.lex_state = 8, .external_lex_state = 3}, [1691] = {.lex_state = 8, .external_lex_state = 4}, - [1692] = {.lex_state = 8, .external_lex_state = 3}, - [1693] = {.lex_state = 8, .external_lex_state = 3}, + [1692] = {.lex_state = 8, .external_lex_state = 4}, + [1693] = {.lex_state = 8, .external_lex_state = 4}, [1694] = {.lex_state = 8, .external_lex_state = 4}, - [1695] = {.lex_state = 8, .external_lex_state = 3}, - [1696] = {.lex_state = 8, .external_lex_state = 3}, - [1697] = {.lex_state = 8, .external_lex_state = 4}, - [1698] = {.lex_state = 8, .external_lex_state = 3}, - [1699] = {.lex_state = 8, .external_lex_state = 3}, - [1700] = {.lex_state = 8, .external_lex_state = 4}, - [1701] = {.lex_state = 8, .external_lex_state = 4}, - [1702] = {.lex_state = 15, .external_lex_state = 5}, - [1703] = {.lex_state = 8, .external_lex_state = 3}, + [1695] = {.lex_state = 8, .external_lex_state = 4}, + [1696] = {.lex_state = 8, .external_lex_state = 4}, + [1697] = {.lex_state = 8, .external_lex_state = 3}, + [1698] = {.lex_state = 13, .external_lex_state = 5}, + [1699] = {.lex_state = 8, .external_lex_state = 4}, + [1700] = {.lex_state = 8, .external_lex_state = 3}, + [1701] = {.lex_state = 8, .external_lex_state = 3}, + [1702] = {.lex_state = 8, .external_lex_state = 3}, + [1703] = {.lex_state = 13, .external_lex_state = 5}, [1704] = {.lex_state = 8, .external_lex_state = 3}, - [1705] = {.lex_state = 8, .external_lex_state = 3}, - [1706] = {.lex_state = 8, .external_lex_state = 4}, + [1705] = {.lex_state = 8, .external_lex_state = 4}, + [1706] = {.lex_state = 8, .external_lex_state = 3}, [1707] = {.lex_state = 8, .external_lex_state = 3}, - [1708] = {.lex_state = 8, .external_lex_state = 4}, - [1709] = {.lex_state = 8, .external_lex_state = 3}, - [1710] = {.lex_state = 15, .external_lex_state = 5}, - [1711] = {.lex_state = 8, .external_lex_state = 4}, - [1712] = {.lex_state = 8, .external_lex_state = 4}, - [1713] = {.lex_state = 8, .external_lex_state = 4}, - [1714] = {.lex_state = 8, .external_lex_state = 4}, - [1715] = {.lex_state = 8, .external_lex_state = 4}, + [1708] = {.lex_state = 8, .external_lex_state = 3}, + [1709] = {.lex_state = 8, .external_lex_state = 4}, + [1710] = {.lex_state = 8, .external_lex_state = 3}, + [1711] = {.lex_state = 8, .external_lex_state = 3}, + [1712] = {.lex_state = 8, .external_lex_state = 3}, + [1713] = {.lex_state = 8, .external_lex_state = 3}, + [1714] = {.lex_state = 8, .external_lex_state = 3}, + [1715] = {.lex_state = 8, .external_lex_state = 3}, [1716] = {.lex_state = 8, .external_lex_state = 4}, [1717] = {.lex_state = 8, .external_lex_state = 4}, - [1718] = {.lex_state = 8, .external_lex_state = 4}, - [1719] = {.lex_state = 8, .external_lex_state = 3}, - [1720] = {.lex_state = 8, .external_lex_state = 3}, - [1721] = {.lex_state = 8, .external_lex_state = 4}, + [1718] = {.lex_state = 8, .external_lex_state = 3}, + [1719] = {.lex_state = 8, .external_lex_state = 4}, + [1720] = {.lex_state = 8, .external_lex_state = 4}, + [1721] = {.lex_state = 8, .external_lex_state = 3}, [1722] = {.lex_state = 8, .external_lex_state = 4}, - [1723] = {.lex_state = 8, .external_lex_state = 4}, - [1724] = {.lex_state = 8, .external_lex_state = 4}, + [1723] = {.lex_state = 8, .external_lex_state = 3}, + [1724] = {.lex_state = 8, .external_lex_state = 3}, [1725] = {.lex_state = 8, .external_lex_state = 3}, - [1726] = {.lex_state = 8, .external_lex_state = 4}, + [1726] = {.lex_state = 8, .external_lex_state = 3}, [1727] = {.lex_state = 8, .external_lex_state = 4}, [1728] = {.lex_state = 8, .external_lex_state = 3}, - [1729] = {.lex_state = 8, .external_lex_state = 4}, + [1729] = {.lex_state = 8, .external_lex_state = 3}, [1730] = {.lex_state = 8, .external_lex_state = 3}, - [1731] = {.lex_state = 8, .external_lex_state = 4}, + [1731] = {.lex_state = 8, .external_lex_state = 3}, [1732] = {.lex_state = 8, .external_lex_state = 3}, - [1733] = {.lex_state = 8, .external_lex_state = 3}, + [1733] = {.lex_state = 14, .external_lex_state = 5}, [1734] = {.lex_state = 8, .external_lex_state = 3}, [1735] = {.lex_state = 8, .external_lex_state = 4}, - [1736] = {.lex_state = 8, .external_lex_state = 4}, + [1736] = {.lex_state = 8, .external_lex_state = 3}, [1737] = {.lex_state = 8, .external_lex_state = 4}, - [1738] = {.lex_state = 15, .external_lex_state = 5}, - [1739] = {.lex_state = 8, .external_lex_state = 3}, + [1738] = {.lex_state = 8, .external_lex_state = 4}, + [1739] = {.lex_state = 8, .external_lex_state = 4}, [1740] = {.lex_state = 8, .external_lex_state = 4}, [1741] = {.lex_state = 8, .external_lex_state = 4}, [1742] = {.lex_state = 8, .external_lex_state = 4}, - [1743] = {.lex_state = 8, .external_lex_state = 3}, + [1743] = {.lex_state = 13, .external_lex_state = 5}, [1744] = {.lex_state = 8, .external_lex_state = 3}, [1745] = {.lex_state = 8, .external_lex_state = 3}, [1746] = {.lex_state = 8, .external_lex_state = 4}, [1747] = {.lex_state = 8, .external_lex_state = 4}, [1748] = {.lex_state = 8, .external_lex_state = 4}, - [1749] = {.lex_state = 8, .external_lex_state = 3}, + [1749] = {.lex_state = 13, .external_lex_state = 5}, [1750] = {.lex_state = 8, .external_lex_state = 4}, - [1751] = {.lex_state = 8, .external_lex_state = 3}, + [1751] = {.lex_state = 8, .external_lex_state = 4}, [1752] = {.lex_state = 8, .external_lex_state = 4}, - [1753] = {.lex_state = 8, .external_lex_state = 4}, - [1754] = {.lex_state = 8, .external_lex_state = 4}, - [1755] = {.lex_state = 8, .external_lex_state = 4}, + [1753] = {.lex_state = 8, .external_lex_state = 3}, + [1754] = {.lex_state = 8, .external_lex_state = 3}, + [1755] = {.lex_state = 13, .external_lex_state = 5}, [1756] = {.lex_state = 8, .external_lex_state = 3}, - [1757] = {.lex_state = 8, .external_lex_state = 4}, - [1758] = {.lex_state = 8, .external_lex_state = 4}, - [1759] = {.lex_state = 8, .external_lex_state = 3}, + [1757] = {.lex_state = 8, .external_lex_state = 3}, + [1758] = {.lex_state = 8, .external_lex_state = 3}, + [1759] = {.lex_state = 8, .external_lex_state = 4}, [1760] = {.lex_state = 8, .external_lex_state = 4}, - [1761] = {.lex_state = 8, .external_lex_state = 4}, + [1761] = {.lex_state = 8, .external_lex_state = 3}, [1762] = {.lex_state = 8, .external_lex_state = 4}, [1763] = {.lex_state = 8, .external_lex_state = 3}, - [1764] = {.lex_state = 8, .external_lex_state = 3}, - [1765] = {.lex_state = 8, .external_lex_state = 3}, - [1766] = {.lex_state = 8, .external_lex_state = 3}, + [1764] = {.lex_state = 8, .external_lex_state = 4}, + [1765] = {.lex_state = 8, .external_lex_state = 4}, + [1766] = {.lex_state = 8, .external_lex_state = 4}, [1767] = {.lex_state = 8, .external_lex_state = 3}, - [1768] = {.lex_state = 8, .external_lex_state = 3}, - [1769] = {.lex_state = 8, .external_lex_state = 4}, - [1770] = {.lex_state = 8, .external_lex_state = 3}, - [1771] = {.lex_state = 8, .external_lex_state = 4}, - [1772] = {.lex_state = 8, .external_lex_state = 3}, + [1768] = {.lex_state = 8, .external_lex_state = 4}, + [1769] = {.lex_state = 8, .external_lex_state = 3}, + [1770] = {.lex_state = 13, .external_lex_state = 5}, + [1771] = {.lex_state = 8, .external_lex_state = 3}, + [1772] = {.lex_state = 8, .external_lex_state = 4}, [1773] = {.lex_state = 8, .external_lex_state = 4}, - [1774] = {.lex_state = 15, .external_lex_state = 5}, - [1775] = {.lex_state = 15, .external_lex_state = 5}, - [1776] = {.lex_state = 8, .external_lex_state = 4}, + [1774] = {.lex_state = 8, .external_lex_state = 3}, + [1775] = {.lex_state = 8, .external_lex_state = 3}, + [1776] = {.lex_state = 8, .external_lex_state = 3}, [1777] = {.lex_state = 8, .external_lex_state = 4}, - [1778] = {.lex_state = 8, .external_lex_state = 3}, + [1778] = {.lex_state = 8, .external_lex_state = 4}, [1779] = {.lex_state = 8, .external_lex_state = 4}, [1780] = {.lex_state = 8, .external_lex_state = 4}, - [1781] = {.lex_state = 8, .external_lex_state = 4}, - [1782] = {.lex_state = 8, .external_lex_state = 4}, - [1783] = {.lex_state = 8, .external_lex_state = 3}, + [1781] = {.lex_state = 8, .external_lex_state = 3}, + [1782] = {.lex_state = 8, .external_lex_state = 3}, + [1783] = {.lex_state = 8, .external_lex_state = 4}, [1784] = {.lex_state = 8, .external_lex_state = 3}, - [1785] = {.lex_state = 15, .external_lex_state = 5}, + [1785] = {.lex_state = 8, .external_lex_state = 3}, [1786] = {.lex_state = 8, .external_lex_state = 4}, [1787] = {.lex_state = 8, .external_lex_state = 4}, - [1788] = {.lex_state = 8, .external_lex_state = 3}, + [1788] = {.lex_state = 8, .external_lex_state = 4}, [1789] = {.lex_state = 8, .external_lex_state = 4}, - [1790] = {.lex_state = 8, .external_lex_state = 3}, + [1790] = {.lex_state = 8, .external_lex_state = 4}, [1791] = {.lex_state = 8, .external_lex_state = 3}, [1792] = {.lex_state = 8, .external_lex_state = 3}, [1793] = {.lex_state = 8, .external_lex_state = 3}, [1794] = {.lex_state = 8, .external_lex_state = 3}, [1795] = {.lex_state = 8, .external_lex_state = 3}, - [1796] = {.lex_state = 8, .external_lex_state = 4}, - [1797] = {.lex_state = 8, .external_lex_state = 3}, + [1796] = {.lex_state = 8, .external_lex_state = 3}, + [1797] = {.lex_state = 8, .external_lex_state = 4}, [1798] = {.lex_state = 8, .external_lex_state = 4}, - [1799] = {.lex_state = 8, .external_lex_state = 3}, - [1800] = {.lex_state = 8, .external_lex_state = 3}, - [1801] = {.lex_state = 8, .external_lex_state = 3}, + [1799] = {.lex_state = 8, .external_lex_state = 4}, + [1800] = {.lex_state = 8, .external_lex_state = 4}, + [1801] = {.lex_state = 8, .external_lex_state = 4}, [1802] = {.lex_state = 8, .external_lex_state = 3}, - [1803] = {.lex_state = 15, .external_lex_state = 5}, + [1803] = {.lex_state = 8, .external_lex_state = 4}, [1804] = {.lex_state = 8, .external_lex_state = 3}, [1805] = {.lex_state = 8, .external_lex_state = 3}, [1806] = {.lex_state = 8, .external_lex_state = 3}, [1807] = {.lex_state = 8, .external_lex_state = 3}, - [1808] = {.lex_state = 8, .external_lex_state = 3}, - [1809] = {.lex_state = 8, .external_lex_state = 4}, - [1810] = {.lex_state = 8, .external_lex_state = 3}, - [1811] = {.lex_state = 8, .external_lex_state = 3}, - [1812] = {.lex_state = 8, .external_lex_state = 3}, - [1813] = {.lex_state = 8, .external_lex_state = 4}, - [1814] = {.lex_state = 8, .external_lex_state = 3}, + [1808] = {.lex_state = 8, .external_lex_state = 4}, + [1809] = {.lex_state = 13, .external_lex_state = 5}, + [1810] = {.lex_state = 8, .external_lex_state = 4}, + [1811] = {.lex_state = 8, .external_lex_state = 4}, + [1812] = {.lex_state = 8, .external_lex_state = 4}, + [1813] = {.lex_state = 13, .external_lex_state = 5}, + [1814] = {.lex_state = 8, .external_lex_state = 4}, [1815] = {.lex_state = 8, .external_lex_state = 3}, - [1816] = {.lex_state = 8, .external_lex_state = 3}, - [1817] = {.lex_state = 15, .external_lex_state = 5}, + [1816] = {.lex_state = 8, .external_lex_state = 4}, + [1817] = {.lex_state = 8, .external_lex_state = 3}, [1818] = {.lex_state = 8, .external_lex_state = 3}, - [1819] = {.lex_state = 8, .external_lex_state = 4}, + [1819] = {.lex_state = 8, .external_lex_state = 3}, [1820] = {.lex_state = 8, .external_lex_state = 3}, [1821] = {.lex_state = 8, .external_lex_state = 3}, [1822] = {.lex_state = 8, .external_lex_state = 4}, [1823] = {.lex_state = 8, .external_lex_state = 3}, - [1824] = {.lex_state = 8, .external_lex_state = 4}, - [1825] = {.lex_state = 8, .external_lex_state = 3}, - [1826] = {.lex_state = 8, .external_lex_state = 3}, - [1827] = {.lex_state = 8, .external_lex_state = 3}, + [1824] = {.lex_state = 13, .external_lex_state = 5}, + [1825] = {.lex_state = 8, .external_lex_state = 4}, + [1826] = {.lex_state = 8, .external_lex_state = 4}, + [1827] = {.lex_state = 8, .external_lex_state = 4}, [1828] = {.lex_state = 8, .external_lex_state = 3}, [1829] = {.lex_state = 8, .external_lex_state = 3}, - [1830] = {.lex_state = 8, .external_lex_state = 3}, - [1831] = {.lex_state = 8, .external_lex_state = 3}, - [1832] = {.lex_state = 8, .external_lex_state = 4}, + [1830] = {.lex_state = 8, .external_lex_state = 4}, + [1831] = {.lex_state = 8, .external_lex_state = 4}, + [1832] = {.lex_state = 8, .external_lex_state = 3}, [1833] = {.lex_state = 8, .external_lex_state = 3}, [1834] = {.lex_state = 8, .external_lex_state = 3}, - [1835] = {.lex_state = 8, .external_lex_state = 4}, + [1835] = {.lex_state = 13, .external_lex_state = 5}, [1836] = {.lex_state = 8, .external_lex_state = 3}, [1837] = {.lex_state = 8, .external_lex_state = 3}, [1838] = {.lex_state = 8, .external_lex_state = 4}, [1839] = {.lex_state = 8, .external_lex_state = 3}, - [1840] = {.lex_state = 8, .external_lex_state = 3}, + [1840] = {.lex_state = 13, .external_lex_state = 5}, [1841] = {.lex_state = 8, .external_lex_state = 3}, [1842] = {.lex_state = 8, .external_lex_state = 3}, - [1843] = {.lex_state = 8, .external_lex_state = 3}, + [1843] = {.lex_state = 13, .external_lex_state = 5}, [1844] = {.lex_state = 8, .external_lex_state = 3}, - [1845] = {.lex_state = 8, .external_lex_state = 4}, + [1845] = {.lex_state = 8, .external_lex_state = 3}, [1846] = {.lex_state = 8, .external_lex_state = 3}, - [1847] = {.lex_state = 15, .external_lex_state = 5}, + [1847] = {.lex_state = 8, .external_lex_state = 3}, [1848] = {.lex_state = 8, .external_lex_state = 3}, [1849] = {.lex_state = 8, .external_lex_state = 3}, [1850] = {.lex_state = 8, .external_lex_state = 3}, [1851] = {.lex_state = 8, .external_lex_state = 3}, - [1852] = {.lex_state = 8, .external_lex_state = 3}, + [1852] = {.lex_state = 13, .external_lex_state = 5}, [1853] = {.lex_state = 8, .external_lex_state = 3}, [1854] = {.lex_state = 8, .external_lex_state = 4}, - [1855] = {.lex_state = 15, .external_lex_state = 5}, - [1856] = {.lex_state = 8, .external_lex_state = 4}, - [1857] = {.lex_state = 15, .external_lex_state = 5}, - [1858] = {.lex_state = 8, .external_lex_state = 4}, - [1859] = {.lex_state = 15, .external_lex_state = 5}, + [1855] = {.lex_state = 13, .external_lex_state = 5}, + [1856] = {.lex_state = 8, .external_lex_state = 3}, + [1857] = {.lex_state = 8, .external_lex_state = 3}, + [1858] = {.lex_state = 8, .external_lex_state = 3}, + [1859] = {.lex_state = 8, .external_lex_state = 3}, [1860] = {.lex_state = 8, .external_lex_state = 3}, [1861] = {.lex_state = 8, .external_lex_state = 3}, [1862] = {.lex_state = 8, .external_lex_state = 3}, [1863] = {.lex_state = 8, .external_lex_state = 3}, - [1864] = {.lex_state = 8, .external_lex_state = 4}, - [1865] = {.lex_state = 8, .external_lex_state = 4}, - [1866] = {.lex_state = 8, .external_lex_state = 4}, + [1864] = {.lex_state = 8, .external_lex_state = 3}, + [1865] = {.lex_state = 8, .external_lex_state = 3}, + [1866] = {.lex_state = 8, .external_lex_state = 3}, [1867] = {.lex_state = 8, .external_lex_state = 3}, [1868] = {.lex_state = 8, .external_lex_state = 3}, - [1869] = {.lex_state = 8, .external_lex_state = 4}, - [1870] = {.lex_state = 15, .external_lex_state = 5}, - [1871] = {.lex_state = 15, .external_lex_state = 5}, + [1869] = {.lex_state = 8, .external_lex_state = 3}, + [1870] = {.lex_state = 8, .external_lex_state = 3}, + [1871] = {.lex_state = 8, .external_lex_state = 3}, [1872] = {.lex_state = 8, .external_lex_state = 3}, [1873] = {.lex_state = 8, .external_lex_state = 3}, [1874] = {.lex_state = 8, .external_lex_state = 3}, @@ -15890,8 +15914,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1876] = {.lex_state = 8, .external_lex_state = 3}, [1877] = {.lex_state = 8, .external_lex_state = 3}, [1878] = {.lex_state = 8, .external_lex_state = 3}, - [1879] = {.lex_state = 8, .external_lex_state = 4}, - [1880] = {.lex_state = 8, .external_lex_state = 4}, + [1879] = {.lex_state = 8, .external_lex_state = 3}, + [1880] = {.lex_state = 8, .external_lex_state = 3}, [1881] = {.lex_state = 8, .external_lex_state = 3}, [1882] = {.lex_state = 8, .external_lex_state = 3}, [1883] = {.lex_state = 8, .external_lex_state = 3}, @@ -15901,12 +15925,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1887] = {.lex_state = 8, .external_lex_state = 3}, [1888] = {.lex_state = 8, .external_lex_state = 3}, [1889] = {.lex_state = 8, .external_lex_state = 3}, - [1890] = {.lex_state = 8, .external_lex_state = 4}, - [1891] = {.lex_state = 15, .external_lex_state = 5}, - [1892] = {.lex_state = 8, .external_lex_state = 3}, + [1890] = {.lex_state = 8, .external_lex_state = 3}, + [1891] = {.lex_state = 8, .external_lex_state = 4}, + [1892] = {.lex_state = 8, .external_lex_state = 4}, [1893] = {.lex_state = 8, .external_lex_state = 4}, [1894] = {.lex_state = 8, .external_lex_state = 4}, - [1895] = {.lex_state = 15, .external_lex_state = 2}, + [1895] = {.lex_state = 8, .external_lex_state = 4}, [1896] = {.lex_state = 8, .external_lex_state = 4}, [1897] = {.lex_state = 8, .external_lex_state = 4}, [1898] = {.lex_state = 8, .external_lex_state = 4}, @@ -15917,7 +15941,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1903] = {.lex_state = 8, .external_lex_state = 4}, [1904] = {.lex_state = 8, .external_lex_state = 4}, [1905] = {.lex_state = 8, .external_lex_state = 4}, - [1906] = {.lex_state = 9, .external_lex_state = 3}, + [1906] = {.lex_state = 8, .external_lex_state = 4}, [1907] = {.lex_state = 8, .external_lex_state = 4}, [1908] = {.lex_state = 8, .external_lex_state = 4}, [1909] = {.lex_state = 8, .external_lex_state = 4}, @@ -15926,8 +15950,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1912] = {.lex_state = 8, .external_lex_state = 4}, [1913] = {.lex_state = 8, .external_lex_state = 4}, [1914] = {.lex_state = 8, .external_lex_state = 4}, - [1915] = {.lex_state = 8, .external_lex_state = 3}, - [1916] = {.lex_state = 8, .external_lex_state = 3}, + [1915] = {.lex_state = 8, .external_lex_state = 4}, + [1916] = {.lex_state = 8, .external_lex_state = 4}, [1917] = {.lex_state = 8, .external_lex_state = 4}, [1918] = {.lex_state = 8, .external_lex_state = 4}, [1919] = {.lex_state = 8, .external_lex_state = 4}, @@ -15936,16 +15960,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1922] = {.lex_state = 8, .external_lex_state = 4}, [1923] = {.lex_state = 8, .external_lex_state = 4}, [1924] = {.lex_state = 8, .external_lex_state = 4}, - [1925] = {.lex_state = 8, .external_lex_state = 4}, - [1926] = {.lex_state = 8, .external_lex_state = 4}, - [1927] = {.lex_state = 8, .external_lex_state = 4}, + [1925] = {.lex_state = 8, .external_lex_state = 3}, + [1926] = {.lex_state = 13, .external_lex_state = 2}, + [1927] = {.lex_state = 8, .external_lex_state = 3}, [1928] = {.lex_state = 8, .external_lex_state = 4}, [1929] = {.lex_state = 8, .external_lex_state = 4}, - [1930] = {.lex_state = 8, .external_lex_state = 4}, - [1931] = {.lex_state = 8, .external_lex_state = 3}, + [1930] = {.lex_state = 8, .external_lex_state = 3}, + [1931] = {.lex_state = 8, .external_lex_state = 4}, [1932] = {.lex_state = 8, .external_lex_state = 4}, - [1933] = {.lex_state = 8, .external_lex_state = 4}, - [1934] = {.lex_state = 8, .external_lex_state = 4}, + [1933] = {.lex_state = 8, .external_lex_state = 3}, + [1934] = {.lex_state = 9, .external_lex_state = 3}, [1935] = {.lex_state = 8, .external_lex_state = 4}, [1936] = {.lex_state = 8, .external_lex_state = 4}, [1937] = {.lex_state = 8, .external_lex_state = 4}, @@ -15953,36 +15977,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1939] = {.lex_state = 8, .external_lex_state = 4}, [1940] = {.lex_state = 8, .external_lex_state = 4}, [1941] = {.lex_state = 8, .external_lex_state = 4}, - [1942] = {.lex_state = 8, .external_lex_state = 4}, - [1943] = {.lex_state = 8, .external_lex_state = 4}, - [1944] = {.lex_state = 8, .external_lex_state = 4}, - [1945] = {.lex_state = 8, .external_lex_state = 4}, + [1942] = {.lex_state = 13, .external_lex_state = 5}, + [1943] = {.lex_state = 8, .external_lex_state = 3}, + [1944] = {.lex_state = 13, .external_lex_state = 2}, + [1945] = {.lex_state = 8, .external_lex_state = 3}, [1946] = {.lex_state = 8, .external_lex_state = 4}, [1947] = {.lex_state = 8, .external_lex_state = 4}, - [1948] = {.lex_state = 8, .external_lex_state = 4}, + [1948] = {.lex_state = 151, .external_lex_state = 2}, [1949] = {.lex_state = 8, .external_lex_state = 4}, [1950] = {.lex_state = 8, .external_lex_state = 4}, [1951] = {.lex_state = 8, .external_lex_state = 4}, [1952] = {.lex_state = 8, .external_lex_state = 4}, - [1953] = {.lex_state = 8, .external_lex_state = 4}, - [1954] = {.lex_state = 8, .external_lex_state = 4}, - [1955] = {.lex_state = 8, .external_lex_state = 4}, + [1953] = {.lex_state = 8, .external_lex_state = 3}, + [1954] = {.lex_state = 13, .external_lex_state = 5}, + [1955] = {.lex_state = 13, .external_lex_state = 5}, [1956] = {.lex_state = 8, .external_lex_state = 4}, - [1957] = {.lex_state = 8, .external_lex_state = 4}, - [1958] = {.lex_state = 8, .external_lex_state = 4}, + [1957] = {.lex_state = 13, .external_lex_state = 5}, + [1958] = {.lex_state = 13, .external_lex_state = 5}, [1959] = {.lex_state = 8, .external_lex_state = 4}, - [1960] = {.lex_state = 8, .external_lex_state = 4}, - [1961] = {.lex_state = 8, .external_lex_state = 4}, - [1962] = {.lex_state = 8, .external_lex_state = 4}, - [1963] = {.lex_state = 8, .external_lex_state = 4}, - [1964] = {.lex_state = 8, .external_lex_state = 4}, - [1965] = {.lex_state = 8, .external_lex_state = 4}, + [1960] = {.lex_state = 13, .external_lex_state = 5}, + [1961] = {.lex_state = 8, .external_lex_state = 3}, + [1962] = {.lex_state = 8, .external_lex_state = 3}, + [1963] = {.lex_state = 13, .external_lex_state = 2}, + [1964] = {.lex_state = 8, .external_lex_state = 3}, + [1965] = {.lex_state = 8, .external_lex_state = 3}, [1966] = {.lex_state = 8, .external_lex_state = 4}, [1967] = {.lex_state = 8, .external_lex_state = 4}, - [1968] = {.lex_state = 8, .external_lex_state = 4}, - [1969] = {.lex_state = 8, .external_lex_state = 4}, - [1970] = {.lex_state = 8, .external_lex_state = 4}, - [1971] = {.lex_state = 8, .external_lex_state = 4}, + [1968] = {.lex_state = 13, .external_lex_state = 2}, + [1969] = {.lex_state = 8, .external_lex_state = 3}, + [1970] = {.lex_state = 8, .external_lex_state = 3}, + [1971] = {.lex_state = 13, .external_lex_state = 2}, [1972] = {.lex_state = 8, .external_lex_state = 4}, [1973] = {.lex_state = 8, .external_lex_state = 4}, [1974] = {.lex_state = 8, .external_lex_state = 4}, @@ -15990,7 +16014,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1976] = {.lex_state = 8, .external_lex_state = 4}, [1977] = {.lex_state = 8, .external_lex_state = 4}, [1978] = {.lex_state = 8, .external_lex_state = 4}, - [1979] = {.lex_state = 8, .external_lex_state = 4}, + [1979] = {.lex_state = 151, .external_lex_state = 2}, [1980] = {.lex_state = 8, .external_lex_state = 4}, [1981] = {.lex_state = 8, .external_lex_state = 4}, [1982] = {.lex_state = 8, .external_lex_state = 4}, @@ -16002,9 +16026,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1988] = {.lex_state = 8, .external_lex_state = 4}, [1989] = {.lex_state = 8, .external_lex_state = 4}, [1990] = {.lex_state = 8, .external_lex_state = 4}, - [1991] = {.lex_state = 8, .external_lex_state = 4}, + [1991] = {.lex_state = 8, .external_lex_state = 3}, [1992] = {.lex_state = 8, .external_lex_state = 4}, - [1993] = {.lex_state = 8, .external_lex_state = 4}, + [1993] = {.lex_state = 8, .external_lex_state = 3}, [1994] = {.lex_state = 8, .external_lex_state = 4}, [1995] = {.lex_state = 8, .external_lex_state = 4}, [1996] = {.lex_state = 8, .external_lex_state = 4}, @@ -16017,357 +16041,357 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2003] = {.lex_state = 8, .external_lex_state = 4}, [2004] = {.lex_state = 8, .external_lex_state = 4}, [2005] = {.lex_state = 8, .external_lex_state = 4}, - [2006] = {.lex_state = 151, .external_lex_state = 2}, - [2007] = {.lex_state = 15, .external_lex_state = 2}, - [2008] = {.lex_state = 8, .external_lex_state = 3}, + [2006] = {.lex_state = 8, .external_lex_state = 4}, + [2007] = {.lex_state = 8, .external_lex_state = 4}, + [2008] = {.lex_state = 8, .external_lex_state = 4}, [2009] = {.lex_state = 8, .external_lex_state = 4}, - [2010] = {.lex_state = 8, .external_lex_state = 3}, - [2011] = {.lex_state = 8, .external_lex_state = 3}, + [2010] = {.lex_state = 8, .external_lex_state = 4}, + [2011] = {.lex_state = 8, .external_lex_state = 4}, [2012] = {.lex_state = 8, .external_lex_state = 4}, [2013] = {.lex_state = 8, .external_lex_state = 4}, [2014] = {.lex_state = 8, .external_lex_state = 4}, - [2015] = {.lex_state = 15, .external_lex_state = 2}, - [2016] = {.lex_state = 15, .external_lex_state = 5}, - [2017] = {.lex_state = 15, .external_lex_state = 5}, - [2018] = {.lex_state = 15, .external_lex_state = 5}, - [2019] = {.lex_state = 15, .external_lex_state = 5}, - [2020] = {.lex_state = 8, .external_lex_state = 3}, - [2021] = {.lex_state = 15, .external_lex_state = 5}, + [2015] = {.lex_state = 8, .external_lex_state = 4}, + [2016] = {.lex_state = 8, .external_lex_state = 4}, + [2017] = {.lex_state = 8, .external_lex_state = 4}, + [2018] = {.lex_state = 13, .external_lex_state = 5}, + [2019] = {.lex_state = 8, .external_lex_state = 4}, + [2020] = {.lex_state = 8, .external_lex_state = 4}, + [2021] = {.lex_state = 8, .external_lex_state = 4}, [2022] = {.lex_state = 8, .external_lex_state = 4}, - [2023] = {.lex_state = 8, .external_lex_state = 3}, + [2023] = {.lex_state = 8, .external_lex_state = 4}, [2024] = {.lex_state = 8, .external_lex_state = 4}, - [2025] = {.lex_state = 8, .external_lex_state = 3}, + [2025] = {.lex_state = 8, .external_lex_state = 4}, [2026] = {.lex_state = 8, .external_lex_state = 3}, - [2027] = {.lex_state = 15, .external_lex_state = 2}, + [2027] = {.lex_state = 8, .external_lex_state = 4}, [2028] = {.lex_state = 8, .external_lex_state = 3}, - [2029] = {.lex_state = 8, .external_lex_state = 3}, + [2029] = {.lex_state = 8, .external_lex_state = 4}, [2030] = {.lex_state = 8, .external_lex_state = 4}, [2031] = {.lex_state = 8, .external_lex_state = 4}, - [2032] = {.lex_state = 15, .external_lex_state = 2}, - [2033] = {.lex_state = 8, .external_lex_state = 3}, - [2034] = {.lex_state = 8, .external_lex_state = 3}, - [2035] = {.lex_state = 15, .external_lex_state = 2}, - [2036] = {.lex_state = 8, .external_lex_state = 4}, + [2032] = {.lex_state = 8, .external_lex_state = 4}, + [2033] = {.lex_state = 8, .external_lex_state = 4}, + [2034] = {.lex_state = 8, .external_lex_state = 4}, + [2035] = {.lex_state = 8, .external_lex_state = 4}, + [2036] = {.lex_state = 13, .external_lex_state = 2}, [2037] = {.lex_state = 8, .external_lex_state = 4}, [2038] = {.lex_state = 8, .external_lex_state = 4}, - [2039] = {.lex_state = 8, .external_lex_state = 4}, + [2039] = {.lex_state = 13, .external_lex_state = 2}, [2040] = {.lex_state = 8, .external_lex_state = 4}, [2041] = {.lex_state = 8, .external_lex_state = 4}, [2042] = {.lex_state = 8, .external_lex_state = 4}, [2043] = {.lex_state = 8, .external_lex_state = 4}, - [2044] = {.lex_state = 151, .external_lex_state = 2}, - [2045] = {.lex_state = 8, .external_lex_state = 4}, + [2044] = {.lex_state = 13, .external_lex_state = 5}, + [2045] = {.lex_state = 13, .external_lex_state = 5}, [2046] = {.lex_state = 8, .external_lex_state = 4}, [2047] = {.lex_state = 8, .external_lex_state = 4}, - [2048] = {.lex_state = 8, .external_lex_state = 4}, + [2048] = {.lex_state = 13, .external_lex_state = 5}, [2049] = {.lex_state = 8, .external_lex_state = 4}, - [2050] = {.lex_state = 8, .external_lex_state = 4}, - [2051] = {.lex_state = 8, .external_lex_state = 4}, - [2052] = {.lex_state = 8, .external_lex_state = 4}, - [2053] = {.lex_state = 8, .external_lex_state = 4}, - [2054] = {.lex_state = 8, .external_lex_state = 4}, - [2055] = {.lex_state = 8, .external_lex_state = 4}, - [2056] = {.lex_state = 8, .external_lex_state = 4}, - [2057] = {.lex_state = 8, .external_lex_state = 4}, - [2058] = {.lex_state = 8, .external_lex_state = 4}, - [2059] = {.lex_state = 8, .external_lex_state = 4}, - [2060] = {.lex_state = 8, .external_lex_state = 4}, - [2061] = {.lex_state = 8, .external_lex_state = 4}, - [2062] = {.lex_state = 8, .external_lex_state = 4}, - [2063] = {.lex_state = 15, .external_lex_state = 2}, - [2064] = {.lex_state = 8, .external_lex_state = 4}, - [2065] = {.lex_state = 8, .external_lex_state = 4}, - [2066] = {.lex_state = 8, .external_lex_state = 4}, - [2067] = {.lex_state = 8, .external_lex_state = 4}, + [2050] = {.lex_state = 8, .external_lex_state = 3}, + [2051] = {.lex_state = 8, .external_lex_state = 3}, + [2052] = {.lex_state = 8, .external_lex_state = 3}, + [2053] = {.lex_state = 8, .external_lex_state = 3}, + [2054] = {.lex_state = 8, .external_lex_state = 3}, + [2055] = {.lex_state = 8, .external_lex_state = 3}, + [2056] = {.lex_state = 8, .external_lex_state = 3}, + [2057] = {.lex_state = 8, .external_lex_state = 3}, + [2058] = {.lex_state = 8, .external_lex_state = 3}, + [2059] = {.lex_state = 8, .external_lex_state = 3}, + [2060] = {.lex_state = 8, .external_lex_state = 3}, + [2061] = {.lex_state = 8, .external_lex_state = 3}, + [2062] = {.lex_state = 8, .external_lex_state = 3}, + [2063] = {.lex_state = 8, .external_lex_state = 3}, + [2064] = {.lex_state = 8, .external_lex_state = 3}, + [2065] = {.lex_state = 8, .external_lex_state = 3}, + [2066] = {.lex_state = 8, .external_lex_state = 3}, + [2067] = {.lex_state = 8, .external_lex_state = 3}, [2068] = {.lex_state = 8, .external_lex_state = 3}, [2069] = {.lex_state = 8, .external_lex_state = 3}, - [2070] = {.lex_state = 8, .external_lex_state = 4}, - [2071] = {.lex_state = 8, .external_lex_state = 4}, - [2072] = {.lex_state = 8, .external_lex_state = 4}, - [2073] = {.lex_state = 8, .external_lex_state = 4}, - [2074] = {.lex_state = 8, .external_lex_state = 4}, - [2075] = {.lex_state = 8, .external_lex_state = 4}, + [2070] = {.lex_state = 8, .external_lex_state = 3}, + [2071] = {.lex_state = 8, .external_lex_state = 3}, + [2072] = {.lex_state = 8, .external_lex_state = 3}, + [2073] = {.lex_state = 8, .external_lex_state = 3}, + [2074] = {.lex_state = 8, .external_lex_state = 3}, + [2075] = {.lex_state = 8, .external_lex_state = 3}, [2076] = {.lex_state = 8, .external_lex_state = 4}, - [2077] = {.lex_state = 15, .external_lex_state = 5}, - [2078] = {.lex_state = 15, .external_lex_state = 5}, - [2079] = {.lex_state = 15, .external_lex_state = 5}, - [2080] = {.lex_state = 8, .external_lex_state = 4}, + [2077] = {.lex_state = 13, .external_lex_state = 5}, + [2078] = {.lex_state = 8, .external_lex_state = 4}, + [2079] = {.lex_state = 13, .external_lex_state = 5}, + [2080] = {.lex_state = 13, .external_lex_state = 5}, [2081] = {.lex_state = 8, .external_lex_state = 4}, - [2082] = {.lex_state = 8, .external_lex_state = 4}, - [2083] = {.lex_state = 8, .external_lex_state = 4}, + [2082] = {.lex_state = 8, .external_lex_state = 3}, + [2083] = {.lex_state = 8, .external_lex_state = 3}, [2084] = {.lex_state = 8, .external_lex_state = 3}, - [2085] = {.lex_state = 8, .external_lex_state = 4}, - [2086] = {.lex_state = 15, .external_lex_state = 5}, - [2087] = {.lex_state = 15, .external_lex_state = 5}, - [2088] = {.lex_state = 15, .external_lex_state = 5}, + [2085] = {.lex_state = 8, .external_lex_state = 3}, + [2086] = {.lex_state = 8, .external_lex_state = 4}, + [2087] = {.lex_state = 8, .external_lex_state = 4}, + [2088] = {.lex_state = 8, .external_lex_state = 4}, [2089] = {.lex_state = 8, .external_lex_state = 4}, [2090] = {.lex_state = 8, .external_lex_state = 4}, - [2091] = {.lex_state = 8, .external_lex_state = 3}, - [2092] = {.lex_state = 8, .external_lex_state = 3}, - [2093] = {.lex_state = 8, .external_lex_state = 3}, - [2094] = {.lex_state = 8, .external_lex_state = 3}, - [2095] = {.lex_state = 8, .external_lex_state = 3}, - [2096] = {.lex_state = 8, .external_lex_state = 3}, - [2097] = {.lex_state = 8, .external_lex_state = 3}, - [2098] = {.lex_state = 8, .external_lex_state = 3}, - [2099] = {.lex_state = 8, .external_lex_state = 3}, - [2100] = {.lex_state = 8, .external_lex_state = 3}, - [2101] = {.lex_state = 8, .external_lex_state = 3}, - [2102] = {.lex_state = 8, .external_lex_state = 3}, - [2103] = {.lex_state = 8, .external_lex_state = 3}, - [2104] = {.lex_state = 8, .external_lex_state = 3}, - [2105] = {.lex_state = 8, .external_lex_state = 3}, - [2106] = {.lex_state = 8, .external_lex_state = 3}, - [2107] = {.lex_state = 8, .external_lex_state = 3}, - [2108] = {.lex_state = 8, .external_lex_state = 3}, - [2109] = {.lex_state = 8, .external_lex_state = 3}, - [2110] = {.lex_state = 8, .external_lex_state = 3}, - [2111] = {.lex_state = 8, .external_lex_state = 3}, - [2112] = {.lex_state = 8, .external_lex_state = 3}, - [2113] = {.lex_state = 8, .external_lex_state = 3}, - [2114] = {.lex_state = 8, .external_lex_state = 3}, - [2115] = {.lex_state = 8, .external_lex_state = 3}, - [2116] = {.lex_state = 8, .external_lex_state = 3}, - [2117] = {.lex_state = 8, .external_lex_state = 3}, - [2118] = {.lex_state = 8, .external_lex_state = 3}, - [2119] = {.lex_state = 8, .external_lex_state = 3}, + [2091] = {.lex_state = 8, .external_lex_state = 4}, + [2092] = {.lex_state = 8, .external_lex_state = 4}, + [2093] = {.lex_state = 8, .external_lex_state = 4}, + [2094] = {.lex_state = 8, .external_lex_state = 4}, + [2095] = {.lex_state = 8, .external_lex_state = 4}, + [2096] = {.lex_state = 8, .external_lex_state = 4}, + [2097] = {.lex_state = 8, .external_lex_state = 4}, + [2098] = {.lex_state = 8, .external_lex_state = 4}, + [2099] = {.lex_state = 8, .external_lex_state = 4}, + [2100] = {.lex_state = 8, .external_lex_state = 4}, + [2101] = {.lex_state = 8, .external_lex_state = 4}, + [2102] = {.lex_state = 8, .external_lex_state = 4}, + [2103] = {.lex_state = 8, .external_lex_state = 4}, + [2104] = {.lex_state = 8, .external_lex_state = 4}, + [2105] = {.lex_state = 8, .external_lex_state = 4}, + [2106] = {.lex_state = 8, .external_lex_state = 4}, + [2107] = {.lex_state = 8, .external_lex_state = 4}, + [2108] = {.lex_state = 8, .external_lex_state = 4}, + [2109] = {.lex_state = 8, .external_lex_state = 4}, + [2110] = {.lex_state = 8, .external_lex_state = 4}, + [2111] = {.lex_state = 8, .external_lex_state = 4}, + [2112] = {.lex_state = 8, .external_lex_state = 4}, + [2113] = {.lex_state = 8, .external_lex_state = 4}, + [2114] = {.lex_state = 8, .external_lex_state = 4}, + [2115] = {.lex_state = 8, .external_lex_state = 4}, + [2116] = {.lex_state = 8, .external_lex_state = 4}, + [2117] = {.lex_state = 8, .external_lex_state = 4}, + [2118] = {.lex_state = 8, .external_lex_state = 4}, + [2119] = {.lex_state = 8, .external_lex_state = 4}, [2120] = {.lex_state = 8, .external_lex_state = 4}, - [2121] = {.lex_state = 15, .external_lex_state = 5}, + [2121] = {.lex_state = 8, .external_lex_state = 4}, [2122] = {.lex_state = 8, .external_lex_state = 4}, - [2123] = {.lex_state = 8, .external_lex_state = 3}, - [2124] = {.lex_state = 8, .external_lex_state = 3}, - [2125] = {.lex_state = 8, .external_lex_state = 4}, - [2126] = {.lex_state = 8, .external_lex_state = 4}, - [2127] = {.lex_state = 8, .external_lex_state = 4}, + [2123] = {.lex_state = 8, .external_lex_state = 4}, + [2124] = {.lex_state = 8, .external_lex_state = 4}, + [2125] = {.lex_state = 8, .external_lex_state = 3}, + [2126] = {.lex_state = 8, .external_lex_state = 3}, + [2127] = {.lex_state = 9, .external_lex_state = 4}, [2128] = {.lex_state = 8, .external_lex_state = 4}, [2129] = {.lex_state = 8, .external_lex_state = 4}, - [2130] = {.lex_state = 15, .external_lex_state = 5}, - [2131] = {.lex_state = 8, .external_lex_state = 4}, + [2130] = {.lex_state = 8, .external_lex_state = 3}, + [2131] = {.lex_state = 8, .external_lex_state = 3}, [2132] = {.lex_state = 8, .external_lex_state = 4}, [2133] = {.lex_state = 8, .external_lex_state = 4}, - [2134] = {.lex_state = 151, .external_lex_state = 2}, - [2135] = {.lex_state = 15, .external_lex_state = 2}, - [2136] = {.lex_state = 15, .external_lex_state = 2}, - [2137] = {.lex_state = 8, .external_lex_state = 4}, - [2138] = {.lex_state = 8, .external_lex_state = 3}, + [2134] = {.lex_state = 8, .external_lex_state = 3}, + [2135] = {.lex_state = 8, .external_lex_state = 4}, + [2136] = {.lex_state = 13, .external_lex_state = 5}, + [2137] = {.lex_state = 13, .external_lex_state = 5}, + [2138] = {.lex_state = 13, .external_lex_state = 5}, [2139] = {.lex_state = 8, .external_lex_state = 4}, - [2140] = {.lex_state = 8, .external_lex_state = 4}, - [2141] = {.lex_state = 8, .external_lex_state = 3}, + [2140] = {.lex_state = 13, .external_lex_state = 5}, + [2141] = {.lex_state = 8, .external_lex_state = 4}, [2142] = {.lex_state = 8, .external_lex_state = 4}, [2143] = {.lex_state = 8, .external_lex_state = 3}, - [2144] = {.lex_state = 8, .external_lex_state = 3}, - [2145] = {.lex_state = 15, .external_lex_state = 5}, - [2146] = {.lex_state = 8, .external_lex_state = 3}, - [2147] = {.lex_state = 8, .external_lex_state = 3}, - [2148] = {.lex_state = 8, .external_lex_state = 3}, - [2149] = {.lex_state = 8, .external_lex_state = 3}, + [2144] = {.lex_state = 13, .external_lex_state = 5}, + [2145] = {.lex_state = 8, .external_lex_state = 4}, + [2146] = {.lex_state = 13, .external_lex_state = 5}, + [2147] = {.lex_state = 8, .external_lex_state = 4}, + [2148] = {.lex_state = 8, .external_lex_state = 4}, + [2149] = {.lex_state = 8, .external_lex_state = 4}, [2150] = {.lex_state = 8, .external_lex_state = 4}, [2151] = {.lex_state = 8, .external_lex_state = 4}, [2152] = {.lex_state = 8, .external_lex_state = 4}, - [2153] = {.lex_state = 8, .external_lex_state = 4}, - [2154] = {.lex_state = 8, .external_lex_state = 4}, - [2155] = {.lex_state = 8, .external_lex_state = 4}, - [2156] = {.lex_state = 8, .external_lex_state = 4}, - [2157] = {.lex_state = 8, .external_lex_state = 4}, + [2153] = {.lex_state = 13, .external_lex_state = 2}, + [2154] = {.lex_state = 13, .external_lex_state = 2}, + [2155] = {.lex_state = 8, .external_lex_state = 3}, + [2156] = {.lex_state = 8, .external_lex_state = 3}, + [2157] = {.lex_state = 8, .external_lex_state = 3}, [2158] = {.lex_state = 8, .external_lex_state = 4}, - [2159] = {.lex_state = 15, .external_lex_state = 5}, - [2160] = {.lex_state = 15, .external_lex_state = 5}, + [2159] = {.lex_state = 8, .external_lex_state = 4}, + [2160] = {.lex_state = 8, .external_lex_state = 4}, [2161] = {.lex_state = 8, .external_lex_state = 4}, - [2162] = {.lex_state = 15, .external_lex_state = 2}, - [2163] = {.lex_state = 15, .external_lex_state = 2}, - [2164] = {.lex_state = 15, .external_lex_state = 5}, - [2165] = {.lex_state = 9, .external_lex_state = 4}, - [2166] = {.lex_state = 8, .external_lex_state = 4}, - [2167] = {.lex_state = 8, .external_lex_state = 3}, - [2168] = {.lex_state = 8, .external_lex_state = 3}, - [2169] = {.lex_state = 15, .external_lex_state = 5}, - [2170] = {.lex_state = 15, .external_lex_state = 5}, - [2171] = {.lex_state = 8, .external_lex_state = 4}, - [2172] = {.lex_state = 8, .external_lex_state = 4}, + [2162] = {.lex_state = 13, .external_lex_state = 2}, + [2163] = {.lex_state = 9, .external_lex_state = 4}, + [2164] = {.lex_state = 13, .external_lex_state = 2}, + [2165] = {.lex_state = 13, .external_lex_state = 5}, + [2166] = {.lex_state = 13, .external_lex_state = 5}, + [2167] = {.lex_state = 8, .external_lex_state = 4}, + [2168] = {.lex_state = 8, .external_lex_state = 4}, + [2169] = {.lex_state = 8, .external_lex_state = 4}, + [2170] = {.lex_state = 13, .external_lex_state = 2}, + [2171] = {.lex_state = 13, .external_lex_state = 5}, + [2172] = {.lex_state = 13, .external_lex_state = 2}, [2173] = {.lex_state = 8, .external_lex_state = 4}, - [2174] = {.lex_state = 8, .external_lex_state = 3}, - [2175] = {.lex_state = 8, .external_lex_state = 4}, - [2176] = {.lex_state = 8, .external_lex_state = 4}, - [2177] = {.lex_state = 8, .external_lex_state = 4}, - [2178] = {.lex_state = 8, .external_lex_state = 4}, - [2179] = {.lex_state = 8, .external_lex_state = 4}, - [2180] = {.lex_state = 8, .external_lex_state = 4}, - [2181] = {.lex_state = 8, .external_lex_state = 4}, - [2182] = {.lex_state = 8, .external_lex_state = 4}, - [2183] = {.lex_state = 8, .external_lex_state = 4}, - [2184] = {.lex_state = 8, .external_lex_state = 4}, - [2185] = {.lex_state = 8, .external_lex_state = 4}, - [2186] = {.lex_state = 8, .external_lex_state = 4}, - [2187] = {.lex_state = 15, .external_lex_state = 2}, + [2174] = {.lex_state = 8, .external_lex_state = 4}, + [2175] = {.lex_state = 13, .external_lex_state = 2}, + [2176] = {.lex_state = 8, .external_lex_state = 3}, + [2177] = {.lex_state = 8, .external_lex_state = 3}, + [2178] = {.lex_state = 13, .external_lex_state = 5}, + [2179] = {.lex_state = 13, .external_lex_state = 5}, + [2180] = {.lex_state = 13, .external_lex_state = 5}, + [2181] = {.lex_state = 13, .external_lex_state = 5}, + [2182] = {.lex_state = 13, .external_lex_state = 5}, + [2183] = {.lex_state = 13, .external_lex_state = 2}, + [2184] = {.lex_state = 13, .external_lex_state = 5}, + [2185] = {.lex_state = 13, .external_lex_state = 5}, + [2186] = {.lex_state = 13, .external_lex_state = 5}, + [2187] = {.lex_state = 13, .external_lex_state = 5}, [2188] = {.lex_state = 8, .external_lex_state = 4}, - [2189] = {.lex_state = 15, .external_lex_state = 2}, + [2189] = {.lex_state = 8, .external_lex_state = 4}, [2190] = {.lex_state = 8, .external_lex_state = 4}, [2191] = {.lex_state = 8, .external_lex_state = 4}, [2192] = {.lex_state = 8, .external_lex_state = 4}, - [2193] = {.lex_state = 8, .external_lex_state = 3}, + [2193] = {.lex_state = 8, .external_lex_state = 4}, [2194] = {.lex_state = 8, .external_lex_state = 4}, [2195] = {.lex_state = 8, .external_lex_state = 4}, - [2196] = {.lex_state = 8, .external_lex_state = 3}, + [2196] = {.lex_state = 8, .external_lex_state = 4}, [2197] = {.lex_state = 8, .external_lex_state = 4}, - [2198] = {.lex_state = 8, .external_lex_state = 3}, - [2199] = {.lex_state = 15, .external_lex_state = 2}, - [2200] = {.lex_state = 15, .external_lex_state = 2}, - [2201] = {.lex_state = 15, .external_lex_state = 5}, - [2202] = {.lex_state = 15, .external_lex_state = 5}, - [2203] = {.lex_state = 15, .external_lex_state = 2}, - [2204] = {.lex_state = 15, .external_lex_state = 2}, + [2198] = {.lex_state = 8, .external_lex_state = 4}, + [2199] = {.lex_state = 8, .external_lex_state = 3}, + [2200] = {.lex_state = 8, .external_lex_state = 4}, + [2201] = {.lex_state = 8, .external_lex_state = 4}, + [2202] = {.lex_state = 13, .external_lex_state = 5}, + [2203] = {.lex_state = 8, .external_lex_state = 3}, + [2204] = {.lex_state = 8, .external_lex_state = 4}, [2205] = {.lex_state = 8, .external_lex_state = 4}, [2206] = {.lex_state = 8, .external_lex_state = 4}, - [2207] = {.lex_state = 8, .external_lex_state = 3}, - [2208] = {.lex_state = 8, .external_lex_state = 3}, - [2209] = {.lex_state = 15, .external_lex_state = 5}, - [2210] = {.lex_state = 15, .external_lex_state = 5}, - [2211] = {.lex_state = 15, .external_lex_state = 5}, - [2212] = {.lex_state = 15, .external_lex_state = 5}, - [2213] = {.lex_state = 15, .external_lex_state = 5}, - [2214] = {.lex_state = 15, .external_lex_state = 5}, - [2215] = {.lex_state = 15, .external_lex_state = 5}, - [2216] = {.lex_state = 15, .external_lex_state = 5}, + [2207] = {.lex_state = 13, .external_lex_state = 5}, + [2208] = {.lex_state = 8, .external_lex_state = 4}, + [2209] = {.lex_state = 8, .external_lex_state = 4}, + [2210] = {.lex_state = 13, .external_lex_state = 5}, + [2211] = {.lex_state = 13, .external_lex_state = 5}, + [2212] = {.lex_state = 8, .external_lex_state = 3}, + [2213] = {.lex_state = 8, .external_lex_state = 4}, + [2214] = {.lex_state = 13, .external_lex_state = 5}, + [2215] = {.lex_state = 8, .external_lex_state = 4}, + [2216] = {.lex_state = 8, .external_lex_state = 4}, [2217] = {.lex_state = 8, .external_lex_state = 4}, - [2218] = {.lex_state = 151, .external_lex_state = 2}, + [2218] = {.lex_state = 8, .external_lex_state = 4}, [2219] = {.lex_state = 8, .external_lex_state = 4}, [2220] = {.lex_state = 8, .external_lex_state = 4}, [2221] = {.lex_state = 8, .external_lex_state = 4}, [2222] = {.lex_state = 8, .external_lex_state = 4}, [2223] = {.lex_state = 8, .external_lex_state = 4}, - [2224] = {.lex_state = 15, .external_lex_state = 5}, - [2225] = {.lex_state = 8, .external_lex_state = 4}, - [2226] = {.lex_state = 8, .external_lex_state = 4}, + [2224] = {.lex_state = 8, .external_lex_state = 4}, + [2225] = {.lex_state = 8, .external_lex_state = 3}, + [2226] = {.lex_state = 8, .external_lex_state = 3}, [2227] = {.lex_state = 8, .external_lex_state = 4}, [2228] = {.lex_state = 8, .external_lex_state = 4}, - [2229] = {.lex_state = 8, .external_lex_state = 3}, - [2230] = {.lex_state = 15, .external_lex_state = 2}, - [2231] = {.lex_state = 8, .external_lex_state = 4}, + [2229] = {.lex_state = 8, .external_lex_state = 4}, + [2230] = {.lex_state = 8, .external_lex_state = 4}, + [2231] = {.lex_state = 151, .external_lex_state = 2}, [2232] = {.lex_state = 8, .external_lex_state = 4}, [2233] = {.lex_state = 8, .external_lex_state = 4}, - [2234] = {.lex_state = 8, .external_lex_state = 3}, + [2234] = {.lex_state = 8, .external_lex_state = 4}, [2235] = {.lex_state = 8, .external_lex_state = 3}, - [2236] = {.lex_state = 8, .external_lex_state = 4}, - [2237] = {.lex_state = 8, .external_lex_state = 4}, - [2238] = {.lex_state = 8, .external_lex_state = 4}, - [2239] = {.lex_state = 8, .external_lex_state = 3}, - [2240] = {.lex_state = 9, .external_lex_state = 4}, - [2241] = {.lex_state = 8, .external_lex_state = 4}, - [2242] = {.lex_state = 8, .external_lex_state = 4}, - [2243] = {.lex_state = 8, .external_lex_state = 4}, - [2244] = {.lex_state = 15, .external_lex_state = 2}, - [2245] = {.lex_state = 8, .external_lex_state = 4}, - [2246] = {.lex_state = 8, .external_lex_state = 4}, + [2236] = {.lex_state = 8, .external_lex_state = 3}, + [2237] = {.lex_state = 8, .external_lex_state = 3}, + [2238] = {.lex_state = 8, .external_lex_state = 3}, + [2239] = {.lex_state = 13, .external_lex_state = 5}, + [2240] = {.lex_state = 13, .external_lex_state = 5}, + [2241] = {.lex_state = 13, .external_lex_state = 5}, + [2242] = {.lex_state = 13, .external_lex_state = 2}, + [2243] = {.lex_state = 13, .external_lex_state = 2}, + [2244] = {.lex_state = 13, .external_lex_state = 5}, + [2245] = {.lex_state = 13, .external_lex_state = 5}, + [2246] = {.lex_state = 8, .external_lex_state = 3}, [2247] = {.lex_state = 8, .external_lex_state = 4}, - [2248] = {.lex_state = 8, .external_lex_state = 4}, + [2248] = {.lex_state = 13, .external_lex_state = 5}, [2249] = {.lex_state = 8, .external_lex_state = 4}, - [2250] = {.lex_state = 8, .external_lex_state = 4}, - [2251] = {.lex_state = 8, .external_lex_state = 3}, - [2252] = {.lex_state = 8, .external_lex_state = 3}, - [2253] = {.lex_state = 8, .external_lex_state = 3}, - [2254] = {.lex_state = 15, .external_lex_state = 5}, - [2255] = {.lex_state = 15, .external_lex_state = 5}, - [2256] = {.lex_state = 15, .external_lex_state = 5}, - [2257] = {.lex_state = 15, .external_lex_state = 5}, - [2258] = {.lex_state = 8, .external_lex_state = 4}, + [2250] = {.lex_state = 13, .external_lex_state = 5}, + [2251] = {.lex_state = 13, .external_lex_state = 5}, + [2252] = {.lex_state = 13, .external_lex_state = 5}, + [2253] = {.lex_state = 13, .external_lex_state = 5}, + [2254] = {.lex_state = 13, .external_lex_state = 5}, + [2255] = {.lex_state = 13, .external_lex_state = 5}, + [2256] = {.lex_state = 8, .external_lex_state = 3}, + [2257] = {.lex_state = 8, .external_lex_state = 4}, + [2258] = {.lex_state = 8, .external_lex_state = 3}, [2259] = {.lex_state = 8, .external_lex_state = 4}, - [2260] = {.lex_state = 15, .external_lex_state = 5}, - [2261] = {.lex_state = 15, .external_lex_state = 5}, - [2262] = {.lex_state = 15, .external_lex_state = 5}, + [2260] = {.lex_state = 8, .external_lex_state = 4}, + [2261] = {.lex_state = 8, .external_lex_state = 4}, + [2262] = {.lex_state = 8, .external_lex_state = 4}, [2263] = {.lex_state = 8, .external_lex_state = 4}, - [2264] = {.lex_state = 8, .external_lex_state = 4}, - [2265] = {.lex_state = 8, .external_lex_state = 4}, - [2266] = {.lex_state = 8, .external_lex_state = 3}, - [2267] = {.lex_state = 8, .external_lex_state = 3}, - [2268] = {.lex_state = 15, .external_lex_state = 5}, - [2269] = {.lex_state = 8, .external_lex_state = 4}, - [2270] = {.lex_state = 15, .external_lex_state = 5}, - [2271] = {.lex_state = 8, .external_lex_state = 4}, - [2272] = {.lex_state = 8, .external_lex_state = 4}, - [2273] = {.lex_state = 15, .external_lex_state = 5}, + [2264] = {.lex_state = 13, .external_lex_state = 2}, + [2265] = {.lex_state = 13, .external_lex_state = 2}, + [2266] = {.lex_state = 8, .external_lex_state = 4}, + [2267] = {.lex_state = 8, .external_lex_state = 4}, + [2268] = {.lex_state = 13, .external_lex_state = 5}, + [2269] = {.lex_state = 13, .external_lex_state = 5}, + [2270] = {.lex_state = 8, .external_lex_state = 4}, + [2271] = {.lex_state = 8, .external_lex_state = 3}, + [2272] = {.lex_state = 8, .external_lex_state = 3}, + [2273] = {.lex_state = 8, .external_lex_state = 4}, [2274] = {.lex_state = 8, .external_lex_state = 4}, - [2275] = {.lex_state = 15, .external_lex_state = 5}, - [2276] = {.lex_state = 15, .external_lex_state = 5}, + [2275] = {.lex_state = 8, .external_lex_state = 4}, + [2276] = {.lex_state = 8, .external_lex_state = 4}, [2277] = {.lex_state = 8, .external_lex_state = 4}, - [2278] = {.lex_state = 8, .external_lex_state = 4}, - [2279] = {.lex_state = 8, .external_lex_state = 4}, - [2280] = {.lex_state = 15, .external_lex_state = 5}, - [2281] = {.lex_state = 15, .external_lex_state = 5}, + [2278] = {.lex_state = 8, .external_lex_state = 3}, + [2279] = {.lex_state = 8, .external_lex_state = 3}, + [2280] = {.lex_state = 8, .external_lex_state = 3}, + [2281] = {.lex_state = 8, .external_lex_state = 3}, [2282] = {.lex_state = 8, .external_lex_state = 3}, - [2283] = {.lex_state = 8, .external_lex_state = 4}, + [2283] = {.lex_state = 8, .external_lex_state = 3}, [2284] = {.lex_state = 8, .external_lex_state = 3}, [2285] = {.lex_state = 8, .external_lex_state = 3}, - [2286] = {.lex_state = 15, .external_lex_state = 5}, - [2287] = {.lex_state = 15, .external_lex_state = 2}, - [2288] = {.lex_state = 15, .external_lex_state = 2}, - [2289] = {.lex_state = 8, .external_lex_state = 4}, - [2290] = {.lex_state = 8, .external_lex_state = 4}, + [2286] = {.lex_state = 8, .external_lex_state = 3}, + [2287] = {.lex_state = 8, .external_lex_state = 3}, + [2288] = {.lex_state = 8, .external_lex_state = 3}, + [2289] = {.lex_state = 8, .external_lex_state = 3}, + [2290] = {.lex_state = 8, .external_lex_state = 3}, [2291] = {.lex_state = 8, .external_lex_state = 3}, - [2292] = {.lex_state = 8, .external_lex_state = 4}, - [2293] = {.lex_state = 8, .external_lex_state = 4}, - [2294] = {.lex_state = 8, .external_lex_state = 4}, - [2295] = {.lex_state = 15, .external_lex_state = 5}, - [2296] = {.lex_state = 8, .external_lex_state = 4}, - [2297] = {.lex_state = 15, .external_lex_state = 5}, - [2298] = {.lex_state = 8, .external_lex_state = 4}, - [2299] = {.lex_state = 8, .external_lex_state = 4}, - [2300] = {.lex_state = 8, .external_lex_state = 4}, - [2301] = {.lex_state = 8, .external_lex_state = 4}, - [2302] = {.lex_state = 8, .external_lex_state = 4}, - [2303] = {.lex_state = 8, .external_lex_state = 4}, - [2304] = {.lex_state = 8, .external_lex_state = 3}, - [2305] = {.lex_state = 15, .external_lex_state = 5}, - [2306] = {.lex_state = 15, .external_lex_state = 5}, - [2307] = {.lex_state = 15, .external_lex_state = 5}, + [2292] = {.lex_state = 8, .external_lex_state = 3}, + [2293] = {.lex_state = 8, .external_lex_state = 3}, + [2294] = {.lex_state = 8, .external_lex_state = 3}, + [2295] = {.lex_state = 8, .external_lex_state = 3}, + [2296] = {.lex_state = 8, .external_lex_state = 3}, + [2297] = {.lex_state = 8, .external_lex_state = 3}, + [2298] = {.lex_state = 8, .external_lex_state = 3}, + [2299] = {.lex_state = 8, .external_lex_state = 3}, + [2300] = {.lex_state = 8, .external_lex_state = 3}, + [2301] = {.lex_state = 8, .external_lex_state = 3}, + [2302] = {.lex_state = 8, .external_lex_state = 3}, + [2303] = {.lex_state = 8, .external_lex_state = 3}, + [2304] = {.lex_state = 8, .external_lex_state = 4}, + [2305] = {.lex_state = 8, .external_lex_state = 3}, + [2306] = {.lex_state = 8, .external_lex_state = 3}, + [2307] = {.lex_state = 8, .external_lex_state = 4}, [2308] = {.lex_state = 8, .external_lex_state = 3}, [2309] = {.lex_state = 8, .external_lex_state = 3}, - [2310] = {.lex_state = 8, .external_lex_state = 3}, + [2310] = {.lex_state = 8, .external_lex_state = 4}, [2311] = {.lex_state = 8, .external_lex_state = 3}, [2312] = {.lex_state = 8, .external_lex_state = 3}, [2313] = {.lex_state = 8, .external_lex_state = 3}, - [2314] = {.lex_state = 8, .external_lex_state = 3}, - [2315] = {.lex_state = 8, .external_lex_state = 3}, - [2316] = {.lex_state = 8, .external_lex_state = 3}, - [2317] = {.lex_state = 8, .external_lex_state = 3}, + [2314] = {.lex_state = 13, .external_lex_state = 5}, + [2315] = {.lex_state = 8, .external_lex_state = 4}, + [2316] = {.lex_state = 13, .external_lex_state = 5}, + [2317] = {.lex_state = 13, .external_lex_state = 5}, [2318] = {.lex_state = 8, .external_lex_state = 3}, - [2319] = {.lex_state = 8, .external_lex_state = 3}, - [2320] = {.lex_state = 8, .external_lex_state = 3}, - [2321] = {.lex_state = 8, .external_lex_state = 3}, + [2319] = {.lex_state = 13, .external_lex_state = 5}, + [2320] = {.lex_state = 13, .external_lex_state = 5}, + [2321] = {.lex_state = 8, .external_lex_state = 4}, [2322] = {.lex_state = 8, .external_lex_state = 3}, - [2323] = {.lex_state = 8, .external_lex_state = 3}, - [2324] = {.lex_state = 8, .external_lex_state = 3}, + [2323] = {.lex_state = 13, .external_lex_state = 5}, + [2324] = {.lex_state = 13, .external_lex_state = 5}, [2325] = {.lex_state = 8, .external_lex_state = 3}, - [2326] = {.lex_state = 8, .external_lex_state = 3}, - [2327] = {.lex_state = 8, .external_lex_state = 3}, + [2326] = {.lex_state = 8, .external_lex_state = 4}, + [2327] = {.lex_state = 151, .external_lex_state = 2}, [2328] = {.lex_state = 8, .external_lex_state = 3}, - [2329] = {.lex_state = 8, .external_lex_state = 3}, + [2329] = {.lex_state = 13, .external_lex_state = 5}, [2330] = {.lex_state = 8, .external_lex_state = 3}, [2331] = {.lex_state = 8, .external_lex_state = 3}, - [2332] = {.lex_state = 8, .external_lex_state = 3}, - [2333] = {.lex_state = 8, .external_lex_state = 3}, - [2334] = {.lex_state = 15, .external_lex_state = 5}, - [2335] = {.lex_state = 8, .external_lex_state = 3}, - [2336] = {.lex_state = 8, .external_lex_state = 3}, - [2337] = {.lex_state = 8, .external_lex_state = 3}, - [2338] = {.lex_state = 8, .external_lex_state = 3}, - [2339] = {.lex_state = 15, .external_lex_state = 5}, - [2340] = {.lex_state = 8, .external_lex_state = 3}, - [2341] = {.lex_state = 15, .external_lex_state = 5}, - [2342] = {.lex_state = 15, .external_lex_state = 5}, - [2343] = {.lex_state = 15, .external_lex_state = 5}, + [2332] = {.lex_state = 8, .external_lex_state = 4}, + [2333] = {.lex_state = 8, .external_lex_state = 4}, + [2334] = {.lex_state = 8, .external_lex_state = 3}, + [2335] = {.lex_state = 8, .external_lex_state = 4}, + [2336] = {.lex_state = 8, .external_lex_state = 4}, + [2337] = {.lex_state = 8, .external_lex_state = 4}, + [2338] = {.lex_state = 8, .external_lex_state = 4}, + [2339] = {.lex_state = 8, .external_lex_state = 4}, + [2340] = {.lex_state = 8, .external_lex_state = 4}, + [2341] = {.lex_state = 8, .external_lex_state = 4}, + [2342] = {.lex_state = 8, .external_lex_state = 4}, + [2343] = {.lex_state = 8, .external_lex_state = 4}, [2344] = {.lex_state = 8, .external_lex_state = 3}, - [2345] = {.lex_state = 8, .external_lex_state = 4}, + [2345] = {.lex_state = 8, .external_lex_state = 3}, [2346] = {.lex_state = 8, .external_lex_state = 3}, - [2347] = {.lex_state = 8, .external_lex_state = 4}, - [2348] = {.lex_state = 8, .external_lex_state = 4}, - [2349] = {.lex_state = 15, .external_lex_state = 5}, - [2350] = {.lex_state = 15, .external_lex_state = 5}, - [2351] = {.lex_state = 8, .external_lex_state = 4}, - [2352] = {.lex_state = 8, .external_lex_state = 4}, + [2347] = {.lex_state = 8, .external_lex_state = 3}, + [2348] = {.lex_state = 8, .external_lex_state = 3}, + [2349] = {.lex_state = 8, .external_lex_state = 3}, + [2350] = {.lex_state = 8, .external_lex_state = 3}, + [2351] = {.lex_state = 8, .external_lex_state = 3}, + [2352] = {.lex_state = 8, .external_lex_state = 3}, [2353] = {.lex_state = 8, .external_lex_state = 3}, [2354] = {.lex_state = 8, .external_lex_state = 3}, [2355] = {.lex_state = 8, .external_lex_state = 3}, - [2356] = {.lex_state = 15, .external_lex_state = 5}, + [2356] = {.lex_state = 8, .external_lex_state = 3}, [2357] = {.lex_state = 8, .external_lex_state = 3}, [2358] = {.lex_state = 8, .external_lex_state = 3}, [2359] = {.lex_state = 8, .external_lex_state = 3}, @@ -16383,307 +16407,307 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2369] = {.lex_state = 8, .external_lex_state = 3}, [2370] = {.lex_state = 8, .external_lex_state = 3}, [2371] = {.lex_state = 8, .external_lex_state = 3}, - [2372] = {.lex_state = 8, .external_lex_state = 3}, + [2372] = {.lex_state = 8, .external_lex_state = 4}, [2373] = {.lex_state = 8, .external_lex_state = 3}, [2374] = {.lex_state = 8, .external_lex_state = 3}, [2375] = {.lex_state = 8, .external_lex_state = 3}, [2376] = {.lex_state = 8, .external_lex_state = 3}, - [2377] = {.lex_state = 8, .external_lex_state = 3}, - [2378] = {.lex_state = 8, .external_lex_state = 3}, - [2379] = {.lex_state = 8, .external_lex_state = 3}, - [2380] = {.lex_state = 8, .external_lex_state = 3}, + [2377] = {.lex_state = 8, .external_lex_state = 4}, + [2378] = {.lex_state = 8, .external_lex_state = 4}, + [2379] = {.lex_state = 8, .external_lex_state = 4}, + [2380] = {.lex_state = 13, .external_lex_state = 5}, [2381] = {.lex_state = 8, .external_lex_state = 3}, - [2382] = {.lex_state = 8, .external_lex_state = 3}, - [2383] = {.lex_state = 8, .external_lex_state = 3}, - [2384] = {.lex_state = 8, .external_lex_state = 3}, - [2385] = {.lex_state = 8, .external_lex_state = 3}, - [2386] = {.lex_state = 8, .external_lex_state = 4}, - [2387] = {.lex_state = 8, .external_lex_state = 3}, - [2388] = {.lex_state = 15, .external_lex_state = 5}, - [2389] = {.lex_state = 8, .external_lex_state = 3}, - [2390] = {.lex_state = 15, .external_lex_state = 5}, - [2391] = {.lex_state = 15, .external_lex_state = 5}, - [2392] = {.lex_state = 15, .external_lex_state = 2}, - [2393] = {.lex_state = 8, .external_lex_state = 4}, - [2394] = {.lex_state = 15, .external_lex_state = 2}, - [2395] = {.lex_state = 8, .external_lex_state = 4}, - [2396] = {.lex_state = 8, .external_lex_state = 3}, - [2397] = {.lex_state = 8, .external_lex_state = 4}, + [2382] = {.lex_state = 8, .external_lex_state = 4}, + [2383] = {.lex_state = 8, .external_lex_state = 4}, + [2384] = {.lex_state = 8, .external_lex_state = 4}, + [2385] = {.lex_state = 8, .external_lex_state = 4}, + [2386] = {.lex_state = 13, .external_lex_state = 2}, + [2387] = {.lex_state = 13, .external_lex_state = 2}, + [2388] = {.lex_state = 8, .external_lex_state = 4}, + [2389] = {.lex_state = 13, .external_lex_state = 2}, + [2390] = {.lex_state = 13, .external_lex_state = 2}, + [2391] = {.lex_state = 13, .external_lex_state = 5}, + [2392] = {.lex_state = 8, .external_lex_state = 3}, + [2393] = {.lex_state = 13, .external_lex_state = 5}, + [2394] = {.lex_state = 13, .external_lex_state = 2}, + [2395] = {.lex_state = 13, .external_lex_state = 5}, + [2396] = {.lex_state = 13, .external_lex_state = 2}, + [2397] = {.lex_state = 13, .external_lex_state = 5}, [2398] = {.lex_state = 8, .external_lex_state = 3}, - [2399] = {.lex_state = 15, .external_lex_state = 5}, - [2400] = {.lex_state = 15, .external_lex_state = 2}, - [2401] = {.lex_state = 15, .external_lex_state = 2}, - [2402] = {.lex_state = 15, .external_lex_state = 5}, - [2403] = {.lex_state = 15, .external_lex_state = 5}, - [2404] = {.lex_state = 9, .external_lex_state = 3}, - [2405] = {.lex_state = 15, .external_lex_state = 5}, + [2399] = {.lex_state = 13, .external_lex_state = 5}, + [2400] = {.lex_state = 13, .external_lex_state = 5}, + [2401] = {.lex_state = 8, .external_lex_state = 3}, + [2402] = {.lex_state = 8, .external_lex_state = 4}, + [2403] = {.lex_state = 8, .external_lex_state = 3}, + [2404] = {.lex_state = 13, .external_lex_state = 2}, + [2405] = {.lex_state = 8, .external_lex_state = 3}, [2406] = {.lex_state = 8, .external_lex_state = 3}, [2407] = {.lex_state = 8, .external_lex_state = 3}, [2408] = {.lex_state = 8, .external_lex_state = 3}, - [2409] = {.lex_state = 15, .external_lex_state = 5}, - [2410] = {.lex_state = 15, .external_lex_state = 5}, - [2411] = {.lex_state = 15, .external_lex_state = 2}, - [2412] = {.lex_state = 8, .external_lex_state = 4}, - [2413] = {.lex_state = 8, .external_lex_state = 3}, - [2414] = {.lex_state = 8, .external_lex_state = 3}, + [2409] = {.lex_state = 8, .external_lex_state = 3}, + [2410] = {.lex_state = 8, .external_lex_state = 3}, + [2411] = {.lex_state = 8, .external_lex_state = 3}, + [2412] = {.lex_state = 13, .external_lex_state = 5}, + [2413] = {.lex_state = 13, .external_lex_state = 2}, + [2414] = {.lex_state = 9, .external_lex_state = 3}, [2415] = {.lex_state = 8, .external_lex_state = 3}, - [2416] = {.lex_state = 15, .external_lex_state = 5}, - [2417] = {.lex_state = 15, .external_lex_state = 5}, - [2418] = {.lex_state = 8, .external_lex_state = 3}, - [2419] = {.lex_state = 8, .external_lex_state = 3}, - [2420] = {.lex_state = 8, .external_lex_state = 3}, - [2421] = {.lex_state = 15, .external_lex_state = 5}, - [2422] = {.lex_state = 8, .external_lex_state = 4}, - [2423] = {.lex_state = 15, .external_lex_state = 5}, - [2424] = {.lex_state = 8, .external_lex_state = 3}, - [2425] = {.lex_state = 8, .external_lex_state = 3}, - [2426] = {.lex_state = 15, .external_lex_state = 2}, - [2427] = {.lex_state = 8, .external_lex_state = 3}, - [2428] = {.lex_state = 8, .external_lex_state = 3}, - [2429] = {.lex_state = 15, .external_lex_state = 5}, - [2430] = {.lex_state = 15, .external_lex_state = 5}, - [2431] = {.lex_state = 15, .external_lex_state = 5}, - [2432] = {.lex_state = 15, .external_lex_state = 5}, - [2433] = {.lex_state = 151, .external_lex_state = 2}, - [2434] = {.lex_state = 15, .external_lex_state = 5}, - [2435] = {.lex_state = 15, .external_lex_state = 5}, - [2436] = {.lex_state = 15, .external_lex_state = 2}, - [2437] = {.lex_state = 15, .external_lex_state = 2}, + [2416] = {.lex_state = 8, .external_lex_state = 4}, + [2417] = {.lex_state = 13, .external_lex_state = 2}, + [2418] = {.lex_state = 13, .external_lex_state = 5}, + [2419] = {.lex_state = 13, .external_lex_state = 5}, + [2420] = {.lex_state = 13, .external_lex_state = 2}, + [2421] = {.lex_state = 13, .external_lex_state = 5}, + [2422] = {.lex_state = 8, .external_lex_state = 3}, + [2423] = {.lex_state = 13, .external_lex_state = 5}, + [2424] = {.lex_state = 13, .external_lex_state = 5}, + [2425] = {.lex_state = 8, .external_lex_state = 4}, + [2426] = {.lex_state = 13, .external_lex_state = 5}, + [2427] = {.lex_state = 8, .external_lex_state = 4}, + [2428] = {.lex_state = 8, .external_lex_state = 4}, + [2429] = {.lex_state = 8, .external_lex_state = 3}, + [2430] = {.lex_state = 8, .external_lex_state = 3}, + [2431] = {.lex_state = 8, .external_lex_state = 3}, + [2432] = {.lex_state = 8, .external_lex_state = 3}, + [2433] = {.lex_state = 8, .external_lex_state = 3}, + [2434] = {.lex_state = 8, .external_lex_state = 3}, + [2435] = {.lex_state = 8, .external_lex_state = 3}, + [2436] = {.lex_state = 151, .external_lex_state = 2}, + [2437] = {.lex_state = 8, .external_lex_state = 3}, [2438] = {.lex_state = 8, .external_lex_state = 3}, [2439] = {.lex_state = 8, .external_lex_state = 3}, - [2440] = {.lex_state = 15, .external_lex_state = 5}, - [2441] = {.lex_state = 15, .external_lex_state = 5}, + [2440] = {.lex_state = 8, .external_lex_state = 3}, + [2441] = {.lex_state = 8, .external_lex_state = 3}, [2442] = {.lex_state = 8, .external_lex_state = 3}, [2443] = {.lex_state = 8, .external_lex_state = 3}, - [2444] = {.lex_state = 15, .external_lex_state = 2}, + [2444] = {.lex_state = 8, .external_lex_state = 3}, [2445] = {.lex_state = 8, .external_lex_state = 3}, [2446] = {.lex_state = 8, .external_lex_state = 3}, [2447] = {.lex_state = 8, .external_lex_state = 3}, [2448] = {.lex_state = 8, .external_lex_state = 3}, - [2449] = {.lex_state = 8, .external_lex_state = 3}, + [2449] = {.lex_state = 13, .external_lex_state = 5}, [2450] = {.lex_state = 8, .external_lex_state = 3}, [2451] = {.lex_state = 8, .external_lex_state = 3}, [2452] = {.lex_state = 8, .external_lex_state = 3}, - [2453] = {.lex_state = 15, .external_lex_state = 5}, + [2453] = {.lex_state = 8, .external_lex_state = 3}, [2454] = {.lex_state = 8, .external_lex_state = 3}, - [2455] = {.lex_state = 8, .external_lex_state = 3}, - [2456] = {.lex_state = 8, .external_lex_state = 3}, + [2455] = {.lex_state = 13, .external_lex_state = 5}, + [2456] = {.lex_state = 13, .external_lex_state = 5}, [2457] = {.lex_state = 8, .external_lex_state = 3}, - [2458] = {.lex_state = 8, .external_lex_state = 3}, - [2459] = {.lex_state = 8, .external_lex_state = 3}, - [2460] = {.lex_state = 8, .external_lex_state = 3}, - [2461] = {.lex_state = 15, .external_lex_state = 5}, - [2462] = {.lex_state = 15, .external_lex_state = 5}, - [2463] = {.lex_state = 8, .external_lex_state = 3}, - [2464] = {.lex_state = 8, .external_lex_state = 3}, - [2465] = {.lex_state = 8, .external_lex_state = 3}, - [2466] = {.lex_state = 8, .external_lex_state = 3}, + [2458] = {.lex_state = 13, .external_lex_state = 5}, + [2459] = {.lex_state = 13, .external_lex_state = 5}, + [2460] = {.lex_state = 13, .external_lex_state = 5}, + [2461] = {.lex_state = 13, .external_lex_state = 5}, + [2462] = {.lex_state = 8, .external_lex_state = 3}, + [2463] = {.lex_state = 13, .external_lex_state = 5}, + [2464] = {.lex_state = 13, .external_lex_state = 2}, + [2465] = {.lex_state = 13, .external_lex_state = 5}, + [2466] = {.lex_state = 151, .external_lex_state = 2}, [2467] = {.lex_state = 8, .external_lex_state = 3}, [2468] = {.lex_state = 8, .external_lex_state = 3}, [2469] = {.lex_state = 8, .external_lex_state = 3}, - [2470] = {.lex_state = 151, .external_lex_state = 2}, - [2471] = {.lex_state = 151, .external_lex_state = 5}, + [2470] = {.lex_state = 13, .external_lex_state = 5}, + [2471] = {.lex_state = 13, .external_lex_state = 5}, [2472] = {.lex_state = 151, .external_lex_state = 5}, - [2473] = {.lex_state = 151, .external_lex_state = 5}, - [2474] = {.lex_state = 151, .external_lex_state = 5}, + [2473] = {.lex_state = 8, .external_lex_state = 3}, + [2474] = {.lex_state = 8, .external_lex_state = 3}, [2475] = {.lex_state = 8, .external_lex_state = 3}, [2476] = {.lex_state = 8, .external_lex_state = 3}, - [2477] = {.lex_state = 8, .external_lex_state = 3}, - [2478] = {.lex_state = 15, .external_lex_state = 2}, - [2479] = {.lex_state = 15, .external_lex_state = 5}, - [2480] = {.lex_state = 15, .external_lex_state = 5}, - [2481] = {.lex_state = 15, .external_lex_state = 2}, - [2482] = {.lex_state = 8, .external_lex_state = 3}, + [2477] = {.lex_state = 13, .external_lex_state = 2}, + [2478] = {.lex_state = 8, .external_lex_state = 3}, + [2479] = {.lex_state = 13, .external_lex_state = 2}, + [2480] = {.lex_state = 151, .external_lex_state = 5}, + [2481] = {.lex_state = 151, .external_lex_state = 5}, + [2482] = {.lex_state = 151, .external_lex_state = 5}, [2483] = {.lex_state = 151, .external_lex_state = 5}, - [2484] = {.lex_state = 8, .external_lex_state = 3}, + [2484] = {.lex_state = 151, .external_lex_state = 2}, [2485] = {.lex_state = 8, .external_lex_state = 3}, [2486] = {.lex_state = 8, .external_lex_state = 3}, - [2487] = {.lex_state = 151, .external_lex_state = 5}, - [2488] = {.lex_state = 151, .external_lex_state = 5}, - [2489] = {.lex_state = 151, .external_lex_state = 5}, - [2490] = {.lex_state = 151, .external_lex_state = 5}, + [2487] = {.lex_state = 151, .external_lex_state = 2}, + [2488] = {.lex_state = 8, .external_lex_state = 3}, + [2489] = {.lex_state = 8, .external_lex_state = 3}, + [2490] = {.lex_state = 8, .external_lex_state = 3}, [2491] = {.lex_state = 8, .external_lex_state = 3}, - [2492] = {.lex_state = 8, .external_lex_state = 4}, + [2492] = {.lex_state = 151, .external_lex_state = 5}, [2493] = {.lex_state = 8, .external_lex_state = 3}, [2494] = {.lex_state = 8, .external_lex_state = 3}, - [2495] = {.lex_state = 8, .external_lex_state = 3}, - [2496] = {.lex_state = 8, .external_lex_state = 3}, - [2497] = {.lex_state = 8, .external_lex_state = 3}, - [2498] = {.lex_state = 151, .external_lex_state = 2}, + [2495] = {.lex_state = 151, .external_lex_state = 5}, + [2496] = {.lex_state = 8, .external_lex_state = 4}, + [2497] = {.lex_state = 151, .external_lex_state = 5}, + [2498] = {.lex_state = 151, .external_lex_state = 5}, [2499] = {.lex_state = 8, .external_lex_state = 3}, - [2500] = {.lex_state = 151, .external_lex_state = 2}, + [2500] = {.lex_state = 13, .external_lex_state = 5}, [2501] = {.lex_state = 8, .external_lex_state = 3}, - [2502] = {.lex_state = 151, .external_lex_state = 2}, - [2503] = {.lex_state = 8, .external_lex_state = 3}, - [2504] = {.lex_state = 15, .external_lex_state = 2}, - [2505] = {.lex_state = 15, .external_lex_state = 2}, - [2506] = {.lex_state = 15, .external_lex_state = 2}, - [2507] = {.lex_state = 8, .external_lex_state = 3}, - [2508] = {.lex_state = 8, .external_lex_state = 3}, + [2502] = {.lex_state = 8, .external_lex_state = 3}, + [2503] = {.lex_state = 13, .external_lex_state = 5}, + [2504] = {.lex_state = 8, .external_lex_state = 3}, + [2505] = {.lex_state = 13, .external_lex_state = 2}, + [2506] = {.lex_state = 8, .external_lex_state = 3}, + [2507] = {.lex_state = 13, .external_lex_state = 2}, + [2508] = {.lex_state = 13, .external_lex_state = 2}, [2509] = {.lex_state = 8, .external_lex_state = 3}, [2510] = {.lex_state = 8, .external_lex_state = 3}, [2511] = {.lex_state = 151, .external_lex_state = 5}, - [2512] = {.lex_state = 151, .external_lex_state = 5}, - [2513] = {.lex_state = 151, .external_lex_state = 5}, - [2514] = {.lex_state = 151, .external_lex_state = 5}, + [2512] = {.lex_state = 151, .external_lex_state = 2}, + [2513] = {.lex_state = 13, .external_lex_state = 2}, + [2514] = {.lex_state = 13, .external_lex_state = 2}, [2515] = {.lex_state = 151, .external_lex_state = 5}, - [2516] = {.lex_state = 151, .external_lex_state = 5}, - [2517] = {.lex_state = 15, .external_lex_state = 2}, - [2518] = {.lex_state = 15, .external_lex_state = 2}, - [2519] = {.lex_state = 151, .external_lex_state = 5}, - [2520] = {.lex_state = 15, .external_lex_state = 2}, - [2521] = {.lex_state = 9, .external_lex_state = 3}, + [2516] = {.lex_state = 13, .external_lex_state = 2}, + [2517] = {.lex_state = 151, .external_lex_state = 5}, + [2518] = {.lex_state = 8, .external_lex_state = 3}, + [2519] = {.lex_state = 8, .external_lex_state = 3}, + [2520] = {.lex_state = 9, .external_lex_state = 3}, + [2521] = {.lex_state = 8, .external_lex_state = 3}, [2522] = {.lex_state = 151, .external_lex_state = 5}, - [2523] = {.lex_state = 15, .external_lex_state = 2}, + [2523] = {.lex_state = 151, .external_lex_state = 5}, [2524] = {.lex_state = 151, .external_lex_state = 5}, [2525] = {.lex_state = 151, .external_lex_state = 5}, [2526] = {.lex_state = 151, .external_lex_state = 5}, [2527] = {.lex_state = 151, .external_lex_state = 5}, - [2528] = {.lex_state = 151, .external_lex_state = 5}, - [2529] = {.lex_state = 151, .external_lex_state = 5}, - [2530] = {.lex_state = 15, .external_lex_state = 2}, - [2531] = {.lex_state = 15, .external_lex_state = 2}, - [2532] = {.lex_state = 151, .external_lex_state = 5}, - [2533] = {.lex_state = 15, .external_lex_state = 2}, - [2534] = {.lex_state = 151, .external_lex_state = 5}, - [2535] = {.lex_state = 15, .external_lex_state = 2}, - [2536] = {.lex_state = 151, .external_lex_state = 5}, - [2537] = {.lex_state = 15, .external_lex_state = 2}, - [2538] = {.lex_state = 15, .external_lex_state = 2}, - [2539] = {.lex_state = 15, .external_lex_state = 2}, - [2540] = {.lex_state = 8, .external_lex_state = 3}, - [2541] = {.lex_state = 8, .external_lex_state = 3}, - [2542] = {.lex_state = 8, .external_lex_state = 3}, - [2543] = {.lex_state = 15, .external_lex_state = 2}, - [2544] = {.lex_state = 15, .external_lex_state = 2}, - [2545] = {.lex_state = 15, .external_lex_state = 2}, - [2546] = {.lex_state = 15, .external_lex_state = 2}, - [2547] = {.lex_state = 15, .external_lex_state = 2}, - [2548] = {.lex_state = 15, .external_lex_state = 2}, - [2549] = {.lex_state = 8, .external_lex_state = 3}, - [2550] = {.lex_state = 8, .external_lex_state = 3}, - [2551] = {.lex_state = 8, .external_lex_state = 3}, - [2552] = {.lex_state = 15, .external_lex_state = 2}, - [2553] = {.lex_state = 8, .external_lex_state = 3}, - [2554] = {.lex_state = 15, .external_lex_state = 5}, - [2555] = {.lex_state = 8, .external_lex_state = 3}, - [2556] = {.lex_state = 15, .external_lex_state = 5}, - [2557] = {.lex_state = 15, .external_lex_state = 5}, - [2558] = {.lex_state = 15, .external_lex_state = 5}, - [2559] = {.lex_state = 15, .external_lex_state = 5}, - [2560] = {.lex_state = 15, .external_lex_state = 5}, - [2561] = {.lex_state = 8, .external_lex_state = 3}, - [2562] = {.lex_state = 8, .external_lex_state = 3}, - [2563] = {.lex_state = 15, .external_lex_state = 5}, - [2564] = {.lex_state = 15, .external_lex_state = 5}, - [2565] = {.lex_state = 15, .external_lex_state = 5}, - [2566] = {.lex_state = 8, .external_lex_state = 3}, - [2567] = {.lex_state = 15, .external_lex_state = 5}, - [2568] = {.lex_state = 15, .external_lex_state = 5}, - [2569] = {.lex_state = 15, .external_lex_state = 5}, - [2570] = {.lex_state = 15, .external_lex_state = 5}, - [2571] = {.lex_state = 15, .external_lex_state = 5}, - [2572] = {.lex_state = 15, .external_lex_state = 5}, - [2573] = {.lex_state = 15, .external_lex_state = 5}, - [2574] = {.lex_state = 15, .external_lex_state = 5}, - [2575] = {.lex_state = 15, .external_lex_state = 5}, - [2576] = {.lex_state = 15, .external_lex_state = 5}, - [2577] = {.lex_state = 15, .external_lex_state = 5}, - [2578] = {.lex_state = 15, .external_lex_state = 5}, - [2579] = {.lex_state = 8, .external_lex_state = 3}, - [2580] = {.lex_state = 15, .external_lex_state = 5}, - [2581] = {.lex_state = 15, .external_lex_state = 5}, - [2582] = {.lex_state = 15, .external_lex_state = 5}, - [2583] = {.lex_state = 15, .external_lex_state = 5}, - [2584] = {.lex_state = 15, .external_lex_state = 5}, - [2585] = {.lex_state = 15, .external_lex_state = 5}, - [2586] = {.lex_state = 8, .external_lex_state = 3}, - [2587] = {.lex_state = 15, .external_lex_state = 5}, - [2588] = {.lex_state = 15, .external_lex_state = 5}, - [2589] = {.lex_state = 15, .external_lex_state = 5}, - [2590] = {.lex_state = 15, .external_lex_state = 5}, - [2591] = {.lex_state = 15, .external_lex_state = 5}, - [2592] = {.lex_state = 15, .external_lex_state = 5}, - [2593] = {.lex_state = 15, .external_lex_state = 5}, - [2594] = {.lex_state = 15, .external_lex_state = 5}, - [2595] = {.lex_state = 15, .external_lex_state = 2}, - [2596] = {.lex_state = 15, .external_lex_state = 5}, - [2597] = {.lex_state = 15, .external_lex_state = 5}, - [2598] = {.lex_state = 15, .external_lex_state = 5}, - [2599] = {.lex_state = 15, .external_lex_state = 2}, - [2600] = {.lex_state = 15, .external_lex_state = 5}, - [2601] = {.lex_state = 8, .external_lex_state = 3}, - [2602] = {.lex_state = 15, .external_lex_state = 5}, - [2603] = {.lex_state = 15, .external_lex_state = 5}, - [2604] = {.lex_state = 15, .external_lex_state = 5}, - [2605] = {.lex_state = 15, .external_lex_state = 5}, - [2606] = {.lex_state = 15, .external_lex_state = 5}, + [2528] = {.lex_state = 13, .external_lex_state = 2}, + [2529] = {.lex_state = 13, .external_lex_state = 2}, + [2530] = {.lex_state = 151, .external_lex_state = 5}, + [2531] = {.lex_state = 13, .external_lex_state = 2}, + [2532] = {.lex_state = 8, .external_lex_state = 3}, + [2533] = {.lex_state = 13, .external_lex_state = 2}, + [2534] = {.lex_state = 13, .external_lex_state = 2}, + [2535] = {.lex_state = 8, .external_lex_state = 3}, + [2536] = {.lex_state = 13, .external_lex_state = 2}, + [2537] = {.lex_state = 13, .external_lex_state = 2}, + [2538] = {.lex_state = 13, .external_lex_state = 2}, + [2539] = {.lex_state = 151, .external_lex_state = 5}, + [2540] = {.lex_state = 151, .external_lex_state = 5}, + [2541] = {.lex_state = 13, .external_lex_state = 2}, + [2542] = {.lex_state = 151, .external_lex_state = 5}, + [2543] = {.lex_state = 13, .external_lex_state = 2}, + [2544] = {.lex_state = 151, .external_lex_state = 5}, + [2545] = {.lex_state = 13, .external_lex_state = 2}, + [2546] = {.lex_state = 8, .external_lex_state = 3}, + [2547] = {.lex_state = 13, .external_lex_state = 2}, + [2548] = {.lex_state = 8, .external_lex_state = 3}, + [2549] = {.lex_state = 13, .external_lex_state = 2}, + [2550] = {.lex_state = 151, .external_lex_state = 5}, + [2551] = {.lex_state = 151, .external_lex_state = 5}, + [2552] = {.lex_state = 13, .external_lex_state = 2}, + [2553] = {.lex_state = 13, .external_lex_state = 2}, + [2554] = {.lex_state = 151, .external_lex_state = 5}, + [2555] = {.lex_state = 13, .external_lex_state = 5}, + [2556] = {.lex_state = 13, .external_lex_state = 5}, + [2557] = {.lex_state = 13, .external_lex_state = 5}, + [2558] = {.lex_state = 13, .external_lex_state = 5}, + [2559] = {.lex_state = 13, .external_lex_state = 5}, + [2560] = {.lex_state = 13, .external_lex_state = 5}, + [2561] = {.lex_state = 13, .external_lex_state = 5}, + [2562] = {.lex_state = 13, .external_lex_state = 5}, + [2563] = {.lex_state = 13, .external_lex_state = 5}, + [2564] = {.lex_state = 13, .external_lex_state = 5}, + [2565] = {.lex_state = 13, .external_lex_state = 5}, + [2566] = {.lex_state = 13, .external_lex_state = 5}, + [2567] = {.lex_state = 13, .external_lex_state = 5}, + [2568] = {.lex_state = 13, .external_lex_state = 5}, + [2569] = {.lex_state = 13, .external_lex_state = 5}, + [2570] = {.lex_state = 8, .external_lex_state = 3}, + [2571] = {.lex_state = 13, .external_lex_state = 5}, + [2572] = {.lex_state = 13, .external_lex_state = 5}, + [2573] = {.lex_state = 13, .external_lex_state = 5}, + [2574] = {.lex_state = 13, .external_lex_state = 5}, + [2575] = {.lex_state = 13, .external_lex_state = 5}, + [2576] = {.lex_state = 8, .external_lex_state = 3}, + [2577] = {.lex_state = 13, .external_lex_state = 5}, + [2578] = {.lex_state = 13, .external_lex_state = 5}, + [2579] = {.lex_state = 13, .external_lex_state = 5}, + [2580] = {.lex_state = 8, .external_lex_state = 3}, + [2581] = {.lex_state = 13, .external_lex_state = 5}, + [2582] = {.lex_state = 8, .external_lex_state = 3}, + [2583] = {.lex_state = 13, .external_lex_state = 5}, + [2584] = {.lex_state = 13, .external_lex_state = 5}, + [2585] = {.lex_state = 13, .external_lex_state = 5}, + [2586] = {.lex_state = 13, .external_lex_state = 5}, + [2587] = {.lex_state = 13, .external_lex_state = 5}, + [2588] = {.lex_state = 13, .external_lex_state = 5}, + [2589] = {.lex_state = 13, .external_lex_state = 5}, + [2590] = {.lex_state = 13, .external_lex_state = 2}, + [2591] = {.lex_state = 13, .external_lex_state = 5}, + [2592] = {.lex_state = 13, .external_lex_state = 5}, + [2593] = {.lex_state = 13, .external_lex_state = 2}, + [2594] = {.lex_state = 13, .external_lex_state = 5}, + [2595] = {.lex_state = 13, .external_lex_state = 5}, + [2596] = {.lex_state = 13, .external_lex_state = 5}, + [2597] = {.lex_state = 13, .external_lex_state = 5}, + [2598] = {.lex_state = 13, .external_lex_state = 5}, + [2599] = {.lex_state = 8, .external_lex_state = 3}, + [2600] = {.lex_state = 13, .external_lex_state = 5}, + [2601] = {.lex_state = 13, .external_lex_state = 2}, + [2602] = {.lex_state = 13, .external_lex_state = 5}, + [2603] = {.lex_state = 13, .external_lex_state = 5}, + [2604] = {.lex_state = 8, .external_lex_state = 3}, + [2605] = {.lex_state = 13, .external_lex_state = 5}, + [2606] = {.lex_state = 13, .external_lex_state = 5}, [2607] = {.lex_state = 8, .external_lex_state = 3}, - [2608] = {.lex_state = 15, .external_lex_state = 5}, - [2609] = {.lex_state = 15, .external_lex_state = 5}, - [2610] = {.lex_state = 15, .external_lex_state = 5}, - [2611] = {.lex_state = 8, .external_lex_state = 3}, - [2612] = {.lex_state = 15, .external_lex_state = 5}, - [2613] = {.lex_state = 15, .external_lex_state = 5}, - [2614] = {.lex_state = 15, .external_lex_state = 5}, - [2615] = {.lex_state = 15, .external_lex_state = 5}, - [2616] = {.lex_state = 15, .external_lex_state = 5}, - [2617] = {.lex_state = 15, .external_lex_state = 2}, - [2618] = {.lex_state = 15, .external_lex_state = 2}, - [2619] = {.lex_state = 15, .external_lex_state = 2}, - [2620] = {.lex_state = 15, .external_lex_state = 2}, - [2621] = {.lex_state = 15, .external_lex_state = 2}, - [2622] = {.lex_state = 15, .external_lex_state = 2}, - [2623] = {.lex_state = 15, .external_lex_state = 2}, - [2624] = {.lex_state = 15, .external_lex_state = 2}, - [2625] = {.lex_state = 15, .external_lex_state = 2}, - [2626] = {.lex_state = 15, .external_lex_state = 2}, - [2627] = {.lex_state = 15, .external_lex_state = 2}, - [2628] = {.lex_state = 15, .external_lex_state = 2}, - [2629] = {.lex_state = 15, .external_lex_state = 2}, - [2630] = {.lex_state = 15, .external_lex_state = 2}, - [2631] = {.lex_state = 15, .external_lex_state = 2}, - [2632] = {.lex_state = 15, .external_lex_state = 2}, - [2633] = {.lex_state = 15, .external_lex_state = 2}, - [2634] = {.lex_state = 15, .external_lex_state = 2}, - [2635] = {.lex_state = 15, .external_lex_state = 2}, - [2636] = {.lex_state = 151, .external_lex_state = 2}, - [2637] = {.lex_state = 15, .external_lex_state = 2}, + [2608] = {.lex_state = 8, .external_lex_state = 3}, + [2609] = {.lex_state = 13, .external_lex_state = 5}, + [2610] = {.lex_state = 13, .external_lex_state = 5}, + [2611] = {.lex_state = 13, .external_lex_state = 5}, + [2612] = {.lex_state = 13, .external_lex_state = 5}, + [2613] = {.lex_state = 13, .external_lex_state = 5}, + [2614] = {.lex_state = 13, .external_lex_state = 5}, + [2615] = {.lex_state = 13, .external_lex_state = 5}, + [2616] = {.lex_state = 13, .external_lex_state = 5}, + [2617] = {.lex_state = 8, .external_lex_state = 3}, + [2618] = {.lex_state = 13, .external_lex_state = 5}, + [2619] = {.lex_state = 13, .external_lex_state = 2}, + [2620] = {.lex_state = 13, .external_lex_state = 2}, + [2621] = {.lex_state = 13, .external_lex_state = 2}, + [2622] = {.lex_state = 13, .external_lex_state = 2}, + [2623] = {.lex_state = 13, .external_lex_state = 2}, + [2624] = {.lex_state = 13, .external_lex_state = 2}, + [2625] = {.lex_state = 13, .external_lex_state = 2}, + [2626] = {.lex_state = 13, .external_lex_state = 2}, + [2627] = {.lex_state = 13, .external_lex_state = 2}, + [2628] = {.lex_state = 13, .external_lex_state = 2}, + [2629] = {.lex_state = 13, .external_lex_state = 2}, + [2630] = {.lex_state = 13, .external_lex_state = 2}, + [2631] = {.lex_state = 13, .external_lex_state = 2}, + [2632] = {.lex_state = 13, .external_lex_state = 2}, + [2633] = {.lex_state = 151, .external_lex_state = 2}, + [2634] = {.lex_state = 13, .external_lex_state = 2}, + [2635] = {.lex_state = 13, .external_lex_state = 2}, + [2636] = {.lex_state = 13, .external_lex_state = 2}, + [2637] = {.lex_state = 13, .external_lex_state = 2}, [2638] = {.lex_state = 151, .external_lex_state = 2}, - [2639] = {.lex_state = 15, .external_lex_state = 2}, - [2640] = {.lex_state = 15, .external_lex_state = 2}, - [2641] = {.lex_state = 15, .external_lex_state = 2}, - [2642] = {.lex_state = 15, .external_lex_state = 2}, - [2643] = {.lex_state = 15, .external_lex_state = 2}, - [2644] = {.lex_state = 15, .external_lex_state = 2}, - [2645] = {.lex_state = 15, .external_lex_state = 2}, - [2646] = {.lex_state = 15, .external_lex_state = 2}, - [2647] = {.lex_state = 15, .external_lex_state = 2}, - [2648] = {.lex_state = 15, .external_lex_state = 2}, - [2649] = {.lex_state = 15, .external_lex_state = 2}, - [2650] = {.lex_state = 15, .external_lex_state = 2}, - [2651] = {.lex_state = 15, .external_lex_state = 2}, - [2652] = {.lex_state = 15, .external_lex_state = 2}, - [2653] = {.lex_state = 15, .external_lex_state = 2}, - [2654] = {.lex_state = 15, .external_lex_state = 2}, + [2639] = {.lex_state = 13, .external_lex_state = 2}, + [2640] = {.lex_state = 13, .external_lex_state = 2}, + [2641] = {.lex_state = 13, .external_lex_state = 2}, + [2642] = {.lex_state = 13, .external_lex_state = 2}, + [2643] = {.lex_state = 13, .external_lex_state = 2}, + [2644] = {.lex_state = 151, .external_lex_state = 2}, + [2645] = {.lex_state = 13, .external_lex_state = 2}, + [2646] = {.lex_state = 13, .external_lex_state = 2}, + [2647] = {.lex_state = 13, .external_lex_state = 2}, + [2648] = {.lex_state = 13, .external_lex_state = 2}, + [2649] = {.lex_state = 13, .external_lex_state = 2}, + [2650] = {.lex_state = 13, .external_lex_state = 2}, + [2651] = {.lex_state = 13, .external_lex_state = 2}, + [2652] = {.lex_state = 13, .external_lex_state = 2}, + [2653] = {.lex_state = 13, .external_lex_state = 2}, + [2654] = {.lex_state = 13, .external_lex_state = 2}, [2655] = {.lex_state = 151, .external_lex_state = 2}, - [2656] = {.lex_state = 15, .external_lex_state = 2}, - [2657] = {.lex_state = 15, .external_lex_state = 2}, - [2658] = {.lex_state = 15, .external_lex_state = 2}, - [2659] = {.lex_state = 15, .external_lex_state = 2}, - [2660] = {.lex_state = 15, .external_lex_state = 2}, - [2661] = {.lex_state = 15, .external_lex_state = 2}, - [2662] = {.lex_state = 151, .external_lex_state = 2}, - [2663] = {.lex_state = 15, .external_lex_state = 2}, - [2664] = {.lex_state = 15, .external_lex_state = 2}, - [2665] = {.lex_state = 15, .external_lex_state = 2}, - [2666] = {.lex_state = 15, .external_lex_state = 2}, - [2667] = {.lex_state = 15, .external_lex_state = 2}, - [2668] = {.lex_state = 15, .external_lex_state = 2}, - [2669] = {.lex_state = 15, .external_lex_state = 2}, - [2670] = {.lex_state = 15, .external_lex_state = 2}, + [2656] = {.lex_state = 13, .external_lex_state = 2}, + [2657] = {.lex_state = 13, .external_lex_state = 2}, + [2658] = {.lex_state = 13, .external_lex_state = 2}, + [2659] = {.lex_state = 13, .external_lex_state = 2}, + [2660] = {.lex_state = 13, .external_lex_state = 2}, + [2661] = {.lex_state = 13, .external_lex_state = 2}, + [2662] = {.lex_state = 13, .external_lex_state = 2}, + [2663] = {.lex_state = 13, .external_lex_state = 2}, + [2664] = {.lex_state = 13, .external_lex_state = 2}, + [2665] = {.lex_state = 13, .external_lex_state = 2}, + [2666] = {.lex_state = 13, .external_lex_state = 2}, + [2667] = {.lex_state = 13, .external_lex_state = 2}, + [2668] = {.lex_state = 13, .external_lex_state = 2}, + [2669] = {.lex_state = 13, .external_lex_state = 2}, + [2670] = {.lex_state = 13, .external_lex_state = 2}, [2671] = {.lex_state = 151, .external_lex_state = 2}, - [2672] = {.lex_state = 151, .external_lex_state = 2}, + [2672] = {.lex_state = 13, .external_lex_state = 2}, [2673] = {.lex_state = 151, .external_lex_state = 2}, [2674] = {.lex_state = 151, .external_lex_state = 2}, [2675] = {.lex_state = 151, .external_lex_state = 2}, @@ -16707,7 +16731,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2693] = {.lex_state = 151, .external_lex_state = 2}, [2694] = {.lex_state = 151, .external_lex_state = 2}, [2695] = {.lex_state = 151, .external_lex_state = 2}, - [2696] = {.lex_state = 15, .external_lex_state = 2}, + [2696] = {.lex_state = 151, .external_lex_state = 2}, [2697] = {.lex_state = 151, .external_lex_state = 2}, [2698] = {.lex_state = 151, .external_lex_state = 2}, [2699] = {.lex_state = 151, .external_lex_state = 2}, @@ -16729,7 +16753,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2715] = {.lex_state = 151, .external_lex_state = 2}, [2716] = {.lex_state = 151, .external_lex_state = 2}, [2717] = {.lex_state = 151, .external_lex_state = 2}, - [2718] = {.lex_state = 151, .external_lex_state = 2}, + [2718] = {.lex_state = 13, .external_lex_state = 2}, [2719] = {.lex_state = 151, .external_lex_state = 2}, [2720] = {.lex_state = 151, .external_lex_state = 2}, [2721] = {.lex_state = 151, .external_lex_state = 2}, @@ -16791,8 +16815,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2777] = {.lex_state = 151, .external_lex_state = 2}, [2778] = {.lex_state = 151, .external_lex_state = 2}, [2779] = {.lex_state = 151, .external_lex_state = 2}, - [2780] = {.lex_state = 16, .external_lex_state = 2}, - [2781] = {.lex_state = 16, .external_lex_state = 2}, + [2780] = {.lex_state = 151, .external_lex_state = 2}, + [2781] = {.lex_state = 151, .external_lex_state = 2}, [2782] = {.lex_state = 16, .external_lex_state = 2}, [2783] = {.lex_state = 16, .external_lex_state = 2}, [2784] = {.lex_state = 16, .external_lex_state = 2}, @@ -16828,40 +16852,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2814] = {.lex_state = 16, .external_lex_state = 2}, [2815] = {.lex_state = 16, .external_lex_state = 2}, [2816] = {.lex_state = 16, .external_lex_state = 2}, - [2817] = {.lex_state = 26, .external_lex_state = 2}, - [2818] = {.lex_state = 13, .external_lex_state = 2}, - [2819] = {.lex_state = 16, .external_lex_state = 2}, - [2820] = {.lex_state = 26, .external_lex_state = 2}, - [2821] = {.lex_state = 16, .external_lex_state = 5}, - [2822] = {.lex_state = 14, .external_lex_state = 2}, - [2823] = {.lex_state = 151, .external_lex_state = 2}, - [2824] = {.lex_state = 16, .external_lex_state = 5}, + [2817] = {.lex_state = 16, .external_lex_state = 2}, + [2818] = {.lex_state = 16, .external_lex_state = 2}, + [2819] = {.lex_state = 26, .external_lex_state = 2}, + [2820] = {.lex_state = 14, .external_lex_state = 5}, + [2821] = {.lex_state = 26, .external_lex_state = 2}, + [2822] = {.lex_state = 14, .external_lex_state = 5}, + [2823] = {.lex_state = 16, .external_lex_state = 2}, + [2824] = {.lex_state = 14, .external_lex_state = 2}, [2825] = {.lex_state = 151, .external_lex_state = 2}, - [2826] = {.lex_state = 16, .external_lex_state = 5}, - [2827] = {.lex_state = 14, .external_lex_state = 2}, - [2828] = {.lex_state = 13, .external_lex_state = 5}, - [2829] = {.lex_state = 151, .external_lex_state = 2}, - [2830] = {.lex_state = 14, .external_lex_state = 2}, - [2831] = {.lex_state = 14, .external_lex_state = 2}, - [2832] = {.lex_state = 14, .external_lex_state = 2}, - [2833] = {.lex_state = 13, .external_lex_state = 2}, - [2834] = {.lex_state = 13, .external_lex_state = 2}, - [2835] = {.lex_state = 151, .external_lex_state = 2}, + [2826] = {.lex_state = 14, .external_lex_state = 2}, + [2827] = {.lex_state = 16, .external_lex_state = 5}, + [2828] = {.lex_state = 14, .external_lex_state = 2}, + [2829] = {.lex_state = 15, .external_lex_state = 2}, + [2830] = {.lex_state = 151, .external_lex_state = 2}, + [2831] = {.lex_state = 15, .external_lex_state = 2}, + [2832] = {.lex_state = 16, .external_lex_state = 5}, + [2833] = {.lex_state = 15, .external_lex_state = 2}, + [2834] = {.lex_state = 151, .external_lex_state = 2}, + [2835] = {.lex_state = 14, .external_lex_state = 2}, [2836] = {.lex_state = 151, .external_lex_state = 2}, - [2837] = {.lex_state = 13, .external_lex_state = 2}, + [2837] = {.lex_state = 151, .external_lex_state = 2}, [2838] = {.lex_state = 151, .external_lex_state = 2}, - [2839] = {.lex_state = 151, .external_lex_state = 2}, - [2840] = {.lex_state = 151, .external_lex_state = 2}, - [2841] = {.lex_state = 151, .external_lex_state = 2}, - [2842] = {.lex_state = 13, .external_lex_state = 2}, - [2843] = {.lex_state = 13, .external_lex_state = 5}, + [2839] = {.lex_state = 16, .external_lex_state = 5}, + [2840] = {.lex_state = 14, .external_lex_state = 2}, + [2841] = {.lex_state = 15, .external_lex_state = 2}, + [2842] = {.lex_state = 151, .external_lex_state = 2}, + [2843] = {.lex_state = 15, .external_lex_state = 2}, [2844] = {.lex_state = 151, .external_lex_state = 2}, [2845] = {.lex_state = 151, .external_lex_state = 2}, [2846] = {.lex_state = 151, .external_lex_state = 2}, [2847] = {.lex_state = 151, .external_lex_state = 2}, [2848] = {.lex_state = 151, .external_lex_state = 2}, [2849] = {.lex_state = 151, .external_lex_state = 2}, - [2850] = {.lex_state = 16, .external_lex_state = 5}, + [2850] = {.lex_state = 151, .external_lex_state = 2}, [2851] = {.lex_state = 151, .external_lex_state = 2}, [2852] = {.lex_state = 151, .external_lex_state = 2}, [2853] = {.lex_state = 151, .external_lex_state = 2}, @@ -16869,77 +16893,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2855] = {.lex_state = 151, .external_lex_state = 2}, [2856] = {.lex_state = 151, .external_lex_state = 2}, [2857] = {.lex_state = 151, .external_lex_state = 2}, - [2858] = {.lex_state = 5, .external_lex_state = 2}, + [2858] = {.lex_state = 151, .external_lex_state = 2}, [2859] = {.lex_state = 151, .external_lex_state = 2}, [2860] = {.lex_state = 151, .external_lex_state = 2}, [2861] = {.lex_state = 151, .external_lex_state = 2}, - [2862] = {.lex_state = 151, .external_lex_state = 2}, - [2863] = {.lex_state = 151, .external_lex_state = 2}, - [2864] = {.lex_state = 151, .external_lex_state = 2}, + [2862] = {.lex_state = 16, .external_lex_state = 6}, + [2863] = {.lex_state = 16, .external_lex_state = 6}, + [2864] = {.lex_state = 16, .external_lex_state = 6}, [2865] = {.lex_state = 151, .external_lex_state = 2}, [2866] = {.lex_state = 151, .external_lex_state = 2}, [2867] = {.lex_state = 151, .external_lex_state = 2}, [2868] = {.lex_state = 151, .external_lex_state = 2}, [2869] = {.lex_state = 151, .external_lex_state = 2}, - [2870] = {.lex_state = 16, .external_lex_state = 6}, - [2871] = {.lex_state = 16, .external_lex_state = 6}, + [2870] = {.lex_state = 151, .external_lex_state = 2}, + [2871] = {.lex_state = 151, .external_lex_state = 2}, [2872] = {.lex_state = 151, .external_lex_state = 2}, - [2873] = {.lex_state = 16, .external_lex_state = 6}, + [2873] = {.lex_state = 151, .external_lex_state = 2}, [2874] = {.lex_state = 151, .external_lex_state = 2}, - [2875] = {.lex_state = 151, .external_lex_state = 2}, + [2875] = {.lex_state = 5, .external_lex_state = 2}, [2876] = {.lex_state = 151, .external_lex_state = 2}, [2877] = {.lex_state = 151, .external_lex_state = 2}, - [2878] = {.lex_state = 151, .external_lex_state = 2}, + [2878] = {.lex_state = 5, .external_lex_state = 2}, [2879] = {.lex_state = 151, .external_lex_state = 2}, [2880] = {.lex_state = 151, .external_lex_state = 2}, [2881] = {.lex_state = 151, .external_lex_state = 2}, [2882] = {.lex_state = 151, .external_lex_state = 2}, [2883] = {.lex_state = 151, .external_lex_state = 2}, - [2884] = {.lex_state = 151, .external_lex_state = 2}, + [2884] = {.lex_state = 5, .external_lex_state = 2}, [2885] = {.lex_state = 151, .external_lex_state = 2}, - [2886] = {.lex_state = 5, .external_lex_state = 2}, + [2886] = {.lex_state = 151, .external_lex_state = 2}, [2887] = {.lex_state = 151, .external_lex_state = 2}, [2888] = {.lex_state = 151, .external_lex_state = 2}, [2889] = {.lex_state = 151, .external_lex_state = 2}, [2890] = {.lex_state = 151, .external_lex_state = 2}, - [2891] = {.lex_state = 151, .external_lex_state = 2}, - [2892] = {.lex_state = 5, .external_lex_state = 2}, + [2891] = {.lex_state = 5, .external_lex_state = 2}, + [2892] = {.lex_state = 151, .external_lex_state = 2}, [2893] = {.lex_state = 151, .external_lex_state = 2}, [2894] = {.lex_state = 151, .external_lex_state = 2}, [2895] = {.lex_state = 151, .external_lex_state = 2}, [2896] = {.lex_state = 151, .external_lex_state = 2}, - [2897] = {.lex_state = 16, .external_lex_state = 5}, - [2898] = {.lex_state = 16, .external_lex_state = 5}, - [2899] = {.lex_state = 16, .external_lex_state = 5}, - [2900] = {.lex_state = 16, .external_lex_state = 5}, - [2901] = {.lex_state = 16, .external_lex_state = 5}, - [2902] = {.lex_state = 16, .external_lex_state = 5}, - [2903] = {.lex_state = 16, .external_lex_state = 5}, - [2904] = {.lex_state = 5, .external_lex_state = 2}, - [2905] = {.lex_state = 16, .external_lex_state = 5}, + [2897] = {.lex_state = 151, .external_lex_state = 2}, + [2898] = {.lex_state = 5, .external_lex_state = 2}, + [2899] = {.lex_state = 5, .external_lex_state = 2}, + [2900] = {.lex_state = 5, .external_lex_state = 2}, + [2901] = {.lex_state = 14, .external_lex_state = 5}, + [2902] = {.lex_state = 151, .external_lex_state = 2}, + [2903] = {.lex_state = 151, .external_lex_state = 2}, + [2904] = {.lex_state = 151, .external_lex_state = 2}, + [2905] = {.lex_state = 151, .external_lex_state = 2}, [2906] = {.lex_state = 16, .external_lex_state = 5}, - [2907] = {.lex_state = 16, .external_lex_state = 5}, - [2908] = {.lex_state = 16, .external_lex_state = 5}, + [2907] = {.lex_state = 151, .external_lex_state = 2}, + [2908] = {.lex_state = 151, .external_lex_state = 2}, [2909] = {.lex_state = 16, .external_lex_state = 5}, [2910] = {.lex_state = 16, .external_lex_state = 5}, - [2911] = {.lex_state = 151, .external_lex_state = 2}, - [2912] = {.lex_state = 151, .external_lex_state = 2}, - [2913] = {.lex_state = 151, .external_lex_state = 2}, - [2914] = {.lex_state = 151, .external_lex_state = 2}, - [2915] = {.lex_state = 16, .external_lex_state = 5}, - [2916] = {.lex_state = 5, .external_lex_state = 2}, + [2911] = {.lex_state = 16, .external_lex_state = 5}, + [2912] = {.lex_state = 16, .external_lex_state = 5}, + [2913] = {.lex_state = 16, .external_lex_state = 5}, + [2914] = {.lex_state = 16, .external_lex_state = 5}, + [2915] = {.lex_state = 151, .external_lex_state = 2}, + [2916] = {.lex_state = 16, .external_lex_state = 5}, [2917] = {.lex_state = 151, .external_lex_state = 2}, [2918] = {.lex_state = 151, .external_lex_state = 2}, - [2919] = {.lex_state = 151, .external_lex_state = 2}, - [2920] = {.lex_state = 5, .external_lex_state = 2}, - [2921] = {.lex_state = 16, .external_lex_state = 5}, - [2922] = {.lex_state = 151, .external_lex_state = 2}, + [2919] = {.lex_state = 5, .external_lex_state = 2}, + [2920] = {.lex_state = 151, .external_lex_state = 2}, + [2921] = {.lex_state = 151, .external_lex_state = 2}, + [2922] = {.lex_state = 16, .external_lex_state = 5}, [2923] = {.lex_state = 151, .external_lex_state = 2}, [2924] = {.lex_state = 16, .external_lex_state = 5}, [2925] = {.lex_state = 151, .external_lex_state = 2}, - [2926] = {.lex_state = 16, .external_lex_state = 5}, - [2927] = {.lex_state = 151, .external_lex_state = 2}, - [2928] = {.lex_state = 151, .external_lex_state = 2}, + [2926] = {.lex_state = 151, .external_lex_state = 2}, + [2927] = {.lex_state = 16, .external_lex_state = 5}, + [2928] = {.lex_state = 16, .external_lex_state = 5}, [2929] = {.lex_state = 16, .external_lex_state = 5}, [2930] = {.lex_state = 16, .external_lex_state = 5}, [2931] = {.lex_state = 16, .external_lex_state = 5}, @@ -16954,231 +16978,231 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2940] = {.lex_state = 16, .external_lex_state = 5}, [2941] = {.lex_state = 16, .external_lex_state = 5}, [2942] = {.lex_state = 16, .external_lex_state = 5}, - [2943] = {.lex_state = 16, .external_lex_state = 5}, + [2943] = {.lex_state = 5, .external_lex_state = 2}, [2944] = {.lex_state = 16, .external_lex_state = 5}, - [2945] = {.lex_state = 5, .external_lex_state = 2}, - [2946] = {.lex_state = 5, .external_lex_state = 2}, - [2947] = {.lex_state = 151, .external_lex_state = 2}, - [2948] = {.lex_state = 5, .external_lex_state = 2}, - [2949] = {.lex_state = 13, .external_lex_state = 5}, - [2950] = {.lex_state = 151, .external_lex_state = 2}, - [2951] = {.lex_state = 151, .external_lex_state = 2}, - [2952] = {.lex_state = 15, .external_lex_state = 5}, + [2945] = {.lex_state = 16, .external_lex_state = 5}, + [2946] = {.lex_state = 16, .external_lex_state = 5}, + [2947] = {.lex_state = 16, .external_lex_state = 5}, + [2948] = {.lex_state = 16, .external_lex_state = 5}, + [2949] = {.lex_state = 16, .external_lex_state = 5}, + [2950] = {.lex_state = 16, .external_lex_state = 5}, + [2951] = {.lex_state = 16, .external_lex_state = 5}, + [2952] = {.lex_state = 151, .external_lex_state = 2}, [2953] = {.lex_state = 151, .external_lex_state = 2}, - [2954] = {.lex_state = 15, .external_lex_state = 5}, - [2955] = {.lex_state = 15, .external_lex_state = 5}, - [2956] = {.lex_state = 15, .external_lex_state = 5}, - [2957] = {.lex_state = 151, .external_lex_state = 2}, - [2958] = {.lex_state = 151, .external_lex_state = 2}, - [2959] = {.lex_state = 151, .external_lex_state = 2}, - [2960] = {.lex_state = 15, .external_lex_state = 5}, - [2961] = {.lex_state = 151, .external_lex_state = 2}, - [2962] = {.lex_state = 15, .external_lex_state = 5}, - [2963] = {.lex_state = 15, .external_lex_state = 5}, - [2964] = {.lex_state = 151, .external_lex_state = 2}, - [2965] = {.lex_state = 151, .external_lex_state = 2}, - [2966] = {.lex_state = 15, .external_lex_state = 5}, + [2954] = {.lex_state = 151, .external_lex_state = 2}, + [2955] = {.lex_state = 13, .external_lex_state = 5}, + [2956] = {.lex_state = 13, .external_lex_state = 5}, + [2957] = {.lex_state = 14, .external_lex_state = 5}, + [2958] = {.lex_state = 151, .external_lex_state = 5}, + [2959] = {.lex_state = 13, .external_lex_state = 5}, + [2960] = {.lex_state = 151, .external_lex_state = 2}, + [2961] = {.lex_state = 13, .external_lex_state = 5}, + [2962] = {.lex_state = 151, .external_lex_state = 2}, + [2963] = {.lex_state = 13, .external_lex_state = 5}, + [2964] = {.lex_state = 13, .external_lex_state = 5}, + [2965] = {.lex_state = 13, .external_lex_state = 5}, + [2966] = {.lex_state = 13, .external_lex_state = 5}, [2967] = {.lex_state = 13, .external_lex_state = 5}, - [2968] = {.lex_state = 15, .external_lex_state = 5}, - [2969] = {.lex_state = 26, .external_lex_state = 2}, - [2970] = {.lex_state = 15, .external_lex_state = 5}, - [2971] = {.lex_state = 15, .external_lex_state = 5}, + [2968] = {.lex_state = 13, .external_lex_state = 5}, + [2969] = {.lex_state = 13, .external_lex_state = 5}, + [2970] = {.lex_state = 151, .external_lex_state = 2}, + [2971] = {.lex_state = 13, .external_lex_state = 5}, [2972] = {.lex_state = 151, .external_lex_state = 2}, - [2973] = {.lex_state = 151, .external_lex_state = 5}, - [2974] = {.lex_state = 15, .external_lex_state = 5}, - [2975] = {.lex_state = 151, .external_lex_state = 2}, - [2976] = {.lex_state = 15, .external_lex_state = 5}, - [2977] = {.lex_state = 15, .external_lex_state = 5}, + [2973] = {.lex_state = 13, .external_lex_state = 5}, + [2974] = {.lex_state = 13, .external_lex_state = 5}, + [2975] = {.lex_state = 26, .external_lex_state = 2}, + [2976] = {.lex_state = 13, .external_lex_state = 5}, + [2977] = {.lex_state = 13, .external_lex_state = 5}, [2978] = {.lex_state = 151, .external_lex_state = 2}, - [2979] = {.lex_state = 15, .external_lex_state = 5}, - [2980] = {.lex_state = 15, .external_lex_state = 5}, - [2981] = {.lex_state = 15, .external_lex_state = 5}, - [2982] = {.lex_state = 15, .external_lex_state = 5}, - [2983] = {.lex_state = 15, .external_lex_state = 5}, - [2984] = {.lex_state = 15, .external_lex_state = 5}, - [2985] = {.lex_state = 15, .external_lex_state = 5}, - [2986] = {.lex_state = 15, .external_lex_state = 5}, - [2987] = {.lex_state = 151, .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 = 15, .external_lex_state = 5}, - [2994] = {.lex_state = 14, .external_lex_state = 5}, + [2979] = {.lex_state = 13, .external_lex_state = 5}, + [2980] = {.lex_state = 13, .external_lex_state = 5}, + [2981] = {.lex_state = 13, .external_lex_state = 5}, + [2982] = {.lex_state = 13, .external_lex_state = 5}, + [2983] = {.lex_state = 151, .external_lex_state = 2}, + [2984] = {.lex_state = 13, .external_lex_state = 5}, + [2985] = {.lex_state = 13, .external_lex_state = 5}, + [2986] = {.lex_state = 13, .external_lex_state = 5}, + [2987] = {.lex_state = 13, .external_lex_state = 5}, + [2988] = {.lex_state = 151, .external_lex_state = 2}, + [2989] = {.lex_state = 13, .external_lex_state = 5}, + [2990] = {.lex_state = 13, .external_lex_state = 5}, + [2991] = {.lex_state = 151, .external_lex_state = 2}, + [2992] = {.lex_state = 13, .external_lex_state = 5}, + [2993] = {.lex_state = 151, .external_lex_state = 2}, + [2994] = {.lex_state = 13, .external_lex_state = 5}, [2995] = {.lex_state = 151, .external_lex_state = 2}, - [2996] = {.lex_state = 13, .external_lex_state = 5}, - [2997] = {.lex_state = 15, .external_lex_state = 5}, - [2998] = {.lex_state = 15, .external_lex_state = 5}, - [2999] = {.lex_state = 15, .external_lex_state = 5}, + [2996] = {.lex_state = 16, .external_lex_state = 6}, + [2997] = {.lex_state = 1, .external_lex_state = 2}, + [2998] = {.lex_state = 1, .external_lex_state = 2}, + [2999] = {.lex_state = 151, .external_lex_state = 5}, [3000] = {.lex_state = 151, .external_lex_state = 2}, [3001] = {.lex_state = 151, .external_lex_state = 2}, - [3002] = {.lex_state = 14, .external_lex_state = 5}, - [3003] = {.lex_state = 16, .external_lex_state = 6}, - [3004] = {.lex_state = 16, .external_lex_state = 6}, - [3005] = {.lex_state = 14, .external_lex_state = 5}, - [3006] = {.lex_state = 16, .external_lex_state = 6}, - [3007] = {.lex_state = 14, .external_lex_state = 5}, - [3008] = {.lex_state = 151, .external_lex_state = 5}, - [3009] = {.lex_state = 16, .external_lex_state = 6}, - [3010] = {.lex_state = 13, .external_lex_state = 6}, - [3011] = {.lex_state = 1, .external_lex_state = 2}, - [3012] = {.lex_state = 16, .external_lex_state = 6}, + [3002] = {.lex_state = 16, .external_lex_state = 6}, + [3003] = {.lex_state = 15, .external_lex_state = 5}, + [3004] = {.lex_state = 14, .external_lex_state = 6}, + [3005] = {.lex_state = 15, .external_lex_state = 5}, + [3006] = {.lex_state = 151, .external_lex_state = 2}, + [3007] = {.lex_state = 15, .external_lex_state = 5}, + [3008] = {.lex_state = 16, .external_lex_state = 6}, + [3009] = {.lex_state = 13, .external_lex_state = 5}, + [3010] = {.lex_state = 16, .external_lex_state = 6}, + [3011] = {.lex_state = 16, .external_lex_state = 6}, + [3012] = {.lex_state = 15, .external_lex_state = 5}, [3013] = {.lex_state = 16, .external_lex_state = 6}, [3014] = {.lex_state = 151, .external_lex_state = 2}, - [3015] = {.lex_state = 14, .external_lex_state = 5}, - [3016] = {.lex_state = 16, .external_lex_state = 6}, - [3017] = {.lex_state = 16, .external_lex_state = 6}, - [3018] = {.lex_state = 16, .external_lex_state = 6}, - [3019] = {.lex_state = 14, .external_lex_state = 5}, - [3020] = {.lex_state = 13, .external_lex_state = 5}, - [3021] = {.lex_state = 151, .external_lex_state = 5}, - [3022] = {.lex_state = 151, .external_lex_state = 5}, - [3023] = {.lex_state = 13, .external_lex_state = 5}, - [3024] = {.lex_state = 151, .external_lex_state = 5}, - [3025] = {.lex_state = 151, .external_lex_state = 5}, - [3026] = {.lex_state = 151, .external_lex_state = 5}, - [3027] = {.lex_state = 151, .external_lex_state = 5}, - [3028] = {.lex_state = 1, .external_lex_state = 2}, - [3029] = {.lex_state = 151, .external_lex_state = 5}, - [3030] = {.lex_state = 1, .external_lex_state = 2}, - [3031] = {.lex_state = 151, .external_lex_state = 5}, - [3032] = {.lex_state = 16, .external_lex_state = 6}, + [3015] = {.lex_state = 151, .external_lex_state = 5}, + [3016] = {.lex_state = 26, .external_lex_state = 2}, + [3017] = {.lex_state = 151, .external_lex_state = 2}, + [3018] = {.lex_state = 15, .external_lex_state = 5}, + [3019] = {.lex_state = 151, .external_lex_state = 2}, + [3020] = {.lex_state = 15, .external_lex_state = 5}, + [3021] = {.lex_state = 15, .external_lex_state = 5}, + [3022] = {.lex_state = 16, .external_lex_state = 6}, + [3023] = {.lex_state = 15, .external_lex_state = 5}, + [3024] = {.lex_state = 16, .external_lex_state = 6}, + [3025] = {.lex_state = 16, .external_lex_state = 6}, + [3026] = {.lex_state = 1, .external_lex_state = 2}, + [3027] = {.lex_state = 16, .external_lex_state = 6}, + [3028] = {.lex_state = 13, .external_lex_state = 5}, + [3029] = {.lex_state = 13, .external_lex_state = 5}, + [3030] = {.lex_state = 16, .external_lex_state = 6}, + [3031] = {.lex_state = 14, .external_lex_state = 5}, + [3032] = {.lex_state = 151, .external_lex_state = 5}, [3033] = {.lex_state = 16, .external_lex_state = 6}, - [3034] = {.lex_state = 1, .external_lex_state = 2}, - [3035] = {.lex_state = 16, .external_lex_state = 6}, - [3036] = {.lex_state = 16, .external_lex_state = 6}, + [3034] = {.lex_state = 151, .external_lex_state = 5}, + [3035] = {.lex_state = 151, .external_lex_state = 5}, + [3036] = {.lex_state = 14, .external_lex_state = 5}, [3037] = {.lex_state = 1, .external_lex_state = 2}, - [3038] = {.lex_state = 151, .external_lex_state = 5}, - [3039] = {.lex_state = 16, .external_lex_state = 6}, + [3038] = {.lex_state = 13, .external_lex_state = 5}, + [3039] = {.lex_state = 13, .external_lex_state = 5}, [3040] = {.lex_state = 16, .external_lex_state = 6}, [3041] = {.lex_state = 16, .external_lex_state = 6}, - [3042] = {.lex_state = 26, .external_lex_state = 2}, - [3043] = {.lex_state = 16, .external_lex_state = 6}, - [3044] = {.lex_state = 15, .external_lex_state = 5}, - [3045] = {.lex_state = 1, .external_lex_state = 2}, - [3046] = {.lex_state = 16, .external_lex_state = 6}, - [3047] = {.lex_state = 16, .external_lex_state = 6}, + [3042] = {.lex_state = 151, .external_lex_state = 5}, + [3043] = {.lex_state = 151, .external_lex_state = 5}, + [3044] = {.lex_state = 151, .external_lex_state = 5}, + [3045] = {.lex_state = 26, .external_lex_state = 2}, + [3046] = {.lex_state = 151, .external_lex_state = 5}, + [3047] = {.lex_state = 14, .external_lex_state = 5}, [3048] = {.lex_state = 16, .external_lex_state = 6}, - [3049] = {.lex_state = 16, .external_lex_state = 6}, - [3050] = {.lex_state = 16, .external_lex_state = 6}, - [3051] = {.lex_state = 16, .external_lex_state = 6}, - [3052] = {.lex_state = 16, .external_lex_state = 6}, + [3049] = {.lex_state = 13, .external_lex_state = 5}, + [3050] = {.lex_state = 151, .external_lex_state = 2}, + [3051] = {.lex_state = 1, .external_lex_state = 2}, + [3052] = {.lex_state = 151, .external_lex_state = 5}, [3053] = {.lex_state = 16, .external_lex_state = 6}, - [3054] = {.lex_state = 16, .external_lex_state = 6}, + [3054] = {.lex_state = 151, .external_lex_state = 2}, [3055] = {.lex_state = 16, .external_lex_state = 6}, [3056] = {.lex_state = 16, .external_lex_state = 6}, - [3057] = {.lex_state = 16, .external_lex_state = 6}, + [3057] = {.lex_state = 13, .external_lex_state = 5}, [3058] = {.lex_state = 16, .external_lex_state = 6}, - [3059] = {.lex_state = 16, .external_lex_state = 6}, + [3059] = {.lex_state = 151, .external_lex_state = 2}, [3060] = {.lex_state = 16, .external_lex_state = 6}, - [3061] = {.lex_state = 151, .external_lex_state = 2}, - [3062] = {.lex_state = 151, .external_lex_state = 2}, - [3063] = {.lex_state = 16, .external_lex_state = 6}, - [3064] = {.lex_state = 151, .external_lex_state = 2}, - [3065] = {.lex_state = 15, .external_lex_state = 5}, - [3066] = {.lex_state = 151, .external_lex_state = 2}, - [3067] = {.lex_state = 26, .external_lex_state = 2}, - [3068] = {.lex_state = 15, .external_lex_state = 5}, - [3069] = {.lex_state = 15, .external_lex_state = 5}, - [3070] = {.lex_state = 15, .external_lex_state = 5}, - [3071] = {.lex_state = 151, .external_lex_state = 2}, - [3072] = {.lex_state = 15, .external_lex_state = 5}, - [3073] = {.lex_state = 1, .external_lex_state = 2}, - [3074] = {.lex_state = 1, .external_lex_state = 2}, - [3075] = {.lex_state = 14, .external_lex_state = 5}, - [3076] = {.lex_state = 151, .external_lex_state = 2}, - [3077] = {.lex_state = 14, .external_lex_state = 5}, - [3078] = {.lex_state = 15, .external_lex_state = 5}, + [3061] = {.lex_state = 16, .external_lex_state = 6}, + [3062] = {.lex_state = 1, .external_lex_state = 2}, + [3063] = {.lex_state = 13, .external_lex_state = 5}, + [3064] = {.lex_state = 16, .external_lex_state = 6}, + [3065] = {.lex_state = 16, .external_lex_state = 6}, + [3066] = {.lex_state = 16, .external_lex_state = 6}, + [3067] = {.lex_state = 16, .external_lex_state = 6}, + [3068] = {.lex_state = 151, .external_lex_state = 2}, + [3069] = {.lex_state = 16, .external_lex_state = 6}, + [3070] = {.lex_state = 1, .external_lex_state = 2}, + [3071] = {.lex_state = 16, .external_lex_state = 6}, + [3072] = {.lex_state = 16, .external_lex_state = 6}, + [3073] = {.lex_state = 16, .external_lex_state = 6}, + [3074] = {.lex_state = 13, .external_lex_state = 5}, + [3075] = {.lex_state = 1, .external_lex_state = 2}, + [3076] = {.lex_state = 16, .external_lex_state = 6}, + [3077] = {.lex_state = 16, .external_lex_state = 6}, + [3078] = {.lex_state = 16, .external_lex_state = 6}, [3079] = {.lex_state = 16, .external_lex_state = 6}, - [3080] = {.lex_state = 15, .external_lex_state = 5}, - [3081] = {.lex_state = 15, .external_lex_state = 5}, - [3082] = {.lex_state = 15, .external_lex_state = 5}, - [3083] = {.lex_state = 15, .external_lex_state = 5}, - [3084] = {.lex_state = 26, .external_lex_state = 2}, - [3085] = {.lex_state = 16, .external_lex_state = 2}, - [3086] = {.lex_state = 26, .external_lex_state = 2}, - [3087] = {.lex_state = 16, .external_lex_state = 2}, - [3088] = {.lex_state = 15, .external_lex_state = 5}, - [3089] = {.lex_state = 16, .external_lex_state = 2}, - [3090] = {.lex_state = 26, .external_lex_state = 2}, - [3091] = {.lex_state = 15, .external_lex_state = 5}, - [3092] = {.lex_state = 13, .external_lex_state = 6}, - [3093] = {.lex_state = 15, .external_lex_state = 5}, - [3094] = {.lex_state = 15, .external_lex_state = 5}, - [3095] = {.lex_state = 15, .external_lex_state = 5}, - [3096] = {.lex_state = 15, .external_lex_state = 5}, - [3097] = {.lex_state = 15, .external_lex_state = 5}, - [3098] = {.lex_state = 151, .external_lex_state = 6}, - [3099] = {.lex_state = 15, .external_lex_state = 5}, - [3100] = {.lex_state = 15, .external_lex_state = 5}, + [3080] = {.lex_state = 16, .external_lex_state = 6}, + [3081] = {.lex_state = 13, .external_lex_state = 5}, + [3082] = {.lex_state = 13, .external_lex_state = 5}, + [3083] = {.lex_state = 13, .external_lex_state = 5}, + [3084] = {.lex_state = 151, .external_lex_state = 5}, + [3085] = {.lex_state = 13, .external_lex_state = 5}, + [3086] = {.lex_state = 151, .external_lex_state = 5}, + [3087] = {.lex_state = 151, .external_lex_state = 5}, + [3088] = {.lex_state = 151, .external_lex_state = 2}, + [3089] = {.lex_state = 13, .external_lex_state = 5}, + [3090] = {.lex_state = 13, .external_lex_state = 5}, + [3091] = {.lex_state = 13, .external_lex_state = 5}, + [3092] = {.lex_state = 13, .external_lex_state = 5}, + [3093] = {.lex_state = 13, .external_lex_state = 5}, + [3094] = {.lex_state = 13, .external_lex_state = 5}, + [3095] = {.lex_state = 13, .external_lex_state = 5}, + [3096] = {.lex_state = 151, .external_lex_state = 5}, + [3097] = {.lex_state = 151, .external_lex_state = 5}, + [3098] = {.lex_state = 13, .external_lex_state = 5}, + [3099] = {.lex_state = 26, .external_lex_state = 2}, + [3100] = {.lex_state = 26, .external_lex_state = 2}, [3101] = {.lex_state = 151, .external_lex_state = 5}, - [3102] = {.lex_state = 151, .external_lex_state = 5}, - [3103] = {.lex_state = 15, .external_lex_state = 5}, - [3104] = {.lex_state = 151, .external_lex_state = 5}, - [3105] = {.lex_state = 15, .external_lex_state = 5}, - [3106] = {.lex_state = 15, .external_lex_state = 5}, - [3107] = {.lex_state = 151, .external_lex_state = 5}, - [3108] = {.lex_state = 15, .external_lex_state = 5}, - [3109] = {.lex_state = 151, .external_lex_state = 2}, - [3110] = {.lex_state = 15, .external_lex_state = 5}, - [3111] = {.lex_state = 26, .external_lex_state = 2}, - [3112] = {.lex_state = 15, .external_lex_state = 5}, - [3113] = {.lex_state = 15, .external_lex_state = 5}, - [3114] = {.lex_state = 15, .external_lex_state = 2}, - [3115] = {.lex_state = 15, .external_lex_state = 5}, - [3116] = {.lex_state = 15, .external_lex_state = 5}, - [3117] = {.lex_state = 15, .external_lex_state = 5}, - [3118] = {.lex_state = 15, .external_lex_state = 2}, - [3119] = {.lex_state = 15, .external_lex_state = 5}, - [3120] = {.lex_state = 151, .external_lex_state = 5}, - [3121] = {.lex_state = 15, .external_lex_state = 5}, - [3122] = {.lex_state = 15, .external_lex_state = 5}, - [3123] = {.lex_state = 15, .external_lex_state = 5}, - [3124] = {.lex_state = 15, .external_lex_state = 5}, - [3125] = {.lex_state = 151, .external_lex_state = 5}, - [3126] = {.lex_state = 15, .external_lex_state = 5}, - [3127] = {.lex_state = 1, .external_lex_state = 2}, - [3128] = {.lex_state = 15, .external_lex_state = 5}, - [3129] = {.lex_state = 15, .external_lex_state = 5}, - [3130] = {.lex_state = 15, .external_lex_state = 5}, - [3131] = {.lex_state = 15, .external_lex_state = 5}, - [3132] = {.lex_state = 15, .external_lex_state = 5}, - [3133] = {.lex_state = 15, .external_lex_state = 5}, - [3134] = {.lex_state = 15, .external_lex_state = 5}, - [3135] = {.lex_state = 15, .external_lex_state = 5}, - [3136] = {.lex_state = 15, .external_lex_state = 5}, - [3137] = {.lex_state = 151, .external_lex_state = 5}, - [3138] = {.lex_state = 151, .external_lex_state = 5}, - [3139] = {.lex_state = 15, .external_lex_state = 5}, - [3140] = {.lex_state = 15, .external_lex_state = 2}, - [3141] = {.lex_state = 151, .external_lex_state = 5}, - [3142] = {.lex_state = 151, .external_lex_state = 5}, + [3102] = {.lex_state = 13, .external_lex_state = 5}, + [3103] = {.lex_state = 13, .external_lex_state = 5}, + [3104] = {.lex_state = 13, .external_lex_state = 5}, + [3105] = {.lex_state = 13, .external_lex_state = 5}, + [3106] = {.lex_state = 13, .external_lex_state = 5}, + [3107] = {.lex_state = 13, .external_lex_state = 5}, + [3108] = {.lex_state = 26, .external_lex_state = 2}, + [3109] = {.lex_state = 13, .external_lex_state = 2}, + [3110] = {.lex_state = 13, .external_lex_state = 5}, + [3111] = {.lex_state = 13, .external_lex_state = 5}, + [3112] = {.lex_state = 151, .external_lex_state = 5}, + [3113] = {.lex_state = 151, .external_lex_state = 5}, + [3114] = {.lex_state = 13, .external_lex_state = 5}, + [3115] = {.lex_state = 13, .external_lex_state = 5}, + [3116] = {.lex_state = 13, .external_lex_state = 5}, + [3117] = {.lex_state = 13, .external_lex_state = 5}, + [3118] = {.lex_state = 13, .external_lex_state = 5}, + [3119] = {.lex_state = 13, .external_lex_state = 5}, + [3120] = {.lex_state = 13, .external_lex_state = 5}, + [3121] = {.lex_state = 13, .external_lex_state = 5}, + [3122] = {.lex_state = 13, .external_lex_state = 2}, + [3123] = {.lex_state = 13, .external_lex_state = 5}, + [3124] = {.lex_state = 13, .external_lex_state = 5}, + [3125] = {.lex_state = 13, .external_lex_state = 5}, + [3126] = {.lex_state = 16, .external_lex_state = 2}, + [3127] = {.lex_state = 16, .external_lex_state = 2}, + [3128] = {.lex_state = 13, .external_lex_state = 5}, + [3129] = {.lex_state = 13, .external_lex_state = 5}, + [3130] = {.lex_state = 13, .external_lex_state = 5}, + [3131] = {.lex_state = 16, .external_lex_state = 2}, + [3132] = {.lex_state = 13, .external_lex_state = 5}, + [3133] = {.lex_state = 13, .external_lex_state = 5}, + [3134] = {.lex_state = 1, .external_lex_state = 2}, + [3135] = {.lex_state = 13, .external_lex_state = 5}, + [3136] = {.lex_state = 13, .external_lex_state = 5}, + [3137] = {.lex_state = 26, .external_lex_state = 2}, + [3138] = {.lex_state = 151, .external_lex_state = 6}, + [3139] = {.lex_state = 13, .external_lex_state = 5}, + [3140] = {.lex_state = 13, .external_lex_state = 5}, + [3141] = {.lex_state = 14, .external_lex_state = 6}, + [3142] = {.lex_state = 13, .external_lex_state = 2}, [3143] = {.lex_state = 151, .external_lex_state = 5}, - [3144] = {.lex_state = 151, .external_lex_state = 5}, - [3145] = {.lex_state = 151, .external_lex_state = 5}, + [3144] = {.lex_state = 151, .external_lex_state = 6}, + [3145] = {.lex_state = 14, .external_lex_state = 6}, [3146] = {.lex_state = 151, .external_lex_state = 5}, - [3147] = {.lex_state = 151, .external_lex_state = 5}, - [3148] = {.lex_state = 151, .external_lex_state = 5}, + [3147] = {.lex_state = 151, .external_lex_state = 6}, + [3148] = {.lex_state = 151, .external_lex_state = 6}, [3149] = {.lex_state = 151, .external_lex_state = 5}, [3150] = {.lex_state = 151, .external_lex_state = 5}, - [3151] = {.lex_state = 151, .external_lex_state = 5}, - [3152] = {.lex_state = 15, .external_lex_state = 5}, - [3153] = {.lex_state = 14, .external_lex_state = 6}, + [3151] = {.lex_state = 151, .external_lex_state = 6}, + [3152] = {.lex_state = 151, .external_lex_state = 5}, + [3153] = {.lex_state = 15, .external_lex_state = 6}, [3154] = {.lex_state = 151, .external_lex_state = 5}, - [3155] = {.lex_state = 151, .external_lex_state = 6}, - [3156] = {.lex_state = 151, .external_lex_state = 5}, - [3157] = {.lex_state = 15, .external_lex_state = 5}, - [3158] = {.lex_state = 151, .external_lex_state = 6}, + [3155] = {.lex_state = 151, .external_lex_state = 5}, + [3156] = {.lex_state = 15, .external_lex_state = 6}, + [3157] = {.lex_state = 14, .external_lex_state = 6}, + [3158] = {.lex_state = 151, .external_lex_state = 5}, [3159] = {.lex_state = 151, .external_lex_state = 5}, [3160] = {.lex_state = 151, .external_lex_state = 5}, [3161] = {.lex_state = 151, .external_lex_state = 5}, - [3162] = {.lex_state = 151, .external_lex_state = 5}, + [3162] = {.lex_state = 13, .external_lex_state = 5}, [3163] = {.lex_state = 151, .external_lex_state = 5}, [3164] = {.lex_state = 151, .external_lex_state = 5}, - [3165] = {.lex_state = 14, .external_lex_state = 6}, - [3166] = {.lex_state = 151, .external_lex_state = 6}, - [3167] = {.lex_state = 15, .external_lex_state = 2}, + [3165] = {.lex_state = 151, .external_lex_state = 5}, + [3166] = {.lex_state = 151, .external_lex_state = 5}, + [3167] = {.lex_state = 151, .external_lex_state = 2}, [3168] = {.lex_state = 151, .external_lex_state = 5}, [3169] = {.lex_state = 151, .external_lex_state = 5}, [3170] = {.lex_state = 151, .external_lex_state = 5}, @@ -17189,215 +17213,215 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3175] = {.lex_state = 151, .external_lex_state = 5}, [3176] = {.lex_state = 151, .external_lex_state = 5}, [3177] = {.lex_state = 151, .external_lex_state = 5}, - [3178] = {.lex_state = 13, .external_lex_state = 6}, - [3179] = {.lex_state = 13, .external_lex_state = 6}, + [3178] = {.lex_state = 151, .external_lex_state = 6}, + [3179] = {.lex_state = 151, .external_lex_state = 6}, [3180] = {.lex_state = 151, .external_lex_state = 5}, - [3181] = {.lex_state = 151, .external_lex_state = 5}, - [3182] = {.lex_state = 151, .external_lex_state = 2}, - [3183] = {.lex_state = 14, .external_lex_state = 6}, - [3184] = {.lex_state = 151, .external_lex_state = 5}, - [3185] = {.lex_state = 151, .external_lex_state = 5}, + [3181] = {.lex_state = 13, .external_lex_state = 5}, + [3182] = {.lex_state = 15, .external_lex_state = 6}, + [3183] = {.lex_state = 13, .external_lex_state = 5}, + [3184] = {.lex_state = 13, .external_lex_state = 2}, + [3185] = {.lex_state = 15, .external_lex_state = 6}, [3186] = {.lex_state = 151, .external_lex_state = 5}, [3187] = {.lex_state = 151, .external_lex_state = 5}, [3188] = {.lex_state = 151, .external_lex_state = 5}, [3189] = {.lex_state = 151, .external_lex_state = 5}, [3190] = {.lex_state = 151, .external_lex_state = 5}, - [3191] = {.lex_state = 13, .external_lex_state = 6}, - [3192] = {.lex_state = 151, .external_lex_state = 6}, - [3193] = {.lex_state = 14, .external_lex_state = 6}, - [3194] = {.lex_state = 151, .external_lex_state = 6}, - [3195] = {.lex_state = 14, .external_lex_state = 6}, + [3191] = {.lex_state = 151, .external_lex_state = 5}, + [3192] = {.lex_state = 151, .external_lex_state = 5}, + [3193] = {.lex_state = 151, .external_lex_state = 5}, + [3194] = {.lex_state = 151, .external_lex_state = 5}, + [3195] = {.lex_state = 151, .external_lex_state = 5}, [3196] = {.lex_state = 151, .external_lex_state = 5}, - [3197] = {.lex_state = 15, .external_lex_state = 5}, - [3198] = {.lex_state = 151, .external_lex_state = 6}, - [3199] = {.lex_state = 151, .external_lex_state = 5}, - [3200] = {.lex_state = 151, .external_lex_state = 5}, + [3197] = {.lex_state = 151, .external_lex_state = 5}, + [3198] = {.lex_state = 14, .external_lex_state = 6}, + [3199] = {.lex_state = 15, .external_lex_state = 6}, + [3200] = {.lex_state = 15, .external_lex_state = 6}, [3201] = {.lex_state = 151, .external_lex_state = 5}, - [3202] = {.lex_state = 151, .external_lex_state = 5}, - [3203] = {.lex_state = 14, .external_lex_state = 6}, + [3202] = {.lex_state = 15, .external_lex_state = 6}, + [3203] = {.lex_state = 151, .external_lex_state = 5}, [3204] = {.lex_state = 151, .external_lex_state = 5}, - [3205] = {.lex_state = 14, .external_lex_state = 6}, + [3205] = {.lex_state = 151, .external_lex_state = 5}, [3206] = {.lex_state = 151, .external_lex_state = 5}, [3207] = {.lex_state = 151, .external_lex_state = 5}, [3208] = {.lex_state = 151, .external_lex_state = 5}, - [3209] = {.lex_state = 14, .external_lex_state = 6}, + [3209] = {.lex_state = 15, .external_lex_state = 6}, [3210] = {.lex_state = 151, .external_lex_state = 5}, [3211] = {.lex_state = 151, .external_lex_state = 5}, [3212] = {.lex_state = 151, .external_lex_state = 5}, - [3213] = {.lex_state = 13, .external_lex_state = 2}, - [3214] = {.lex_state = 13, .external_lex_state = 2}, - [3215] = {.lex_state = 151, .external_lex_state = 2}, - [3216] = {.lex_state = 151, .external_lex_state = 6}, - [3217] = {.lex_state = 13, .external_lex_state = 2}, - [3218] = {.lex_state = 26, .external_lex_state = 2}, - [3219] = {.lex_state = 151, .external_lex_state = 2}, - [3220] = {.lex_state = 151, .external_lex_state = 2}, + [3213] = {.lex_state = 151, .external_lex_state = 5}, + [3214] = {.lex_state = 151, .external_lex_state = 5}, + [3215] = {.lex_state = 26, .external_lex_state = 2}, + [3216] = {.lex_state = 26, .external_lex_state = 2}, + [3217] = {.lex_state = 26, .external_lex_state = 2}, + [3218] = {.lex_state = 151, .external_lex_state = 2}, + [3219] = {.lex_state = 14, .external_lex_state = 2}, + [3220] = {.lex_state = 14, .external_lex_state = 2}, [3221] = {.lex_state = 151, .external_lex_state = 6}, - [3222] = {.lex_state = 151, .external_lex_state = 6}, - [3223] = {.lex_state = 13, .external_lex_state = 2}, - [3224] = {.lex_state = 151, .external_lex_state = 2}, - [3225] = {.lex_state = 13, .external_lex_state = 2}, - [3226] = {.lex_state = 15, .external_lex_state = 2}, + [3222] = {.lex_state = 14, .external_lex_state = 2}, + [3223] = {.lex_state = 151, .external_lex_state = 6}, + [3224] = {.lex_state = 14, .external_lex_state = 2}, + [3225] = {.lex_state = 151, .external_lex_state = 6}, + [3226] = {.lex_state = 151, .external_lex_state = 5}, [3227] = {.lex_state = 151, .external_lex_state = 6}, - [3228] = {.lex_state = 26, .external_lex_state = 2}, + [3228] = {.lex_state = 151, .external_lex_state = 2}, [3229] = {.lex_state = 151, .external_lex_state = 5}, - [3230] = {.lex_state = 15, .external_lex_state = 5}, - [3231] = {.lex_state = 13, .external_lex_state = 2}, + [3230] = {.lex_state = 13, .external_lex_state = 5}, + [3231] = {.lex_state = 14, .external_lex_state = 2}, [3232] = {.lex_state = 151, .external_lex_state = 2}, [3233] = {.lex_state = 151, .external_lex_state = 5}, - [3234] = {.lex_state = 151, .external_lex_state = 6}, - [3235] = {.lex_state = 13, .external_lex_state = 2}, - [3236] = {.lex_state = 13, .external_lex_state = 2}, + [3234] = {.lex_state = 14, .external_lex_state = 2}, + [3235] = {.lex_state = 14, .external_lex_state = 2}, + [3236] = {.lex_state = 151, .external_lex_state = 2}, [3237] = {.lex_state = 151, .external_lex_state = 2}, - [3238] = {.lex_state = 151, .external_lex_state = 5}, - [3239] = {.lex_state = 13, .external_lex_state = 2}, - [3240] = {.lex_state = 26, .external_lex_state = 2}, + [3238] = {.lex_state = 151, .external_lex_state = 6}, + [3239] = {.lex_state = 151, .external_lex_state = 6}, + [3240] = {.lex_state = 14, .external_lex_state = 2}, [3241] = {.lex_state = 151, .external_lex_state = 6}, - [3242] = {.lex_state = 13, .external_lex_state = 2}, - [3243] = {.lex_state = 26, .external_lex_state = 2}, - [3244] = {.lex_state = 151, .external_lex_state = 5}, - [3245] = {.lex_state = 151, .external_lex_state = 6}, - [3246] = {.lex_state = 13, .external_lex_state = 2}, - [3247] = {.lex_state = 151, .external_lex_state = 6}, - [3248] = {.lex_state = 13, .external_lex_state = 2}, - [3249] = {.lex_state = 151, .external_lex_state = 6}, - [3250] = {.lex_state = 26, .external_lex_state = 2}, - [3251] = {.lex_state = 26, .external_lex_state = 2}, + [3242] = {.lex_state = 26, .external_lex_state = 2}, + [3243] = {.lex_state = 151, .external_lex_state = 6}, + [3244] = {.lex_state = 14, .external_lex_state = 2}, + [3245] = {.lex_state = 151, .external_lex_state = 2}, + [3246] = {.lex_state = 14, .external_lex_state = 2}, + [3247] = {.lex_state = 14, .external_lex_state = 2}, + [3248] = {.lex_state = 151, .external_lex_state = 5}, + [3249] = {.lex_state = 13, .external_lex_state = 2}, + [3250] = {.lex_state = 14, .external_lex_state = 2}, + [3251] = {.lex_state = 151, .external_lex_state = 6}, [3252] = {.lex_state = 26, .external_lex_state = 2}, [3253] = {.lex_state = 26, .external_lex_state = 2}, - [3254] = {.lex_state = 26, .external_lex_state = 2}, - [3255] = {.lex_state = 26, .external_lex_state = 2}, - [3256] = {.lex_state = 26, .external_lex_state = 2}, - [3257] = {.lex_state = 16, .external_lex_state = 2}, - [3258] = {.lex_state = 13, .external_lex_state = 2}, - [3259] = {.lex_state = 26, .external_lex_state = 2}, - [3260] = {.lex_state = 26, .external_lex_state = 2}, + [3254] = {.lex_state = 16, .external_lex_state = 2}, + [3255] = {.lex_state = 151, .external_lex_state = 5}, + [3256] = {.lex_state = 151, .external_lex_state = 6}, + [3257] = {.lex_state = 151, .external_lex_state = 6}, + [3258] = {.lex_state = 151, .external_lex_state = 5}, + [3259] = {.lex_state = 16, .external_lex_state = 2}, + [3260] = {.lex_state = 151, .external_lex_state = 6}, [3261] = {.lex_state = 16, .external_lex_state = 2}, - [3262] = {.lex_state = 151, .external_lex_state = 6}, - [3263] = {.lex_state = 151, .external_lex_state = 6}, - [3264] = {.lex_state = 151, .external_lex_state = 2}, + [3262] = {.lex_state = 151, .external_lex_state = 5}, + [3263] = {.lex_state = 16, .external_lex_state = 2}, + [3264] = {.lex_state = 16, .external_lex_state = 2}, [3265] = {.lex_state = 151, .external_lex_state = 6}, - [3266] = {.lex_state = 151, .external_lex_state = 6}, - [3267] = {.lex_state = 151, .external_lex_state = 6}, + [3266] = {.lex_state = 16, .external_lex_state = 2}, + [3267] = {.lex_state = 13, .external_lex_state = 2}, [3268] = {.lex_state = 151, .external_lex_state = 6}, - [3269] = {.lex_state = 26, .external_lex_state = 2}, - [3270] = {.lex_state = 151, .external_lex_state = 5}, - [3271] = {.lex_state = 26, .external_lex_state = 2}, - [3272] = {.lex_state = 26, .external_lex_state = 2}, + [3269] = {.lex_state = 151, .external_lex_state = 6}, + [3270] = {.lex_state = 26, .external_lex_state = 2}, + [3271] = {.lex_state = 151, .external_lex_state = 6}, + [3272] = {.lex_state = 151, .external_lex_state = 6}, [3273] = {.lex_state = 26, .external_lex_state = 2}, - [3274] = {.lex_state = 26, .external_lex_state = 2}, - [3275] = {.lex_state = 26, .external_lex_state = 2}, - [3276] = {.lex_state = 26, .external_lex_state = 2}, - [3277] = {.lex_state = 16, .external_lex_state = 2}, - [3278] = {.lex_state = 26, .external_lex_state = 2}, + [3274] = {.lex_state = 151, .external_lex_state = 5}, + [3275] = {.lex_state = 14, .external_lex_state = 2}, + [3276] = {.lex_state = 151, .external_lex_state = 6}, + [3277] = {.lex_state = 151, .external_lex_state = 5}, + [3278] = {.lex_state = 151, .external_lex_state = 2}, [3279] = {.lex_state = 26, .external_lex_state = 2}, - [3280] = {.lex_state = 16, .external_lex_state = 2}, - [3281] = {.lex_state = 151, .external_lex_state = 5}, + [3280] = {.lex_state = 151, .external_lex_state = 6}, + [3281] = {.lex_state = 151, .external_lex_state = 6}, [3282] = {.lex_state = 151, .external_lex_state = 6}, - [3283] = {.lex_state = 151, .external_lex_state = 6}, + [3283] = {.lex_state = 13, .external_lex_state = 2}, [3284] = {.lex_state = 151, .external_lex_state = 6}, - [3285] = {.lex_state = 151, .external_lex_state = 2}, - [3286] = {.lex_state = 151, .external_lex_state = 6}, - [3287] = {.lex_state = 16, .external_lex_state = 2}, - [3288] = {.lex_state = 151, .external_lex_state = 6}, - [3289] = {.lex_state = 16, .external_lex_state = 2}, - [3290] = {.lex_state = 151, .external_lex_state = 5}, - [3291] = {.lex_state = 26, .external_lex_state = 2}, - [3292] = {.lex_state = 26, .external_lex_state = 2}, - [3293] = {.lex_state = 13, .external_lex_state = 2}, - [3294] = {.lex_state = 15, .external_lex_state = 2}, - [3295] = {.lex_state = 151, .external_lex_state = 5}, + [3285] = {.lex_state = 151, .external_lex_state = 6}, + [3286] = {.lex_state = 26, .external_lex_state = 2}, + [3287] = {.lex_state = 26, .external_lex_state = 2}, + [3288] = {.lex_state = 151, .external_lex_state = 5}, + [3289] = {.lex_state = 26, .external_lex_state = 2}, + [3290] = {.lex_state = 16, .external_lex_state = 2}, + [3291] = {.lex_state = 151, .external_lex_state = 5}, + [3292] = {.lex_state = 151, .external_lex_state = 6}, + [3293] = {.lex_state = 151, .external_lex_state = 5}, + [3294] = {.lex_state = 14, .external_lex_state = 2}, + [3295] = {.lex_state = 151, .external_lex_state = 2}, [3296] = {.lex_state = 151, .external_lex_state = 5}, [3297] = {.lex_state = 151, .external_lex_state = 5}, - [3298] = {.lex_state = 151, .external_lex_state = 5}, - [3299] = {.lex_state = 16, .external_lex_state = 2}, - [3300] = {.lex_state = 26, .external_lex_state = 2}, - [3301] = {.lex_state = 16, .external_lex_state = 2}, - [3302] = {.lex_state = 26, .external_lex_state = 2}, - [3303] = {.lex_state = 151, .external_lex_state = 2}, + [3298] = {.lex_state = 14, .external_lex_state = 2}, + [3299] = {.lex_state = 151, .external_lex_state = 6}, + [3300] = {.lex_state = 151, .external_lex_state = 6}, + [3301] = {.lex_state = 151, .external_lex_state = 6}, + [3302] = {.lex_state = 151, .external_lex_state = 5}, + [3303] = {.lex_state = 16, .external_lex_state = 2}, [3304] = {.lex_state = 26, .external_lex_state = 2}, - [3305] = {.lex_state = 16, .external_lex_state = 2}, - [3306] = {.lex_state = 151, .external_lex_state = 6}, - [3307] = {.lex_state = 151, .external_lex_state = 5}, - [3308] = {.lex_state = 151, .external_lex_state = 6}, - [3309] = {.lex_state = 26, .external_lex_state = 2}, - [3310] = {.lex_state = 151, .external_lex_state = 5}, - [3311] = {.lex_state = 151, .external_lex_state = 5}, - [3312] = {.lex_state = 151, .external_lex_state = 5}, - [3313] = {.lex_state = 13, .external_lex_state = 2}, - [3314] = {.lex_state = 151, .external_lex_state = 6}, - [3315] = {.lex_state = 151, .external_lex_state = 6}, - [3316] = {.lex_state = 151, .external_lex_state = 2}, - [3317] = {.lex_state = 15, .external_lex_state = 2}, - [3318] = {.lex_state = 151, .external_lex_state = 5}, - [3319] = {.lex_state = 151, .external_lex_state = 6}, - [3320] = {.lex_state = 151, .external_lex_state = 5}, - [3321] = {.lex_state = 151, .external_lex_state = 6}, - [3322] = {.lex_state = 151, .external_lex_state = 6}, - [3323] = {.lex_state = 151, .external_lex_state = 6}, - [3324] = {.lex_state = 15, .external_lex_state = 2}, + [3305] = {.lex_state = 151, .external_lex_state = 5}, + [3306] = {.lex_state = 16, .external_lex_state = 2}, + [3307] = {.lex_state = 151, .external_lex_state = 6}, + [3308] = {.lex_state = 13, .external_lex_state = 2}, + [3309] = {.lex_state = 151, .external_lex_state = 5}, + [3310] = {.lex_state = 26, .external_lex_state = 2}, + [3311] = {.lex_state = 151, .external_lex_state = 6}, + [3312] = {.lex_state = 26, .external_lex_state = 2}, + [3313] = {.lex_state = 151, .external_lex_state = 6}, + [3314] = {.lex_state = 151, .external_lex_state = 5}, + [3315] = {.lex_state = 13, .external_lex_state = 2}, + [3316] = {.lex_state = 151, .external_lex_state = 5}, + [3317] = {.lex_state = 151, .external_lex_state = 6}, + [3318] = {.lex_state = 16, .external_lex_state = 2}, + [3319] = {.lex_state = 13, .external_lex_state = 2}, + [3320] = {.lex_state = 151, .external_lex_state = 6}, + [3321] = {.lex_state = 151, .external_lex_state = 5}, + [3322] = {.lex_state = 14, .external_lex_state = 2}, + [3323] = {.lex_state = 151, .external_lex_state = 5}, + [3324] = {.lex_state = 151, .external_lex_state = 5}, [3325] = {.lex_state = 151, .external_lex_state = 6}, - [3326] = {.lex_state = 26, .external_lex_state = 2}, + [3326] = {.lex_state = 151, .external_lex_state = 5}, [3327] = {.lex_state = 151, .external_lex_state = 6}, - [3328] = {.lex_state = 151, .external_lex_state = 6}, + [3328] = {.lex_state = 16, .external_lex_state = 2}, [3329] = {.lex_state = 151, .external_lex_state = 6}, [3330] = {.lex_state = 151, .external_lex_state = 6}, [3331] = {.lex_state = 151, .external_lex_state = 6}, - [3332] = {.lex_state = 151, .external_lex_state = 6}, - [3333] = {.lex_state = 151, .external_lex_state = 6}, - [3334] = {.lex_state = 151, .external_lex_state = 6}, + [3332] = {.lex_state = 151, .external_lex_state = 2}, + [3333] = {.lex_state = 151, .external_lex_state = 2}, + [3334] = {.lex_state = 16, .external_lex_state = 2}, [3335] = {.lex_state = 151, .external_lex_state = 6}, - [3336] = {.lex_state = 151, .external_lex_state = 5}, - [3337] = {.lex_state = 151, .external_lex_state = 5}, - [3338] = {.lex_state = 16, .external_lex_state = 2}, - [3339] = {.lex_state = 13, .external_lex_state = 2}, - [3340] = {.lex_state = 16, .external_lex_state = 2}, - [3341] = {.lex_state = 151, .external_lex_state = 6}, - [3342] = {.lex_state = 151, .external_lex_state = 5}, + [3336] = {.lex_state = 151, .external_lex_state = 6}, + [3337] = {.lex_state = 151, .external_lex_state = 6}, + [3338] = {.lex_state = 151, .external_lex_state = 6}, + [3339] = {.lex_state = 151, .external_lex_state = 5}, + [3340] = {.lex_state = 151, .external_lex_state = 5}, + [3341] = {.lex_state = 14, .external_lex_state = 2}, + [3342] = {.lex_state = 151, .external_lex_state = 2}, [3343] = {.lex_state = 151, .external_lex_state = 6}, - [3344] = {.lex_state = 16, .external_lex_state = 2}, - [3345] = {.lex_state = 151, .external_lex_state = 2}, + [3344] = {.lex_state = 151, .external_lex_state = 6}, + [3345] = {.lex_state = 26, .external_lex_state = 2}, [3346] = {.lex_state = 151, .external_lex_state = 6}, - [3347] = {.lex_state = 13, .external_lex_state = 2}, - [3348] = {.lex_state = 151, .external_lex_state = 2}, - [3349] = {.lex_state = 13, .external_lex_state = 2}, - [3350] = {.lex_state = 26, .external_lex_state = 2}, + [3347] = {.lex_state = 151, .external_lex_state = 2}, + [3348] = {.lex_state = 14, .external_lex_state = 2}, + [3349] = {.lex_state = 26, .external_lex_state = 2}, + [3350] = {.lex_state = 14, .external_lex_state = 2}, [3351] = {.lex_state = 151, .external_lex_state = 2}, - [3352] = {.lex_state = 151, .external_lex_state = 6}, - [3353] = {.lex_state = 13, .external_lex_state = 2}, - [3354] = {.lex_state = 151, .external_lex_state = 6}, - [3355] = {.lex_state = 13, .external_lex_state = 2}, - [3356] = {.lex_state = 151, .external_lex_state = 6}, - [3357] = {.lex_state = 151, .external_lex_state = 6}, + [3352] = {.lex_state = 26, .external_lex_state = 2}, + [3353] = {.lex_state = 26, .external_lex_state = 2}, + [3354] = {.lex_state = 151, .external_lex_state = 5}, + [3355] = {.lex_state = 14, .external_lex_state = 2}, + [3356] = {.lex_state = 26, .external_lex_state = 2}, + [3357] = {.lex_state = 26, .external_lex_state = 2}, [3358] = {.lex_state = 151, .external_lex_state = 5}, - [3359] = {.lex_state = 151, .external_lex_state = 5}, - [3360] = {.lex_state = 151, .external_lex_state = 5}, - [3361] = {.lex_state = 151, .external_lex_state = 6}, + [3359] = {.lex_state = 151, .external_lex_state = 6}, + [3360] = {.lex_state = 26, .external_lex_state = 2}, + [3361] = {.lex_state = 151, .external_lex_state = 2}, [3362] = {.lex_state = 26, .external_lex_state = 2}, - [3363] = {.lex_state = 151, .external_lex_state = 6}, + [3363] = {.lex_state = 14, .external_lex_state = 2}, [3364] = {.lex_state = 151, .external_lex_state = 6}, - [3365] = {.lex_state = 13, .external_lex_state = 2}, - [3366] = {.lex_state = 151, .external_lex_state = 6}, - [3367] = {.lex_state = 13, .external_lex_state = 2}, - [3368] = {.lex_state = 13, .external_lex_state = 2}, - [3369] = {.lex_state = 151, .external_lex_state = 6}, - [3370] = {.lex_state = 151, .external_lex_state = 2}, - [3371] = {.lex_state = 151, .external_lex_state = 2}, - [3372] = {.lex_state = 15, .external_lex_state = 2}, - [3373] = {.lex_state = 13, .external_lex_state = 2}, - [3374] = {.lex_state = 15, .external_lex_state = 2}, - [3375] = {.lex_state = 26, .external_lex_state = 2}, + [3365] = {.lex_state = 151, .external_lex_state = 5}, + [3366] = {.lex_state = 151, .external_lex_state = 5}, + [3367] = {.lex_state = 14, .external_lex_state = 2}, + [3368] = {.lex_state = 26, .external_lex_state = 2}, + [3369] = {.lex_state = 26, .external_lex_state = 2}, + [3370] = {.lex_state = 151, .external_lex_state = 5}, + [3371] = {.lex_state = 151, .external_lex_state = 5}, + [3372] = {.lex_state = 151, .external_lex_state = 5}, + [3373] = {.lex_state = 26, .external_lex_state = 2}, + [3374] = {.lex_state = 151, .external_lex_state = 5}, + [3375] = {.lex_state = 151, .external_lex_state = 5}, [3376] = {.lex_state = 26, .external_lex_state = 2}, - [3377] = {.lex_state = 151, .external_lex_state = 5}, + [3377] = {.lex_state = 26, .external_lex_state = 2}, [3378] = {.lex_state = 26, .external_lex_state = 2}, [3379] = {.lex_state = 26, .external_lex_state = 2}, [3380] = {.lex_state = 26, .external_lex_state = 2}, - [3381] = {.lex_state = 26, .external_lex_state = 2}, + [3381] = {.lex_state = 151, .external_lex_state = 5}, [3382] = {.lex_state = 151, .external_lex_state = 5}, - [3383] = {.lex_state = 26, .external_lex_state = 2}, - [3384] = {.lex_state = 151, .external_lex_state = 5}, - [3385] = {.lex_state = 13, .external_lex_state = 2}, - [3386] = {.lex_state = 151, .external_lex_state = 5}, + [3383] = {.lex_state = 151, .external_lex_state = 5}, + [3384] = {.lex_state = 14, .external_lex_state = 2}, + [3385] = {.lex_state = 151, .external_lex_state = 6}, + [3386] = {.lex_state = 26, .external_lex_state = 2}, [3387] = {.lex_state = 151, .external_lex_state = 5}, [3388] = {.lex_state = 151, .external_lex_state = 5}, [3389] = {.lex_state = 151, .external_lex_state = 5}, @@ -17405,183 +17429,183 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3391] = {.lex_state = 151, .external_lex_state = 5}, [3392] = {.lex_state = 151, .external_lex_state = 5}, [3393] = {.lex_state = 151, .external_lex_state = 5}, - [3394] = {.lex_state = 16, .external_lex_state = 2}, - [3395] = {.lex_state = 151, .external_lex_state = 6}, + [3394] = {.lex_state = 151, .external_lex_state = 6}, + [3395] = {.lex_state = 16, .external_lex_state = 2}, [3396] = {.lex_state = 151, .external_lex_state = 5}, - [3397] = {.lex_state = 151, .external_lex_state = 5}, - [3398] = {.lex_state = 151, .external_lex_state = 5}, + [3397] = {.lex_state = 13, .external_lex_state = 2}, + [3398] = {.lex_state = 14, .external_lex_state = 2}, [3399] = {.lex_state = 151, .external_lex_state = 6}, - [3400] = {.lex_state = 13, .external_lex_state = 2}, - [3401] = {.lex_state = 13, .external_lex_state = 2}, - [3402] = {.lex_state = 13, .external_lex_state = 2}, - [3403] = {.lex_state = 151, .external_lex_state = 6}, - [3404] = {.lex_state = 151, .external_lex_state = 5}, - [3405] = {.lex_state = 26, .external_lex_state = 2}, + [3400] = {.lex_state = 14, .external_lex_state = 2}, + [3401] = {.lex_state = 14, .external_lex_state = 2}, + [3402] = {.lex_state = 151, .external_lex_state = 5}, + [3403] = {.lex_state = 14, .external_lex_state = 2}, + [3404] = {.lex_state = 151, .external_lex_state = 6}, + [3405] = {.lex_state = 151, .external_lex_state = 6}, [3406] = {.lex_state = 26, .external_lex_state = 2}, - [3407] = {.lex_state = 16, .external_lex_state = 2}, - [3408] = {.lex_state = 151, .external_lex_state = 6}, - [3409] = {.lex_state = 13, .external_lex_state = 2}, - [3410] = {.lex_state = 151, .external_lex_state = 2}, - [3411] = {.lex_state = 151, .external_lex_state = 6}, - [3412] = {.lex_state = 13, .external_lex_state = 2}, - [3413] = {.lex_state = 16, .external_lex_state = 2}, - [3414] = {.lex_state = 151, .external_lex_state = 5}, + [3407] = {.lex_state = 151, .external_lex_state = 5}, + [3408] = {.lex_state = 26, .external_lex_state = 2}, + [3409] = {.lex_state = 26, .external_lex_state = 2}, + [3410] = {.lex_state = 16, .external_lex_state = 2}, + [3411] = {.lex_state = 16, .external_lex_state = 2}, + [3412] = {.lex_state = 151, .external_lex_state = 5}, + [3413] = {.lex_state = 151, .external_lex_state = 5}, + [3414] = {.lex_state = 14, .external_lex_state = 2}, [3415] = {.lex_state = 151, .external_lex_state = 6}, - [3416] = {.lex_state = 15, .external_lex_state = 2}, - [3417] = {.lex_state = 151, .external_lex_state = 5}, - [3418] = {.lex_state = 151, .external_lex_state = 5}, - [3419] = {.lex_state = 151, .external_lex_state = 5}, - [3420] = {.lex_state = 15, .external_lex_state = 2}, + [3416] = {.lex_state = 151, .external_lex_state = 6}, + [3417] = {.lex_state = 151, .external_lex_state = 6}, + [3418] = {.lex_state = 26, .external_lex_state = 2}, + [3419] = {.lex_state = 151, .external_lex_state = 6}, + [3420] = {.lex_state = 151, .external_lex_state = 5}, [3421] = {.lex_state = 151, .external_lex_state = 6}, - [3422] = {.lex_state = 15, .external_lex_state = 2}, - [3423] = {.lex_state = 151, .external_lex_state = 6}, - [3424] = {.lex_state = 151, .external_lex_state = 5}, - [3425] = {.lex_state = 151, .external_lex_state = 5}, + [3422] = {.lex_state = 14, .external_lex_state = 2}, + [3423] = {.lex_state = 151, .external_lex_state = 2}, + [3424] = {.lex_state = 26, .external_lex_state = 2}, + [3425] = {.lex_state = 151, .external_lex_state = 6}, [3426] = {.lex_state = 151, .external_lex_state = 6}, - [3427] = {.lex_state = 151, .external_lex_state = 5}, + [3427] = {.lex_state = 151, .external_lex_state = 6}, [3428] = {.lex_state = 151, .external_lex_state = 6}, - [3429] = {.lex_state = 151, .external_lex_state = 5}, - [3430] = {.lex_state = 151, .external_lex_state = 6}, + [3429] = {.lex_state = 151, .external_lex_state = 6}, + [3430] = {.lex_state = 26, .external_lex_state = 2}, [3431] = {.lex_state = 151, .external_lex_state = 6}, - [3432] = {.lex_state = 151, .external_lex_state = 6}, - [3433] = {.lex_state = 151, .external_lex_state = 6}, - [3434] = {.lex_state = 151, .external_lex_state = 5}, - [3435] = {.lex_state = 151, .external_lex_state = 5}, - [3436] = {.lex_state = 151, .external_lex_state = 5}, - [3437] = {.lex_state = 151, .external_lex_state = 5}, - [3438] = {.lex_state = 16, .external_lex_state = 2}, - [3439] = {.lex_state = 151, .external_lex_state = 5}, - [3440] = {.lex_state = 151, .external_lex_state = 5}, - [3441] = {.lex_state = 26, .external_lex_state = 2}, - [3442] = {.lex_state = 13, .external_lex_state = 2}, + [3432] = {.lex_state = 26, .external_lex_state = 2}, + [3433] = {.lex_state = 14, .external_lex_state = 2}, + [3434] = {.lex_state = 151, .external_lex_state = 6}, + [3435] = {.lex_state = 26, .external_lex_state = 2}, + [3436] = {.lex_state = 14, .external_lex_state = 2}, + [3437] = {.lex_state = 13, .external_lex_state = 2}, + [3438] = {.lex_state = 151, .external_lex_state = 2}, + [3439] = {.lex_state = 14, .external_lex_state = 2}, + [3440] = {.lex_state = 151, .external_lex_state = 6}, + [3441] = {.lex_state = 151, .external_lex_state = 5}, + [3442] = {.lex_state = 151, .external_lex_state = 5}, [3443] = {.lex_state = 151, .external_lex_state = 5}, - [3444] = {.lex_state = 151, .external_lex_state = 5}, - [3445] = {.lex_state = 151, .external_lex_state = 5}, - [3446] = {.lex_state = 13, .external_lex_state = 2}, - [3447] = {.lex_state = 26, .external_lex_state = 2}, - [3448] = {.lex_state = 14, .external_lex_state = 2}, + [3444] = {.lex_state = 13, .external_lex_state = 2}, + [3445] = {.lex_state = 16, .external_lex_state = 2}, + [3446] = {.lex_state = 151, .external_lex_state = 5}, + [3447] = {.lex_state = 151, .external_lex_state = 5}, + [3448] = {.lex_state = 26, .external_lex_state = 2}, [3449] = {.lex_state = 17, .external_lex_state = 2}, - [3450] = {.lex_state = 151, .external_lex_state = 2}, - [3451] = {.lex_state = 26, .external_lex_state = 2}, - [3452] = {.lex_state = 26, .external_lex_state = 2}, - [3453] = {.lex_state = 26, .external_lex_state = 2}, - [3454] = {.lex_state = 151, .external_lex_state = 5}, - [3455] = {.lex_state = 151, .external_lex_state = 5}, + [3450] = {.lex_state = 24, .external_lex_state = 7}, + [3451] = {.lex_state = 151, .external_lex_state = 2}, + [3452] = {.lex_state = 17, .external_lex_state = 2}, + [3453] = {.lex_state = 151, .external_lex_state = 5}, + [3454] = {.lex_state = 151, .external_lex_state = 6}, + [3455] = {.lex_state = 151, .external_lex_state = 2}, [3456] = {.lex_state = 151, .external_lex_state = 5}, - [3457] = {.lex_state = 26, .external_lex_state = 2}, - [3458] = {.lex_state = 26, .external_lex_state = 2}, + [3457] = {.lex_state = 151, .external_lex_state = 2}, + [3458] = {.lex_state = 24, .external_lex_state = 7}, [3459] = {.lex_state = 151, .external_lex_state = 2}, - [3460] = {.lex_state = 26, .external_lex_state = 2}, - [3461] = {.lex_state = 24, .external_lex_state = 7}, - [3462] = {.lex_state = 17, .external_lex_state = 2}, - [3463] = {.lex_state = 151, .external_lex_state = 5}, - [3464] = {.lex_state = 24, .external_lex_state = 7}, - [3465] = {.lex_state = 24, .external_lex_state = 7}, - [3466] = {.lex_state = 26, .external_lex_state = 2}, - [3467] = {.lex_state = 151, .external_lex_state = 2}, + [3460] = {.lex_state = 24, .external_lex_state = 7}, + [3461] = {.lex_state = 151, .external_lex_state = 2}, + [3462] = {.lex_state = 26, .external_lex_state = 2}, + [3463] = {.lex_state = 151, .external_lex_state = 2}, + [3464] = {.lex_state = 26, .external_lex_state = 2}, + [3465] = {.lex_state = 26, .external_lex_state = 2}, + [3466] = {.lex_state = 151, .external_lex_state = 2}, + [3467] = {.lex_state = 24, .external_lex_state = 7}, [3468] = {.lex_state = 24, .external_lex_state = 7}, - [3469] = {.lex_state = 151, .external_lex_state = 2}, + [3469] = {.lex_state = 151, .external_lex_state = 5}, [3470] = {.lex_state = 151, .external_lex_state = 2}, - [3471] = {.lex_state = 24, .external_lex_state = 7}, + [3471] = {.lex_state = 151, .external_lex_state = 2}, [3472] = {.lex_state = 151, .external_lex_state = 2}, - [3473] = {.lex_state = 24, .external_lex_state = 7}, - [3474] = {.lex_state = 151, .external_lex_state = 2}, - [3475] = {.lex_state = 24, .external_lex_state = 7}, - [3476] = {.lex_state = 151, .external_lex_state = 6}, - [3477] = {.lex_state = 14, .external_lex_state = 2}, - [3478] = {.lex_state = 151, .external_lex_state = 5}, - [3479] = {.lex_state = 24, .external_lex_state = 7}, - [3480] = {.lex_state = 26, .external_lex_state = 2}, - [3481] = {.lex_state = 151, .external_lex_state = 5}, - [3482] = {.lex_state = 26, .external_lex_state = 2}, - [3483] = {.lex_state = 151, .external_lex_state = 2}, - [3484] = {.lex_state = 14, .external_lex_state = 2}, - [3485] = {.lex_state = 151, .external_lex_state = 2}, - [3486] = {.lex_state = 151, .external_lex_state = 2}, - [3487] = {.lex_state = 151, .external_lex_state = 2}, + [3473] = {.lex_state = 26, .external_lex_state = 2}, + [3474] = {.lex_state = 26, .external_lex_state = 2}, + [3475] = {.lex_state = 151, .external_lex_state = 5}, + [3476] = {.lex_state = 15, .external_lex_state = 2}, + [3477] = {.lex_state = 24, .external_lex_state = 7}, + [3478] = {.lex_state = 24, .external_lex_state = 7}, + [3479] = {.lex_state = 15, .external_lex_state = 2}, + [3480] = {.lex_state = 15, .external_lex_state = 2}, + [3481] = {.lex_state = 26, .external_lex_state = 2}, + [3482] = {.lex_state = 151, .external_lex_state = 5}, + [3483] = {.lex_state = 151, .external_lex_state = 5}, + [3484] = {.lex_state = 26, .external_lex_state = 2}, + [3485] = {.lex_state = 26, .external_lex_state = 2}, + [3486] = {.lex_state = 24, .external_lex_state = 7}, + [3487] = {.lex_state = 26, .external_lex_state = 2}, [3488] = {.lex_state = 151, .external_lex_state = 2}, [3489] = {.lex_state = 26, .external_lex_state = 2}, - [3490] = {.lex_state = 151, .external_lex_state = 5}, - [3491] = {.lex_state = 151, .external_lex_state = 5}, - [3492] = {.lex_state = 151, .external_lex_state = 2}, - [3493] = {.lex_state = 151, .external_lex_state = 5}, + [3490] = {.lex_state = 26, .external_lex_state = 2}, + [3491] = {.lex_state = 151, .external_lex_state = 2}, + [3492] = {.lex_state = 151, .external_lex_state = 5}, + [3493] = {.lex_state = 151, .external_lex_state = 2}, [3494] = {.lex_state = 151, .external_lex_state = 5}, - [3495] = {.lex_state = 151, .external_lex_state = 2}, - [3496] = {.lex_state = 26, .external_lex_state = 2}, - [3497] = {.lex_state = 151, .external_lex_state = 2}, - [3498] = {.lex_state = 15, .external_lex_state = 2}, + [3495] = {.lex_state = 151, .external_lex_state = 5}, + [3496] = {.lex_state = 151, .external_lex_state = 5}, + [3497] = {.lex_state = 151, .external_lex_state = 5}, + [3498] = {.lex_state = 151, .external_lex_state = 5}, [3499] = {.lex_state = 151, .external_lex_state = 5}, - [3500] = {.lex_state = 151, .external_lex_state = 2}, - [3501] = {.lex_state = 151, .external_lex_state = 5}, + [3500] = {.lex_state = 151, .external_lex_state = 5}, + [3501] = {.lex_state = 151, .external_lex_state = 2}, [3502] = {.lex_state = 151, .external_lex_state = 5}, [3503] = {.lex_state = 151, .external_lex_state = 5}, [3504] = {.lex_state = 151, .external_lex_state = 5}, - [3505] = {.lex_state = 15, .external_lex_state = 2}, + [3505] = {.lex_state = 151, .external_lex_state = 2}, [3506] = {.lex_state = 151, .external_lex_state = 5}, - [3507] = {.lex_state = 151, .external_lex_state = 5}, - [3508] = {.lex_state = 151, .external_lex_state = 2}, - [3509] = {.lex_state = 151, .external_lex_state = 2}, + [3507] = {.lex_state = 151, .external_lex_state = 2}, + [3508] = {.lex_state = 151, .external_lex_state = 5}, + [3509] = {.lex_state = 151, .external_lex_state = 5}, [3510] = {.lex_state = 151, .external_lex_state = 5}, [3511] = {.lex_state = 151, .external_lex_state = 5}, - [3512] = {.lex_state = 26, .external_lex_state = 2}, + [3512] = {.lex_state = 151, .external_lex_state = 2}, [3513] = {.lex_state = 151, .external_lex_state = 5}, - [3514] = {.lex_state = 151, .external_lex_state = 5}, + [3514] = {.lex_state = 13, .external_lex_state = 2}, [3515] = {.lex_state = 151, .external_lex_state = 2}, - [3516] = {.lex_state = 151, .external_lex_state = 2}, + [3516] = {.lex_state = 151, .external_lex_state = 5}, [3517] = {.lex_state = 151, .external_lex_state = 5}, - [3518] = {.lex_state = 151, .external_lex_state = 2}, - [3519] = {.lex_state = 151, .external_lex_state = 5}, + [3518] = {.lex_state = 151, .external_lex_state = 5}, + [3519] = {.lex_state = 151, .external_lex_state = 2}, [3520] = {.lex_state = 151, .external_lex_state = 5}, - [3521] = {.lex_state = 15, .external_lex_state = 2}, - [3522] = {.lex_state = 151, .external_lex_state = 2}, - [3523] = {.lex_state = 151, .external_lex_state = 5}, + [3521] = {.lex_state = 151, .external_lex_state = 5}, + [3522] = {.lex_state = 151, .external_lex_state = 5}, + [3523] = {.lex_state = 151, .external_lex_state = 2}, [3524] = {.lex_state = 151, .external_lex_state = 5}, - [3525] = {.lex_state = 151, .external_lex_state = 5}, - [3526] = {.lex_state = 151, .external_lex_state = 5}, - [3527] = {.lex_state = 151, .external_lex_state = 2}, + [3525] = {.lex_state = 151, .external_lex_state = 2}, + [3526] = {.lex_state = 13, .external_lex_state = 2}, + [3527] = {.lex_state = 151, .external_lex_state = 5}, [3528] = {.lex_state = 151, .external_lex_state = 2}, - [3529] = {.lex_state = 151, .external_lex_state = 5}, - [3530] = {.lex_state = 151, .external_lex_state = 5}, - [3531] = {.lex_state = 151, .external_lex_state = 5}, - [3532] = {.lex_state = 151, .external_lex_state = 5}, + [3529] = {.lex_state = 13, .external_lex_state = 2}, + [3530] = {.lex_state = 13, .external_lex_state = 2}, + [3531] = {.lex_state = 151, .external_lex_state = 2}, + [3532] = {.lex_state = 13, .external_lex_state = 2}, [3533] = {.lex_state = 151, .external_lex_state = 5}, - [3534] = {.lex_state = 151, .external_lex_state = 2}, + [3534] = {.lex_state = 13, .external_lex_state = 2}, [3535] = {.lex_state = 151, .external_lex_state = 5}, - [3536] = {.lex_state = 151, .external_lex_state = 5}, + [3536] = {.lex_state = 13, .external_lex_state = 2}, [3537] = {.lex_state = 151, .external_lex_state = 5}, [3538] = {.lex_state = 151, .external_lex_state = 5}, [3539] = {.lex_state = 151, .external_lex_state = 5}, [3540] = {.lex_state = 151, .external_lex_state = 5}, - [3541] = {.lex_state = 151, .external_lex_state = 2}, - [3542] = {.lex_state = 151, .external_lex_state = 2}, + [3541] = {.lex_state = 151, .external_lex_state = 5}, + [3542] = {.lex_state = 151, .external_lex_state = 5}, [3543] = {.lex_state = 151, .external_lex_state = 5}, - [3544] = {.lex_state = 151, .external_lex_state = 2}, - [3545] = {.lex_state = 15, .external_lex_state = 2}, - [3546] = {.lex_state = 151, .external_lex_state = 2}, - [3547] = {.lex_state = 15, .external_lex_state = 2}, + [3544] = {.lex_state = 151, .external_lex_state = 5}, + [3545] = {.lex_state = 151, .external_lex_state = 2}, + [3546] = {.lex_state = 151, .external_lex_state = 5}, + [3547] = {.lex_state = 26, .external_lex_state = 2}, [3548] = {.lex_state = 151, .external_lex_state = 5}, - [3549] = {.lex_state = 151, .external_lex_state = 5}, + [3549] = {.lex_state = 151, .external_lex_state = 2}, [3550] = {.lex_state = 151, .external_lex_state = 5}, [3551] = {.lex_state = 151, .external_lex_state = 5}, [3552] = {.lex_state = 151, .external_lex_state = 5}, - [3553] = {.lex_state = 151, .external_lex_state = 5}, - [3554] = {.lex_state = 151, .external_lex_state = 2}, + [3553] = {.lex_state = 151, .external_lex_state = 2}, + [3554] = {.lex_state = 151, .external_lex_state = 5}, [3555] = {.lex_state = 151, .external_lex_state = 5}, [3556] = {.lex_state = 151, .external_lex_state = 5}, - [3557] = {.lex_state = 151, .external_lex_state = 2}, + [3557] = {.lex_state = 151, .external_lex_state = 5}, [3558] = {.lex_state = 151, .external_lex_state = 5}, [3559] = {.lex_state = 151, .external_lex_state = 5}, - [3560] = {.lex_state = 151, .external_lex_state = 2}, + [3560] = {.lex_state = 151, .external_lex_state = 5}, [3561] = {.lex_state = 151, .external_lex_state = 5}, - [3562] = {.lex_state = 15, .external_lex_state = 2}, + [3562] = {.lex_state = 151, .external_lex_state = 5}, [3563] = {.lex_state = 151, .external_lex_state = 5}, [3564] = {.lex_state = 151, .external_lex_state = 5}, [3565] = {.lex_state = 151, .external_lex_state = 5}, [3566] = {.lex_state = 151, .external_lex_state = 5}, [3567] = {.lex_state = 151, .external_lex_state = 5}, - [3568] = {.lex_state = 151, .external_lex_state = 2}, + [3568] = {.lex_state = 13, .external_lex_state = 2}, [3569] = {.lex_state = 151, .external_lex_state = 5}, - [3570] = {.lex_state = 151, .external_lex_state = 5}, + [3570] = {.lex_state = 13, .external_lex_state = 2}, [3571] = {.lex_state = 151, .external_lex_state = 5}, [3572] = {.lex_state = 151, .external_lex_state = 5}, [3573] = {.lex_state = 151, .external_lex_state = 5}, @@ -17589,347 +17613,347 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3575] = {.lex_state = 151, .external_lex_state = 5}, [3576] = {.lex_state = 151, .external_lex_state = 5}, [3577] = {.lex_state = 151, .external_lex_state = 5}, - [3578] = {.lex_state = 151, .external_lex_state = 2}, + [3578] = {.lex_state = 151, .external_lex_state = 5}, [3579] = {.lex_state = 151, .external_lex_state = 5}, [3580] = {.lex_state = 151, .external_lex_state = 5}, - [3581] = {.lex_state = 26, .external_lex_state = 2}, - [3582] = {.lex_state = 151, .external_lex_state = 5}, + [3581] = {.lex_state = 151, .external_lex_state = 5}, + [3582] = {.lex_state = 13, .external_lex_state = 2}, [3583] = {.lex_state = 151, .external_lex_state = 5}, [3584] = {.lex_state = 151, .external_lex_state = 5}, - [3585] = {.lex_state = 151, .external_lex_state = 5}, + [3585] = {.lex_state = 151, .external_lex_state = 2}, [3586] = {.lex_state = 151, .external_lex_state = 5}, [3587] = {.lex_state = 151, .external_lex_state = 5}, - [3588] = {.lex_state = 151, .external_lex_state = 5}, - [3589] = {.lex_state = 151, .external_lex_state = 5}, - [3590] = {.lex_state = 151, .external_lex_state = 5}, - [3591] = {.lex_state = 151, .external_lex_state = 2}, + [3588] = {.lex_state = 151, .external_lex_state = 2}, + [3589] = {.lex_state = 151, .external_lex_state = 2}, + [3590] = {.lex_state = 151, .external_lex_state = 2}, + [3591] = {.lex_state = 13, .external_lex_state = 2}, [3592] = {.lex_state = 151, .external_lex_state = 5}, - [3593] = {.lex_state = 15, .external_lex_state = 2}, + [3593] = {.lex_state = 151, .external_lex_state = 5}, [3594] = {.lex_state = 151, .external_lex_state = 5}, [3595] = {.lex_state = 151, .external_lex_state = 5}, - [3596] = {.lex_state = 15, .external_lex_state = 2}, - [3597] = {.lex_state = 151, .external_lex_state = 5}, + [3596] = {.lex_state = 151, .external_lex_state = 5}, + [3597] = {.lex_state = 13, .external_lex_state = 2}, [3598] = {.lex_state = 151, .external_lex_state = 5}, [3599] = {.lex_state = 151, .external_lex_state = 5}, - [3600] = {.lex_state = 151, .external_lex_state = 5}, + [3600] = {.lex_state = 151, .external_lex_state = 2}, [3601] = {.lex_state = 151, .external_lex_state = 5}, - [3602] = {.lex_state = 151, .external_lex_state = 2}, + [3602] = {.lex_state = 151, .external_lex_state = 5}, [3603] = {.lex_state = 151, .external_lex_state = 5}, [3604] = {.lex_state = 151, .external_lex_state = 5}, [3605] = {.lex_state = 151, .external_lex_state = 5}, [3606] = {.lex_state = 151, .external_lex_state = 2}, [3607] = {.lex_state = 151, .external_lex_state = 5}, [3608] = {.lex_state = 151, .external_lex_state = 5}, - [3609] = {.lex_state = 151, .external_lex_state = 5}, - [3610] = {.lex_state = 151, .external_lex_state = 5}, - [3611] = {.lex_state = 151, .external_lex_state = 5}, + [3609] = {.lex_state = 26, .external_lex_state = 2}, + [3610] = {.lex_state = 151, .external_lex_state = 2}, + [3611] = {.lex_state = 13, .external_lex_state = 2}, [3612] = {.lex_state = 151, .external_lex_state = 5}, - [3613] = {.lex_state = 151, .external_lex_state = 2}, - [3614] = {.lex_state = 15, .external_lex_state = 2}, + [3613] = {.lex_state = 151, .external_lex_state = 5}, + [3614] = {.lex_state = 151, .external_lex_state = 5}, [3615] = {.lex_state = 151, .external_lex_state = 5}, - [3616] = {.lex_state = 151, .external_lex_state = 2}, - [3617] = {.lex_state = 151, .external_lex_state = 5}, + [3616] = {.lex_state = 151, .external_lex_state = 5}, + [3617] = {.lex_state = 151, .external_lex_state = 2}, [3618] = {.lex_state = 151, .external_lex_state = 2}, [3619] = {.lex_state = 151, .external_lex_state = 2}, - [3620] = {.lex_state = 15, .external_lex_state = 2}, + [3620] = {.lex_state = 151, .external_lex_state = 2}, [3621] = {.lex_state = 151, .external_lex_state = 2}, - [3622] = {.lex_state = 15, .external_lex_state = 2}, + [3622] = {.lex_state = 13, .external_lex_state = 2}, [3623] = {.lex_state = 151, .external_lex_state = 2}, [3624] = {.lex_state = 151, .external_lex_state = 2}, [3625] = {.lex_state = 151, .external_lex_state = 2}, - [3626] = {.lex_state = 15, .external_lex_state = 2}, + [3626] = {.lex_state = 151, .external_lex_state = 5}, [3627] = {.lex_state = 151, .external_lex_state = 5}, [3628] = {.lex_state = 151, .external_lex_state = 5}, [3629] = {.lex_state = 151, .external_lex_state = 2}, - [3630] = {.lex_state = 151, .external_lex_state = 5}, + [3630] = {.lex_state = 151, .external_lex_state = 2}, [3631] = {.lex_state = 151, .external_lex_state = 5}, [3632] = {.lex_state = 151, .external_lex_state = 5}, - [3633] = {.lex_state = 151, .external_lex_state = 2}, - [3634] = {.lex_state = 151, .external_lex_state = 2}, + [3633] = {.lex_state = 151, .external_lex_state = 5}, + [3634] = {.lex_state = 151, .external_lex_state = 5}, [3635] = {.lex_state = 151, .external_lex_state = 5}, - [3636] = {.lex_state = 151, .external_lex_state = 2}, - [3637] = {.lex_state = 151, .external_lex_state = 2}, + [3636] = {.lex_state = 151, .external_lex_state = 5}, + [3637] = {.lex_state = 151, .external_lex_state = 5}, [3638] = {.lex_state = 151, .external_lex_state = 5}, - [3639] = {.lex_state = 151, .external_lex_state = 2}, + [3639] = {.lex_state = 151, .external_lex_state = 5}, [3640] = {.lex_state = 151, .external_lex_state = 2}, - [3641] = {.lex_state = 151, .external_lex_state = 2}, - [3642] = {.lex_state = 151, .external_lex_state = 2}, + [3641] = {.lex_state = 151, .external_lex_state = 5}, + [3642] = {.lex_state = 151, .external_lex_state = 5}, [3643] = {.lex_state = 151, .external_lex_state = 5}, [3644] = {.lex_state = 151, .external_lex_state = 5}, [3645] = {.lex_state = 151, .external_lex_state = 5}, - [3646] = {.lex_state = 151, .external_lex_state = 5}, - [3647] = {.lex_state = 26, .external_lex_state = 2}, - [3648] = {.lex_state = 151, .external_lex_state = 5}, - [3649] = {.lex_state = 151, .external_lex_state = 2}, - [3650] = {.lex_state = 151, .external_lex_state = 5}, + [3646] = {.lex_state = 151, .external_lex_state = 2}, + [3647] = {.lex_state = 151, .external_lex_state = 5}, + [3648] = {.lex_state = 151, .external_lex_state = 2}, + [3649] = {.lex_state = 151, .external_lex_state = 5}, + [3650] = {.lex_state = 151, .external_lex_state = 2}, [3651] = {.lex_state = 151, .external_lex_state = 2}, [3652] = {.lex_state = 151, .external_lex_state = 2}, - [3653] = {.lex_state = 151, .external_lex_state = 5}, + [3653] = {.lex_state = 151, .external_lex_state = 2}, [3654] = {.lex_state = 151, .external_lex_state = 2}, [3655] = {.lex_state = 151, .external_lex_state = 5}, [3656] = {.lex_state = 151, .external_lex_state = 5}, [3657] = {.lex_state = 151, .external_lex_state = 5}, - [3658] = {.lex_state = 151, .external_lex_state = 5}, - [3659] = {.lex_state = 151, .external_lex_state = 5}, - [3660] = {.lex_state = 151, .external_lex_state = 5}, + [3658] = {.lex_state = 151, .external_lex_state = 2}, + [3659] = {.lex_state = 26, .external_lex_state = 2}, + [3660] = {.lex_state = 151, .external_lex_state = 2}, [3661] = {.lex_state = 151, .external_lex_state = 5}, - [3662] = {.lex_state = 151, .external_lex_state = 5}, - [3663] = {.lex_state = 151, .external_lex_state = 5}, + [3662] = {.lex_state = 151, .external_lex_state = 2}, + [3663] = {.lex_state = 13, .external_lex_state = 2}, [3664] = {.lex_state = 151, .external_lex_state = 5}, - [3665] = {.lex_state = 151, .external_lex_state = 5}, - [3666] = {.lex_state = 151, .external_lex_state = 5}, + [3665] = {.lex_state = 13, .external_lex_state = 2}, + [3666] = {.lex_state = 151, .external_lex_state = 2}, [3667] = {.lex_state = 151, .external_lex_state = 5}, [3668] = {.lex_state = 151, .external_lex_state = 5}, [3669] = {.lex_state = 151, .external_lex_state = 5}, - [3670] = {.lex_state = 15, .external_lex_state = 2}, - [3671] = {.lex_state = 151, .external_lex_state = 5}, - [3672] = {.lex_state = 151, .external_lex_state = 2}, - [3673] = {.lex_state = 15, .external_lex_state = 2}, + [3670] = {.lex_state = 151, .external_lex_state = 5}, + [3671] = {.lex_state = 151, .external_lex_state = 2}, + [3672] = {.lex_state = 151, .external_lex_state = 5}, + [3673] = {.lex_state = 151, .external_lex_state = 5}, [3674] = {.lex_state = 151, .external_lex_state = 5}, [3675] = {.lex_state = 151, .external_lex_state = 5}, - [3676] = {.lex_state = 151, .external_lex_state = 2}, + [3676] = {.lex_state = 151, .external_lex_state = 5}, [3677] = {.lex_state = 151, .external_lex_state = 5}, [3678] = {.lex_state = 151, .external_lex_state = 5}, - [3679] = {.lex_state = 151, .external_lex_state = 2}, - [3680] = {.lex_state = 151, .external_lex_state = 5}, - [3681] = {.lex_state = 15, .external_lex_state = 2}, + [3679] = {.lex_state = 151, .external_lex_state = 5}, + [3680] = {.lex_state = 151, .external_lex_state = 2}, + [3681] = {.lex_state = 151, .external_lex_state = 5}, [3682] = {.lex_state = 151, .external_lex_state = 5}, [3683] = {.lex_state = 151, .external_lex_state = 5}, - [3684] = {.lex_state = 151, .external_lex_state = 2}, + [3684] = {.lex_state = 151, .external_lex_state = 5}, [3685] = {.lex_state = 151, .external_lex_state = 5}, - [3686] = {.lex_state = 15, .external_lex_state = 2}, + [3686] = {.lex_state = 151, .external_lex_state = 5}, [3687] = {.lex_state = 151, .external_lex_state = 5}, - [3688] = {.lex_state = 151, .external_lex_state = 5}, + [3688] = {.lex_state = 151, .external_lex_state = 2}, [3689] = {.lex_state = 151, .external_lex_state = 5}, - [3690] = {.lex_state = 15, .external_lex_state = 2}, + [3690] = {.lex_state = 13, .external_lex_state = 2}, [3691] = {.lex_state = 151, .external_lex_state = 5}, [3692] = {.lex_state = 151, .external_lex_state = 5}, - [3693] = {.lex_state = 151, .external_lex_state = 5}, - [3694] = {.lex_state = 15, .external_lex_state = 2}, - [3695] = {.lex_state = 151, .external_lex_state = 5}, - [3696] = {.lex_state = 151, .external_lex_state = 5}, + [3693] = {.lex_state = 151, .external_lex_state = 2}, + [3694] = {.lex_state = 13, .external_lex_state = 2}, + [3695] = {.lex_state = 26, .external_lex_state = 2}, + [3696] = {.lex_state = 13, .external_lex_state = 2}, [3697] = {.lex_state = 151, .external_lex_state = 5}, [3698] = {.lex_state = 151, .external_lex_state = 2}, - [3699] = {.lex_state = 151, .external_lex_state = 2}, - [3700] = {.lex_state = 151, .external_lex_state = 5}, + [3699] = {.lex_state = 13, .external_lex_state = 2}, + [3700] = {.lex_state = 151, .external_lex_state = 2}, [3701] = {.lex_state = 151, .external_lex_state = 5}, - [3702] = {.lex_state = 15, .external_lex_state = 2}, - [3703] = {.lex_state = 151, .external_lex_state = 5}, - [3704] = {.lex_state = 151, .external_lex_state = 5}, + [3702] = {.lex_state = 151, .external_lex_state = 5}, + [3703] = {.lex_state = 151, .external_lex_state = 2}, + [3704] = {.lex_state = 151, .external_lex_state = 2}, [3705] = {.lex_state = 151, .external_lex_state = 5}, [3706] = {.lex_state = 151, .external_lex_state = 5}, [3707] = {.lex_state = 151, .external_lex_state = 5}, [3708] = {.lex_state = 151, .external_lex_state = 5}, - [3709] = {.lex_state = 151, .external_lex_state = 5}, - [3710] = {.lex_state = 151, .external_lex_state = 5}, + [3709] = {.lex_state = 151, .external_lex_state = 2}, + [3710] = {.lex_state = 151, .external_lex_state = 2}, [3711] = {.lex_state = 151, .external_lex_state = 5}, [3712] = {.lex_state = 151, .external_lex_state = 5}, [3713] = {.lex_state = 151, .external_lex_state = 5}, [3714] = {.lex_state = 151, .external_lex_state = 5}, - [3715] = {.lex_state = 151, .external_lex_state = 2}, + [3715] = {.lex_state = 151, .external_lex_state = 5}, [3716] = {.lex_state = 151, .external_lex_state = 5}, - [3717] = {.lex_state = 15, .external_lex_state = 2}, - [3718] = {.lex_state = 151, .external_lex_state = 2}, + [3717] = {.lex_state = 151, .external_lex_state = 2}, + [3718] = {.lex_state = 151, .external_lex_state = 5}, [3719] = {.lex_state = 151, .external_lex_state = 5}, [3720] = {.lex_state = 151, .external_lex_state = 2}, - [3721] = {.lex_state = 16, .external_lex_state = 2}, + [3721] = {.lex_state = 151, .external_lex_state = 5}, [3722] = {.lex_state = 151, .external_lex_state = 5}, - [3723] = {.lex_state = 15, .external_lex_state = 2}, - [3724] = {.lex_state = 151, .external_lex_state = 2}, - [3725] = {.lex_state = 151, .external_lex_state = 2}, - [3726] = {.lex_state = 15, .external_lex_state = 2}, + [3723] = {.lex_state = 151, .external_lex_state = 2}, + [3724] = {.lex_state = 1, .external_lex_state = 2}, + [3725] = {.lex_state = 13, .external_lex_state = 2}, + [3726] = {.lex_state = 1, .external_lex_state = 2}, [3727] = {.lex_state = 1, .external_lex_state = 2}, - [3728] = {.lex_state = 151, .external_lex_state = 2}, + [3728] = {.lex_state = 13, .external_lex_state = 2}, [3729] = {.lex_state = 151, .external_lex_state = 5}, - [3730] = {.lex_state = 15, .external_lex_state = 2}, - [3731] = {.lex_state = 151, .external_lex_state = 5}, - [3732] = {.lex_state = 1, .external_lex_state = 2}, - [3733] = {.lex_state = 1, .external_lex_state = 2}, - [3734] = {.lex_state = 1, .external_lex_state = 2}, - [3735] = {.lex_state = 1, .external_lex_state = 2}, - [3736] = {.lex_state = 151, .external_lex_state = 2}, - [3737] = {.lex_state = 15, .external_lex_state = 2}, + [3730] = {.lex_state = 151, .external_lex_state = 5}, + [3731] = {.lex_state = 13, .external_lex_state = 2}, + [3732] = {.lex_state = 151, .external_lex_state = 6}, + [3733] = {.lex_state = 13, .external_lex_state = 2}, + [3734] = {.lex_state = 13, .external_lex_state = 2}, + [3735] = {.lex_state = 151, .external_lex_state = 5}, + [3736] = {.lex_state = 151, .external_lex_state = 5}, + [3737] = {.lex_state = 151, .external_lex_state = 2}, [3738] = {.lex_state = 151, .external_lex_state = 2}, - [3739] = {.lex_state = 151, .external_lex_state = 5}, - [3740] = {.lex_state = 151, .external_lex_state = 6}, - [3741] = {.lex_state = 151, .external_lex_state = 5}, - [3742] = {.lex_state = 151, .external_lex_state = 5}, + [3739] = {.lex_state = 151, .external_lex_state = 2}, + [3740] = {.lex_state = 1, .external_lex_state = 2}, + [3741] = {.lex_state = 1, .external_lex_state = 2}, + [3742] = {.lex_state = 151, .external_lex_state = 2}, [3743] = {.lex_state = 151, .external_lex_state = 6}, [3744] = {.lex_state = 1, .external_lex_state = 2}, - [3745] = {.lex_state = 15, .external_lex_state = 2}, - [3746] = {.lex_state = 151, .external_lex_state = 5}, - [3747] = {.lex_state = 151, .external_lex_state = 2}, + [3745] = {.lex_state = 151, .external_lex_state = 5}, + [3746] = {.lex_state = 1, .external_lex_state = 2}, + [3747] = {.lex_state = 13, .external_lex_state = 2}, [3748] = {.lex_state = 151, .external_lex_state = 2}, - [3749] = {.lex_state = 151, .external_lex_state = 2}, - [3750] = {.lex_state = 151, .external_lex_state = 6}, + [3749] = {.lex_state = 13, .external_lex_state = 2}, + [3750] = {.lex_state = 151, .external_lex_state = 2}, [3751] = {.lex_state = 1, .external_lex_state = 2}, - [3752] = {.lex_state = 1, .external_lex_state = 2}, - [3753] = {.lex_state = 151, .external_lex_state = 2}, - [3754] = {.lex_state = 15, .external_lex_state = 2}, - [3755] = {.lex_state = 151, .external_lex_state = 2}, + [3752] = {.lex_state = 151, .external_lex_state = 6}, + [3753] = {.lex_state = 151, .external_lex_state = 5}, + [3754] = {.lex_state = 1, .external_lex_state = 2}, + [3755] = {.lex_state = 1, .external_lex_state = 2}, [3756] = {.lex_state = 151, .external_lex_state = 2}, - [3757] = {.lex_state = 1, .external_lex_state = 2}, - [3758] = {.lex_state = 151, .external_lex_state = 6}, + [3757] = {.lex_state = 13, .external_lex_state = 2}, + [3758] = {.lex_state = 13, .external_lex_state = 2}, [3759] = {.lex_state = 151, .external_lex_state = 6}, - [3760] = {.lex_state = 15, .external_lex_state = 2}, - [3761] = {.lex_state = 15, .external_lex_state = 2}, - [3762] = {.lex_state = 24, .external_lex_state = 7}, - [3763] = {.lex_state = 15, .external_lex_state = 2}, - [3764] = {.lex_state = 151, .external_lex_state = 5}, - [3765] = {.lex_state = 151, .external_lex_state = 2}, + [3760] = {.lex_state = 13, .external_lex_state = 2}, + [3761] = {.lex_state = 1, .external_lex_state = 2}, + [3762] = {.lex_state = 151, .external_lex_state = 6}, + [3763] = {.lex_state = 1, .external_lex_state = 2}, + [3764] = {.lex_state = 1, .external_lex_state = 2}, + [3765] = {.lex_state = 1, .external_lex_state = 2}, [3766] = {.lex_state = 151, .external_lex_state = 5}, - [3767] = {.lex_state = 15, .external_lex_state = 2}, + [3767] = {.lex_state = 13, .external_lex_state = 2}, [3768] = {.lex_state = 1, .external_lex_state = 2}, - [3769] = {.lex_state = 151, .external_lex_state = 5}, - [3770] = {.lex_state = 15, .external_lex_state = 2}, - [3771] = {.lex_state = 151, .external_lex_state = 2}, - [3772] = {.lex_state = 151, .external_lex_state = 2}, - [3773] = {.lex_state = 151, .external_lex_state = 2}, - [3774] = {.lex_state = 15, .external_lex_state = 2}, - [3775] = {.lex_state = 15, .external_lex_state = 2}, - [3776] = {.lex_state = 15, .external_lex_state = 2}, + [3769] = {.lex_state = 151, .external_lex_state = 2}, + [3770] = {.lex_state = 13, .external_lex_state = 2}, + [3771] = {.lex_state = 151, .external_lex_state = 5}, + [3772] = {.lex_state = 13, .external_lex_state = 2}, + [3773] = {.lex_state = 13, .external_lex_state = 2}, + [3774] = {.lex_state = 151, .external_lex_state = 2}, + [3775] = {.lex_state = 13, .external_lex_state = 2}, + [3776] = {.lex_state = 151, .external_lex_state = 5}, [3777] = {.lex_state = 151, .external_lex_state = 6}, - [3778] = {.lex_state = 15, .external_lex_state = 2}, - [3779] = {.lex_state = 15, .external_lex_state = 2}, - [3780] = {.lex_state = 15, .external_lex_state = 2}, - [3781] = {.lex_state = 151, .external_lex_state = 2}, - [3782] = {.lex_state = 151, .external_lex_state = 6}, - [3783] = {.lex_state = 1, .external_lex_state = 2}, - [3784] = {.lex_state = 1, .external_lex_state = 2}, - [3785] = {.lex_state = 15, .external_lex_state = 2}, - [3786] = {.lex_state = 151, .external_lex_state = 6}, + [3778] = {.lex_state = 1, .external_lex_state = 2}, + [3779] = {.lex_state = 24, .external_lex_state = 7}, + [3780] = {.lex_state = 1, .external_lex_state = 2}, + [3781] = {.lex_state = 24, .external_lex_state = 7}, + [3782] = {.lex_state = 151, .external_lex_state = 2}, + [3783] = {.lex_state = 24, .external_lex_state = 7}, + [3784] = {.lex_state = 151, .external_lex_state = 2}, + [3785] = {.lex_state = 151, .external_lex_state = 2}, + [3786] = {.lex_state = 151, .external_lex_state = 5}, [3787] = {.lex_state = 151, .external_lex_state = 5}, - [3788] = {.lex_state = 1, .external_lex_state = 2}, - [3789] = {.lex_state = 151, .external_lex_state = 5}, - [3790] = {.lex_state = 151, .external_lex_state = 2}, - [3791] = {.lex_state = 1, .external_lex_state = 2}, - [3792] = {.lex_state = 15, .external_lex_state = 2}, - [3793] = {.lex_state = 151, .external_lex_state = 2}, - [3794] = {.lex_state = 15, .external_lex_state = 2}, - [3795] = {.lex_state = 1, .external_lex_state = 2}, - [3796] = {.lex_state = 15, .external_lex_state = 2}, - [3797] = {.lex_state = 1, .external_lex_state = 2}, - [3798] = {.lex_state = 17, .external_lex_state = 2}, - [3799] = {.lex_state = 151, .external_lex_state = 2}, - [3800] = {.lex_state = 15, .external_lex_state = 2}, - [3801] = {.lex_state = 1, .external_lex_state = 2}, - [3802] = {.lex_state = 151, .external_lex_state = 6}, - [3803] = {.lex_state = 1, .external_lex_state = 2}, + [3788] = {.lex_state = 13, .external_lex_state = 2}, + [3789] = {.lex_state = 151, .external_lex_state = 2}, + [3790] = {.lex_state = 151, .external_lex_state = 6}, + [3791] = {.lex_state = 151, .external_lex_state = 6}, + [3792] = {.lex_state = 1, .external_lex_state = 2}, + [3793] = {.lex_state = 1, .external_lex_state = 2}, + [3794] = {.lex_state = 1, .external_lex_state = 2}, + [3795] = {.lex_state = 151, .external_lex_state = 6}, + [3796] = {.lex_state = 17, .external_lex_state = 2}, + [3797] = {.lex_state = 13, .external_lex_state = 2}, + [3798] = {.lex_state = 13, .external_lex_state = 2}, + [3799] = {.lex_state = 151, .external_lex_state = 6}, + [3800] = {.lex_state = 13, .external_lex_state = 2}, + [3801] = {.lex_state = 13, .external_lex_state = 2}, + [3802] = {.lex_state = 151, .external_lex_state = 5}, + [3803] = {.lex_state = 151, .external_lex_state = 2}, [3804] = {.lex_state = 151, .external_lex_state = 5}, - [3805] = {.lex_state = 151, .external_lex_state = 2}, - [3806] = {.lex_state = 1, .external_lex_state = 2}, - [3807] = {.lex_state = 151, .external_lex_state = 2}, - [3808] = {.lex_state = 15, .external_lex_state = 2}, - [3809] = {.lex_state = 151, .external_lex_state = 2}, - [3810] = {.lex_state = 151, .external_lex_state = 6}, - [3811] = {.lex_state = 151, .external_lex_state = 2}, - [3812] = {.lex_state = 24, .external_lex_state = 7}, + [3805] = {.lex_state = 151, .external_lex_state = 6}, + [3806] = {.lex_state = 17, .external_lex_state = 2}, + [3807] = {.lex_state = 151, .external_lex_state = 6}, + [3808] = {.lex_state = 13, .external_lex_state = 2}, + [3809] = {.lex_state = 151, .external_lex_state = 5}, + [3810] = {.lex_state = 151, .external_lex_state = 5}, + [3811] = {.lex_state = 1, .external_lex_state = 2}, + [3812] = {.lex_state = 151, .external_lex_state = 2}, [3813] = {.lex_state = 151, .external_lex_state = 2}, - [3814] = {.lex_state = 151, .external_lex_state = 6}, - [3815] = {.lex_state = 15, .external_lex_state = 2}, - [3816] = {.lex_state = 151, .external_lex_state = 6}, - [3817] = {.lex_state = 151, .external_lex_state = 2}, + [3814] = {.lex_state = 151, .external_lex_state = 2}, + [3815] = {.lex_state = 1, .external_lex_state = 2}, + [3816] = {.lex_state = 1, .external_lex_state = 2}, + [3817] = {.lex_state = 13, .external_lex_state = 2}, [3818] = {.lex_state = 151, .external_lex_state = 2}, [3819] = {.lex_state = 151, .external_lex_state = 2}, [3820] = {.lex_state = 151, .external_lex_state = 2}, - [3821] = {.lex_state = 15, .external_lex_state = 2}, - [3822] = {.lex_state = 151, .external_lex_state = 2}, - [3823] = {.lex_state = 151, .external_lex_state = 2}, - [3824] = {.lex_state = 151, .external_lex_state = 6}, - [3825] = {.lex_state = 151, .external_lex_state = 6}, - [3826] = {.lex_state = 1, .external_lex_state = 2}, - [3827] = {.lex_state = 151, .external_lex_state = 6}, - [3828] = {.lex_state = 15, .external_lex_state = 2}, - [3829] = {.lex_state = 1, .external_lex_state = 2}, - [3830] = {.lex_state = 151, .external_lex_state = 6}, + [3821] = {.lex_state = 151, .external_lex_state = 5}, + [3822] = {.lex_state = 13, .external_lex_state = 2}, + [3823] = {.lex_state = 13, .external_lex_state = 2}, + [3824] = {.lex_state = 13, .external_lex_state = 2}, + [3825] = {.lex_state = 151, .external_lex_state = 5}, + [3826] = {.lex_state = 26, .external_lex_state = 2}, + [3827] = {.lex_state = 151, .external_lex_state = 2}, + [3828] = {.lex_state = 151, .external_lex_state = 2}, + [3829] = {.lex_state = 151, .external_lex_state = 2}, + [3830] = {.lex_state = 151, .external_lex_state = 5}, [3831] = {.lex_state = 151, .external_lex_state = 5}, - [3832] = {.lex_state = 15, .external_lex_state = 2}, - [3833] = {.lex_state = 1, .external_lex_state = 2}, - [3834] = {.lex_state = 1, .external_lex_state = 2}, - [3835] = {.lex_state = 151, .external_lex_state = 2}, - [3836] = {.lex_state = 151, .external_lex_state = 2}, + [3832] = {.lex_state = 13, .external_lex_state = 2}, + [3833] = {.lex_state = 151, .external_lex_state = 2}, + [3834] = {.lex_state = 13, .external_lex_state = 2}, + [3835] = {.lex_state = 151, .external_lex_state = 6}, + [3836] = {.lex_state = 13, .external_lex_state = 2}, [3837] = {.lex_state = 151, .external_lex_state = 2}, - [3838] = {.lex_state = 15, .external_lex_state = 2}, - [3839] = {.lex_state = 151, .external_lex_state = 6}, - [3840] = {.lex_state = 151, .external_lex_state = 5}, - [3841] = {.lex_state = 24, .external_lex_state = 7}, - [3842] = {.lex_state = 15, .external_lex_state = 2}, - [3843] = {.lex_state = 15, .external_lex_state = 2}, - [3844] = {.lex_state = 151, .external_lex_state = 5}, - [3845] = {.lex_state = 151, .external_lex_state = 2}, + [3838] = {.lex_state = 1, .external_lex_state = 2}, + [3839] = {.lex_state = 151, .external_lex_state = 2}, + [3840] = {.lex_state = 13, .external_lex_state = 2}, + [3841] = {.lex_state = 13, .external_lex_state = 2}, + [3842] = {.lex_state = 13, .external_lex_state = 2}, + [3843] = {.lex_state = 13, .external_lex_state = 2}, + [3844] = {.lex_state = 13, .external_lex_state = 2}, + [3845] = {.lex_state = 1, .external_lex_state = 2}, [3846] = {.lex_state = 151, .external_lex_state = 2}, - [3847] = {.lex_state = 1, .external_lex_state = 2}, + [3847] = {.lex_state = 151, .external_lex_state = 6}, [3848] = {.lex_state = 151, .external_lex_state = 2}, - [3849] = {.lex_state = 151, .external_lex_state = 6}, - [3850] = {.lex_state = 151, .external_lex_state = 2}, - [3851] = {.lex_state = 151, .external_lex_state = 6}, - [3852] = {.lex_state = 15, .external_lex_state = 2}, - [3853] = {.lex_state = 15, .external_lex_state = 2}, - [3854] = {.lex_state = 151, .external_lex_state = 6}, - [3855] = {.lex_state = 151, .external_lex_state = 5}, - [3856] = {.lex_state = 24, .external_lex_state = 7}, - [3857] = {.lex_state = 151, .external_lex_state = 5}, - [3858] = {.lex_state = 15, .external_lex_state = 2}, - [3859] = {.lex_state = 151, .external_lex_state = 6}, - [3860] = {.lex_state = 151, .external_lex_state = 6}, - [3861] = {.lex_state = 151, .external_lex_state = 2}, - [3862] = {.lex_state = 15, .external_lex_state = 2}, - [3863] = {.lex_state = 151, .external_lex_state = 5}, - [3864] = {.lex_state = 1, .external_lex_state = 2}, - [3865] = {.lex_state = 151, .external_lex_state = 5}, - [3866] = {.lex_state = 151, .external_lex_state = 5}, - [3867] = {.lex_state = 151, .external_lex_state = 6}, - [3868] = {.lex_state = 151, .external_lex_state = 2}, - [3869] = {.lex_state = 151, .external_lex_state = 2}, - [3870] = {.lex_state = 15, .external_lex_state = 2}, - [3871] = {.lex_state = 151, .external_lex_state = 5}, - [3872] = {.lex_state = 151, .external_lex_state = 2}, - [3873] = {.lex_state = 15, .external_lex_state = 2}, - [3874] = {.lex_state = 15, .external_lex_state = 2}, - [3875] = {.lex_state = 1, .external_lex_state = 2}, - [3876] = {.lex_state = 151, .external_lex_state = 5}, - [3877] = {.lex_state = 15, .external_lex_state = 2}, - [3878] = {.lex_state = 151, .external_lex_state = 5}, - [3879] = {.lex_state = 151, .external_lex_state = 5}, - [3880] = {.lex_state = 15, .external_lex_state = 2}, - [3881] = {.lex_state = 15, .external_lex_state = 2}, - [3882] = {.lex_state = 151, .external_lex_state = 2}, - [3883] = {.lex_state = 26, .external_lex_state = 2}, - [3884] = {.lex_state = 151, .external_lex_state = 2}, - [3885] = {.lex_state = 151, .external_lex_state = 5}, - [3886] = {.lex_state = 15, .external_lex_state = 2}, + [3849] = {.lex_state = 151, .external_lex_state = 5}, + [3850] = {.lex_state = 13, .external_lex_state = 2}, + [3851] = {.lex_state = 1, .external_lex_state = 2}, + [3852] = {.lex_state = 13, .external_lex_state = 2}, + [3853] = {.lex_state = 151, .external_lex_state = 2}, + [3854] = {.lex_state = 13, .external_lex_state = 2}, + [3855] = {.lex_state = 1, .external_lex_state = 2}, + [3856] = {.lex_state = 151, .external_lex_state = 2}, + [3857] = {.lex_state = 151, .external_lex_state = 2}, + [3858] = {.lex_state = 24, .external_lex_state = 7}, + [3859] = {.lex_state = 151, .external_lex_state = 2}, + [3860] = {.lex_state = 151, .external_lex_state = 2}, + [3861] = {.lex_state = 151, .external_lex_state = 6}, + [3862] = {.lex_state = 13, .external_lex_state = 2}, + [3863] = {.lex_state = 151, .external_lex_state = 2}, + [3864] = {.lex_state = 151, .external_lex_state = 6}, + [3865] = {.lex_state = 151, .external_lex_state = 2}, + [3866] = {.lex_state = 151, .external_lex_state = 2}, + [3867] = {.lex_state = 151, .external_lex_state = 5}, + [3868] = {.lex_state = 24, .external_lex_state = 7}, + [3869] = {.lex_state = 16, .external_lex_state = 2}, + [3870] = {.lex_state = 151, .external_lex_state = 5}, + [3871] = {.lex_state = 151, .external_lex_state = 6}, + [3872] = {.lex_state = 151, .external_lex_state = 5}, + [3873] = {.lex_state = 151, .external_lex_state = 6}, + [3874] = {.lex_state = 151, .external_lex_state = 5}, + [3875] = {.lex_state = 151, .external_lex_state = 6}, + [3876] = {.lex_state = 13, .external_lex_state = 2}, + [3877] = {.lex_state = 13, .external_lex_state = 2}, + [3878] = {.lex_state = 13, .external_lex_state = 2}, + [3879] = {.lex_state = 151, .external_lex_state = 2}, + [3880] = {.lex_state = 13, .external_lex_state = 2}, + [3881] = {.lex_state = 151, .external_lex_state = 2}, + [3882] = {.lex_state = 151, .external_lex_state = 6}, + [3883] = {.lex_state = 1, .external_lex_state = 2}, + [3884] = {.lex_state = 13, .external_lex_state = 2}, + [3885] = {.lex_state = 151, .external_lex_state = 6}, + [3886] = {.lex_state = 151, .external_lex_state = 6}, [3887] = {.lex_state = 1, .external_lex_state = 2}, - [3888] = {.lex_state = 1, .external_lex_state = 2}, - [3889] = {.lex_state = 26, .external_lex_state = 2}, - [3890] = {.lex_state = 151, .external_lex_state = 2}, - [3891] = {.lex_state = 24, .external_lex_state = 7}, - [3892] = {.lex_state = 15, .external_lex_state = 2}, - [3893] = {.lex_state = 15, .external_lex_state = 2}, - [3894] = {.lex_state = 151, .external_lex_state = 5}, - [3895] = {.lex_state = 1, .external_lex_state = 2}, - [3896] = {.lex_state = 151, .external_lex_state = 2}, - [3897] = {.lex_state = 15, .external_lex_state = 2}, - [3898] = {.lex_state = 16, .external_lex_state = 2}, - [3899] = {.lex_state = 151, .external_lex_state = 5}, - [3900] = {.lex_state = 151, .external_lex_state = 2}, + [3888] = {.lex_state = 151, .external_lex_state = 6}, + [3889] = {.lex_state = 151, .external_lex_state = 2}, + [3890] = {.lex_state = 13, .external_lex_state = 2}, + [3891] = {.lex_state = 151, .external_lex_state = 2}, + [3892] = {.lex_state = 151, .external_lex_state = 2}, + [3893] = {.lex_state = 151, .external_lex_state = 6}, + [3894] = {.lex_state = 26, .external_lex_state = 2}, + [3895] = {.lex_state = 13, .external_lex_state = 2}, + [3896] = {.lex_state = 151, .external_lex_state = 5}, + [3897] = {.lex_state = 13, .external_lex_state = 2}, + [3898] = {.lex_state = 13, .external_lex_state = 2}, + [3899] = {.lex_state = 16, .external_lex_state = 2}, + [3900] = {.lex_state = 151, .external_lex_state = 5}, [3901] = {.lex_state = 151, .external_lex_state = 6}, - [3902] = {.lex_state = 151, .external_lex_state = 5}, + [3902] = {.lex_state = 151, .external_lex_state = 2}, [3903] = {.lex_state = 1, .external_lex_state = 2}, - [3904] = {.lex_state = 151, .external_lex_state = 6}, - [3905] = {.lex_state = 17, .external_lex_state = 2}, - [3906] = {.lex_state = 15, .external_lex_state = 2}, - [3907] = {.lex_state = 15, .external_lex_state = 2}, - [3908] = {.lex_state = 151, .external_lex_state = 6}, - [3909] = {.lex_state = 15, .external_lex_state = 2}, + [3904] = {.lex_state = 13, .external_lex_state = 2}, + [3905] = {.lex_state = 13, .external_lex_state = 2}, + [3906] = {.lex_state = 151, .external_lex_state = 2}, + [3907] = {.lex_state = 151, .external_lex_state = 5}, + [3908] = {.lex_state = 151, .external_lex_state = 2}, + [3909] = {.lex_state = 151, .external_lex_state = 5}, [3910] = {.lex_state = 151, .external_lex_state = 2}, [3911] = {.lex_state = 151, .external_lex_state = 5}, - [3912] = {.lex_state = 151, .external_lex_state = 5}, - [3913] = {.lex_state = 26, .external_lex_state = 2}, - [3914] = {.lex_state = 151, .external_lex_state = 5}, - [3915] = {.lex_state = 151, .external_lex_state = 5}, - [3916] = {.lex_state = 151, .external_lex_state = 6}, - [3917] = {.lex_state = 151, .external_lex_state = 6}, - [3918] = {.lex_state = 151, .external_lex_state = 6}, + [3912] = {.lex_state = 151, .external_lex_state = 6}, + [3913] = {.lex_state = 151, .external_lex_state = 2}, + [3914] = {.lex_state = 13, .external_lex_state = 2}, + [3915] = {.lex_state = 151, .external_lex_state = 2}, + [3916] = {.lex_state = 151, .external_lex_state = 5}, + [3917] = {.lex_state = 151, .external_lex_state = 5}, + [3918] = {.lex_state = 13, .external_lex_state = 2}, [3919] = {.lex_state = 151, .external_lex_state = 5}, [3920] = {.lex_state = 151, .external_lex_state = 5}, [3921] = {.lex_state = 151, .external_lex_state = 5}, @@ -17942,145 +17966,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3928] = {.lex_state = 151, .external_lex_state = 5}, [3929] = {.lex_state = 151, .external_lex_state = 5}, [3930] = {.lex_state = 151, .external_lex_state = 5}, - [3931] = {.lex_state = 151, .external_lex_state = 5}, - [3932] = {.lex_state = 151, .external_lex_state = 2}, - [3933] = {.lex_state = 151, .external_lex_state = 5}, + [3931] = {.lex_state = 26, .external_lex_state = 2}, + [3932] = {.lex_state = 151, .external_lex_state = 5}, + [3933] = {.lex_state = 151, .external_lex_state = 6}, [3934] = {.lex_state = 151, .external_lex_state = 5}, - [3935] = {.lex_state = 151, .external_lex_state = 5}, - [3936] = {.lex_state = 151, .external_lex_state = 5}, + [3935] = {.lex_state = 151, .external_lex_state = 6}, + [3936] = {.lex_state = 151, .external_lex_state = 6}, [3937] = {.lex_state = 151, .external_lex_state = 5}, [3938] = {.lex_state = 151, .external_lex_state = 5}, - [3939] = {.lex_state = 15, .external_lex_state = 2}, - [3940] = {.lex_state = 151, .external_lex_state = 2}, + [3939] = {.lex_state = 151, .external_lex_state = 5}, + [3940] = {.lex_state = 151, .external_lex_state = 5}, [3941] = {.lex_state = 151, .external_lex_state = 5}, [3942] = {.lex_state = 151, .external_lex_state = 5}, [3943] = {.lex_state = 151, .external_lex_state = 5}, [3944] = {.lex_state = 151, .external_lex_state = 5}, [3945] = {.lex_state = 151, .external_lex_state = 5}, [3946] = {.lex_state = 151, .external_lex_state = 5}, - [3947] = {.lex_state = 15, .external_lex_state = 2}, - [3948] = {.lex_state = 15, .external_lex_state = 2}, - [3949] = {.lex_state = 15, .external_lex_state = 2}, - [3950] = {.lex_state = 151, .external_lex_state = 6}, - [3951] = {.lex_state = 151, .external_lex_state = 2}, - [3952] = {.lex_state = 151, .external_lex_state = 5}, - [3953] = {.lex_state = 151, .external_lex_state = 5}, + [3947] = {.lex_state = 151, .external_lex_state = 5}, + [3948] = {.lex_state = 151, .external_lex_state = 5}, + [3949] = {.lex_state = 151, .external_lex_state = 5}, + [3950] = {.lex_state = 13, .external_lex_state = 2}, + [3951] = {.lex_state = 151, .external_lex_state = 5}, + [3952] = {.lex_state = 151, .external_lex_state = 2}, + [3953] = {.lex_state = 151, .external_lex_state = 2}, [3954] = {.lex_state = 151, .external_lex_state = 5}, [3955] = {.lex_state = 151, .external_lex_state = 5}, [3956] = {.lex_state = 151, .external_lex_state = 5}, - [3957] = {.lex_state = 15, .external_lex_state = 2}, + [3957] = {.lex_state = 151, .external_lex_state = 2}, [3958] = {.lex_state = 151, .external_lex_state = 5}, - [3959] = {.lex_state = 15, .external_lex_state = 2}, - [3960] = {.lex_state = 17, .external_lex_state = 2}, - [3961] = {.lex_state = 151, .external_lex_state = 5}, + [3959] = {.lex_state = 151, .external_lex_state = 5}, + [3960] = {.lex_state = 151, .external_lex_state = 5}, + [3961] = {.lex_state = 151, .external_lex_state = 2}, [3962] = {.lex_state = 151, .external_lex_state = 5}, - [3963] = {.lex_state = 151, .external_lex_state = 2}, - [3964] = {.lex_state = 151, .external_lex_state = 2}, + [3963] = {.lex_state = 151, .external_lex_state = 5}, + [3964] = {.lex_state = 151, .external_lex_state = 5}, [3965] = {.lex_state = 151, .external_lex_state = 5}, [3966] = {.lex_state = 151, .external_lex_state = 5}, [3967] = {.lex_state = 151, .external_lex_state = 5}, - [3968] = {.lex_state = 151, .external_lex_state = 5}, + [3968] = {.lex_state = 151, .external_lex_state = 2}, [3969] = {.lex_state = 151, .external_lex_state = 5}, - [3970] = {.lex_state = 151, .external_lex_state = 2}, - [3971] = {.lex_state = 24, .external_lex_state = 8}, + [3970] = {.lex_state = 151, .external_lex_state = 5}, + [3971] = {.lex_state = 151, .external_lex_state = 5}, [3972] = {.lex_state = 151, .external_lex_state = 5}, [3973] = {.lex_state = 151, .external_lex_state = 5}, [3974] = {.lex_state = 151, .external_lex_state = 5}, [3975] = {.lex_state = 151, .external_lex_state = 5}, - [3976] = {.lex_state = 151, .external_lex_state = 5}, - [3977] = {.lex_state = 15, .external_lex_state = 2}, + [3976] = {.lex_state = 17, .external_lex_state = 2}, + [3977] = {.lex_state = 151, .external_lex_state = 5}, [3978] = {.lex_state = 151, .external_lex_state = 5}, - [3979] = {.lex_state = 15, .external_lex_state = 2}, - [3980] = {.lex_state = 151, .external_lex_state = 5}, - [3981] = {.lex_state = 26, .external_lex_state = 2}, - [3982] = {.lex_state = 151, .external_lex_state = 5}, - [3983] = {.lex_state = 151, .external_lex_state = 5}, - [3984] = {.lex_state = 17, .external_lex_state = 2}, + [3979] = {.lex_state = 151, .external_lex_state = 5}, + [3980] = {.lex_state = 151, .external_lex_state = 2}, + [3981] = {.lex_state = 151, .external_lex_state = 5}, + [3982] = {.lex_state = 13, .external_lex_state = 2}, + [3983] = {.lex_state = 151, .external_lex_state = 2}, + [3984] = {.lex_state = 151, .external_lex_state = 5}, [3985] = {.lex_state = 151, .external_lex_state = 5}, - [3986] = {.lex_state = 151, .external_lex_state = 2}, + [3986] = {.lex_state = 151, .external_lex_state = 5}, [3987] = {.lex_state = 151, .external_lex_state = 5}, [3988] = {.lex_state = 151, .external_lex_state = 5}, [3989] = {.lex_state = 151, .external_lex_state = 5}, - [3990] = {.lex_state = 151, .external_lex_state = 5}, - [3991] = {.lex_state = 151, .external_lex_state = 2}, + [3990] = {.lex_state = 24, .external_lex_state = 8}, + [3991] = {.lex_state = 151, .external_lex_state = 6}, [3992] = {.lex_state = 151, .external_lex_state = 5}, [3993] = {.lex_state = 151, .external_lex_state = 5}, - [3994] = {.lex_state = 151, .external_lex_state = 2}, - [3995] = {.lex_state = 151, .external_lex_state = 5}, - [3996] = {.lex_state = 15, .external_lex_state = 2}, - [3997] = {.lex_state = 15, .external_lex_state = 2}, - [3998] = {.lex_state = 24, .external_lex_state = 8}, - [3999] = {.lex_state = 151, .external_lex_state = 6}, - [4000] = {.lex_state = 151, .external_lex_state = 6}, - [4001] = {.lex_state = 15, .external_lex_state = 2}, + [3994] = {.lex_state = 151, .external_lex_state = 5}, + [3995] = {.lex_state = 5, .external_lex_state = 2}, + [3996] = {.lex_state = 26, .external_lex_state = 2}, + [3997] = {.lex_state = 151, .external_lex_state = 2}, + [3998] = {.lex_state = 151, .external_lex_state = 5}, + [3999] = {.lex_state = 151, .external_lex_state = 5}, + [4000] = {.lex_state = 151, .external_lex_state = 5}, + [4001] = {.lex_state = 151, .external_lex_state = 2}, [4002] = {.lex_state = 151, .external_lex_state = 5}, [4003] = {.lex_state = 151, .external_lex_state = 5}, [4004] = {.lex_state = 151, .external_lex_state = 5}, [4005] = {.lex_state = 151, .external_lex_state = 5}, - [4006] = {.lex_state = 5, .external_lex_state = 2}, + [4006] = {.lex_state = 151, .external_lex_state = 5}, [4007] = {.lex_state = 151, .external_lex_state = 5}, [4008] = {.lex_state = 151, .external_lex_state = 5}, - [4009] = {.lex_state = 151, .external_lex_state = 5}, + [4009] = {.lex_state = 151, .external_lex_state = 6}, [4010] = {.lex_state = 151, .external_lex_state = 5}, [4011] = {.lex_state = 151, .external_lex_state = 5}, - [4012] = {.lex_state = 15, .external_lex_state = 2}, - [4013] = {.lex_state = 151, .external_lex_state = 2}, - [4014] = {.lex_state = 15, .external_lex_state = 2}, + [4012] = {.lex_state = 13, .external_lex_state = 2}, + [4013] = {.lex_state = 13, .external_lex_state = 2}, + [4014] = {.lex_state = 151, .external_lex_state = 6}, [4015] = {.lex_state = 151, .external_lex_state = 5}, - [4016] = {.lex_state = 151, .external_lex_state = 6}, - [4017] = {.lex_state = 151, .external_lex_state = 5}, + [4016] = {.lex_state = 151, .external_lex_state = 5}, + [4017] = {.lex_state = 24, .external_lex_state = 8}, [4018] = {.lex_state = 151, .external_lex_state = 5}, [4019] = {.lex_state = 151, .external_lex_state = 5}, - [4020] = {.lex_state = 24, .external_lex_state = 8}, + [4020] = {.lex_state = 151, .external_lex_state = 6}, [4021] = {.lex_state = 151, .external_lex_state = 5}, [4022] = {.lex_state = 151, .external_lex_state = 5}, - [4023] = {.lex_state = 15, .external_lex_state = 2}, - [4024] = {.lex_state = 151, .external_lex_state = 5}, - [4025] = {.lex_state = 151, .external_lex_state = 6}, + [4023] = {.lex_state = 151, .external_lex_state = 2}, + [4024] = {.lex_state = 151, .external_lex_state = 2}, + [4025] = {.lex_state = 151, .external_lex_state = 2}, [4026] = {.lex_state = 151, .external_lex_state = 5}, [4027] = {.lex_state = 151, .external_lex_state = 5}, - [4028] = {.lex_state = 151, .external_lex_state = 5}, - [4029] = {.lex_state = 151, .external_lex_state = 2}, - [4030] = {.lex_state = 151, .external_lex_state = 5}, + [4028] = {.lex_state = 13, .external_lex_state = 2}, + [4029] = {.lex_state = 151, .external_lex_state = 5}, + [4030] = {.lex_state = 151, .external_lex_state = 6}, [4031] = {.lex_state = 151, .external_lex_state = 5}, [4032] = {.lex_state = 151, .external_lex_state = 5}, - [4033] = {.lex_state = 151, .external_lex_state = 2}, - [4034] = {.lex_state = 151, .external_lex_state = 2}, + [4033] = {.lex_state = 151, .external_lex_state = 5}, + [4034] = {.lex_state = 151, .external_lex_state = 5}, [4035] = {.lex_state = 151, .external_lex_state = 5}, - [4036] = {.lex_state = 151, .external_lex_state = 5}, - [4037] = {.lex_state = 151, .external_lex_state = 6}, + [4036] = {.lex_state = 13, .external_lex_state = 2}, + [4037] = {.lex_state = 151, .external_lex_state = 5}, [4038] = {.lex_state = 151, .external_lex_state = 5}, - [4039] = {.lex_state = 151, .external_lex_state = 5}, - [4040] = {.lex_state = 15, .external_lex_state = 2}, + [4039] = {.lex_state = 151, .external_lex_state = 2}, + [4040] = {.lex_state = 151, .external_lex_state = 5}, [4041] = {.lex_state = 151, .external_lex_state = 5}, [4042] = {.lex_state = 151, .external_lex_state = 5}, [4043] = {.lex_state = 151, .external_lex_state = 5}, [4044] = {.lex_state = 151, .external_lex_state = 5}, [4045] = {.lex_state = 151, .external_lex_state = 5}, - [4046] = {.lex_state = 15, .external_lex_state = 2}, + [4046] = {.lex_state = 151, .external_lex_state = 2}, [4047] = {.lex_state = 151, .external_lex_state = 5}, - [4048] = {.lex_state = 151, .external_lex_state = 5}, + [4048] = {.lex_state = 16, .external_lex_state = 2}, [4049] = {.lex_state = 151, .external_lex_state = 5}, [4050] = {.lex_state = 151, .external_lex_state = 5}, - [4051] = {.lex_state = 151, .external_lex_state = 2}, + [4051] = {.lex_state = 151, .external_lex_state = 5}, [4052] = {.lex_state = 151, .external_lex_state = 5}, - [4053] = {.lex_state = 151, .external_lex_state = 5}, + [4053] = {.lex_state = 13, .external_lex_state = 2}, [4054] = {.lex_state = 151, .external_lex_state = 5}, - [4055] = {.lex_state = 15, .external_lex_state = 2}, - [4056] = {.lex_state = 151, .external_lex_state = 5}, + [4055] = {.lex_state = 151, .external_lex_state = 5}, + [4056] = {.lex_state = 151, .external_lex_state = 2}, [4057] = {.lex_state = 151, .external_lex_state = 5}, [4058] = {.lex_state = 151, .external_lex_state = 5}, - [4059] = {.lex_state = 15, .external_lex_state = 2}, + [4059] = {.lex_state = 151, .external_lex_state = 5}, [4060] = {.lex_state = 151, .external_lex_state = 5}, - [4061] = {.lex_state = 15, .external_lex_state = 2}, - [4062] = {.lex_state = 15, .external_lex_state = 2}, + [4061] = {.lex_state = 13, .external_lex_state = 2}, + [4062] = {.lex_state = 151, .external_lex_state = 5}, [4063] = {.lex_state = 151, .external_lex_state = 5}, - [4064] = {.lex_state = 15, .external_lex_state = 2}, - [4065] = {.lex_state = 15, .external_lex_state = 2}, + [4064] = {.lex_state = 13, .external_lex_state = 2}, + [4065] = {.lex_state = 151, .external_lex_state = 5}, [4066] = {.lex_state = 151, .external_lex_state = 5}, - [4067] = {.lex_state = 151, .external_lex_state = 5}, - [4068] = {.lex_state = 151, .external_lex_state = 5}, - [4069] = {.lex_state = 15, .external_lex_state = 2}, + [4067] = {.lex_state = 13, .external_lex_state = 2}, + [4068] = {.lex_state = 13, .external_lex_state = 2}, + [4069] = {.lex_state = 13, .external_lex_state = 2}, [4070] = {.lex_state = 151, .external_lex_state = 5}, [4071] = {.lex_state = 151, .external_lex_state = 5}, [4072] = {.lex_state = 151, .external_lex_state = 5}, @@ -18089,793 +18113,793 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4075] = {.lex_state = 151, .external_lex_state = 5}, [4076] = {.lex_state = 151, .external_lex_state = 5}, [4077] = {.lex_state = 151, .external_lex_state = 5}, - [4078] = {.lex_state = 151, .external_lex_state = 5}, - [4079] = {.lex_state = 151, .external_lex_state = 5}, + [4078] = {.lex_state = 13, .external_lex_state = 2}, + [4079] = {.lex_state = 13, .external_lex_state = 2}, [4080] = {.lex_state = 151, .external_lex_state = 5}, - [4081] = {.lex_state = 15, .external_lex_state = 2}, + [4081] = {.lex_state = 151, .external_lex_state = 5}, [4082] = {.lex_state = 151, .external_lex_state = 5}, [4083] = {.lex_state = 151, .external_lex_state = 5}, [4084] = {.lex_state = 151, .external_lex_state = 5}, - [4085] = {.lex_state = 151, .external_lex_state = 5}, - [4086] = {.lex_state = 151, .external_lex_state = 5}, + [4085] = {.lex_state = 151, .external_lex_state = 2}, + [4086] = {.lex_state = 151, .external_lex_state = 2}, [4087] = {.lex_state = 151, .external_lex_state = 5}, - [4088] = {.lex_state = 151, .external_lex_state = 5}, - [4089] = {.lex_state = 151, .external_lex_state = 5}, - [4090] = {.lex_state = 151, .external_lex_state = 5}, + [4088] = {.lex_state = 151, .external_lex_state = 2}, + [4089] = {.lex_state = 13, .external_lex_state = 2}, + [4090] = {.lex_state = 151, .external_lex_state = 6}, [4091] = {.lex_state = 151, .external_lex_state = 5}, - [4092] = {.lex_state = 17, .external_lex_state = 2}, - [4093] = {.lex_state = 151, .external_lex_state = 5}, + [4092] = {.lex_state = 151, .external_lex_state = 5}, + [4093] = {.lex_state = 17, .external_lex_state = 2}, [4094] = {.lex_state = 151, .external_lex_state = 5}, - [4095] = {.lex_state = 24, .external_lex_state = 8}, - [4096] = {.lex_state = 151, .external_lex_state = 6}, + [4095] = {.lex_state = 151, .external_lex_state = 5}, + [4096] = {.lex_state = 151, .external_lex_state = 5}, [4097] = {.lex_state = 151, .external_lex_state = 5}, [4098] = {.lex_state = 151, .external_lex_state = 5}, - [4099] = {.lex_state = 151, .external_lex_state = 2}, - [4100] = {.lex_state = 151, .external_lex_state = 5}, + [4099] = {.lex_state = 24, .external_lex_state = 8}, + [4100] = {.lex_state = 151, .external_lex_state = 6}, [4101] = {.lex_state = 151, .external_lex_state = 5}, [4102] = {.lex_state = 151, .external_lex_state = 5}, [4103] = {.lex_state = 151, .external_lex_state = 5}, - [4104] = {.lex_state = 24, .external_lex_state = 8}, + [4104] = {.lex_state = 151, .external_lex_state = 5}, [4105] = {.lex_state = 151, .external_lex_state = 5}, - [4106] = {.lex_state = 151, .external_lex_state = 6}, + [4106] = {.lex_state = 151, .external_lex_state = 5}, [4107] = {.lex_state = 151, .external_lex_state = 5}, [4108] = {.lex_state = 151, .external_lex_state = 5}, - [4109] = {.lex_state = 151, .external_lex_state = 5}, - [4110] = {.lex_state = 151, .external_lex_state = 2}, - [4111] = {.lex_state = 151, .external_lex_state = 2}, - [4112] = {.lex_state = 151, .external_lex_state = 2}, - [4113] = {.lex_state = 15, .external_lex_state = 2}, + [4109] = {.lex_state = 13, .external_lex_state = 2}, + [4110] = {.lex_state = 24, .external_lex_state = 8}, + [4111] = {.lex_state = 151, .external_lex_state = 6}, + [4112] = {.lex_state = 151, .external_lex_state = 5}, + [4113] = {.lex_state = 151, .external_lex_state = 5}, [4114] = {.lex_state = 151, .external_lex_state = 5}, [4115] = {.lex_state = 151, .external_lex_state = 5}, [4116] = {.lex_state = 151, .external_lex_state = 5}, - [4117] = {.lex_state = 151, .external_lex_state = 5}, - [4118] = {.lex_state = 17, .external_lex_state = 2}, + [4117] = {.lex_state = 13, .external_lex_state = 2}, + [4118] = {.lex_state = 151, .external_lex_state = 5}, [4119] = {.lex_state = 151, .external_lex_state = 5}, - [4120] = {.lex_state = 24, .external_lex_state = 8}, + [4120] = {.lex_state = 151, .external_lex_state = 5}, [4121] = {.lex_state = 151, .external_lex_state = 5}, [4122] = {.lex_state = 151, .external_lex_state = 5}, [4123] = {.lex_state = 151, .external_lex_state = 5}, - [4124] = {.lex_state = 24, .external_lex_state = 8}, - [4125] = {.lex_state = 151, .external_lex_state = 5}, - [4126] = {.lex_state = 151, .external_lex_state = 2}, + [4124] = {.lex_state = 151, .external_lex_state = 5}, + [4125] = {.lex_state = 17, .external_lex_state = 2}, + [4126] = {.lex_state = 24, .external_lex_state = 8}, [4127] = {.lex_state = 151, .external_lex_state = 5}, [4128] = {.lex_state = 151, .external_lex_state = 5}, - [4129] = {.lex_state = 24, .external_lex_state = 8}, + [4129] = {.lex_state = 151, .external_lex_state = 5}, [4130] = {.lex_state = 151, .external_lex_state = 5}, - [4131] = {.lex_state = 151, .external_lex_state = 5}, - [4132] = {.lex_state = 151, .external_lex_state = 5}, + [4131] = {.lex_state = 24, .external_lex_state = 8}, + [4132] = {.lex_state = 26, .external_lex_state = 2}, [4133] = {.lex_state = 151, .external_lex_state = 5}, - [4134] = {.lex_state = 24, .external_lex_state = 8}, + [4134] = {.lex_state = 151, .external_lex_state = 5}, [4135] = {.lex_state = 151, .external_lex_state = 5}, [4136] = {.lex_state = 151, .external_lex_state = 5}, [4137] = {.lex_state = 151, .external_lex_state = 5}, - [4138] = {.lex_state = 151, .external_lex_state = 5}, + [4138] = {.lex_state = 24, .external_lex_state = 8}, [4139] = {.lex_state = 151, .external_lex_state = 5}, - [4140] = {.lex_state = 151, .external_lex_state = 5}, + [4140] = {.lex_state = 13, .external_lex_state = 2}, [4141] = {.lex_state = 151, .external_lex_state = 5}, [4142] = {.lex_state = 151, .external_lex_state = 5}, - [4143] = {.lex_state = 151, .external_lex_state = 5}, + [4143] = {.lex_state = 24, .external_lex_state = 8}, [4144] = {.lex_state = 151, .external_lex_state = 5}, [4145] = {.lex_state = 151, .external_lex_state = 5}, [4146] = {.lex_state = 151, .external_lex_state = 5}, - [4147] = {.lex_state = 151, .external_lex_state = 5}, + [4147] = {.lex_state = 151, .external_lex_state = 2}, [4148] = {.lex_state = 151, .external_lex_state = 5}, [4149] = {.lex_state = 151, .external_lex_state = 5}, [4150] = {.lex_state = 151, .external_lex_state = 5}, - [4151] = {.lex_state = 151, .external_lex_state = 5}, - [4152] = {.lex_state = 151, .external_lex_state = 2}, - [4153] = {.lex_state = 151, .external_lex_state = 5}, + [4151] = {.lex_state = 151, .external_lex_state = 2}, + [4152] = {.lex_state = 151, .external_lex_state = 5}, + [4153] = {.lex_state = 151, .external_lex_state = 2}, [4154] = {.lex_state = 151, .external_lex_state = 2}, - [4155] = {.lex_state = 151, .external_lex_state = 2}, + [4155] = {.lex_state = 13, .external_lex_state = 2}, [4156] = {.lex_state = 151, .external_lex_state = 5}, [4157] = {.lex_state = 151, .external_lex_state = 5}, - [4158] = {.lex_state = 151, .external_lex_state = 5}, - [4159] = {.lex_state = 151, .external_lex_state = 5}, + [4158] = {.lex_state = 13, .external_lex_state = 2}, + [4159] = {.lex_state = 13, .external_lex_state = 2}, [4160] = {.lex_state = 151, .external_lex_state = 5}, [4161] = {.lex_state = 151, .external_lex_state = 5}, - [4162] = {.lex_state = 15, .external_lex_state = 2}, + [4162] = {.lex_state = 151, .external_lex_state = 5}, [4163] = {.lex_state = 151, .external_lex_state = 5}, - [4164] = {.lex_state = 15, .external_lex_state = 2}, + [4164] = {.lex_state = 151, .external_lex_state = 5}, [4165] = {.lex_state = 151, .external_lex_state = 5}, [4166] = {.lex_state = 151, .external_lex_state = 5}, - [4167] = {.lex_state = 151, .external_lex_state = 2}, + [4167] = {.lex_state = 151, .external_lex_state = 5}, [4168] = {.lex_state = 151, .external_lex_state = 5}, - [4169] = {.lex_state = 151, .external_lex_state = 2}, - [4170] = {.lex_state = 15, .external_lex_state = 2}, - [4171] = {.lex_state = 151, .external_lex_state = 2}, + [4169] = {.lex_state = 151, .external_lex_state = 5}, + [4170] = {.lex_state = 13, .external_lex_state = 2}, + [4171] = {.lex_state = 151, .external_lex_state = 5}, [4172] = {.lex_state = 151, .external_lex_state = 5}, - [4173] = {.lex_state = 15, .external_lex_state = 2}, + [4173] = {.lex_state = 151, .external_lex_state = 5}, [4174] = {.lex_state = 151, .external_lex_state = 2}, - [4175] = {.lex_state = 151, .external_lex_state = 5}, + [4175] = {.lex_state = 13, .external_lex_state = 2}, [4176] = {.lex_state = 151, .external_lex_state = 5}, - [4177] = {.lex_state = 15, .external_lex_state = 2}, - [4178] = {.lex_state = 24, .external_lex_state = 8}, - [4179] = {.lex_state = 15, .external_lex_state = 2}, - [4180] = {.lex_state = 151, .external_lex_state = 5}, - [4181] = {.lex_state = 151, .external_lex_state = 2}, - [4182] = {.lex_state = 151, .external_lex_state = 5}, - [4183] = {.lex_state = 151, .external_lex_state = 2}, + [4177] = {.lex_state = 13, .external_lex_state = 2}, + [4178] = {.lex_state = 13, .external_lex_state = 2}, + [4179] = {.lex_state = 151, .external_lex_state = 5}, + [4180] = {.lex_state = 13, .external_lex_state = 2}, + [4181] = {.lex_state = 151, .external_lex_state = 5}, + [4182] = {.lex_state = 13, .external_lex_state = 2}, + [4183] = {.lex_state = 151, .external_lex_state = 5}, [4184] = {.lex_state = 151, .external_lex_state = 5}, - [4185] = {.lex_state = 151, .external_lex_state = 2}, + [4185] = {.lex_state = 151, .external_lex_state = 5}, [4186] = {.lex_state = 151, .external_lex_state = 5}, - [4187] = {.lex_state = 151, .external_lex_state = 2}, + [4187] = {.lex_state = 151, .external_lex_state = 5}, [4188] = {.lex_state = 151, .external_lex_state = 5}, - [4189] = {.lex_state = 15, .external_lex_state = 2}, + [4189] = {.lex_state = 151, .external_lex_state = 5}, [4190] = {.lex_state = 151, .external_lex_state = 5}, - [4191] = {.lex_state = 15, .external_lex_state = 2}, - [4192] = {.lex_state = 15, .external_lex_state = 2}, - [4193] = {.lex_state = 15, .external_lex_state = 2}, - [4194] = {.lex_state = 15, .external_lex_state = 2}, - [4195] = {.lex_state = 151, .external_lex_state = 5}, - [4196] = {.lex_state = 151, .external_lex_state = 5}, - [4197] = {.lex_state = 26, .external_lex_state = 2}, - [4198] = {.lex_state = 26, .external_lex_state = 2}, - [4199] = {.lex_state = 15, .external_lex_state = 2}, - [4200] = {.lex_state = 151, .external_lex_state = 2}, - [4201] = {.lex_state = 15, .external_lex_state = 2}, - [4202] = {.lex_state = 151, .external_lex_state = 5}, - [4203] = {.lex_state = 15, .external_lex_state = 2}, + [4191] = {.lex_state = 151, .external_lex_state = 5}, + [4192] = {.lex_state = 13, .external_lex_state = 2}, + [4193] = {.lex_state = 13, .external_lex_state = 2}, + [4194] = {.lex_state = 151, .external_lex_state = 5}, + [4195] = {.lex_state = 13, .external_lex_state = 2}, + [4196] = {.lex_state = 13, .external_lex_state = 2}, + [4197] = {.lex_state = 151, .external_lex_state = 5}, + [4198] = {.lex_state = 151, .external_lex_state = 5}, + [4199] = {.lex_state = 151, .external_lex_state = 5}, + [4200] = {.lex_state = 151, .external_lex_state = 5}, + [4201] = {.lex_state = 151, .external_lex_state = 5}, + [4202] = {.lex_state = 13, .external_lex_state = 2}, + [4203] = {.lex_state = 13, .external_lex_state = 2}, [4204] = {.lex_state = 151, .external_lex_state = 5}, [4205] = {.lex_state = 151, .external_lex_state = 5}, - [4206] = {.lex_state = 151, .external_lex_state = 5}, - [4207] = {.lex_state = 15, .external_lex_state = 2}, + [4206] = {.lex_state = 13, .external_lex_state = 2}, + [4207] = {.lex_state = 13, .external_lex_state = 2}, [4208] = {.lex_state = 151, .external_lex_state = 5}, [4209] = {.lex_state = 151, .external_lex_state = 5}, - [4210] = {.lex_state = 151, .external_lex_state = 5}, - [4211] = {.lex_state = 15, .external_lex_state = 2}, - [4212] = {.lex_state = 151, .external_lex_state = 5}, - [4213] = {.lex_state = 15, .external_lex_state = 2}, + [4210] = {.lex_state = 13, .external_lex_state = 2}, + [4211] = {.lex_state = 151, .external_lex_state = 5}, + [4212] = {.lex_state = 13, .external_lex_state = 2}, + [4213] = {.lex_state = 151, .external_lex_state = 5}, [4214] = {.lex_state = 151, .external_lex_state = 5}, [4215] = {.lex_state = 151, .external_lex_state = 5}, - [4216] = {.lex_state = 15, .external_lex_state = 2}, + [4216] = {.lex_state = 151, .external_lex_state = 5}, [4217] = {.lex_state = 151, .external_lex_state = 5}, [4218] = {.lex_state = 151, .external_lex_state = 5}, - [4219] = {.lex_state = 15, .external_lex_state = 2}, + [4219] = {.lex_state = 13, .external_lex_state = 2}, [4220] = {.lex_state = 151, .external_lex_state = 5}, - [4221] = {.lex_state = 151, .external_lex_state = 2}, - [4222] = {.lex_state = 151, .external_lex_state = 5}, - [4223] = {.lex_state = 151, .external_lex_state = 2}, - [4224] = {.lex_state = 151, .external_lex_state = 5}, - [4225] = {.lex_state = 151, .external_lex_state = 5}, + [4221] = {.lex_state = 151, .external_lex_state = 5}, + [4222] = {.lex_state = 13, .external_lex_state = 2}, + [4223] = {.lex_state = 151, .external_lex_state = 5}, + [4224] = {.lex_state = 13, .external_lex_state = 2}, + [4225] = {.lex_state = 17, .external_lex_state = 2}, [4226] = {.lex_state = 151, .external_lex_state = 5}, - [4227] = {.lex_state = 151, .external_lex_state = 5}, + [4227] = {.lex_state = 151, .external_lex_state = 2}, [4228] = {.lex_state = 151, .external_lex_state = 5}, [4229] = {.lex_state = 151, .external_lex_state = 5}, [4230] = {.lex_state = 151, .external_lex_state = 5}, [4231] = {.lex_state = 151, .external_lex_state = 5}, - [4232] = {.lex_state = 151, .external_lex_state = 5}, - [4233] = {.lex_state = 151, .external_lex_state = 5}, - [4234] = {.lex_state = 151, .external_lex_state = 5}, - [4235] = {.lex_state = 26, .external_lex_state = 2}, - [4236] = {.lex_state = 26, .external_lex_state = 2}, + [4232] = {.lex_state = 151, .external_lex_state = 2}, + [4233] = {.lex_state = 24, .external_lex_state = 8}, + [4234] = {.lex_state = 13, .external_lex_state = 2}, + [4235] = {.lex_state = 13, .external_lex_state = 2}, + [4236] = {.lex_state = 151, .external_lex_state = 5}, [4237] = {.lex_state = 151, .external_lex_state = 5}, - [4238] = {.lex_state = 15, .external_lex_state = 2}, - [4239] = {.lex_state = 15, .external_lex_state = 2}, + [4238] = {.lex_state = 26, .external_lex_state = 2}, + [4239] = {.lex_state = 26, .external_lex_state = 2}, [4240] = {.lex_state = 151, .external_lex_state = 5}, [4241] = {.lex_state = 151, .external_lex_state = 5}, - [4242] = {.lex_state = 151, .external_lex_state = 2}, - [4243] = {.lex_state = 151, .external_lex_state = 2}, - [4244] = {.lex_state = 15, .external_lex_state = 2}, - [4245] = {.lex_state = 15, .external_lex_state = 2}, + [4242] = {.lex_state = 151, .external_lex_state = 5}, + [4243] = {.lex_state = 151, .external_lex_state = 5}, + [4244] = {.lex_state = 151, .external_lex_state = 5}, + [4245] = {.lex_state = 151, .external_lex_state = 5}, [4246] = {.lex_state = 151, .external_lex_state = 5}, - [4247] = {.lex_state = 15, .external_lex_state = 2}, - [4248] = {.lex_state = 151, .external_lex_state = 2}, + [4247] = {.lex_state = 151, .external_lex_state = 5}, + [4248] = {.lex_state = 151, .external_lex_state = 5}, [4249] = {.lex_state = 151, .external_lex_state = 5}, - [4250] = {.lex_state = 15, .external_lex_state = 2}, + [4250] = {.lex_state = 151, .external_lex_state = 2}, [4251] = {.lex_state = 151, .external_lex_state = 5}, - [4252] = {.lex_state = 151, .external_lex_state = 5}, - [4253] = {.lex_state = 151, .external_lex_state = 2}, + [4252] = {.lex_state = 13, .external_lex_state = 2}, + [4253] = {.lex_state = 151, .external_lex_state = 5}, [4254] = {.lex_state = 151, .external_lex_state = 5}, - [4255] = {.lex_state = 151, .external_lex_state = 5}, - [4256] = {.lex_state = 151, .external_lex_state = 5}, - [4257] = {.lex_state = 15, .external_lex_state = 2}, - [4258] = {.lex_state = 26, .external_lex_state = 2}, - [4259] = {.lex_state = 151, .external_lex_state = 5}, - [4260] = {.lex_state = 151, .external_lex_state = 5}, - [4261] = {.lex_state = 26, .external_lex_state = 2}, - [4262] = {.lex_state = 151, .external_lex_state = 5}, - [4263] = {.lex_state = 151, .external_lex_state = 5}, - [4264] = {.lex_state = 26, .external_lex_state = 2}, - [4265] = {.lex_state = 26, .external_lex_state = 2}, - [4266] = {.lex_state = 15, .external_lex_state = 2}, + [4255] = {.lex_state = 151, .external_lex_state = 2}, + [4256] = {.lex_state = 151, .external_lex_state = 2}, + [4257] = {.lex_state = 151, .external_lex_state = 5}, + [4258] = {.lex_state = 13, .external_lex_state = 2}, + [4259] = {.lex_state = 26, .external_lex_state = 2}, + [4260] = {.lex_state = 26, .external_lex_state = 2}, + [4261] = {.lex_state = 13, .external_lex_state = 2}, + [4262] = {.lex_state = 151, .external_lex_state = 2}, + [4263] = {.lex_state = 13, .external_lex_state = 2}, + [4264] = {.lex_state = 151, .external_lex_state = 5}, + [4265] = {.lex_state = 151, .external_lex_state = 5}, + [4266] = {.lex_state = 151, .external_lex_state = 2}, [4267] = {.lex_state = 151, .external_lex_state = 5}, - [4268] = {.lex_state = 151, .external_lex_state = 5}, + [4268] = {.lex_state = 151, .external_lex_state = 2}, [4269] = {.lex_state = 151, .external_lex_state = 5}, - [4270] = {.lex_state = 26, .external_lex_state = 2}, - [4271] = {.lex_state = 151, .external_lex_state = 5}, - [4272] = {.lex_state = 26, .external_lex_state = 2}, - [4273] = {.lex_state = 26, .external_lex_state = 2}, - [4274] = {.lex_state = 26, .external_lex_state = 2}, + [4270] = {.lex_state = 151, .external_lex_state = 2}, + [4271] = {.lex_state = 13, .external_lex_state = 2}, + [4272] = {.lex_state = 151, .external_lex_state = 5}, + [4273] = {.lex_state = 151, .external_lex_state = 2}, + [4274] = {.lex_state = 151, .external_lex_state = 2}, [4275] = {.lex_state = 26, .external_lex_state = 2}, [4276] = {.lex_state = 26, .external_lex_state = 2}, [4277] = {.lex_state = 151, .external_lex_state = 5}, - [4278] = {.lex_state = 15, .external_lex_state = 2}, - [4279] = {.lex_state = 151, .external_lex_state = 5}, - [4280] = {.lex_state = 151, .external_lex_state = 5}, - [4281] = {.lex_state = 26, .external_lex_state = 2}, - [4282] = {.lex_state = 26, .external_lex_state = 2}, - [4283] = {.lex_state = 151, .external_lex_state = 5}, - [4284] = {.lex_state = 151, .external_lex_state = 5}, + [4278] = {.lex_state = 151, .external_lex_state = 5}, + [4279] = {.lex_state = 26, .external_lex_state = 2}, + [4280] = {.lex_state = 26, .external_lex_state = 2}, + [4281] = {.lex_state = 151, .external_lex_state = 5}, + [4282] = {.lex_state = 151, .external_lex_state = 5}, + [4283] = {.lex_state = 151, .external_lex_state = 2}, + [4284] = {.lex_state = 151, .external_lex_state = 2}, [4285] = {.lex_state = 151, .external_lex_state = 5}, [4286] = {.lex_state = 151, .external_lex_state = 5}, [4287] = {.lex_state = 151, .external_lex_state = 5}, - [4288] = {.lex_state = 15, .external_lex_state = 2}, + [4288] = {.lex_state = 151, .external_lex_state = 5}, [4289] = {.lex_state = 151, .external_lex_state = 5}, [4290] = {.lex_state = 151, .external_lex_state = 5}, [4291] = {.lex_state = 151, .external_lex_state = 5}, - [4292] = {.lex_state = 151, .external_lex_state = 5}, - [4293] = {.lex_state = 151, .external_lex_state = 5}, - [4294] = {.lex_state = 151, .external_lex_state = 5}, - [4295] = {.lex_state = 151, .external_lex_state = 5}, - [4296] = {.lex_state = 24, .external_lex_state = 8}, + [4292] = {.lex_state = 26, .external_lex_state = 2}, + [4293] = {.lex_state = 26, .external_lex_state = 2}, + [4294] = {.lex_state = 26, .external_lex_state = 2}, + [4295] = {.lex_state = 26, .external_lex_state = 2}, + [4296] = {.lex_state = 151, .external_lex_state = 2}, [4297] = {.lex_state = 26, .external_lex_state = 2}, - [4298] = {.lex_state = 26, .external_lex_state = 2}, - [4299] = {.lex_state = 151, .external_lex_state = 5}, - [4300] = {.lex_state = 151, .external_lex_state = 5}, + [4298] = {.lex_state = 151, .external_lex_state = 2}, + [4299] = {.lex_state = 26, .external_lex_state = 2}, + [4300] = {.lex_state = 151, .external_lex_state = 2}, [4301] = {.lex_state = 151, .external_lex_state = 5}, - [4302] = {.lex_state = 151, .external_lex_state = 5}, + [4302] = {.lex_state = 13, .external_lex_state = 2}, [4303] = {.lex_state = 151, .external_lex_state = 5}, - [4304] = {.lex_state = 151, .external_lex_state = 5}, + [4304] = {.lex_state = 13, .external_lex_state = 2}, [4305] = {.lex_state = 151, .external_lex_state = 5}, - [4306] = {.lex_state = 15, .external_lex_state = 2}, + [4306] = {.lex_state = 151, .external_lex_state = 5}, [4307] = {.lex_state = 151, .external_lex_state = 5}, - [4308] = {.lex_state = 151, .external_lex_state = 5}, - [4309] = {.lex_state = 151, .external_lex_state = 5}, + [4308] = {.lex_state = 26, .external_lex_state = 2}, + [4309] = {.lex_state = 26, .external_lex_state = 2}, [4310] = {.lex_state = 151, .external_lex_state = 5}, [4311] = {.lex_state = 151, .external_lex_state = 5}, [4312] = {.lex_state = 151, .external_lex_state = 5}, - [4313] = {.lex_state = 15, .external_lex_state = 2}, + [4313] = {.lex_state = 13, .external_lex_state = 2}, [4314] = {.lex_state = 151, .external_lex_state = 5}, [4315] = {.lex_state = 151, .external_lex_state = 5}, - [4316] = {.lex_state = 15, .external_lex_state = 2}, - [4317] = {.lex_state = 151, .external_lex_state = 5}, - [4318] = {.lex_state = 151, .external_lex_state = 6}, - [4319] = {.lex_state = 15, .external_lex_state = 2}, - [4320] = {.lex_state = 151, .external_lex_state = 6}, + [4316] = {.lex_state = 151, .external_lex_state = 5}, + [4317] = {.lex_state = 151, .external_lex_state = 2}, + [4318] = {.lex_state = 151, .external_lex_state = 5}, + [4319] = {.lex_state = 26, .external_lex_state = 2}, + [4320] = {.lex_state = 26, .external_lex_state = 2}, [4321] = {.lex_state = 151, .external_lex_state = 5}, [4322] = {.lex_state = 151, .external_lex_state = 5}, - [4323] = {.lex_state = 151, .external_lex_state = 2}, + [4323] = {.lex_state = 151, .external_lex_state = 5}, [4324] = {.lex_state = 151, .external_lex_state = 2}, - [4325] = {.lex_state = 26, .external_lex_state = 2}, + [4325] = {.lex_state = 151, .external_lex_state = 5}, [4326] = {.lex_state = 151, .external_lex_state = 5}, [4327] = {.lex_state = 151, .external_lex_state = 5}, [4328] = {.lex_state = 151, .external_lex_state = 5}, [4329] = {.lex_state = 151, .external_lex_state = 5}, [4330] = {.lex_state = 151, .external_lex_state = 5}, - [4331] = {.lex_state = 151, .external_lex_state = 5}, + [4331] = {.lex_state = 13, .external_lex_state = 2}, [4332] = {.lex_state = 151, .external_lex_state = 5}, - [4333] = {.lex_state = 26, .external_lex_state = 2}, + [4333] = {.lex_state = 151, .external_lex_state = 2}, [4334] = {.lex_state = 151, .external_lex_state = 5}, [4335] = {.lex_state = 151, .external_lex_state = 5}, - [4336] = {.lex_state = 151, .external_lex_state = 2}, - [4337] = {.lex_state = 151, .external_lex_state = 2}, - [4338] = {.lex_state = 15, .external_lex_state = 2}, + [4336] = {.lex_state = 151, .external_lex_state = 5}, + [4337] = {.lex_state = 13, .external_lex_state = 2}, + [4338] = {.lex_state = 151, .external_lex_state = 5}, [4339] = {.lex_state = 151, .external_lex_state = 5}, - [4340] = {.lex_state = 151, .external_lex_state = 2}, - [4341] = {.lex_state = 151, .external_lex_state = 2}, - [4342] = {.lex_state = 15, .external_lex_state = 2}, - [4343] = {.lex_state = 151, .external_lex_state = 6}, - [4344] = {.lex_state = 151, .external_lex_state = 5}, - [4345] = {.lex_state = 151, .external_lex_state = 2}, + [4340] = {.lex_state = 151, .external_lex_state = 5}, + [4341] = {.lex_state = 151, .external_lex_state = 5}, + [4342] = {.lex_state = 151, .external_lex_state = 5}, + [4343] = {.lex_state = 151, .external_lex_state = 5}, + [4344] = {.lex_state = 151, .external_lex_state = 2}, + [4345] = {.lex_state = 151, .external_lex_state = 5}, [4346] = {.lex_state = 151, .external_lex_state = 5}, - [4347] = {.lex_state = 151, .external_lex_state = 5}, - [4348] = {.lex_state = 151, .external_lex_state = 5}, + [4347] = {.lex_state = 24, .external_lex_state = 8}, + [4348] = {.lex_state = 13, .external_lex_state = 2}, [4349] = {.lex_state = 151, .external_lex_state = 5}, - [4350] = {.lex_state = 15, .external_lex_state = 2}, - [4351] = {.lex_state = 151, .external_lex_state = 5}, - [4352] = {.lex_state = 151, .external_lex_state = 5}, - [4353] = {.lex_state = 151, .external_lex_state = 2}, - [4354] = {.lex_state = 15, .external_lex_state = 2}, - [4355] = {.lex_state = 151, .external_lex_state = 5}, + [4350] = {.lex_state = 13, .external_lex_state = 2}, + [4351] = {.lex_state = 151, .external_lex_state = 2}, + [4352] = {.lex_state = 151, .external_lex_state = 2}, + [4353] = {.lex_state = 13, .external_lex_state = 2}, + [4354] = {.lex_state = 13, .external_lex_state = 2}, + [4355] = {.lex_state = 151, .external_lex_state = 2}, [4356] = {.lex_state = 151, .external_lex_state = 5}, - [4357] = {.lex_state = 5, .external_lex_state = 2}, + [4357] = {.lex_state = 151, .external_lex_state = 5}, [4358] = {.lex_state = 151, .external_lex_state = 5}, [4359] = {.lex_state = 151, .external_lex_state = 5}, - [4360] = {.lex_state = 151, .external_lex_state = 2}, - [4361] = {.lex_state = 151, .external_lex_state = 2}, - [4362] = {.lex_state = 15, .external_lex_state = 2}, + [4360] = {.lex_state = 151, .external_lex_state = 5}, + [4361] = {.lex_state = 151, .external_lex_state = 5}, + [4362] = {.lex_state = 151, .external_lex_state = 5}, [4363] = {.lex_state = 151, .external_lex_state = 5}, [4364] = {.lex_state = 151, .external_lex_state = 5}, [4365] = {.lex_state = 151, .external_lex_state = 5}, - [4366] = {.lex_state = 151, .external_lex_state = 5}, + [4366] = {.lex_state = 24, .external_lex_state = 8}, [4367] = {.lex_state = 151, .external_lex_state = 5}, [4368] = {.lex_state = 151, .external_lex_state = 5}, [4369] = {.lex_state = 151, .external_lex_state = 5}, - [4370] = {.lex_state = 15, .external_lex_state = 2}, + [4370] = {.lex_state = 151, .external_lex_state = 5}, [4371] = {.lex_state = 151, .external_lex_state = 5}, [4372] = {.lex_state = 151, .external_lex_state = 5}, - [4373] = {.lex_state = 15, .external_lex_state = 2}, + [4373] = {.lex_state = 151, .external_lex_state = 5}, [4374] = {.lex_state = 151, .external_lex_state = 5}, - [4375] = {.lex_state = 15, .external_lex_state = 2}, - [4376] = {.lex_state = 151, .external_lex_state = 5}, - [4377] = {.lex_state = 151, .external_lex_state = 5}, - [4378] = {.lex_state = 151, .external_lex_state = 5}, - [4379] = {.lex_state = 151, .external_lex_state = 5}, + [4375] = {.lex_state = 13, .external_lex_state = 2}, + [4376] = {.lex_state = 13, .external_lex_state = 2}, + [4377] = {.lex_state = 13, .external_lex_state = 2}, + [4378] = {.lex_state = 151, .external_lex_state = 6}, + [4379] = {.lex_state = 151, .external_lex_state = 6}, [4380] = {.lex_state = 151, .external_lex_state = 5}, [4381] = {.lex_state = 151, .external_lex_state = 5}, [4382] = {.lex_state = 151, .external_lex_state = 5}, [4383] = {.lex_state = 151, .external_lex_state = 5}, [4384] = {.lex_state = 151, .external_lex_state = 5}, [4385] = {.lex_state = 151, .external_lex_state = 5}, - [4386] = {.lex_state = 151, .external_lex_state = 5}, - [4387] = {.lex_state = 151, .external_lex_state = 5}, + [4386] = {.lex_state = 13, .external_lex_state = 2}, + [4387] = {.lex_state = 13, .external_lex_state = 2}, [4388] = {.lex_state = 151, .external_lex_state = 5}, [4389] = {.lex_state = 151, .external_lex_state = 5}, [4390] = {.lex_state = 151, .external_lex_state = 5}, - [4391] = {.lex_state = 151, .external_lex_state = 5}, - [4392] = {.lex_state = 151, .external_lex_state = 5}, + [4391] = {.lex_state = 26, .external_lex_state = 2}, + [4392] = {.lex_state = 26, .external_lex_state = 2}, [4393] = {.lex_state = 151, .external_lex_state = 5}, [4394] = {.lex_state = 151, .external_lex_state = 2}, - [4395] = {.lex_state = 26, .external_lex_state = 2}, - [4396] = {.lex_state = 16, .external_lex_state = 2}, + [4395] = {.lex_state = 151, .external_lex_state = 5}, + [4396] = {.lex_state = 13, .external_lex_state = 2}, [4397] = {.lex_state = 151, .external_lex_state = 5}, - [4398] = {.lex_state = 151, .external_lex_state = 5}, - [4399] = {.lex_state = 151, .external_lex_state = 5}, + [4398] = {.lex_state = 13, .external_lex_state = 2}, + [4399] = {.lex_state = 151, .external_lex_state = 2}, [4400] = {.lex_state = 151, .external_lex_state = 5}, [4401] = {.lex_state = 151, .external_lex_state = 5}, - [4402] = {.lex_state = 151, .external_lex_state = 5}, + [4402] = {.lex_state = 151, .external_lex_state = 2}, [4403] = {.lex_state = 151, .external_lex_state = 2}, [4404] = {.lex_state = 151, .external_lex_state = 5}, [4405] = {.lex_state = 151, .external_lex_state = 5}, [4406] = {.lex_state = 151, .external_lex_state = 5}, - [4407] = {.lex_state = 151, .external_lex_state = 6}, - [4408] = {.lex_state = 15, .external_lex_state = 2}, + [4407] = {.lex_state = 151, .external_lex_state = 5}, + [4408] = {.lex_state = 151, .external_lex_state = 6}, [4409] = {.lex_state = 151, .external_lex_state = 5}, - [4410] = {.lex_state = 151, .external_lex_state = 2}, - [4411] = {.lex_state = 15, .external_lex_state = 2}, - [4412] = {.lex_state = 151, .external_lex_state = 5}, - [4413] = {.lex_state = 15, .external_lex_state = 2}, + [4410] = {.lex_state = 13, .external_lex_state = 2}, + [4411] = {.lex_state = 13, .external_lex_state = 2}, + [4412] = {.lex_state = 151, .external_lex_state = 2}, + [4413] = {.lex_state = 151, .external_lex_state = 5}, [4414] = {.lex_state = 151, .external_lex_state = 5}, - [4415] = {.lex_state = 151, .external_lex_state = 2}, - [4416] = {.lex_state = 151, .external_lex_state = 2}, - [4417] = {.lex_state = 151, .external_lex_state = 2}, - [4418] = {.lex_state = 20, .external_lex_state = 9}, - [4419] = {.lex_state = 30, .external_lex_state = 9}, - [4420] = {.lex_state = 151, .external_lex_state = 2}, - [4421] = {.lex_state = 151, .external_lex_state = 2}, - [4422] = {.lex_state = 151, .external_lex_state = 2}, - [4423] = {.lex_state = 20, .external_lex_state = 9}, - [4424] = {.lex_state = 30, .external_lex_state = 9}, - [4425] = {.lex_state = 24, .external_lex_state = 7}, - [4426] = {.lex_state = 151, .external_lex_state = 2}, - [4427] = {.lex_state = 151, .external_lex_state = 2}, + [4415] = {.lex_state = 151, .external_lex_state = 5}, + [4416] = {.lex_state = 151, .external_lex_state = 5}, + [4417] = {.lex_state = 151, .external_lex_state = 5}, + [4418] = {.lex_state = 151, .external_lex_state = 5}, + [4419] = {.lex_state = 5, .external_lex_state = 2}, + [4420] = {.lex_state = 151, .external_lex_state = 5}, + [4421] = {.lex_state = 20, .external_lex_state = 9}, + [4422] = {.lex_state = 151, .external_lex_state = 5}, + [4423] = {.lex_state = 13, .external_lex_state = 2}, + [4424] = {.lex_state = 13, .external_lex_state = 2}, + [4425] = {.lex_state = 13, .external_lex_state = 2}, + [4426] = {.lex_state = 20, .external_lex_state = 9}, + [4427] = {.lex_state = 30, .external_lex_state = 9}, [4428] = {.lex_state = 151, .external_lex_state = 2}, - [4429] = {.lex_state = 151, .external_lex_state = 5}, - [4430] = {.lex_state = 151, .external_lex_state = 2}, - [4431] = {.lex_state = 151, .external_lex_state = 2}, + [4429] = {.lex_state = 151, .external_lex_state = 2}, + [4430] = {.lex_state = 20, .external_lex_state = 9}, + [4431] = {.lex_state = 30, .external_lex_state = 9}, [4432] = {.lex_state = 151, .external_lex_state = 2}, - [4433] = {.lex_state = 151, .external_lex_state = 2}, - [4434] = {.lex_state = 20, .external_lex_state = 9}, + [4433] = {.lex_state = 151, .external_lex_state = 5}, + [4434] = {.lex_state = 151, .external_lex_state = 2}, [4435] = {.lex_state = 151, .external_lex_state = 5}, [4436] = {.lex_state = 151, .external_lex_state = 2}, - [4437] = {.lex_state = 20, .external_lex_state = 9}, - [4438] = {.lex_state = 30, .external_lex_state = 9}, - [4439] = {.lex_state = 15, .external_lex_state = 2}, - [4440] = {.lex_state = 20, .external_lex_state = 9}, - [4441] = {.lex_state = 20, .external_lex_state = 9}, - [4442] = {.lex_state = 30, .external_lex_state = 9}, - [4443] = {.lex_state = 30, .external_lex_state = 9}, + [4437] = {.lex_state = 151, .external_lex_state = 2}, + [4438] = {.lex_state = 20, .external_lex_state = 9}, + [4439] = {.lex_state = 151, .external_lex_state = 2}, + [4440] = {.lex_state = 30, .external_lex_state = 9}, + [4441] = {.lex_state = 151, .external_lex_state = 2}, + [4442] = {.lex_state = 151, .external_lex_state = 5}, + [4443] = {.lex_state = 20, .external_lex_state = 9}, [4444] = {.lex_state = 151, .external_lex_state = 2}, [4445] = {.lex_state = 151, .external_lex_state = 2}, [4446] = {.lex_state = 151, .external_lex_state = 2}, - [4447] = {.lex_state = 15, .external_lex_state = 2}, - [4448] = {.lex_state = 151, .external_lex_state = 5}, - [4449] = {.lex_state = 18, .external_lex_state = 2}, - [4450] = {.lex_state = 28, .external_lex_state = 2}, + [4447] = {.lex_state = 18, .external_lex_state = 2}, + [4448] = {.lex_state = 151, .external_lex_state = 2}, + [4449] = {.lex_state = 28, .external_lex_state = 2}, + [4450] = {.lex_state = 13, .external_lex_state = 2}, [4451] = {.lex_state = 30, .external_lex_state = 9}, [4452] = {.lex_state = 151, .external_lex_state = 5}, - [4453] = {.lex_state = 151, .external_lex_state = 5}, - [4454] = {.lex_state = 151, .external_lex_state = 2}, + [4453] = {.lex_state = 5, .external_lex_state = 2}, + [4454] = {.lex_state = 20, .external_lex_state = 9}, [4455] = {.lex_state = 151, .external_lex_state = 2}, [4456] = {.lex_state = 151, .external_lex_state = 2}, - [4457] = {.lex_state = 151, .external_lex_state = 2}, - [4458] = {.lex_state = 15, .external_lex_state = 2}, - [4459] = {.lex_state = 15, .external_lex_state = 2}, - [4460] = {.lex_state = 151, .external_lex_state = 5}, - [4461] = {.lex_state = 15, .external_lex_state = 2}, - [4462] = {.lex_state = 20, .external_lex_state = 9}, - [4463] = {.lex_state = 30, .external_lex_state = 9}, - [4464] = {.lex_state = 151, .external_lex_state = 2}, - [4465] = {.lex_state = 151, .external_lex_state = 2}, - [4466] = {.lex_state = 15, .external_lex_state = 2}, - [4467] = {.lex_state = 20, .external_lex_state = 9}, - [4468] = {.lex_state = 151, .external_lex_state = 5}, - [4469] = {.lex_state = 151, .external_lex_state = 5}, + [4457] = {.lex_state = 20, .external_lex_state = 9}, + [4458] = {.lex_state = 151, .external_lex_state = 2}, + [4459] = {.lex_state = 30, .external_lex_state = 9}, + [4460] = {.lex_state = 13, .external_lex_state = 2}, + [4461] = {.lex_state = 151, .external_lex_state = 2}, + [4462] = {.lex_state = 151, .external_lex_state = 5}, + [4463] = {.lex_state = 20, .external_lex_state = 9}, + [4464] = {.lex_state = 151, .external_lex_state = 6}, + [4465] = {.lex_state = 30, .external_lex_state = 9}, + [4466] = {.lex_state = 151, .external_lex_state = 2}, + [4467] = {.lex_state = 151, .external_lex_state = 2}, + [4468] = {.lex_state = 151, .external_lex_state = 2}, + [4469] = {.lex_state = 151, .external_lex_state = 2}, [4470] = {.lex_state = 151, .external_lex_state = 2}, - [4471] = {.lex_state = 30, .external_lex_state = 9}, - [4472] = {.lex_state = 5, .external_lex_state = 2}, - [4473] = {.lex_state = 151, .external_lex_state = 2}, - [4474] = {.lex_state = 20, .external_lex_state = 9}, - [4475] = {.lex_state = 30, .external_lex_state = 9}, + [4471] = {.lex_state = 5, .external_lex_state = 2}, + [4472] = {.lex_state = 13, .external_lex_state = 2}, + [4473] = {.lex_state = 5, .external_lex_state = 2}, + [4474] = {.lex_state = 5, .external_lex_state = 2}, + [4475] = {.lex_state = 151, .external_lex_state = 2}, [4476] = {.lex_state = 151, .external_lex_state = 2}, [4477] = {.lex_state = 151, .external_lex_state = 2}, - [4478] = {.lex_state = 151, .external_lex_state = 2}, - [4479] = {.lex_state = 151, .external_lex_state = 2}, - [4480] = {.lex_state = 15, .external_lex_state = 2}, + [4478] = {.lex_state = 13, .external_lex_state = 2}, + [4479] = {.lex_state = 13, .external_lex_state = 2}, + [4480] = {.lex_state = 20, .external_lex_state = 9}, [4481] = {.lex_state = 151, .external_lex_state = 2}, [4482] = {.lex_state = 151, .external_lex_state = 2}, [4483] = {.lex_state = 151, .external_lex_state = 2}, - [4484] = {.lex_state = 30, .external_lex_state = 9}, + [4484] = {.lex_state = 13, .external_lex_state = 2}, [4485] = {.lex_state = 151, .external_lex_state = 2}, - [4486] = {.lex_state = 15, .external_lex_state = 2}, - [4487] = {.lex_state = 151, .external_lex_state = 2}, - [4488] = {.lex_state = 30, .external_lex_state = 9}, - [4489] = {.lex_state = 151, .external_lex_state = 5}, - [4490] = {.lex_state = 20, .external_lex_state = 9}, - [4491] = {.lex_state = 30, .external_lex_state = 9}, - [4492] = {.lex_state = 151, .external_lex_state = 2}, - [4493] = {.lex_state = 24, .external_lex_state = 7}, + [4486] = {.lex_state = 20, .external_lex_state = 9}, + [4487] = {.lex_state = 13, .external_lex_state = 2}, + [4488] = {.lex_state = 18, .external_lex_state = 2}, + [4489] = {.lex_state = 13, .external_lex_state = 2}, + [4490] = {.lex_state = 28, .external_lex_state = 2}, + [4491] = {.lex_state = 13, .external_lex_state = 2}, + [4492] = {.lex_state = 13, .external_lex_state = 2}, + [4493] = {.lex_state = 30, .external_lex_state = 9}, [4494] = {.lex_state = 151, .external_lex_state = 2}, - [4495] = {.lex_state = 151, .external_lex_state = 5}, - [4496] = {.lex_state = 15, .external_lex_state = 2}, - [4497] = {.lex_state = 20, .external_lex_state = 9}, + [4495] = {.lex_state = 13, .external_lex_state = 2}, + [4496] = {.lex_state = 151, .external_lex_state = 2}, + [4497] = {.lex_state = 151, .external_lex_state = 2}, [4498] = {.lex_state = 151, .external_lex_state = 2}, [4499] = {.lex_state = 151, .external_lex_state = 2}, - [4500] = {.lex_state = 151, .external_lex_state = 2}, - [4501] = {.lex_state = 151, .external_lex_state = 2}, + [4500] = {.lex_state = 151, .external_lex_state = 5}, + [4501] = {.lex_state = 151, .external_lex_state = 5}, [4502] = {.lex_state = 151, .external_lex_state = 2}, - [4503] = {.lex_state = 151, .external_lex_state = 2}, - [4504] = {.lex_state = 151, .external_lex_state = 5}, - [4505] = {.lex_state = 151, .external_lex_state = 2}, + [4503] = {.lex_state = 30, .external_lex_state = 9}, + [4504] = {.lex_state = 20, .external_lex_state = 9}, + [4505] = {.lex_state = 30, .external_lex_state = 9}, [4506] = {.lex_state = 151, .external_lex_state = 5}, - [4507] = {.lex_state = 15, .external_lex_state = 2}, - [4508] = {.lex_state = 151, .external_lex_state = 5}, - [4509] = {.lex_state = 15, .external_lex_state = 2}, - [4510] = {.lex_state = 15, .external_lex_state = 2}, + [4507] = {.lex_state = 30, .external_lex_state = 9}, + [4508] = {.lex_state = 20, .external_lex_state = 9}, + [4509] = {.lex_state = 30, .external_lex_state = 9}, + [4510] = {.lex_state = 151, .external_lex_state = 2}, [4511] = {.lex_state = 151, .external_lex_state = 2}, - [4512] = {.lex_state = 151, .external_lex_state = 5}, - [4513] = {.lex_state = 5, .external_lex_state = 2}, + [4512] = {.lex_state = 30, .external_lex_state = 9}, + [4513] = {.lex_state = 151, .external_lex_state = 5}, [4514] = {.lex_state = 151, .external_lex_state = 2}, - [4515] = {.lex_state = 15, .external_lex_state = 2}, - [4516] = {.lex_state = 30, .external_lex_state = 9}, - [4517] = {.lex_state = 151, .external_lex_state = 2}, - [4518] = {.lex_state = 15, .external_lex_state = 2}, - [4519] = {.lex_state = 151, .external_lex_state = 2}, - [4520] = {.lex_state = 18, .external_lex_state = 2}, - [4521] = {.lex_state = 15, .external_lex_state = 2}, - [4522] = {.lex_state = 151, .external_lex_state = 5}, - [4523] = {.lex_state = 15, .external_lex_state = 2}, - [4524] = {.lex_state = 151, .external_lex_state = 2}, + [4515] = {.lex_state = 13, .external_lex_state = 2}, + [4516] = {.lex_state = 151, .external_lex_state = 5}, + [4517] = {.lex_state = 13, .external_lex_state = 2}, + [4518] = {.lex_state = 20, .external_lex_state = 9}, + [4519] = {.lex_state = 13, .external_lex_state = 2}, + [4520] = {.lex_state = 24, .external_lex_state = 7}, + [4521] = {.lex_state = 151, .external_lex_state = 5}, + [4522] = {.lex_state = 18, .external_lex_state = 2}, + [4523] = {.lex_state = 28, .external_lex_state = 2}, + [4524] = {.lex_state = 13, .external_lex_state = 2}, [4525] = {.lex_state = 151, .external_lex_state = 2}, - [4526] = {.lex_state = 15, .external_lex_state = 2}, - [4527] = {.lex_state = 28, .external_lex_state = 2}, - [4528] = {.lex_state = 151, .external_lex_state = 2}, - [4529] = {.lex_state = 151, .external_lex_state = 2}, - [4530] = {.lex_state = 151, .external_lex_state = 2}, + [4526] = {.lex_state = 151, .external_lex_state = 2}, + [4527] = {.lex_state = 151, .external_lex_state = 2}, + [4528] = {.lex_state = 5, .external_lex_state = 2}, + [4529] = {.lex_state = 13, .external_lex_state = 2}, + [4530] = {.lex_state = 13, .external_lex_state = 2}, [4531] = {.lex_state = 151, .external_lex_state = 5}, - [4532] = {.lex_state = 20, .external_lex_state = 9}, - [4533] = {.lex_state = 151, .external_lex_state = 2}, - [4534] = {.lex_state = 30, .external_lex_state = 9}, - [4535] = {.lex_state = 18, .external_lex_state = 2}, - [4536] = {.lex_state = 28, .external_lex_state = 2}, + [4532] = {.lex_state = 151, .external_lex_state = 2}, + [4533] = {.lex_state = 151, .external_lex_state = 5}, + [4534] = {.lex_state = 151, .external_lex_state = 2}, + [4535] = {.lex_state = 151, .external_lex_state = 2}, + [4536] = {.lex_state = 151, .external_lex_state = 2}, [4537] = {.lex_state = 151, .external_lex_state = 2}, - [4538] = {.lex_state = 151, .external_lex_state = 5}, - [4539] = {.lex_state = 15, .external_lex_state = 2}, + [4538] = {.lex_state = 20, .external_lex_state = 9}, + [4539] = {.lex_state = 30, .external_lex_state = 9}, [4540] = {.lex_state = 151, .external_lex_state = 2}, - [4541] = {.lex_state = 20, .external_lex_state = 9}, + [4541] = {.lex_state = 151, .external_lex_state = 2}, [4542] = {.lex_state = 151, .external_lex_state = 2}, - [4543] = {.lex_state = 20, .external_lex_state = 9}, - [4544] = {.lex_state = 15, .external_lex_state = 2}, - [4545] = {.lex_state = 15, .external_lex_state = 2}, - [4546] = {.lex_state = 30, .external_lex_state = 9}, - [4547] = {.lex_state = 151, .external_lex_state = 2}, - [4548] = {.lex_state = 5, .external_lex_state = 2}, - [4549] = {.lex_state = 5, .external_lex_state = 2}, - [4550] = {.lex_state = 5, .external_lex_state = 2}, - [4551] = {.lex_state = 151, .external_lex_state = 2}, - [4552] = {.lex_state = 151, .external_lex_state = 2}, - [4553] = {.lex_state = 151, .external_lex_state = 5}, - [4554] = {.lex_state = 20, .external_lex_state = 9}, - [4555] = {.lex_state = 151, .external_lex_state = 5}, + [4543] = {.lex_state = 13, .external_lex_state = 2}, + [4544] = {.lex_state = 151, .external_lex_state = 2}, + [4545] = {.lex_state = 151, .external_lex_state = 2}, + [4546] = {.lex_state = 151, .external_lex_state = 2}, + [4547] = {.lex_state = 20, .external_lex_state = 9}, + [4548] = {.lex_state = 151, .external_lex_state = 2}, + [4549] = {.lex_state = 151, .external_lex_state = 2}, + [4550] = {.lex_state = 151, .external_lex_state = 2}, + [4551] = {.lex_state = 151, .external_lex_state = 5}, + [4552] = {.lex_state = 30, .external_lex_state = 9}, + [4553] = {.lex_state = 151, .external_lex_state = 2}, + [4554] = {.lex_state = 13, .external_lex_state = 2}, + [4555] = {.lex_state = 13, .external_lex_state = 2}, [4556] = {.lex_state = 151, .external_lex_state = 2}, [4557] = {.lex_state = 151, .external_lex_state = 2}, - [4558] = {.lex_state = 151, .external_lex_state = 5}, - [4559] = {.lex_state = 151, .external_lex_state = 2}, - [4560] = {.lex_state = 151, .external_lex_state = 2}, - [4561] = {.lex_state = 151, .external_lex_state = 5}, - [4562] = {.lex_state = 151, .external_lex_state = 5}, - [4563] = {.lex_state = 151, .external_lex_state = 5}, + [4558] = {.lex_state = 30, .external_lex_state = 9}, + [4559] = {.lex_state = 24, .external_lex_state = 7}, + [4560] = {.lex_state = 151, .external_lex_state = 5}, + [4561] = {.lex_state = 151, .external_lex_state = 2}, + [4562] = {.lex_state = 151, .external_lex_state = 2}, + [4563] = {.lex_state = 151, .external_lex_state = 2}, [4564] = {.lex_state = 151, .external_lex_state = 5}, [4565] = {.lex_state = 151, .external_lex_state = 2}, [4566] = {.lex_state = 151, .external_lex_state = 2}, [4567] = {.lex_state = 151, .external_lex_state = 2}, - [4568] = {.lex_state = 151, .external_lex_state = 2}, - [4569] = {.lex_state = 151, .external_lex_state = 5}, - [4570] = {.lex_state = 151, .external_lex_state = 2}, - [4571] = {.lex_state = 2, .external_lex_state = 2}, - [4572] = {.lex_state = 151, .external_lex_state = 5}, + [4568] = {.lex_state = 151, .external_lex_state = 5}, + [4569] = {.lex_state = 151, .external_lex_state = 2}, + [4570] = {.lex_state = 151, .external_lex_state = 5}, + [4571] = {.lex_state = 151, .external_lex_state = 2}, + [4572] = {.lex_state = 151, .external_lex_state = 2}, [4573] = {.lex_state = 151, .external_lex_state = 5}, [4574] = {.lex_state = 151, .external_lex_state = 5}, [4575] = {.lex_state = 151, .external_lex_state = 5}, [4576] = {.lex_state = 151, .external_lex_state = 5}, [4577] = {.lex_state = 151, .external_lex_state = 2}, [4578] = {.lex_state = 151, .external_lex_state = 2}, - [4579] = {.lex_state = 151, .external_lex_state = 5}, - [4580] = {.lex_state = 151, .external_lex_state = 5}, + [4579] = {.lex_state = 151, .external_lex_state = 2}, + [4580] = {.lex_state = 151, .external_lex_state = 2}, [4581] = {.lex_state = 151, .external_lex_state = 2}, [4582] = {.lex_state = 151, .external_lex_state = 2}, [4583] = {.lex_state = 151, .external_lex_state = 2}, [4584] = {.lex_state = 151, .external_lex_state = 5}, - [4585] = {.lex_state = 151, .external_lex_state = 2}, + [4585] = {.lex_state = 151, .external_lex_state = 5}, [4586] = {.lex_state = 151, .external_lex_state = 5}, [4587] = {.lex_state = 151, .external_lex_state = 5}, - [4588] = {.lex_state = 151, .external_lex_state = 2}, + [4588] = {.lex_state = 151, .external_lex_state = 5}, [4589] = {.lex_state = 151, .external_lex_state = 5}, - [4590] = {.lex_state = 151, .external_lex_state = 5}, + [4590] = {.lex_state = 5, .external_lex_state = 2}, [4591] = {.lex_state = 151, .external_lex_state = 2}, - [4592] = {.lex_state = 151, .external_lex_state = 2}, - [4593] = {.lex_state = 151, .external_lex_state = 5}, + [4592] = {.lex_state = 151, .external_lex_state = 5}, + [4593] = {.lex_state = 151, .external_lex_state = 2}, [4594] = {.lex_state = 151, .external_lex_state = 2}, - [4595] = {.lex_state = 151, .external_lex_state = 5}, + [4595] = {.lex_state = 151, .external_lex_state = 2}, [4596] = {.lex_state = 151, .external_lex_state = 5}, [4597] = {.lex_state = 151, .external_lex_state = 2}, [4598] = {.lex_state = 151, .external_lex_state = 5}, - [4599] = {.lex_state = 151, .external_lex_state = 2}, - [4600] = {.lex_state = 151, .external_lex_state = 2}, + [4599] = {.lex_state = 151, .external_lex_state = 5}, + [4600] = {.lex_state = 151, .external_lex_state = 5}, [4601] = {.lex_state = 151, .external_lex_state = 5}, - [4602] = {.lex_state = 151, .external_lex_state = 5}, - [4603] = {.lex_state = 151, .external_lex_state = 5}, - [4604] = {.lex_state = 151, .external_lex_state = 2}, + [4602] = {.lex_state = 151, .external_lex_state = 2}, + [4603] = {.lex_state = 151, .external_lex_state = 2}, + [4604] = {.lex_state = 151, .external_lex_state = 5}, [4605] = {.lex_state = 151, .external_lex_state = 5}, - [4606] = {.lex_state = 151, .external_lex_state = 5}, - [4607] = {.lex_state = 151, .external_lex_state = 2}, - [4608] = {.lex_state = 151, .external_lex_state = 2}, - [4609] = {.lex_state = 151, .external_lex_state = 2}, - [4610] = {.lex_state = 151, .external_lex_state = 5}, - [4611] = {.lex_state = 151, .external_lex_state = 5}, - [4612] = {.lex_state = 151, .external_lex_state = 2}, - [4613] = {.lex_state = 151, .external_lex_state = 2}, - [4614] = {.lex_state = 151, .external_lex_state = 5}, - [4615] = {.lex_state = 151, .external_lex_state = 2}, + [4606] = {.lex_state = 151, .external_lex_state = 2}, + [4607] = {.lex_state = 151, .external_lex_state = 5}, + [4608] = {.lex_state = 151, .external_lex_state = 5}, + [4609] = {.lex_state = 151, .external_lex_state = 5}, + [4610] = {.lex_state = 151, .external_lex_state = 2}, + [4611] = {.lex_state = 151, .external_lex_state = 2}, + [4612] = {.lex_state = 151, .external_lex_state = 5}, + [4613] = {.lex_state = 151, .external_lex_state = 5}, + [4614] = {.lex_state = 151, .external_lex_state = 2}, + [4615] = {.lex_state = 151, .external_lex_state = 5}, [4616] = {.lex_state = 151, .external_lex_state = 2}, - [4617] = {.lex_state = 151, .external_lex_state = 2}, - [4618] = {.lex_state = 151, .external_lex_state = 5}, + [4617] = {.lex_state = 151, .external_lex_state = 5}, + [4618] = {.lex_state = 151, .external_lex_state = 2}, [4619] = {.lex_state = 151, .external_lex_state = 2}, - [4620] = {.lex_state = 151, .external_lex_state = 5}, - [4621] = {.lex_state = 151, .external_lex_state = 5}, - [4622] = {.lex_state = 151, .external_lex_state = 5}, + [4620] = {.lex_state = 151, .external_lex_state = 2}, + [4621] = {.lex_state = 151, .external_lex_state = 2}, + [4622] = {.lex_state = 151, .external_lex_state = 2}, [4623] = {.lex_state = 151, .external_lex_state = 2}, - [4624] = {.lex_state = 151, .external_lex_state = 5}, - [4625] = {.lex_state = 151, .external_lex_state = 5}, + [4624] = {.lex_state = 151, .external_lex_state = 2}, + [4625] = {.lex_state = 151, .external_lex_state = 2}, [4626] = {.lex_state = 151, .external_lex_state = 5}, [4627] = {.lex_state = 151, .external_lex_state = 5}, - [4628] = {.lex_state = 151, .external_lex_state = 5}, + [4628] = {.lex_state = 151, .external_lex_state = 2}, [4629] = {.lex_state = 151, .external_lex_state = 5}, - [4630] = {.lex_state = 151, .external_lex_state = 2}, - [4631] = {.lex_state = 151, .external_lex_state = 2}, - [4632] = {.lex_state = 151, .external_lex_state = 2}, + [4630] = {.lex_state = 151, .external_lex_state = 5}, + [4631] = {.lex_state = 151, .external_lex_state = 5}, + [4632] = {.lex_state = 151, .external_lex_state = 5}, [4633] = {.lex_state = 151, .external_lex_state = 5}, [4634] = {.lex_state = 151, .external_lex_state = 5}, [4635] = {.lex_state = 151, .external_lex_state = 5}, - [4636] = {.lex_state = 151, .external_lex_state = 5}, + [4636] = {.lex_state = 151, .external_lex_state = 2}, [4637] = {.lex_state = 151, .external_lex_state = 2}, [4638] = {.lex_state = 151, .external_lex_state = 5}, [4639] = {.lex_state = 151, .external_lex_state = 5}, - [4640] = {.lex_state = 151, .external_lex_state = 2}, + [4640] = {.lex_state = 151, .external_lex_state = 5}, [4641] = {.lex_state = 151, .external_lex_state = 5}, [4642] = {.lex_state = 151, .external_lex_state = 2}, [4643] = {.lex_state = 151, .external_lex_state = 5}, [4644] = {.lex_state = 151, .external_lex_state = 2}, [4645] = {.lex_state = 151, .external_lex_state = 2}, [4646] = {.lex_state = 151, .external_lex_state = 5}, - [4647] = {.lex_state = 151, .external_lex_state = 5}, - [4648] = {.lex_state = 151, .external_lex_state = 2}, - [4649] = {.lex_state = 151, .external_lex_state = 2}, + [4647] = {.lex_state = 5, .external_lex_state = 2}, + [4648] = {.lex_state = 151, .external_lex_state = 5}, + [4649] = {.lex_state = 151, .external_lex_state = 5}, [4650] = {.lex_state = 151, .external_lex_state = 2}, [4651] = {.lex_state = 151, .external_lex_state = 2}, - [4652] = {.lex_state = 151, .external_lex_state = 5}, + [4652] = {.lex_state = 151, .external_lex_state = 2}, [4653] = {.lex_state = 151, .external_lex_state = 2}, - [4654] = {.lex_state = 5, .external_lex_state = 2}, - [4655] = {.lex_state = 151, .external_lex_state = 5}, - [4656] = {.lex_state = 151, .external_lex_state = 5}, + [4654] = {.lex_state = 151, .external_lex_state = 5}, + [4655] = {.lex_state = 151, .external_lex_state = 2}, + [4656] = {.lex_state = 151, .external_lex_state = 2}, [4657] = {.lex_state = 151, .external_lex_state = 5}, - [4658] = {.lex_state = 151, .external_lex_state = 5}, + [4658] = {.lex_state = 151, .external_lex_state = 2}, [4659] = {.lex_state = 151, .external_lex_state = 2}, - [4660] = {.lex_state = 151, .external_lex_state = 5}, + [4660] = {.lex_state = 151, .external_lex_state = 2}, [4661] = {.lex_state = 151, .external_lex_state = 2}, - [4662] = {.lex_state = 151, .external_lex_state = 5}, - [4663] = {.lex_state = 151, .external_lex_state = 5}, + [4662] = {.lex_state = 151, .external_lex_state = 2}, + [4663] = {.lex_state = 151, .external_lex_state = 2}, [4664] = {.lex_state = 151, .external_lex_state = 5}, [4665] = {.lex_state = 151, .external_lex_state = 5}, [4666] = {.lex_state = 151, .external_lex_state = 5}, [4667] = {.lex_state = 151, .external_lex_state = 5}, - [4668] = {.lex_state = 151, .external_lex_state = 5}, - [4669] = {.lex_state = 151, .external_lex_state = 5}, - [4670] = {.lex_state = 151, .external_lex_state = 2}, + [4668] = {.lex_state = 151, .external_lex_state = 2}, + [4669] = {.lex_state = 151, .external_lex_state = 2}, + [4670] = {.lex_state = 151, .external_lex_state = 5}, [4671] = {.lex_state = 151, .external_lex_state = 2}, - [4672] = {.lex_state = 151, .external_lex_state = 5}, + [4672] = {.lex_state = 151, .external_lex_state = 2}, [4673] = {.lex_state = 151, .external_lex_state = 5}, - [4674] = {.lex_state = 151, .external_lex_state = 5}, - [4675] = {.lex_state = 151, .external_lex_state = 5}, - [4676] = {.lex_state = 151, .external_lex_state = 5}, + [4674] = {.lex_state = 151, .external_lex_state = 2}, + [4675] = {.lex_state = 151, .external_lex_state = 2}, + [4676] = {.lex_state = 151, .external_lex_state = 2}, [4677] = {.lex_state = 151, .external_lex_state = 2}, [4678] = {.lex_state = 151, .external_lex_state = 5}, - [4679] = {.lex_state = 151, .external_lex_state = 2}, + [4679] = {.lex_state = 2, .external_lex_state = 2}, [4680] = {.lex_state = 151, .external_lex_state = 5}, - [4681] = {.lex_state = 151, .external_lex_state = 5}, - [4682] = {.lex_state = 151, .external_lex_state = 5}, - [4683] = {.lex_state = 151, .external_lex_state = 5}, + [4681] = {.lex_state = 151, .external_lex_state = 2}, + [4682] = {.lex_state = 151, .external_lex_state = 2}, + [4683] = {.lex_state = 151, .external_lex_state = 2}, [4684] = {.lex_state = 151, .external_lex_state = 5}, [4685] = {.lex_state = 151, .external_lex_state = 5}, [4686] = {.lex_state = 151, .external_lex_state = 5}, [4687] = {.lex_state = 151, .external_lex_state = 5}, [4688] = {.lex_state = 151, .external_lex_state = 5}, [4689] = {.lex_state = 151, .external_lex_state = 5}, - [4690] = {.lex_state = 151, .external_lex_state = 5}, - [4691] = {.lex_state = 151, .external_lex_state = 5}, - [4692] = {.lex_state = 151, .external_lex_state = 5}, + [4690] = {.lex_state = 151, .external_lex_state = 2}, + [4691] = {.lex_state = 151, .external_lex_state = 2}, + [4692] = {.lex_state = 151, .external_lex_state = 2}, [4693] = {.lex_state = 151, .external_lex_state = 5}, [4694] = {.lex_state = 151, .external_lex_state = 2}, [4695] = {.lex_state = 151, .external_lex_state = 2}, - [4696] = {.lex_state = 151, .external_lex_state = 2}, + [4696] = {.lex_state = 151, .external_lex_state = 5}, [4697] = {.lex_state = 151, .external_lex_state = 5}, - [4698] = {.lex_state = 151, .external_lex_state = 5}, - [4699] = {.lex_state = 151, .external_lex_state = 2}, + [4698] = {.lex_state = 151, .external_lex_state = 2}, + [4699] = {.lex_state = 151, .external_lex_state = 5}, [4700] = {.lex_state = 151, .external_lex_state = 5}, [4701] = {.lex_state = 151, .external_lex_state = 2}, - [4702] = {.lex_state = 151, .external_lex_state = 2}, + [4702] = {.lex_state = 151, .external_lex_state = 5}, [4703] = {.lex_state = 151, .external_lex_state = 2}, - [4704] = {.lex_state = 151, .external_lex_state = 2}, - [4705] = {.lex_state = 151, .external_lex_state = 5}, + [4704] = {.lex_state = 151, .external_lex_state = 5}, + [4705] = {.lex_state = 151, .external_lex_state = 2}, [4706] = {.lex_state = 151, .external_lex_state = 5}, - [4707] = {.lex_state = 151, .external_lex_state = 2}, + [4707] = {.lex_state = 151, .external_lex_state = 5}, [4708] = {.lex_state = 151, .external_lex_state = 5}, [4709] = {.lex_state = 151, .external_lex_state = 5}, [4710] = {.lex_state = 151, .external_lex_state = 5}, [4711] = {.lex_state = 151, .external_lex_state = 5}, - [4712] = {.lex_state = 151, .external_lex_state = 5}, + [4712] = {.lex_state = 151, .external_lex_state = 2}, [4713] = {.lex_state = 151, .external_lex_state = 5}, [4714] = {.lex_state = 151, .external_lex_state = 5}, [4715] = {.lex_state = 151, .external_lex_state = 5}, [4716] = {.lex_state = 151, .external_lex_state = 5}, [4717] = {.lex_state = 151, .external_lex_state = 5}, - [4718] = {.lex_state = 151, .external_lex_state = 2}, - [4719] = {.lex_state = 151, .external_lex_state = 2}, - [4720] = {.lex_state = 151, .external_lex_state = 5}, - [4721] = {.lex_state = 151, .external_lex_state = 5}, - [4722] = {.lex_state = 151, .external_lex_state = 2}, - [4723] = {.lex_state = 151, .external_lex_state = 5}, + [4718] = {.lex_state = 151, .external_lex_state = 5}, + [4719] = {.lex_state = 151, .external_lex_state = 5}, + [4720] = {.lex_state = 151, .external_lex_state = 2}, + [4721] = {.lex_state = 151, .external_lex_state = 2}, + [4722] = {.lex_state = 151, .external_lex_state = 5}, + [4723] = {.lex_state = 2, .external_lex_state = 2}, [4724] = {.lex_state = 151, .external_lex_state = 5}, [4725] = {.lex_state = 151, .external_lex_state = 5}, - [4726] = {.lex_state = 151, .external_lex_state = 2}, + [4726] = {.lex_state = 151, .external_lex_state = 5}, [4727] = {.lex_state = 151, .external_lex_state = 5}, [4728] = {.lex_state = 151, .external_lex_state = 2}, [4729] = {.lex_state = 151, .external_lex_state = 5}, - [4730] = {.lex_state = 151, .external_lex_state = 5}, + [4730] = {.lex_state = 151, .external_lex_state = 2}, [4731] = {.lex_state = 151, .external_lex_state = 5}, - [4732] = {.lex_state = 151, .external_lex_state = 2}, + [4732] = {.lex_state = 151, .external_lex_state = 5}, [4733] = {.lex_state = 151, .external_lex_state = 5}, - [4734] = {.lex_state = 151, .external_lex_state = 5}, + [4734] = {.lex_state = 151, .external_lex_state = 2}, [4735] = {.lex_state = 151, .external_lex_state = 2}, [4736] = {.lex_state = 151, .external_lex_state = 5}, [4737] = {.lex_state = 151, .external_lex_state = 5}, [4738] = {.lex_state = 151, .external_lex_state = 5}, [4739] = {.lex_state = 151, .external_lex_state = 5}, [4740] = {.lex_state = 151, .external_lex_state = 5}, - [4741] = {.lex_state = 151, .external_lex_state = 2}, - [4742] = {.lex_state = 151, .external_lex_state = 5}, + [4741] = {.lex_state = 151, .external_lex_state = 5}, + [4742] = {.lex_state = 151, .external_lex_state = 2}, [4743] = {.lex_state = 151, .external_lex_state = 5}, - [4744] = {.lex_state = 151, .external_lex_state = 5}, + [4744] = {.lex_state = 151, .external_lex_state = 2}, [4745] = {.lex_state = 151, .external_lex_state = 5}, - [4746] = {.lex_state = 151, .external_lex_state = 5}, - [4747] = {.lex_state = 151, .external_lex_state = 2}, + [4746] = {.lex_state = 151, .external_lex_state = 2}, + [4747] = {.lex_state = 151, .external_lex_state = 5}, [4748] = {.lex_state = 151, .external_lex_state = 5}, [4749] = {.lex_state = 151, .external_lex_state = 5}, - [4750] = {.lex_state = 151, .external_lex_state = 2}, - [4751] = {.lex_state = 151, .external_lex_state = 5}, + [4750] = {.lex_state = 151, .external_lex_state = 5}, + [4751] = {.lex_state = 151, .external_lex_state = 2}, [4752] = {.lex_state = 151, .external_lex_state = 5}, - [4753] = {.lex_state = 5, .external_lex_state = 2}, - [4754] = {.lex_state = 151, .external_lex_state = 2}, - [4755] = {.lex_state = 151, .external_lex_state = 2}, - [4756] = {.lex_state = 151, .external_lex_state = 2}, + [4753] = {.lex_state = 151, .external_lex_state = 2}, + [4754] = {.lex_state = 151, .external_lex_state = 5}, + [4755] = {.lex_state = 151, .external_lex_state = 5}, + [4756] = {.lex_state = 151, .external_lex_state = 5}, [4757] = {.lex_state = 151, .external_lex_state = 5}, [4758] = {.lex_state = 151, .external_lex_state = 5}, - [4759] = {.lex_state = 151, .external_lex_state = 5}, + [4759] = {.lex_state = 151, .external_lex_state = 2}, [4760] = {.lex_state = 151, .external_lex_state = 5}, - [4761] = {.lex_state = 151, .external_lex_state = 2}, + [4761] = {.lex_state = 5, .external_lex_state = 2}, [4762] = {.lex_state = 151, .external_lex_state = 5}, [4763] = {.lex_state = 151, .external_lex_state = 5}, [4764] = {.lex_state = 151, .external_lex_state = 5}, - [4765] = {.lex_state = 151, .external_lex_state = 2}, - [4766] = {.lex_state = 151, .external_lex_state = 5}, + [4765] = {.lex_state = 151, .external_lex_state = 5}, + [4766] = {.lex_state = 5, .external_lex_state = 2}, [4767] = {.lex_state = 151, .external_lex_state = 5}, [4768] = {.lex_state = 151, .external_lex_state = 5}, [4769] = {.lex_state = 151, .external_lex_state = 5}, - [4770] = {.lex_state = 151, .external_lex_state = 5}, + [4770] = {.lex_state = 151, .external_lex_state = 2}, [4771] = {.lex_state = 151, .external_lex_state = 2}, - [4772] = {.lex_state = 151, .external_lex_state = 5}, - [4773] = {.lex_state = 151, .external_lex_state = 2}, + [4772] = {.lex_state = 151, .external_lex_state = 2}, + [4773] = {.lex_state = 151, .external_lex_state = 5}, [4774] = {.lex_state = 151, .external_lex_state = 5}, [4775] = {.lex_state = 151, .external_lex_state = 5}, - [4776] = {.lex_state = 151, .external_lex_state = 2}, + [4776] = {.lex_state = 151, .external_lex_state = 5}, [4777] = {.lex_state = 151, .external_lex_state = 5}, - [4778] = {.lex_state = 5, .external_lex_state = 2}, - [4779] = {.lex_state = 151, .external_lex_state = 5}, + [4778] = {.lex_state = 151, .external_lex_state = 5}, + [4779] = {.lex_state = 151, .external_lex_state = 2}, [4780] = {.lex_state = 151, .external_lex_state = 5}, [4781] = {.lex_state = 151, .external_lex_state = 2}, [4782] = {.lex_state = 151, .external_lex_state = 5}, - [4783] = {.lex_state = 151, .external_lex_state = 2}, + [4783] = {.lex_state = 151, .external_lex_state = 5}, [4784] = {.lex_state = 151, .external_lex_state = 5}, - [4785] = {.lex_state = 5, .external_lex_state = 2}, - [4786] = {.lex_state = 151, .external_lex_state = 2}, - [4787] = {.lex_state = 15, .external_lex_state = 2}, + [4785] = {.lex_state = 151, .external_lex_state = 5}, + [4786] = {.lex_state = 151, .external_lex_state = 5}, + [4787] = {.lex_state = 151, .external_lex_state = 5}, [4788] = {.lex_state = 151, .external_lex_state = 5}, [4789] = {.lex_state = 151, .external_lex_state = 5}, [4790] = {.lex_state = 151, .external_lex_state = 5}, [4791] = {.lex_state = 151, .external_lex_state = 2}, - [4792] = {.lex_state = 151, .external_lex_state = 2}, - [4793] = {.lex_state = 151, .external_lex_state = 2}, + [4792] = {.lex_state = 151, .external_lex_state = 5}, + [4793] = {.lex_state = 151, .external_lex_state = 5}, [4794] = {.lex_state = 151, .external_lex_state = 5}, [4795] = {.lex_state = 151, .external_lex_state = 5}, - [4796] = {.lex_state = 151, .external_lex_state = 2}, + [4796] = {.lex_state = 151, .external_lex_state = 5}, [4797] = {.lex_state = 151, .external_lex_state = 5}, - [4798] = {.lex_state = 5, .external_lex_state = 2}, - [4799] = {.lex_state = 151, .external_lex_state = 5}, + [4798] = {.lex_state = 151, .external_lex_state = 5}, + [4799] = {.lex_state = 151, .external_lex_state = 2}, [4800] = {.lex_state = 151, .external_lex_state = 5}, [4801] = {.lex_state = 151, .external_lex_state = 5}, [4802] = {.lex_state = 151, .external_lex_state = 5}, - [4803] = {.lex_state = 151, .external_lex_state = 5}, - [4804] = {.lex_state = 151, .external_lex_state = 2}, + [4803] = {.lex_state = 151, .external_lex_state = 2}, + [4804] = {.lex_state = 151, .external_lex_state = 5}, [4805] = {.lex_state = 151, .external_lex_state = 5}, [4806] = {.lex_state = 151, .external_lex_state = 5}, [4807] = {.lex_state = 151, .external_lex_state = 5}, - [4808] = {.lex_state = 151, .external_lex_state = 2}, + [4808] = {.lex_state = 151, .external_lex_state = 5}, [4809] = {.lex_state = 151, .external_lex_state = 5}, [4810] = {.lex_state = 151, .external_lex_state = 5}, - [4811] = {.lex_state = 5, .external_lex_state = 2}, + [4811] = {.lex_state = 151, .external_lex_state = 5}, [4812] = {.lex_state = 151, .external_lex_state = 2}, - [4813] = {.lex_state = 151, .external_lex_state = 2}, + [4813] = {.lex_state = 151, .external_lex_state = 5}, [4814] = {.lex_state = 151, .external_lex_state = 5}, [4815] = {.lex_state = 151, .external_lex_state = 5}, [4816] = {.lex_state = 151, .external_lex_state = 5}, [4817] = {.lex_state = 151, .external_lex_state = 5}, - [4818] = {.lex_state = 151, .external_lex_state = 5}, + [4818] = {.lex_state = 5, .external_lex_state = 2}, [4819] = {.lex_state = 151, .external_lex_state = 5}, - [4820] = {.lex_state = 151, .external_lex_state = 5}, + [4820] = {.lex_state = 151, .external_lex_state = 2}, [4821] = {.lex_state = 151, .external_lex_state = 2}, [4822] = {.lex_state = 151, .external_lex_state = 5}, - [4823] = {.lex_state = 151, .external_lex_state = 5}, - [4824] = {.lex_state = 151, .external_lex_state = 5}, + [4823] = {.lex_state = 151, .external_lex_state = 2}, + [4824] = {.lex_state = 151, .external_lex_state = 2}, [4825] = {.lex_state = 151, .external_lex_state = 5}, [4826] = {.lex_state = 151, .external_lex_state = 5}, [4827] = {.lex_state = 151, .external_lex_state = 5}, - [4828] = {.lex_state = 151, .external_lex_state = 5}, - [4829] = {.lex_state = 151, .external_lex_state = 5}, - [4830] = {.lex_state = 151, .external_lex_state = 5}, - [4831] = {.lex_state = 151, .external_lex_state = 5}, - [4832] = {.lex_state = 151, .external_lex_state = 5}, + [4828] = {.lex_state = 151, .external_lex_state = 2}, + [4829] = {.lex_state = 2, .external_lex_state = 2}, + [4830] = {.lex_state = 151, .external_lex_state = 2}, + [4831] = {.lex_state = 151, .external_lex_state = 2}, + [4832] = {.lex_state = 151, .external_lex_state = 2}, [4833] = {.lex_state = 151, .external_lex_state = 5}, - [4834] = {.lex_state = 151, .external_lex_state = 5}, - [4835] = {.lex_state = 151, .external_lex_state = 5}, - [4836] = {.lex_state = 151, .external_lex_state = 2}, - [4837] = {.lex_state = 151, .external_lex_state = 2}, - [4838] = {.lex_state = 151, .external_lex_state = 5}, - [4839] = {.lex_state = 151, .external_lex_state = 5}, + [4834] = {.lex_state = 151, .external_lex_state = 2}, + [4835] = {.lex_state = 151, .external_lex_state = 2}, + [4836] = {.lex_state = 151, .external_lex_state = 5}, + [4837] = {.lex_state = 151, .external_lex_state = 5}, + [4838] = {.lex_state = 151, .external_lex_state = 2}, + [4839] = {.lex_state = 151, .external_lex_state = 2}, [4840] = {.lex_state = 151, .external_lex_state = 5}, - [4841] = {.lex_state = 151, .external_lex_state = 2}, + [4841] = {.lex_state = 151, .external_lex_state = 5}, [4842] = {.lex_state = 151, .external_lex_state = 5}, [4843] = {.lex_state = 151, .external_lex_state = 5}, [4844] = {.lex_state = 151, .external_lex_state = 5}, - [4845] = {.lex_state = 151, .external_lex_state = 2}, - [4846] = {.lex_state = 151, .external_lex_state = 2}, + [4845] = {.lex_state = 151, .external_lex_state = 5}, + [4846] = {.lex_state = 151, .external_lex_state = 5}, [4847] = {.lex_state = 151, .external_lex_state = 5}, - [4848] = {.lex_state = 151, .external_lex_state = 5}, + [4848] = {.lex_state = 151, .external_lex_state = 2}, [4849] = {.lex_state = 151, .external_lex_state = 5}, [4850] = {.lex_state = 151, .external_lex_state = 5}, [4851] = {.lex_state = 151, .external_lex_state = 5}, [4852] = {.lex_state = 151, .external_lex_state = 5}, [4853] = {.lex_state = 151, .external_lex_state = 5}, - [4854] = {.lex_state = 151, .external_lex_state = 2}, - [4855] = {.lex_state = 151, .external_lex_state = 2}, + [4854] = {.lex_state = 151, .external_lex_state = 5}, + [4855] = {.lex_state = 151, .external_lex_state = 5}, [4856] = {.lex_state = 151, .external_lex_state = 5}, - [4857] = {.lex_state = 151, .external_lex_state = 5}, - [4858] = {.lex_state = 151, .external_lex_state = 5}, + [4857] = {.lex_state = 151, .external_lex_state = 2}, + [4858] = {.lex_state = 151, .external_lex_state = 2}, [4859] = {.lex_state = 151, .external_lex_state = 5}, [4860] = {.lex_state = 151, .external_lex_state = 5}, - [4861] = {.lex_state = 151, .external_lex_state = 5}, + [4861] = {.lex_state = 151, .external_lex_state = 2}, [4862] = {.lex_state = 151, .external_lex_state = 5}, [4863] = {.lex_state = 151, .external_lex_state = 5}, - [4864] = {.lex_state = 5, .external_lex_state = 2}, + [4864] = {.lex_state = 151, .external_lex_state = 5}, [4865] = {.lex_state = 151, .external_lex_state = 5}, [4866] = {.lex_state = 151, .external_lex_state = 5}, [4867] = {.lex_state = 151, .external_lex_state = 5}, @@ -18883,12 +18907,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4869] = {.lex_state = 151, .external_lex_state = 5}, [4870] = {.lex_state = 151, .external_lex_state = 5}, [4871] = {.lex_state = 151, .external_lex_state = 5}, - [4872] = {.lex_state = 151, .external_lex_state = 5}, + [4872] = {.lex_state = 151, .external_lex_state = 2}, [4873] = {.lex_state = 151, .external_lex_state = 5}, [4874] = {.lex_state = 151, .external_lex_state = 5}, [4875] = {.lex_state = 151, .external_lex_state = 5}, [4876] = {.lex_state = 151, .external_lex_state = 5}, - [4877] = {.lex_state = 151, .external_lex_state = 2}, + [4877] = {.lex_state = 151, .external_lex_state = 5}, [4878] = {.lex_state = 151, .external_lex_state = 5}, [4879] = {.lex_state = 151, .external_lex_state = 5}, [4880] = {.lex_state = 151, .external_lex_state = 5}, @@ -18896,47 +18920,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4882] = {.lex_state = 151, .external_lex_state = 5}, [4883] = {.lex_state = 151, .external_lex_state = 5}, [4884] = {.lex_state = 151, .external_lex_state = 5}, - [4885] = {.lex_state = 151, .external_lex_state = 2}, - [4886] = {.lex_state = 151, .external_lex_state = 2}, - [4887] = {.lex_state = 151, .external_lex_state = 5}, + [4885] = {.lex_state = 151, .external_lex_state = 5}, + [4886] = {.lex_state = 151, .external_lex_state = 5}, + [4887] = {.lex_state = 151, .external_lex_state = 2}, [4888] = {.lex_state = 151, .external_lex_state = 2}, [4889] = {.lex_state = 151, .external_lex_state = 2}, [4890] = {.lex_state = 151, .external_lex_state = 2}, [4891] = {.lex_state = 151, .external_lex_state = 5}, [4892] = {.lex_state = 151, .external_lex_state = 2}, - [4893] = {.lex_state = 151, .external_lex_state = 5}, - [4894] = {.lex_state = 151, .external_lex_state = 2}, - [4895] = {.lex_state = 151, .external_lex_state = 5}, - [4896] = {.lex_state = 151, .external_lex_state = 2}, + [4893] = {.lex_state = 151, .external_lex_state = 2}, + [4894] = {.lex_state = 151, .external_lex_state = 5}, + [4895] = {.lex_state = 151, .external_lex_state = 2}, + [4896] = {.lex_state = 151, .external_lex_state = 5}, [4897] = {.lex_state = 151, .external_lex_state = 2}, - [4898] = {.lex_state = 2, .external_lex_state = 2}, - [4899] = {.lex_state = 151, .external_lex_state = 2}, + [4898] = {.lex_state = 151, .external_lex_state = 2}, + [4899] = {.lex_state = 151, .external_lex_state = 5}, [4900] = {.lex_state = 151, .external_lex_state = 5}, [4901] = {.lex_state = 151, .external_lex_state = 5}, - [4902] = {.lex_state = 151, .external_lex_state = 2}, + [4902] = {.lex_state = 151, .external_lex_state = 5}, [4903] = {.lex_state = 151, .external_lex_state = 2}, - [4904] = {.lex_state = 151, .external_lex_state = 2}, + [4904] = {.lex_state = 151, .external_lex_state = 5}, [4905] = {.lex_state = 151, .external_lex_state = 5}, - [4906] = {.lex_state = 151, .external_lex_state = 5}, + [4906] = {.lex_state = 151, .external_lex_state = 2}, [4907] = {.lex_state = 151, .external_lex_state = 2}, [4908] = {.lex_state = 151, .external_lex_state = 5}, [4909] = {.lex_state = 151, .external_lex_state = 5}, [4910] = {.lex_state = 151, .external_lex_state = 5}, - [4911] = {.lex_state = 151, .external_lex_state = 2}, - [4912] = {.lex_state = 151, .external_lex_state = 5}, + [4911] = {.lex_state = 151, .external_lex_state = 5}, + [4912] = {.lex_state = 151, .external_lex_state = 2}, [4913] = {.lex_state = 151, .external_lex_state = 5}, [4914] = {.lex_state = 151, .external_lex_state = 5}, [4915] = {.lex_state = 151, .external_lex_state = 5}, [4916] = {.lex_state = 151, .external_lex_state = 5}, [4917] = {.lex_state = 151, .external_lex_state = 5}, [4918] = {.lex_state = 151, .external_lex_state = 5}, - [4919] = {.lex_state = 151, .external_lex_state = 5}, + [4919] = {.lex_state = 151, .external_lex_state = 2}, [4920] = {.lex_state = 151, .external_lex_state = 5}, - [4921] = {.lex_state = 151, .external_lex_state = 5}, + [4921] = {.lex_state = 151, .external_lex_state = 2}, [4922] = {.lex_state = 151, .external_lex_state = 5}, - [4923] = {.lex_state = 151, .external_lex_state = 5}, + [4923] = {.lex_state = 151, .external_lex_state = 2}, [4924] = {.lex_state = 151, .external_lex_state = 5}, - [4925] = {.lex_state = 151, .external_lex_state = 5}, + [4925] = {.lex_state = 2, .external_lex_state = 2}, [4926] = {.lex_state = 151, .external_lex_state = 5}, [4927] = {.lex_state = 151, .external_lex_state = 5}, [4928] = {.lex_state = 151, .external_lex_state = 5}, @@ -18949,32 +18973,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4935] = {.lex_state = 151, .external_lex_state = 5}, [4936] = {.lex_state = 151, .external_lex_state = 5}, [4937] = {.lex_state = 151, .external_lex_state = 5}, - [4938] = {.lex_state = 151, .external_lex_state = 5}, + [4938] = {.lex_state = 151, .external_lex_state = 2}, [4939] = {.lex_state = 151, .external_lex_state = 5}, - [4940] = {.lex_state = 151, .external_lex_state = 5}, - [4941] = {.lex_state = 151, .external_lex_state = 5}, + [4940] = {.lex_state = 5, .external_lex_state = 2}, + [4941] = {.lex_state = 151, .external_lex_state = 2}, [4942] = {.lex_state = 151, .external_lex_state = 5}, [4943] = {.lex_state = 151, .external_lex_state = 5}, [4944] = {.lex_state = 151, .external_lex_state = 5}, - [4945] = {.lex_state = 151, .external_lex_state = 5}, + [4945] = {.lex_state = 5, .external_lex_state = 2}, [4946] = {.lex_state = 151, .external_lex_state = 5}, [4947] = {.lex_state = 151, .external_lex_state = 5}, [4948] = {.lex_state = 151, .external_lex_state = 5}, [4949] = {.lex_state = 151, .external_lex_state = 5}, [4950] = {.lex_state = 151, .external_lex_state = 5}, - [4951] = {.lex_state = 151, .external_lex_state = 5}, + [4951] = {.lex_state = 151, .external_lex_state = 2}, [4952] = {.lex_state = 151, .external_lex_state = 5}, [4953] = {.lex_state = 151, .external_lex_state = 5}, - [4954] = {.lex_state = 151, .external_lex_state = 5}, + [4954] = {.lex_state = 13, .external_lex_state = 2}, [4955] = {.lex_state = 151, .external_lex_state = 5}, [4956] = {.lex_state = 151, .external_lex_state = 5}, - [4957] = {.lex_state = 151, .external_lex_state = 2}, + [4957] = {.lex_state = 151, .external_lex_state = 5}, [4958] = {.lex_state = 151, .external_lex_state = 5}, [4959] = {.lex_state = 151, .external_lex_state = 5}, [4960] = {.lex_state = 151, .external_lex_state = 5}, [4961] = {.lex_state = 151, .external_lex_state = 5}, [4962] = {.lex_state = 151, .external_lex_state = 5}, - [4963] = {.lex_state = 151, .external_lex_state = 5}, + [4963] = {.lex_state = 151, .external_lex_state = 2}, [4964] = {.lex_state = 151, .external_lex_state = 5}, [4965] = {.lex_state = 151, .external_lex_state = 5}, [4966] = {.lex_state = 151, .external_lex_state = 5}, @@ -18983,39 +19007,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4969] = {.lex_state = 151, .external_lex_state = 5}, [4970] = {.lex_state = 151, .external_lex_state = 5}, [4971] = {.lex_state = 151, .external_lex_state = 5}, - [4972] = {.lex_state = 151, .external_lex_state = 2}, - [4973] = {.lex_state = 151, .external_lex_state = 2}, + [4972] = {.lex_state = 151, .external_lex_state = 5}, + [4973] = {.lex_state = 151, .external_lex_state = 5}, [4974] = {.lex_state = 151, .external_lex_state = 5}, - [4975] = {.lex_state = 151, .external_lex_state = 2}, + [4975] = {.lex_state = 151, .external_lex_state = 5}, [4976] = {.lex_state = 151, .external_lex_state = 5}, [4977] = {.lex_state = 151, .external_lex_state = 5}, [4978] = {.lex_state = 151, .external_lex_state = 5}, - [4979] = {.lex_state = 151, .external_lex_state = 5}, + [4979] = {.lex_state = 151, .external_lex_state = 2}, [4980] = {.lex_state = 151, .external_lex_state = 5}, [4981] = {.lex_state = 151, .external_lex_state = 5}, - [4982] = {.lex_state = 151, .external_lex_state = 2}, - [4983] = {.lex_state = 151, .external_lex_state = 2}, + [4982] = {.lex_state = 151, .external_lex_state = 5}, + [4983] = {.lex_state = 151, .external_lex_state = 5}, [4984] = {.lex_state = 151, .external_lex_state = 5}, [4985] = {.lex_state = 151, .external_lex_state = 5}, - [4986] = {.lex_state = 151, .external_lex_state = 2}, + [4986] = {.lex_state = 151, .external_lex_state = 5}, [4987] = {.lex_state = 151, .external_lex_state = 5}, [4988] = {.lex_state = 151, .external_lex_state = 5}, [4989] = {.lex_state = 151, .external_lex_state = 5}, [4990] = {.lex_state = 151, .external_lex_state = 5}, [4991] = {.lex_state = 151, .external_lex_state = 5}, [4992] = {.lex_state = 151, .external_lex_state = 5}, - [4993] = {.lex_state = 151, .external_lex_state = 2}, + [4993] = {.lex_state = 151, .external_lex_state = 5}, [4994] = {.lex_state = 151, .external_lex_state = 5}, [4995] = {.lex_state = 151, .external_lex_state = 5}, - [4996] = {.lex_state = 151, .external_lex_state = 2}, + [4996] = {.lex_state = 151, .external_lex_state = 5}, [4997] = {.lex_state = 151, .external_lex_state = 5}, [4998] = {.lex_state = 151, .external_lex_state = 5}, [4999] = {.lex_state = 151, .external_lex_state = 5}, - [5000] = {.lex_state = 151, .external_lex_state = 2}, + [5000] = {.lex_state = 151, .external_lex_state = 5}, [5001] = {.lex_state = 151, .external_lex_state = 5}, [5002] = {.lex_state = 151, .external_lex_state = 5}, - [5003] = {.lex_state = 151, .external_lex_state = 2}, - [5004] = {.lex_state = 151, .external_lex_state = 2}, + [5003] = {.lex_state = 151, .external_lex_state = 5}, + [5004] = {.lex_state = 151, .external_lex_state = 5}, [5005] = {.lex_state = 151, .external_lex_state = 5}, [5006] = {.lex_state = 151, .external_lex_state = 5}, [5007] = {.lex_state = 151, .external_lex_state = 5}, @@ -19029,171 +19053,171 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5015] = {.lex_state = 151, .external_lex_state = 5}, [5016] = {.lex_state = 151, .external_lex_state = 5}, [5017] = {.lex_state = 151, .external_lex_state = 5}, - [5018] = {.lex_state = 151, .external_lex_state = 2}, - [5019] = {.lex_state = 15, .external_lex_state = 2}, - [5020] = {.lex_state = 151, .external_lex_state = 5}, + [5018] = {.lex_state = 151, .external_lex_state = 5}, + [5019] = {.lex_state = 151, .external_lex_state = 5}, + [5020] = {.lex_state = 151, .external_lex_state = 2}, [5021] = {.lex_state = 151, .external_lex_state = 5}, - [5022] = {.lex_state = 151, .external_lex_state = 5}, - [5023] = {.lex_state = 151, .external_lex_state = 2}, + [5022] = {.lex_state = 151, .external_lex_state = 2}, + [5023] = {.lex_state = 151, .external_lex_state = 5}, [5024] = {.lex_state = 151, .external_lex_state = 5}, - [5025] = {.lex_state = 151, .external_lex_state = 5}, - [5026] = {.lex_state = 151, .external_lex_state = 2}, + [5025] = {.lex_state = 5, .external_lex_state = 2}, + [5026] = {.lex_state = 151, .external_lex_state = 5}, [5027] = {.lex_state = 151, .external_lex_state = 5}, [5028] = {.lex_state = 151, .external_lex_state = 5}, - [5029] = {.lex_state = 151, .external_lex_state = 2}, - [5030] = {.lex_state = 24, .external_lex_state = 8}, - [5031] = {.lex_state = 151, .external_lex_state = 2}, - [5032] = {.lex_state = 151, .external_lex_state = 5}, + [5029] = {.lex_state = 151, .external_lex_state = 5}, + [5030] = {.lex_state = 151, .external_lex_state = 2}, + [5031] = {.lex_state = 151, .external_lex_state = 5}, + [5032] = {.lex_state = 151, .external_lex_state = 2}, [5033] = {.lex_state = 151, .external_lex_state = 5}, - [5034] = {.lex_state = 151, .external_lex_state = 2}, - [5035] = {.lex_state = 151, .external_lex_state = 2}, + [5034] = {.lex_state = 151, .external_lex_state = 5}, + [5035] = {.lex_state = 151, .external_lex_state = 5}, [5036] = {.lex_state = 151, .external_lex_state = 5}, - [5037] = {.lex_state = 151, .external_lex_state = 5}, - [5038] = {.lex_state = 151, .external_lex_state = 2}, - [5039] = {.lex_state = 151, .external_lex_state = 5}, + [5037] = {.lex_state = 151, .external_lex_state = 2}, + [5038] = {.lex_state = 151, .external_lex_state = 5}, + [5039] = {.lex_state = 13, .external_lex_state = 2}, [5040] = {.lex_state = 151, .external_lex_state = 5}, [5041] = {.lex_state = 151, .external_lex_state = 5}, - [5042] = {.lex_state = 151, .external_lex_state = 2}, - [5043] = {.lex_state = 151, .external_lex_state = 2}, + [5042] = {.lex_state = 151, .external_lex_state = 5}, + [5043] = {.lex_state = 151, .external_lex_state = 5}, [5044] = {.lex_state = 151, .external_lex_state = 5}, - [5045] = {.lex_state = 151, .external_lex_state = 2}, - [5046] = {.lex_state = 151, .external_lex_state = 2}, + [5045] = {.lex_state = 151, .external_lex_state = 5}, + [5046] = {.lex_state = 151, .external_lex_state = 5}, [5047] = {.lex_state = 151, .external_lex_state = 5}, [5048] = {.lex_state = 151, .external_lex_state = 5}, - [5049] = {.lex_state = 151, .external_lex_state = 5}, + [5049] = {.lex_state = 151, .external_lex_state = 2}, [5050] = {.lex_state = 151, .external_lex_state = 5}, [5051] = {.lex_state = 151, .external_lex_state = 5}, [5052] = {.lex_state = 151, .external_lex_state = 5}, - [5053] = {.lex_state = 151, .external_lex_state = 2}, + [5053] = {.lex_state = 151, .external_lex_state = 5}, [5054] = {.lex_state = 151, .external_lex_state = 5}, - [5055] = {.lex_state = 5, .external_lex_state = 2}, - [5056] = {.lex_state = 151, .external_lex_state = 2}, - [5057] = {.lex_state = 2, .external_lex_state = 2}, + [5055] = {.lex_state = 151, .external_lex_state = 5}, + [5056] = {.lex_state = 151, .external_lex_state = 5}, + [5057] = {.lex_state = 151, .external_lex_state = 5}, [5058] = {.lex_state = 151, .external_lex_state = 5}, - [5059] = {.lex_state = 151, .external_lex_state = 2}, - [5060] = {.lex_state = 151, .external_lex_state = 5}, + [5059] = {.lex_state = 151, .external_lex_state = 5}, + [5060] = {.lex_state = 151, .external_lex_state = 2}, [5061] = {.lex_state = 151, .external_lex_state = 5}, [5062] = {.lex_state = 151, .external_lex_state = 5}, - [5063] = {.lex_state = 151, .external_lex_state = 2}, + [5063] = {.lex_state = 151, .external_lex_state = 5}, [5064] = {.lex_state = 151, .external_lex_state = 5}, [5065] = {.lex_state = 151, .external_lex_state = 5}, [5066] = {.lex_state = 151, .external_lex_state = 5}, - [5067] = {.lex_state = 151, .external_lex_state = 2}, - [5068] = {.lex_state = 5, .external_lex_state = 2}, - [5069] = {.lex_state = 151, .external_lex_state = 5}, + [5067] = {.lex_state = 151, .external_lex_state = 5}, + [5068] = {.lex_state = 151, .external_lex_state = 5}, + [5069] = {.lex_state = 151, .external_lex_state = 2}, [5070] = {.lex_state = 151, .external_lex_state = 2}, - [5071] = {.lex_state = 151, .external_lex_state = 5}, + [5071] = {.lex_state = 151, .external_lex_state = 2}, [5072] = {.lex_state = 151, .external_lex_state = 5}, - [5073] = {.lex_state = 151, .external_lex_state = 5}, + [5073] = {.lex_state = 151, .external_lex_state = 2}, [5074] = {.lex_state = 151, .external_lex_state = 5}, [5075] = {.lex_state = 151, .external_lex_state = 5}, [5076] = {.lex_state = 151, .external_lex_state = 2}, [5077] = {.lex_state = 151, .external_lex_state = 5}, [5078] = {.lex_state = 151, .external_lex_state = 5}, - [5079] = {.lex_state = 5, .external_lex_state = 2}, - [5080] = {.lex_state = 151, .external_lex_state = 5}, - [5081] = {.lex_state = 151, .external_lex_state = 5}, - [5082] = {.lex_state = 151, .external_lex_state = 5}, - [5083] = {.lex_state = 151, .external_lex_state = 2}, - [5084] = {.lex_state = 151, .external_lex_state = 2}, + [5079] = {.lex_state = 151, .external_lex_state = 5}, + [5080] = {.lex_state = 151, .external_lex_state = 2}, + [5081] = {.lex_state = 151, .external_lex_state = 2}, + [5082] = {.lex_state = 5, .external_lex_state = 2}, + [5083] = {.lex_state = 151, .external_lex_state = 5}, + [5084] = {.lex_state = 151, .external_lex_state = 5}, [5085] = {.lex_state = 151, .external_lex_state = 5}, [5086] = {.lex_state = 151, .external_lex_state = 2}, [5087] = {.lex_state = 151, .external_lex_state = 2}, - [5088] = {.lex_state = 5, .external_lex_state = 2}, - [5089] = {.lex_state = 151, .external_lex_state = 5}, + [5088] = {.lex_state = 151, .external_lex_state = 5}, + [5089] = {.lex_state = 151, .external_lex_state = 2}, [5090] = {.lex_state = 151, .external_lex_state = 5}, - [5091] = {.lex_state = 151, .external_lex_state = 2}, - [5092] = {.lex_state = 151, .external_lex_state = 5}, + [5091] = {.lex_state = 151, .external_lex_state = 5}, + [5092] = {.lex_state = 151, .external_lex_state = 2}, [5093] = {.lex_state = 151, .external_lex_state = 5}, - [5094] = {.lex_state = 151, .external_lex_state = 5}, - [5095] = {.lex_state = 151, .external_lex_state = 2}, - [5096] = {.lex_state = 151, .external_lex_state = 2}, + [5094] = {.lex_state = 5, .external_lex_state = 2}, + [5095] = {.lex_state = 151, .external_lex_state = 5}, + [5096] = {.lex_state = 151, .external_lex_state = 5}, [5097] = {.lex_state = 151, .external_lex_state = 5}, - [5098] = {.lex_state = 151, .external_lex_state = 5}, + [5098] = {.lex_state = 5, .external_lex_state = 2}, [5099] = {.lex_state = 151, .external_lex_state = 5}, [5100] = {.lex_state = 151, .external_lex_state = 5}, [5101] = {.lex_state = 151, .external_lex_state = 2}, - [5102] = {.lex_state = 151, .external_lex_state = 5}, + [5102] = {.lex_state = 24, .external_lex_state = 8}, [5103] = {.lex_state = 151, .external_lex_state = 5}, [5104] = {.lex_state = 151, .external_lex_state = 5}, [5105] = {.lex_state = 151, .external_lex_state = 5}, - [5106] = {.lex_state = 151, .external_lex_state = 2}, + [5106] = {.lex_state = 151, .external_lex_state = 5}, [5107] = {.lex_state = 151, .external_lex_state = 5}, [5108] = {.lex_state = 151, .external_lex_state = 5}, [5109] = {.lex_state = 151, .external_lex_state = 5}, - [5110] = {.lex_state = 151, .external_lex_state = 5}, + [5110] = {.lex_state = 5, .external_lex_state = 2}, [5111] = {.lex_state = 151, .external_lex_state = 5}, - [5112] = {.lex_state = 151, .external_lex_state = 2}, - [5113] = {.lex_state = 151, .external_lex_state = 2}, + [5112] = {.lex_state = 151, .external_lex_state = 5}, + [5113] = {.lex_state = 151, .external_lex_state = 5}, [5114] = {.lex_state = 151, .external_lex_state = 5}, [5115] = {.lex_state = 151, .external_lex_state = 5}, - [5116] = {.lex_state = 151, .external_lex_state = 5}, - [5117] = {.lex_state = 151, .external_lex_state = 2}, + [5116] = {.lex_state = 151, .external_lex_state = 2}, + [5117] = {.lex_state = 151, .external_lex_state = 5}, [5118] = {.lex_state = 151, .external_lex_state = 5}, [5119] = {.lex_state = 151, .external_lex_state = 5}, - [5120] = {.lex_state = 151, .external_lex_state = 2}, - [5121] = {.lex_state = 151, .external_lex_state = 2}, + [5120] = {.lex_state = 151, .external_lex_state = 5}, + [5121] = {.lex_state = 151, .external_lex_state = 5}, [5122] = {.lex_state = 151, .external_lex_state = 5}, [5123] = {.lex_state = 151, .external_lex_state = 5}, [5124] = {.lex_state = 151, .external_lex_state = 2}, - [5125] = {.lex_state = 151, .external_lex_state = 2}, + [5125] = {.lex_state = 151, .external_lex_state = 5}, [5126] = {.lex_state = 151, .external_lex_state = 2}, [5127] = {.lex_state = 151, .external_lex_state = 5}, - [5128] = {.lex_state = 5, .external_lex_state = 2}, - [5129] = {.lex_state = 151, .external_lex_state = 5}, - [5130] = {.lex_state = 151, .external_lex_state = 5}, - [5131] = {.lex_state = 151, .external_lex_state = 2}, + [5128] = {.lex_state = 151, .external_lex_state = 2}, + [5129] = {.lex_state = 151, .external_lex_state = 2}, + [5130] = {.lex_state = 151, .external_lex_state = 2}, + [5131] = {.lex_state = 151, .external_lex_state = 5}, [5132] = {.lex_state = 151, .external_lex_state = 5}, - [5133] = {.lex_state = 151, .external_lex_state = 5}, - [5134] = {.lex_state = 151, .external_lex_state = 5}, - [5135] = {.lex_state = 151, .external_lex_state = 2}, + [5133] = {.lex_state = 5, .external_lex_state = 2}, + [5134] = {.lex_state = 151, .external_lex_state = 2}, + [5135] = {.lex_state = 151, .external_lex_state = 5}, [5136] = {.lex_state = 151, .external_lex_state = 2}, [5137] = {.lex_state = 151, .external_lex_state = 5}, [5138] = {.lex_state = 151, .external_lex_state = 5}, [5139] = {.lex_state = 151, .external_lex_state = 2}, [5140] = {.lex_state = 151, .external_lex_state = 5}, - [5141] = {.lex_state = 151, .external_lex_state = 5}, + [5141] = {.lex_state = 151, .external_lex_state = 2}, [5142] = {.lex_state = 151, .external_lex_state = 5}, - [5143] = {.lex_state = 5, .external_lex_state = 2}, - [5144] = {.lex_state = 151, .external_lex_state = 5}, - [5145] = {.lex_state = 151, .external_lex_state = 2}, + [5143] = {.lex_state = 151, .external_lex_state = 5}, + [5144] = {.lex_state = 151, .external_lex_state = 2}, + [5145] = {.lex_state = 151, .external_lex_state = 5}, [5146] = {.lex_state = 151, .external_lex_state = 5}, - [5147] = {.lex_state = 2, .external_lex_state = 2}, - [5148] = {.lex_state = 151, .external_lex_state = 5}, - [5149] = {.lex_state = 151, .external_lex_state = 2}, + [5147] = {.lex_state = 151, .external_lex_state = 5}, + [5148] = {.lex_state = 151, .external_lex_state = 2}, + [5149] = {.lex_state = 151, .external_lex_state = 5}, [5150] = {.lex_state = 151, .external_lex_state = 2}, - [5151] = {.lex_state = 151, .external_lex_state = 5}, - [5152] = {.lex_state = 151, .external_lex_state = 5}, - [5153] = {.lex_state = 151, .external_lex_state = 5}, - [5154] = {.lex_state = 151, .external_lex_state = 5}, + [5151] = {.lex_state = 151, .external_lex_state = 2}, + [5152] = {.lex_state = 151, .external_lex_state = 2}, + [5153] = {.lex_state = 151, .external_lex_state = 2}, + [5154] = {.lex_state = 151, .external_lex_state = 2}, [5155] = {.lex_state = 151, .external_lex_state = 2}, [5156] = {.lex_state = 151, .external_lex_state = 2}, [5157] = {.lex_state = 151, .external_lex_state = 2}, - [5158] = {.lex_state = 151, .external_lex_state = 5}, + [5158] = {.lex_state = 151, .external_lex_state = 2}, [5159] = {.lex_state = 151, .external_lex_state = 5}, - [5160] = {.lex_state = 151, .external_lex_state = 2}, + [5160] = {.lex_state = 151, .external_lex_state = 5}, [5161] = {.lex_state = 151, .external_lex_state = 5}, [5162] = {.lex_state = 151, .external_lex_state = 5}, [5163] = {.lex_state = 151, .external_lex_state = 5}, - [5164] = {.lex_state = 151, .external_lex_state = 2}, - [5165] = {.lex_state = 151, .external_lex_state = 5}, - [5166] = {.lex_state = 151, .external_lex_state = 5}, + [5164] = {.lex_state = 151, .external_lex_state = 5}, + [5165] = {.lex_state = 151, .external_lex_state = 2}, + [5166] = {.lex_state = 151, .external_lex_state = 2}, [5167] = {.lex_state = 151, .external_lex_state = 5}, - [5168] = {.lex_state = 151, .external_lex_state = 2}, + [5168] = {.lex_state = 151, .external_lex_state = 5}, [5169] = {.lex_state = 151, .external_lex_state = 5}, [5170] = {.lex_state = 151, .external_lex_state = 2}, - [5171] = {.lex_state = 151, .external_lex_state = 5}, + [5171] = {.lex_state = 151, .external_lex_state = 2}, [5172] = {.lex_state = 151, .external_lex_state = 5}, [5173] = {.lex_state = 151, .external_lex_state = 5}, [5174] = {.lex_state = 151, .external_lex_state = 5}, [5175] = {.lex_state = 151, .external_lex_state = 5}, [5176] = {.lex_state = 2, .external_lex_state = 2}, - [5177] = {.lex_state = 151, .external_lex_state = 2}, - [5178] = {.lex_state = 151, .external_lex_state = 2}, - [5179] = {.lex_state = 151, .external_lex_state = 2}, - [5180] = {.lex_state = 151, .external_lex_state = 2}, - [5181] = {.lex_state = 151, .external_lex_state = 2}, - [5182] = {.lex_state = 151, .external_lex_state = 2}, + [5177] = {.lex_state = 151, .external_lex_state = 5}, + [5178] = {.lex_state = 151, .external_lex_state = 5}, + [5179] = {.lex_state = 151, .external_lex_state = 5}, + [5180] = {.lex_state = 151, .external_lex_state = 5}, + [5181] = {.lex_state = 151, .external_lex_state = 5}, + [5182] = {.lex_state = 151, .external_lex_state = 5}, [5183] = {.lex_state = 151, .external_lex_state = 2}, [5184] = {.lex_state = 151, .external_lex_state = 2}, [5185] = {.lex_state = 151, .external_lex_state = 2}, @@ -19207,9 +19231,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5193] = {.lex_state = 151, .external_lex_state = 2}, [5194] = {.lex_state = 151, .external_lex_state = 2}, [5195] = {.lex_state = 151, .external_lex_state = 2}, - [5196] = {.lex_state = 151, .external_lex_state = 5}, + [5196] = {.lex_state = 151, .external_lex_state = 2}, [5197] = {.lex_state = 151, .external_lex_state = 2}, - [5198] = {.lex_state = 151, .external_lex_state = 5}, + [5198] = {.lex_state = 151, .external_lex_state = 2}, [5199] = {.lex_state = 151, .external_lex_state = 2}, [5200] = {.lex_state = 151, .external_lex_state = 2}, [5201] = {.lex_state = 151, .external_lex_state = 2}, @@ -19222,18 +19246,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5208] = {.lex_state = 151, .external_lex_state = 2}, [5209] = {.lex_state = 151, .external_lex_state = 2}, [5210] = {.lex_state = 151, .external_lex_state = 2}, - [5211] = {.lex_state = 151, .external_lex_state = 2}, + [5211] = {.lex_state = 151, .external_lex_state = 5}, [5212] = {.lex_state = 151, .external_lex_state = 2}, [5213] = {.lex_state = 151, .external_lex_state = 2}, [5214] = {.lex_state = 151, .external_lex_state = 2}, [5215] = {.lex_state = 151, .external_lex_state = 2}, [5216] = {.lex_state = 151, .external_lex_state = 2}, [5217] = {.lex_state = 151, .external_lex_state = 2}, - [5218] = {.lex_state = 151, .external_lex_state = 2}, - [5219] = {.lex_state = 151, .external_lex_state = 5}, + [5218] = {.lex_state = 151, .external_lex_state = 5}, + [5219] = {.lex_state = 151, .external_lex_state = 2}, [5220] = {.lex_state = 151, .external_lex_state = 2}, [5221] = {.lex_state = 151, .external_lex_state = 2}, - [5222] = {.lex_state = 151, .external_lex_state = 2}, + [5222] = {.lex_state = 151, .external_lex_state = 5}, [5223] = {.lex_state = 151, .external_lex_state = 2}, [5224] = {.lex_state = 151, .external_lex_state = 2}, [5225] = {.lex_state = 151, .external_lex_state = 2}, @@ -19242,7 +19266,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5228] = {.lex_state = 151, .external_lex_state = 2}, [5229] = {.lex_state = 151, .external_lex_state = 2}, [5230] = {.lex_state = 151, .external_lex_state = 2}, - [5231] = {.lex_state = 151, .external_lex_state = 5}, + [5231] = {.lex_state = 151, .external_lex_state = 2}, [5232] = {.lex_state = 151, .external_lex_state = 2}, [5233] = {.lex_state = 151, .external_lex_state = 2}, [5234] = {.lex_state = 151, .external_lex_state = 2}, @@ -19253,7 +19277,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5239] = {.lex_state = 151, .external_lex_state = 2}, [5240] = {.lex_state = 151, .external_lex_state = 2}, [5241] = {.lex_state = 151, .external_lex_state = 2}, - [5242] = {.lex_state = 151, .external_lex_state = 5}, + [5242] = {.lex_state = 151, .external_lex_state = 2}, [5243] = {.lex_state = 151, .external_lex_state = 2}, [5244] = {.lex_state = 151, .external_lex_state = 2}, [5245] = {.lex_state = 151, .external_lex_state = 2}, @@ -19264,9 +19288,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5250] = {.lex_state = 151, .external_lex_state = 2}, [5251] = {.lex_state = 151, .external_lex_state = 2}, [5252] = {.lex_state = 151, .external_lex_state = 2}, - [5253] = {.lex_state = 151, .external_lex_state = 5}, + [5253] = {.lex_state = 151, .external_lex_state = 2}, [5254] = {.lex_state = 151, .external_lex_state = 2}, - [5255] = {.lex_state = 151, .external_lex_state = 5}, + [5255] = {.lex_state = 151, .external_lex_state = 2}, [5256] = {.lex_state = 151, .external_lex_state = 2}, [5257] = {.lex_state = 151, .external_lex_state = 2}, [5258] = {.lex_state = 151, .external_lex_state = 2}, @@ -19278,7 +19302,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5264] = {.lex_state = 151, .external_lex_state = 2}, [5265] = {.lex_state = 151, .external_lex_state = 2}, [5266] = {.lex_state = 151, .external_lex_state = 2}, - [5267] = {.lex_state = 151, .external_lex_state = 5}, + [5267] = {.lex_state = 151, .external_lex_state = 2}, [5268] = {.lex_state = 151, .external_lex_state = 2}, [5269] = {.lex_state = 151, .external_lex_state = 2}, [5270] = {.lex_state = 151, .external_lex_state = 2}, @@ -19287,22 +19311,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5273] = {.lex_state = 151, .external_lex_state = 2}, [5274] = {.lex_state = 151, .external_lex_state = 2}, [5275] = {.lex_state = 151, .external_lex_state = 2}, - [5276] = {.lex_state = 151, .external_lex_state = 5}, + [5276] = {.lex_state = 151, .external_lex_state = 2}, [5277] = {.lex_state = 151, .external_lex_state = 2}, - [5278] = {.lex_state = 151, .external_lex_state = 5}, + [5278] = {.lex_state = 151, .external_lex_state = 2}, [5279] = {.lex_state = 151, .external_lex_state = 2}, [5280] = {.lex_state = 151, .external_lex_state = 2}, [5281] = {.lex_state = 151, .external_lex_state = 2}, [5282] = {.lex_state = 151, .external_lex_state = 2}, - [5283] = {.lex_state = 151, .external_lex_state = 2}, + [5283] = {.lex_state = 151, .external_lex_state = 5}, [5284] = {.lex_state = 151, .external_lex_state = 2}, - [5285] = {.lex_state = 151, .external_lex_state = 5}, - [5286] = {.lex_state = 151, .external_lex_state = 5}, + [5285] = {.lex_state = 151, .external_lex_state = 2}, + [5286] = {.lex_state = 151, .external_lex_state = 2}, [5287] = {.lex_state = 151, .external_lex_state = 2}, [5288] = {.lex_state = 151, .external_lex_state = 2}, [5289] = {.lex_state = 151, .external_lex_state = 2}, [5290] = {.lex_state = 151, .external_lex_state = 2}, - [5291] = {.lex_state = 151, .external_lex_state = 2}, + [5291] = {.lex_state = 151, .external_lex_state = 5}, [5292] = {.lex_state = 151, .external_lex_state = 2}, [5293] = {.lex_state = 151, .external_lex_state = 2}, [5294] = {.lex_state = 151, .external_lex_state = 2}, @@ -19312,28 +19336,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5298] = {.lex_state = 151, .external_lex_state = 2}, [5299] = {.lex_state = 151, .external_lex_state = 2}, [5300] = {.lex_state = 151, .external_lex_state = 2}, - [5301] = {.lex_state = 151, .external_lex_state = 2}, + [5301] = {.lex_state = 151, .external_lex_state = 5}, [5302] = {.lex_state = 151, .external_lex_state = 2}, - [5303] = {.lex_state = 151, .external_lex_state = 2}, + [5303] = {.lex_state = 151, .external_lex_state = 5}, [5304] = {.lex_state = 151, .external_lex_state = 2}, - [5305] = {.lex_state = 151, .external_lex_state = 2}, - [5306] = {.lex_state = 151, .external_lex_state = 2}, + [5305] = {.lex_state = 151, .external_lex_state = 5}, + [5306] = {.lex_state = 151, .external_lex_state = 5}, [5307] = {.lex_state = 151, .external_lex_state = 5}, [5308] = {.lex_state = 151, .external_lex_state = 2}, [5309] = {.lex_state = 151, .external_lex_state = 2}, [5310] = {.lex_state = 151, .external_lex_state = 2}, [5311] = {.lex_state = 151, .external_lex_state = 2}, - [5312] = {.lex_state = 151, .external_lex_state = 2}, + [5312] = {.lex_state = 151, .external_lex_state = 5}, [5313] = {.lex_state = 151, .external_lex_state = 2}, [5314] = {.lex_state = 151, .external_lex_state = 2}, - [5315] = {.lex_state = 151, .external_lex_state = 2}, + [5315] = {.lex_state = 151, .external_lex_state = 5}, [5316] = {.lex_state = 151, .external_lex_state = 2}, [5317] = {.lex_state = 151, .external_lex_state = 2}, [5318] = {.lex_state = 151, .external_lex_state = 2}, [5319] = {.lex_state = 151, .external_lex_state = 2}, [5320] = {.lex_state = 151, .external_lex_state = 2}, [5321] = {.lex_state = 151, .external_lex_state = 2}, - [5322] = {.lex_state = 151, .external_lex_state = 5}, + [5322] = {.lex_state = 151, .external_lex_state = 2}, [5323] = {.lex_state = 151, .external_lex_state = 2}, [5324] = {.lex_state = 151, .external_lex_state = 2}, [5325] = {.lex_state = 151, .external_lex_state = 2}, @@ -19342,8 +19366,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5328] = {.lex_state = 151, .external_lex_state = 2}, [5329] = {.lex_state = 151, .external_lex_state = 2}, [5330] = {.lex_state = 151, .external_lex_state = 2}, - [5331] = {.lex_state = 151, .external_lex_state = 2}, - [5332] = {.lex_state = 151, .external_lex_state = 2}, + [5331] = {.lex_state = 151, .external_lex_state = 5}, + [5332] = {.lex_state = 151, .external_lex_state = 5}, [5333] = {.lex_state = 151, .external_lex_state = 2}, [5334] = {.lex_state = 151, .external_lex_state = 2}, [5335] = {.lex_state = 151, .external_lex_state = 2}, @@ -19372,7 +19396,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5358] = {.lex_state = 151, .external_lex_state = 2}, [5359] = {.lex_state = 151, .external_lex_state = 2}, [5360] = {.lex_state = 151, .external_lex_state = 2}, - [5361] = {.lex_state = 17, .external_lex_state = 2}, + [5361] = {.lex_state = 151, .external_lex_state = 2}, [5362] = {.lex_state = 151, .external_lex_state = 2}, [5363] = {.lex_state = 151, .external_lex_state = 2}, [5364] = {.lex_state = 151, .external_lex_state = 2}, @@ -19391,12 +19415,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5377] = {.lex_state = 151, .external_lex_state = 2}, [5378] = {.lex_state = 151, .external_lex_state = 2}, [5379] = {.lex_state = 151, .external_lex_state = 2}, - [5380] = {.lex_state = 151, .external_lex_state = 2}, - [5381] = {.lex_state = 151, .external_lex_state = 2}, + [5380] = {.lex_state = 151, .external_lex_state = 5}, + [5381] = {.lex_state = 151, .external_lex_state = 5}, [5382] = {.lex_state = 151, .external_lex_state = 2}, [5383] = {.lex_state = 151, .external_lex_state = 2}, [5384] = {.lex_state = 151, .external_lex_state = 2}, - [5385] = {.lex_state = 151, .external_lex_state = 2}, + [5385] = {.lex_state = 151, .external_lex_state = 5}, [5386] = {.lex_state = 151, .external_lex_state = 2}, [5387] = {.lex_state = 151, .external_lex_state = 2}, [5388] = {.lex_state = 151, .external_lex_state = 2}, @@ -19412,9 +19436,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5398] = {.lex_state = 151, .external_lex_state = 2}, [5399] = {.lex_state = 151, .external_lex_state = 2}, [5400] = {.lex_state = 151, .external_lex_state = 2}, - [5401] = {.lex_state = 151, .external_lex_state = 5}, + [5401] = {.lex_state = 151, .external_lex_state = 2}, [5402] = {.lex_state = 151, .external_lex_state = 2}, - [5403] = {.lex_state = 151, .external_lex_state = 5}, + [5403] = {.lex_state = 151, .external_lex_state = 2}, [5404] = {.lex_state = 151, .external_lex_state = 2}, [5405] = {.lex_state = 151, .external_lex_state = 2}, [5406] = {.lex_state = 151, .external_lex_state = 2}, @@ -19423,12 +19447,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5409] = {.lex_state = 151, .external_lex_state = 2}, [5410] = {.lex_state = 151, .external_lex_state = 2}, [5411] = {.lex_state = 151, .external_lex_state = 2}, - [5412] = {.lex_state = 151, .external_lex_state = 2}, + [5412] = {.lex_state = 151, .external_lex_state = 5}, [5413] = {.lex_state = 151, .external_lex_state = 2}, [5414] = {.lex_state = 151, .external_lex_state = 2}, [5415] = {.lex_state = 151, .external_lex_state = 2}, [5416] = {.lex_state = 151, .external_lex_state = 2}, - [5417] = {.lex_state = 151, .external_lex_state = 2}, + [5417] = {.lex_state = 151, .external_lex_state = 5}, [5418] = {.lex_state = 151, .external_lex_state = 2}, [5419] = {.lex_state = 151, .external_lex_state = 2}, [5420] = {.lex_state = 151, .external_lex_state = 2}, @@ -19437,7 +19461,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5423] = {.lex_state = 151, .external_lex_state = 2}, [5424] = {.lex_state = 151, .external_lex_state = 2}, [5425] = {.lex_state = 151, .external_lex_state = 2}, - [5426] = {.lex_state = 151, .external_lex_state = 2}, + [5426] = {.lex_state = 151, .external_lex_state = 5}, [5427] = {.lex_state = 151, .external_lex_state = 2}, [5428] = {.lex_state = 151, .external_lex_state = 2}, [5429] = {.lex_state = 151, .external_lex_state = 2}, @@ -19456,25 +19480,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5442] = {.lex_state = 151, .external_lex_state = 2}, [5443] = {.lex_state = 151, .external_lex_state = 2}, [5444] = {.lex_state = 151, .external_lex_state = 2}, - [5445] = {.lex_state = 151, .external_lex_state = 2}, + [5445] = {.lex_state = 151, .external_lex_state = 5}, [5446] = {.lex_state = 151, .external_lex_state = 2}, [5447] = {.lex_state = 151, .external_lex_state = 2}, - [5448] = {.lex_state = 151, .external_lex_state = 5}, + [5448] = {.lex_state = 151, .external_lex_state = 2}, [5449] = {.lex_state = 151, .external_lex_state = 2}, - [5450] = {.lex_state = 151, .external_lex_state = 2}, + [5450] = {.lex_state = 151, .external_lex_state = 5}, [5451] = {.lex_state = 151, .external_lex_state = 2}, [5452] = {.lex_state = 151, .external_lex_state = 2}, [5453] = {.lex_state = 151, .external_lex_state = 2}, [5454] = {.lex_state = 151, .external_lex_state = 2}, [5455] = {.lex_state = 151, .external_lex_state = 2}, - [5456] = {.lex_state = 151, .external_lex_state = 2}, + [5456] = {.lex_state = 151, .external_lex_state = 5}, [5457] = {.lex_state = 151, .external_lex_state = 2}, - [5458] = {.lex_state = 151, .external_lex_state = 5}, + [5458] = {.lex_state = 151, .external_lex_state = 2}, [5459] = {.lex_state = 151, .external_lex_state = 2}, - [5460] = {.lex_state = 151, .external_lex_state = 2}, + [5460] = {.lex_state = 151, .external_lex_state = 5}, [5461] = {.lex_state = 151, .external_lex_state = 2}, [5462] = {.lex_state = 151, .external_lex_state = 2}, - [5463] = {.lex_state = 151, .external_lex_state = 2}, + [5463] = {.lex_state = 17, .external_lex_state = 2}, [5464] = {.lex_state = 151, .external_lex_state = 2}, [5465] = {.lex_state = 151, .external_lex_state = 2}, [5466] = {.lex_state = 151, .external_lex_state = 2}, @@ -19493,34 +19517,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5479] = {.lex_state = 151, .external_lex_state = 2}, [5480] = {.lex_state = 151, .external_lex_state = 2}, [5481] = {.lex_state = 151, .external_lex_state = 2}, - [5482] = {.lex_state = 151, .external_lex_state = 2}, + [5482] = {.lex_state = 151, .external_lex_state = 5}, [5483] = {.lex_state = 151, .external_lex_state = 2}, [5484] = {.lex_state = 151, .external_lex_state = 2}, - [5485] = {.lex_state = 151, .external_lex_state = 2}, + [5485] = {.lex_state = 151, .external_lex_state = 5}, [5486] = {.lex_state = 151, .external_lex_state = 2}, [5487] = {.lex_state = 151, .external_lex_state = 2}, [5488] = {.lex_state = 151, .external_lex_state = 2}, - [5489] = {.lex_state = 151, .external_lex_state = 5}, - [5490] = {.lex_state = 151, .external_lex_state = 2}, - [5491] = {.lex_state = 151, .external_lex_state = 2}, + [5489] = {.lex_state = 151, .external_lex_state = 2}, + [5490] = {.lex_state = 151, .external_lex_state = 5}, + [5491] = {.lex_state = 151, .external_lex_state = 5}, [5492] = {.lex_state = 151, .external_lex_state = 2}, [5493] = {.lex_state = 151, .external_lex_state = 2}, [5494] = {.lex_state = 151, .external_lex_state = 2}, - [5495] = {.lex_state = 151, .external_lex_state = 5}, + [5495] = {.lex_state = 151, .external_lex_state = 2}, [5496] = {.lex_state = 151, .external_lex_state = 2}, - [5497] = {.lex_state = 151, .external_lex_state = 5}, + [5497] = {.lex_state = 151, .external_lex_state = 2}, [5498] = {.lex_state = 151, .external_lex_state = 2}, [5499] = {.lex_state = 151, .external_lex_state = 2}, [5500] = {.lex_state = 151, .external_lex_state = 2}, - [5501] = {.lex_state = 151, .external_lex_state = 5}, - [5502] = {.lex_state = 151, .external_lex_state = 5}, + [5501] = {.lex_state = 151, .external_lex_state = 2}, + [5502] = {.lex_state = 151, .external_lex_state = 2}, [5503] = {.lex_state = 151, .external_lex_state = 2}, [5504] = {.lex_state = 151, .external_lex_state = 2}, [5505] = {.lex_state = 151, .external_lex_state = 2}, [5506] = {.lex_state = 151, .external_lex_state = 2}, - [5507] = {.lex_state = 151, .external_lex_state = 5}, - [5508] = {.lex_state = 151, .external_lex_state = 5}, - [5509] = {.lex_state = 151, .external_lex_state = 5}, + [5507] = {.lex_state = 151, .external_lex_state = 2}, + [5508] = {.lex_state = 151, .external_lex_state = 2}, + [5509] = {.lex_state = 151, .external_lex_state = 2}, [5510] = {.lex_state = 151, .external_lex_state = 2}, [5511] = {.lex_state = 151, .external_lex_state = 2}, [5512] = {.lex_state = 151, .external_lex_state = 2}, @@ -19535,10 +19559,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5521] = {.lex_state = 151, .external_lex_state = 2}, [5522] = {.lex_state = 151, .external_lex_state = 2}, [5523] = {.lex_state = 151, .external_lex_state = 2}, - [5524] = {.lex_state = 151, .external_lex_state = 5}, + [5524] = {.lex_state = 151, .external_lex_state = 2}, [5525] = {.lex_state = 151, .external_lex_state = 2}, [5526] = {.lex_state = 151, .external_lex_state = 2}, - [5527] = {.lex_state = 151, .external_lex_state = 5}, + [5527] = {.lex_state = 151, .external_lex_state = 2}, [5528] = {.lex_state = 151, .external_lex_state = 2}, [5529] = {.lex_state = 151, .external_lex_state = 2}, [5530] = {.lex_state = 151, .external_lex_state = 2}, @@ -19546,7 +19570,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5532] = {.lex_state = 151, .external_lex_state = 2}, [5533] = {.lex_state = 151, .external_lex_state = 2}, [5534] = {.lex_state = 151, .external_lex_state = 2}, - [5535] = {.lex_state = 40, .external_lex_state = 2}, + [5535] = {.lex_state = 151, .external_lex_state = 2}, [5536] = {.lex_state = 151, .external_lex_state = 2}, [5537] = {.lex_state = 151, .external_lex_state = 2}, [5538] = {.lex_state = 151, .external_lex_state = 2}, @@ -19572,7 +19596,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5558] = {.lex_state = 151, .external_lex_state = 2}, [5559] = {.lex_state = 151, .external_lex_state = 2}, [5560] = {.lex_state = 151, .external_lex_state = 2}, - [5561] = {.lex_state = 151, .external_lex_state = 2}, + [5561] = {.lex_state = 40, .external_lex_state = 2}, [5562] = {.lex_state = 151, .external_lex_state = 2}, [5563] = {.lex_state = 151, .external_lex_state = 2}, [5564] = {.lex_state = 151, .external_lex_state = 2}, @@ -19607,7 +19631,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5593] = {.lex_state = 151, .external_lex_state = 2}, [5594] = {.lex_state = 151, .external_lex_state = 2}, [5595] = {.lex_state = 151, .external_lex_state = 2}, - [5596] = {.lex_state = 40, .external_lex_state = 2}, + [5596] = {.lex_state = 151, .external_lex_state = 2}, [5597] = {.lex_state = 151, .external_lex_state = 2}, [5598] = {.lex_state = 151, .external_lex_state = 2}, [5599] = {.lex_state = 151, .external_lex_state = 2}, @@ -19615,7 +19639,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5601] = {.lex_state = 151, .external_lex_state = 2}, [5602] = {.lex_state = 151, .external_lex_state = 2}, [5603] = {.lex_state = 151, .external_lex_state = 2}, - [5604] = {.lex_state = 151, .external_lex_state = 2}, + [5604] = {.lex_state = 3, .external_lex_state = 10}, [5605] = {.lex_state = 151, .external_lex_state = 2}, [5606] = {.lex_state = 151, .external_lex_state = 2}, [5607] = {.lex_state = 151, .external_lex_state = 2}, @@ -19624,7 +19648,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5610] = {.lex_state = 151, .external_lex_state = 2}, [5611] = {.lex_state = 151, .external_lex_state = 2}, [5612] = {.lex_state = 151, .external_lex_state = 2}, - [5613] = {.lex_state = 40, .external_lex_state = 2}, + [5613] = {.lex_state = 151, .external_lex_state = 2}, [5614] = {.lex_state = 151, .external_lex_state = 2}, [5615] = {.lex_state = 151, .external_lex_state = 2}, [5616] = {.lex_state = 151, .external_lex_state = 2}, @@ -19635,7 +19659,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5621] = {.lex_state = 151, .external_lex_state = 2}, [5622] = {.lex_state = 151, .external_lex_state = 2}, [5623] = {.lex_state = 151, .external_lex_state = 2}, - [5624] = {.lex_state = 3, .external_lex_state = 10}, + [5624] = {.lex_state = 151, .external_lex_state = 2}, [5625] = {.lex_state = 151, .external_lex_state = 2}, [5626] = {.lex_state = 151, .external_lex_state = 2}, [5627] = {.lex_state = 151, .external_lex_state = 2}, @@ -19650,12 +19674,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5636] = {.lex_state = 151, .external_lex_state = 2}, [5637] = {.lex_state = 151, .external_lex_state = 2}, [5638] = {.lex_state = 151, .external_lex_state = 2}, - [5639] = {.lex_state = 3, .external_lex_state = 10}, + [5639] = {.lex_state = 151, .external_lex_state = 2}, [5640] = {.lex_state = 151, .external_lex_state = 2}, [5641] = {.lex_state = 151, .external_lex_state = 2}, [5642] = {.lex_state = 151, .external_lex_state = 2}, [5643] = {.lex_state = 151, .external_lex_state = 2}, - [5644] = {.lex_state = 151, .external_lex_state = 2}, + [5644] = {.lex_state = 3, .external_lex_state = 10}, [5645] = {.lex_state = 151, .external_lex_state = 2}, [5646] = {.lex_state = 151, .external_lex_state = 2}, [5647] = {.lex_state = 151, .external_lex_state = 2}, @@ -19687,7 +19711,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5673] = {.lex_state = 151, .external_lex_state = 2}, [5674] = {.lex_state = 151, .external_lex_state = 2}, [5675] = {.lex_state = 151, .external_lex_state = 2}, - [5676] = {.lex_state = 3, .external_lex_state = 10}, + [5676] = {.lex_state = 151, .external_lex_state = 2}, [5677] = {.lex_state = 151, .external_lex_state = 2}, [5678] = {.lex_state = 151, .external_lex_state = 2}, [5679] = {.lex_state = 151, .external_lex_state = 2}, @@ -19717,7 +19741,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5703] = {.lex_state = 151, .external_lex_state = 2}, [5704] = {.lex_state = 151, .external_lex_state = 2}, [5705] = {.lex_state = 151, .external_lex_state = 2}, - [5706] = {.lex_state = 151, .external_lex_state = 2}, + [5706] = {.lex_state = 3, .external_lex_state = 10}, [5707] = {.lex_state = 151, .external_lex_state = 2}, [5708] = {.lex_state = 151, .external_lex_state = 2}, [5709] = {.lex_state = 151, .external_lex_state = 2}, @@ -19759,7 +19783,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5745] = {.lex_state = 151, .external_lex_state = 2}, [5746] = {.lex_state = 151, .external_lex_state = 2}, [5747] = {.lex_state = 151, .external_lex_state = 2}, - [5748] = {.lex_state = 40, .external_lex_state = 2}, + [5748] = {.lex_state = 151, .external_lex_state = 2}, [5749] = {.lex_state = 151, .external_lex_state = 2}, [5750] = {.lex_state = 151, .external_lex_state = 2}, [5751] = {.lex_state = 151, .external_lex_state = 2}, @@ -19770,10 +19794,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5756] = {.lex_state = 151, .external_lex_state = 2}, [5757] = {.lex_state = 151, .external_lex_state = 2}, [5758] = {.lex_state = 151, .external_lex_state = 2}, - [5759] = {.lex_state = 151, .external_lex_state = 2}, + [5759] = {.lex_state = 40, .external_lex_state = 2}, [5760] = {.lex_state = 151, .external_lex_state = 2}, [5761] = {.lex_state = 151, .external_lex_state = 2}, - [5762] = {.lex_state = 151, .external_lex_state = 2}, + [5762] = {.lex_state = 40, .external_lex_state = 2}, [5763] = {.lex_state = 151, .external_lex_state = 2}, [5764] = {.lex_state = 151, .external_lex_state = 2}, [5765] = {.lex_state = 151, .external_lex_state = 2}, @@ -19783,8 +19807,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5769] = {.lex_state = 151, .external_lex_state = 2}, [5770] = {.lex_state = 151, .external_lex_state = 2}, [5771] = {.lex_state = 151, .external_lex_state = 2}, - [5772] = {.lex_state = 40, .external_lex_state = 2}, - [5773] = {.lex_state = 3, .external_lex_state = 10}, + [5772] = {.lex_state = 151, .external_lex_state = 2}, + [5773] = {.lex_state = 151, .external_lex_state = 2}, [5774] = {.lex_state = 151, .external_lex_state = 2}, [5775] = {.lex_state = 151, .external_lex_state = 2}, [5776] = {.lex_state = 151, .external_lex_state = 2}, @@ -19807,7 +19831,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5793] = {.lex_state = 151, .external_lex_state = 2}, [5794] = {.lex_state = 151, .external_lex_state = 2}, [5795] = {.lex_state = 151, .external_lex_state = 2}, - [5796] = {.lex_state = 151, .external_lex_state = 2}, + [5796] = {.lex_state = 3, .external_lex_state = 10}, [5797] = {.lex_state = 151, .external_lex_state = 2}, [5798] = {.lex_state = 151, .external_lex_state = 2}, [5799] = {.lex_state = 151, .external_lex_state = 2}, @@ -19878,14 +19902,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5864] = {.lex_state = 151, .external_lex_state = 2}, [5865] = {.lex_state = 151, .external_lex_state = 2}, [5866] = {.lex_state = 151, .external_lex_state = 2}, - [5867] = {.lex_state = 151, .external_lex_state = 2}, + [5867] = {.lex_state = 3, .external_lex_state = 10}, [5868] = {.lex_state = 151, .external_lex_state = 2}, [5869] = {.lex_state = 151, .external_lex_state = 2}, [5870] = {.lex_state = 151, .external_lex_state = 2}, [5871] = {.lex_state = 151, .external_lex_state = 2}, [5872] = {.lex_state = 151, .external_lex_state = 2}, [5873] = {.lex_state = 151, .external_lex_state = 2}, - [5874] = {.lex_state = 151, .external_lex_state = 2}, + [5874] = {.lex_state = 40, .external_lex_state = 2}, [5875] = {.lex_state = 151, .external_lex_state = 2}, [5876] = {.lex_state = 151, .external_lex_state = 2}, [5877] = {.lex_state = 151, .external_lex_state = 2}, @@ -19917,7 +19941,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5903] = {.lex_state = 151, .external_lex_state = 2}, [5904] = {.lex_state = 151, .external_lex_state = 2}, [5905] = {.lex_state = 151, .external_lex_state = 2}, - [5906] = {.lex_state = 3, .external_lex_state = 10}, + [5906] = {.lex_state = 151, .external_lex_state = 2}, [5907] = {.lex_state = 151, .external_lex_state = 2}, [5908] = {.lex_state = 151, .external_lex_state = 2}, [5909] = {.lex_state = 151, .external_lex_state = 2}, @@ -19925,9 +19949,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5911] = {.lex_state = 151, .external_lex_state = 2}, [5912] = {.lex_state = 151, .external_lex_state = 2}, [5913] = {.lex_state = 151, .external_lex_state = 2}, - [5914] = {.lex_state = 151, .external_lex_state = 2}, + [5914] = {.lex_state = 40, .external_lex_state = 2}, [5915] = {.lex_state = 151, .external_lex_state = 2}, [5916] = {.lex_state = 151, .external_lex_state = 2}, + [5917] = {.lex_state = 151, .external_lex_state = 2}, + [5918] = {.lex_state = 151, .external_lex_state = 2}, + [5919] = {.lex_state = 151, .external_lex_state = 2}, + [5920] = {.lex_state = 151, .external_lex_state = 2}, + [5921] = {.lex_state = 151, .external_lex_state = 2}, + [5922] = {.lex_state = 151, .external_lex_state = 2}, + [5923] = {.lex_state = 151, .external_lex_state = 2}, + [5924] = {.lex_state = 151, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19949,6 +19981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), @@ -20094,87 +20127,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5856), - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_program] = STATE(5689), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -20255,79 +20288,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3257), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(4223), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3290), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -20444,79 +20477,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3257), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(4223), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3290), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -20633,98 +20666,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5761), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5761), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5761), - [sym_spread_element] = STATE(5112), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(5112), - [sym_pair] = STATE(5112), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(3673), - [sym_computed_property_name] = STATE(3673), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2712), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5603), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5603), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5603), + [sym_spread_element] = STATE(4603), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2195), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4603), + [sym_pair] = STATE(4603), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3665), + [sym_computed_property_name] = STATE(3665), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_accessibility_modifier] = STATE(2682), + [sym_override_modifier] = STATE(2711), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3773), - [aux_sym_object_repeat1] = STATE(5135), - [aux_sym_object_pattern_repeat1] = STATE(5139), + [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_object_repeat1] = STATE(4682), + [aux_sym_object_pattern_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(231), [anon_sym_export] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(235), @@ -20807,98 +20840,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5761), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5761), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5761), - [sym_spread_element] = STATE(5112), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(5112), - [sym_pair] = STATE(5112), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(3673), - [sym_computed_property_name] = STATE(3673), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2712), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3773), - [aux_sym_object_repeat1] = STATE(5135), - [aux_sym_object_pattern_repeat1] = STATE(5139), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5603), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5603), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5603), + [sym_spread_element] = STATE(4603), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2195), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4603), + [sym_pair] = STATE(4603), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3665), + [sym_computed_property_name] = STATE(3665), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_accessibility_modifier] = STATE(2682), + [sym_override_modifier] = STATE(2711), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_object_repeat1] = STATE(4682), + [aux_sym_object_pattern_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(231), [anon_sym_export] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(235), @@ -20981,98 +21014,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5761), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5761), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5761), - [sym_spread_element] = STATE(5112), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(5112), - [sym_pair] = STATE(5112), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(3673), - [sym_computed_property_name] = STATE(3673), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2712), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3773), - [aux_sym_object_repeat1] = STATE(5135), - [aux_sym_object_pattern_repeat1] = STATE(5139), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5603), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5603), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5603), + [sym_spread_element] = STATE(4603), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2195), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4603), + [sym_pair] = STATE(4603), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3665), + [sym_computed_property_name] = STATE(3665), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_accessibility_modifier] = STATE(2682), + [sym_override_modifier] = STATE(2711), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_object_repeat1] = STATE(4682), + [aux_sym_object_pattern_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(231), [anon_sym_export] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(235), @@ -21155,98 +21188,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5761), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5761), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5761), - [sym_spread_element] = STATE(4773), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(3673), - [sym_computed_property_name] = STATE(3673), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2712), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(3773), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5603), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5603), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5603), + [sym_spread_element] = STATE(4835), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2195), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3665), + [sym_computed_property_name] = STATE(3665), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_accessibility_modifier] = STATE(2682), + [sym_override_modifier] = STATE(2711), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(279), [anon_sym_export] = ACTIONS(281), [anon_sym_STAR] = ACTIONS(235), @@ -21329,98 +21362,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5761), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5761), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5761), - [sym_spread_element] = STATE(4773), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(3673), - [sym_computed_property_name] = STATE(3673), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2712), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(3773), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5603), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5603), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5603), + [sym_spread_element] = STATE(4835), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2195), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3665), + [sym_computed_property_name] = STATE(3665), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_accessibility_modifier] = STATE(2682), + [sym_override_modifier] = STATE(2711), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(311), [anon_sym_export] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(235), @@ -21503,86 +21536,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [ts_builtin_sym_end] = ACTIONS(341), [sym_identifier] = ACTIONS(343), [anon_sym_export] = ACTIONS(346), @@ -21665,86 +21698,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(498), @@ -21826,86 +21859,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(502), @@ -21987,86 +22020,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(10), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(11), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(506), @@ -22148,86 +22181,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(510), @@ -22309,86 +22342,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22468,86 +22501,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [ts_builtin_sym_end] = ACTIONS(516), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -22627,86 +22660,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [ts_builtin_sym_end] = ACTIONS(518), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -22786,86 +22819,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22945,92 +22978,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3848), + [ts_builtin_sym_end] = ACTIONS(518), [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_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23104,92 +23137,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [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(522), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23263,92 +23296,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3848), [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(524), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23422,92 +23455,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3848), [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(526), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23581,92 +23614,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3773), - [ts_builtin_sym_end] = ACTIONS(518), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3848), [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_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23740,86 +23773,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23899,86 +23932,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24058,86 +24091,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24217,86 +24250,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24376,86 +24409,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24535,86 +24568,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24694,86 +24727,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24853,86 +24886,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(28), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(3773), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25012,260 +25045,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), [sym_identifier] = ACTIONS(546), [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), [anon_sym_namespace] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(568), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [32] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(838), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(620), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25279,10 +25155,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25304,107 +25180,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), [sym_html_comment] = ACTIONS(5), }, - [33] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(838), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), + [32] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(787), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25482,104 +25358,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(796), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [33] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(833), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), + [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(620), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25593,10 +25469,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25618,125 +25494,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), }, - [35] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(5126), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [34] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(734), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), + [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(652), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25750,10 +25626,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25775,125 +25651,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), }, - [36] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(862), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [35] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), + [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(620), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25907,10 +25783,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25932,125 +25808,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), }, - [37] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(835), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [36] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(846), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), + [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(620), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26064,10 +25940,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26089,125 +25965,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), }, - [38] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(755), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [37] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), + [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(620), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26221,10 +26097,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26246,107 +26122,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), }, - [39] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(813), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), + [38] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(767), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26424,104 +26300,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(755), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [39] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(767), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26535,10 +26411,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26560,125 +26436,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [40] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(787), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26692,10 +26568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26717,282 +26593,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), + [41] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(4751), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(672), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(588), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_while] = ACTIONS(596), + [anon_sym_do] = ACTIONS(47), + [anon_sym_try] = ACTIONS(49), + [anon_sym_break] = ACTIONS(51), + [anon_sym_continue] = ACTIONS(53), + [anon_sym_debugger] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_SEMI] = 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_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(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), + [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(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), + [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(796), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [42] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27006,10 +26882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27031,282 +26907,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4886), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4889), - [aux_sym_array_pattern_repeat1] = STATE(4890), + [43] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(768), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), [sym_identifier] = ACTIONS(546), [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), [anon_sym_namespace] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(674), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [45] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(862), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), - [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_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27320,10 +27039,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27345,282 +27064,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), + [44] = { + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(610), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(676), + [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(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), + [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(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), + [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(192), [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), + [sym_undefined] = ACTIONS(658), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [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(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(5622), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [45] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(804), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(620), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27634,10 +27353,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27659,125 +27378,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(812), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [46] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(833), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27791,10 +27510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27816,125 +27535,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(813), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [47] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(846), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(620), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27948,10 +27667,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27973,264 +27692,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(678), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [51] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(835), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), + [48] = { + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(768), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28308,104 +27870,575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [49] = { + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(140), + [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(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [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(181), + [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(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [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(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [50] = { + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(140), + [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(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [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(181), + [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(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [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(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [51] = { + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(5152), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(5155), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(140), + [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(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [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(181), + [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(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [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(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, [52] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(804), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3848), + [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(620), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -28419,10 +28452,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28444,178 +28477,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), }, [53] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(610), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(680), + [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(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), + [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(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), + [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(192), [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), + [sym_undefined] = ACTIONS(658), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [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(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -28623,313 +28656,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(4747), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), - [anon_sym_do] = ACTIONS(47), - [anon_sym_try] = ACTIONS(49), - [anon_sym_break] = ACTIONS(51), - [anon_sym_continue] = ACTIONS(53), - [anon_sym_debugger] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_throw] = ACTIONS(59), - [anon_sym_SEMI] = 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(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), - [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_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(140), + [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(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [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(181), + [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(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_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(658), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4886), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4889), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(5152), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(5155), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(610), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), + [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(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), + [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(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), + [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(192), [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), + [sym_undefined] = ACTIONS(658), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [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(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -28937,156 +28970,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(610), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), + [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(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), + [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(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), + [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(192), [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), + [sym_undefined] = ACTIONS(658), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [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(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -29094,156 +29127,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_typeof] = ACTIONS(558), + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(133), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(610), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), + [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(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), + [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(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), + [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(192), [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), + [sym_undefined] = ACTIONS(658), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [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(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -29251,156 +29284,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_import] = STATE(3338), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4336), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3963), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4556), - [sym_optional_tuple_parameter] = STATE(4556), - [sym_optional_type] = STATE(4556), - [sym_rest_type] = STATE(4556), - [sym__tuple_type_member] = STATE(4556), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5512), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4344), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(4039), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(4889), + [sym_optional_tuple_parameter] = STATE(4889), + [sym_optional_type] = STATE(4889), + [sym_rest_type] = STATE(4889), + [sym__tuple_type_member] = STATE(4889), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5518), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [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(558), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(610), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), + [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(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), + [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(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), + [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(192), [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(596), + [sym_undefined] = ACTIONS(658), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(598), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [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(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [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(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -29408,103 +29441,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(812), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3749), - [sym_identifier] = ACTIONS(610), - [anon_sym_export] = ACTIONS(612), - [anon_sym_type] = ACTIONS(614), - [anon_sym_namespace] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(767), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(620), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(622), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(624), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(626), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(628), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -29518,10 +29551,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29543,125 +29576,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(638), - [anon_sym_readonly] = ACTIONS(638), - [anon_sym_get] = ACTIONS(638), - [anon_sym_set] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(640), - [anon_sym_public] = ACTIONS(638), - [anon_sym_private] = ACTIONS(638), - [anon_sym_protected] = ACTIONS(638), - [anon_sym_override] = ACTIONS(638), - [anon_sym_module] = ACTIONS(642), - [anon_sym_any] = ACTIONS(638), - [anon_sym_number] = ACTIONS(638), - [anon_sym_boolean] = ACTIONS(638), - [anon_sym_string] = ACTIONS(638), - [anon_sym_symbol] = ACTIONS(638), - [anon_sym_object] = ACTIONS(638), + [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), [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(813), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(787), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -29675,10 +29708,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29700,125 +29733,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -29832,10 +29865,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29857,125 +29890,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(812), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -29989,10 +30022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30014,125 +30047,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(838), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(768), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30146,10 +30179,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30171,125 +30204,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(796), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(804), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30303,10 +30336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30328,125 +30361,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(862), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(833), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30460,10 +30493,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30485,125 +30518,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(835), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(846), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30617,10 +30650,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30642,125 +30675,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(755), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3861), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_type] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(618), + [sym_export_statement] = STATE(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(5134), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3863), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(582), + [anon_sym_type] = ACTIONS(584), + [anon_sym_namespace] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(652), + [anon_sym_with] = ACTIONS(588), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(654), + [anon_sym_let] = ACTIONS(590), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(656), + [anon_sym_if] = ACTIONS(592), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(658), + [anon_sym_for] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(660), + [anon_sym_while] = ACTIONS(596), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30774,10 +30807,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(664), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30799,125 +30832,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(666), - [anon_sym_readonly] = ACTIONS(666), - [anon_sym_get] = ACTIONS(666), - [anon_sym_set] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_protected] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_module] = ACTIONS(670), - [anon_sym_any] = ACTIONS(666), - [anon_sym_number] = ACTIONS(666), - [anon_sym_boolean] = ACTIONS(666), - [anon_sym_string] = ACTIONS(666), - [anon_sym_symbol] = ACTIONS(666), - [anon_sym_object] = ACTIONS(666), + [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), [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(3413), - [sym_import_statement] = STATE(810), - [sym_statement] = STATE(734), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(3773), - [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(854), + [sym_declaration] = STATE(854), + [sym_import] = STATE(3306), + [sym_import_statement] = STATE(854), + [sym_statement] = STATE(5574), + [sym_expression_statement] = STATE(854), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_statement_block] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_for_in_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_with_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_debugger_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_empty_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(550), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(558), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(560), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(562), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(564), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30931,10 +30964,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30956,74 +30989,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -31133,52 +31166,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -31288,52 +31321,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -31443,226 +31476,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4110), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3395), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5725), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4557), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(224), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_typeof] = ACTIONS(187), + [anon_sym_typeof] = ACTIONS(733), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(227), - [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(737), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(178), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(747), + [sym_number] = ACTIONS(749), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(751), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [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(753), - [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(162), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), + [sym_undefined] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(610), + [anon_sym_readonly] = ACTIONS(759), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(610), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_override] = ACTIONS(765), + [anon_sym_module] = ACTIONS(610), + [anon_sym_any] = ACTIONS(767), + [anon_sym_number] = ACTIONS(767), + [anon_sym_boolean] = ACTIONS(767), + [anon_sym_string] = ACTIONS(767), + [anon_sym_symbol] = ACTIONS(767), + [anon_sym_object] = ACTIONS(767), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4099), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4273), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(773), [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), @@ -31673,7 +31706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -31704,7 +31737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -31719,21 +31752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(189), [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(755), + [sym_this] = ACTIONS(789), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [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(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -31751,72 +31784,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4248), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4147), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(773), [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), @@ -31827,7 +31860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -31858,7 +31891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -31873,21 +31906,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(189), [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(757), + [sym_this] = ACTIONS(795), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [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(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -31905,72 +31938,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4112), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4151), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(773), [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), @@ -31981,7 +32014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -32012,7 +32045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -32027,21 +32060,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(189), [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(759), + [sym_this] = ACTIONS(797), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [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(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -32059,72 +32092,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4223), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4154), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(773), [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), @@ -32135,7 +32168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -32166,7 +32199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -32181,21 +32214,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(189), [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(761), + [sym_this] = ACTIONS(799), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [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(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -32213,534 +32246,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4223), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), - [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(731), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(178), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [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(753), - [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(162), - [sym_html_comment] = ACTIONS(5), - }, - [78] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1459), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5729), - [sym_string] = STATE(2193), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4533), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(763), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_typeof] = ACTIONS(767), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(771), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(773), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(781), - [sym_number] = ACTIONS(783), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(785), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_undefined] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(791), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(793), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(797), - [anon_sym_private] = ACTIONS(797), - [anon_sym_protected] = ACTIONS(797), - [anon_sym_override] = ACTIONS(799), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [79] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1459), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5729), - [sym_string] = STATE(2193), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4551), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(763), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_typeof] = ACTIONS(767), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(771), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(773), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(781), - [sym_number] = ACTIONS(783), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(785), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_undefined] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(791), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(793), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(797), - [anon_sym_private] = ACTIONS(797), - [anon_sym_protected] = ACTIONS(797), - [anon_sym_override] = ACTIONS(799), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [80] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4155), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(773), [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), @@ -32751,7 +32322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -32782,7 +32353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -32797,21 +32368,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(189), [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(803), + [sym_this] = ACTIONS(801), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [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(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -32828,151 +32399,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1596), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5814), - [sym_string] = STATE(2193), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4533), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(763), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_typeof] = ACTIONS(767), + [78] = { + [sym_import] = STATE(3395), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5725), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4455), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_typeof] = ACTIONS(733), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(610), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(737), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(773), - [anon_sym_using] = ACTIONS(574), + [anon_sym_new] = ACTIONS(739), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(781), - [sym_number] = ACTIONS(783), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(785), + [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(747), + [sym_number] = ACTIONS(749), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(751), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_undefined] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(791), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(793), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(797), - [anon_sym_private] = ACTIONS(797), - [anon_sym_protected] = ACTIONS(797), - [anon_sym_override] = ACTIONS(799), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), + [sym_undefined] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(610), + [anon_sym_readonly] = ACTIONS(759), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(610), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_override] = ACTIONS(765), + [anon_sym_module] = ACTIONS(610), + [anon_sym_any] = ACTIONS(767), + [anon_sym_number] = ACTIONS(767), + [anon_sym_boolean] = ACTIONS(767), + [anon_sym_string] = ACTIONS(767), + [anon_sym_symbol] = ACTIONS(767), + [anon_sym_object] = ACTIONS(767), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -32982,73 +32553,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4181), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [79] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), @@ -33057,9 +32628,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -33090,7 +32661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -33105,21 +32676,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(189), [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(744), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(805), + [sym_this] = ACTIONS(801), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [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(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -33136,84 +32707,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [80] = { + [sym_import] = STATE(3395), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1511), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5635), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4455), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(737), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(739), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(747), + [sym_number] = ACTIONS(749), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(751), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), + [sym_undefined] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(610), + [anon_sym_readonly] = ACTIONS(759), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(610), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_override] = ACTIONS(765), + [anon_sym_module] = ACTIONS(610), + [anon_sym_any] = ACTIONS(767), + [anon_sym_number] = ACTIONS(767), + [anon_sym_boolean] = ACTIONS(767), + [anon_sym_string] = ACTIONS(767), + [anon_sym_symbol] = ACTIONS(767), + [anon_sym_object] = ACTIONS(767), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [81] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4268), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -33230,6 +32955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(168), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33238,12 +32964,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -33255,118 +32981,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), + [sym_this] = ACTIONS(803), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(833), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(115), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(793), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [82] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4296), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -33383,6 +33109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(168), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33391,12 +33118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(781), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -33408,118 +33135,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), + [sym_this] = ACTIONS(805), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(115), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(793), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [83] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(807), [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -33546,7 +33273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -33564,21 +33291,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(809), [anon_sym_readonly] = ACTIONS(809), [anon_sym_get] = ACTIONS(809), [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(809), [anon_sym_public] = ACTIONS(809), [anon_sym_private] = ACTIONS(809), @@ -33595,89 +33322,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_import] = STATE(3257), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4551), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), + [84] = { + [sym_import] = STATE(3290), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4557), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(612), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -33687,7 +33414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(146), @@ -33700,11 +33427,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(164), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -33715,23 +33442,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(192), [sym_number] = ACTIONS(194), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(849), + [sym_this] = ACTIONS(829), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), [sym_undefined] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(851), + [anon_sym_readonly] = ACTIONS(831), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(210), [anon_sym_number] = ACTIONS(210), @@ -33748,89 +33475,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_import] = STATE(3257), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4465), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), + [85] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [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(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [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_QMARK] = ACTIONS(855), + [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(162), + [sym_html_comment] = ACTIONS(5), + }, + [86] = { + [sym_import] = STATE(3290), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4497), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(612), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -33840,7 +33720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(146), @@ -33853,11 +33733,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(164), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -33868,23 +33748,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(192), [sym_number] = ACTIONS(194), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(849), + [sym_this] = ACTIONS(829), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), [sym_undefined] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(851), + [anon_sym_readonly] = ACTIONS(831), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(210), [anon_sym_number] = ACTIONS(210), @@ -33901,89 +33781,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_import] = STATE(3257), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4511), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), + [87] = { + [sym_import] = STATE(3290), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4483), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(612), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -33993,7 +33873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(146), @@ -34006,11 +33886,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(164), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -34021,23 +33901,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(192), [sym_number] = ACTIONS(194), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(849), + [sym_this] = ACTIONS(829), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), [sym_undefined] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(851), + [anon_sym_readonly] = ACTIONS(831), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(210), [anon_sym_number] = ACTIONS(210), @@ -34054,89 +33934,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_import] = STATE(3257), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4528), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), + [88] = { + [sym_import] = STATE(3290), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4525), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(612), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -34146,7 +34026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(146), @@ -34159,11 +34039,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(164), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -34174,23 +34054,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(192), [sym_number] = ACTIONS(194), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(849), + [sym_this] = ACTIONS(829), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), [sym_undefined] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(851), + [anon_sym_readonly] = ACTIONS(831), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(210), [anon_sym_number] = ACTIONS(210), @@ -34207,89 +34087,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_import] = STATE(3257), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4533), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(262), + [89] = { + [sym_import] = STATE(3290), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4455), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(612), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -34299,7 +34179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(146), @@ -34312,11 +34192,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(164), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -34327,23 +34207,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(192), [sym_number] = ACTIONS(194), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(849), + [sym_this] = ACTIONS(829), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), [sym_undefined] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(851), + [anon_sym_readonly] = ACTIONS(831), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(210), [anon_sym_number] = ACTIONS(210), @@ -34360,84 +34240,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, + [90] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(224), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(227), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [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_QMARK] = ACTIONS(793), + [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(162), + [sym_html_comment] = ACTIONS(5), + }, [91] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34464,7 +34497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34482,114 +34515,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), + [anon_sym_type] = ACTIONS(809), [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34616,7 +34649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34634,114 +34667,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), + [anon_sym_type] = ACTIONS(809), [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34768,7 +34801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34786,112 +34819,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(694), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(711), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(717), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34918,7 +34951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34936,113 +34969,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [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_static] = ACTIONS(839), + [anon_sym_readonly] = ACTIONS(839), + [anon_sym_get] = ACTIONS(839), + [anon_sym_set] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(793), + [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__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_in] = ACTIONS(861), + [anon_sym_of] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(711), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(717), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35069,7 +35102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35087,82 +35120,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [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(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -35270,81 +35303,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(868), + [anon_sym_export] = ACTIONS(870), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_type] = ACTIONS(870), + [anon_sym_EQ] = ACTIONS(872), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(870), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(876), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(878), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(880), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35371,7 +35404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(882), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35389,113 +35422,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(870), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(870), + [anon_sym_set] = ACTIONS(870), + [anon_sym_declare] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_override] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_any] = ACTIONS(870), + [anon_sym_number] = ACTIONS(870), + [anon_sym_boolean] = ACTIONS(870), + [anon_sym_string] = ACTIONS(870), + [anon_sym_symbol] = ACTIONS(870), + [anon_sym_object] = ACTIONS(870), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(707), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35522,7 +35555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35540,113 +35573,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(694), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(711), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(878), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(717), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35673,7 +35706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35691,82 +35724,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [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_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__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(868), [anon_sym_export] = ACTIONS(870), [anon_sym_STAR] = ACTIONS(122), @@ -35874,81 +35907,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(694), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(711), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(717), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35975,7 +36008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35993,99 +36026,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [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_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(870), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_type] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(874), + [anon_sym_namespace] = ACTIONS(698), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(870), + [anon_sym_let] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), @@ -36095,11 +36128,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(876), + [anon_sym_async] = ACTIONS(711), [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(880), + [anon_sym_new] = ACTIONS(717), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36126,7 +36159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36154,103 +36187,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), - [anon_sym_object] = ACTIONS(870), + [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(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(884), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(711), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(717), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36277,7 +36310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36295,82 +36328,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -36388,7 +36421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(886), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -36478,50 +36511,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -36531,6 +36564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(698), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(694), @@ -36539,7 +36573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -36629,81 +36662,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), + [anon_sym_type] = ACTIONS(809), [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(888), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(847), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(888), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36730,7 +36763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36748,112 +36781,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(891), + [anon_sym_export] = ACTIONS(893), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_type] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(895), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(893), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(900), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(902), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(906), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36880,7 +36913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36898,112 +36931,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(893), + [anon_sym_readonly] = ACTIONS(893), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(893), + [anon_sym_declare] = ACTIONS(893), + [anon_sym_public] = ACTIONS(893), + [anon_sym_private] = ACTIONS(893), + [anon_sym_protected] = ACTIONS(893), + [anon_sym_override] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_any] = ACTIONS(893), + [anon_sym_number] = ACTIONS(893), + [anon_sym_boolean] = ACTIONS(893), + [anon_sym_string] = ACTIONS(893), + [anon_sym_symbol] = ACTIONS(893), + [anon_sym_object] = ACTIONS(893), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(895), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(888), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37030,7 +37063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37048,81 +37081,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(908), [anon_sym_export] = ACTIONS(910), [anon_sym_STAR] = ACTIONS(122), @@ -37130,20 +37163,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), @@ -37196,15 +37229,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(910), [anon_sym_readonly] = ACTIONS(910), @@ -37228,79 +37261,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(924), - [anon_sym_export] = ACTIONS(926), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(926), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(918), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(936), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37327,7 +37360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37345,111 +37378,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(926), - [anon_sym_readonly] = ACTIONS(926), - [anon_sym_get] = ACTIONS(926), - [anon_sym_set] = ACTIONS(926), - [anon_sym_declare] = ACTIONS(926), - [anon_sym_public] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_protected] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_module] = ACTIONS(926), - [anon_sym_any] = ACTIONS(926), - [anon_sym_number] = ACTIONS(926), - [anon_sym_boolean] = ACTIONS(926), - [anon_sym_string] = ACTIONS(926), - [anon_sym_symbol] = ACTIONS(926), - [anon_sym_object] = ACTIONS(926), + [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__automatic_semicolon] = ACTIONS(162), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1253), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1711), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1253), - [sym_subscript_expression] = STATE(1253), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(924), - [anon_sym_export] = ACTIONS(926), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(926), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(936), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37476,7 +37509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37494,82 +37527,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(926), - [anon_sym_readonly] = ACTIONS(926), - [anon_sym_get] = ACTIONS(926), - [anon_sym_set] = ACTIONS(926), - [anon_sym_declare] = ACTIONS(926), - [anon_sym_public] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_protected] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_module] = ACTIONS(926), - [anon_sym_any] = ACTIONS(926), - [anon_sym_number] = ACTIONS(926), - [anon_sym_boolean] = ACTIONS(926), - [anon_sym_string] = ACTIONS(926), - [anon_sym_symbol] = ACTIONS(926), - [anon_sym_object] = ACTIONS(926), + [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__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(891), [anon_sym_export] = ACTIONS(893), [anon_sym_STAR] = ACTIONS(122), @@ -37577,21 +37610,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(895), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(893), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), @@ -37626,7 +37659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37644,15 +37677,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(893), [anon_sym_readonly] = ACTIONS(893), @@ -37675,80 +37708,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(938), - [anon_sym_export] = ACTIONS(940), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4024), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5434), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(942), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(940), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(946), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(950), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37775,7 +37808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37793,110 +37826,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(940), - [anon_sym_readonly] = ACTIONS(940), - [anon_sym_get] = ACTIONS(940), - [anon_sym_set] = ACTIONS(940), - [anon_sym_declare] = ACTIONS(940), - [anon_sym_public] = ACTIONS(940), - [anon_sym_private] = ACTIONS(940), - [anon_sym_protected] = ACTIONS(940), - [anon_sym_override] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_any] = ACTIONS(940), - [anon_sym_number] = ACTIONS(940), - [anon_sym_boolean] = ACTIONS(940), - [anon_sym_string] = ACTIONS(940), - [anon_sym_symbol] = ACTIONS(940), - [anon_sym_object] = ACTIONS(940), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(891), + [anon_sym_export] = ACTIONS(893), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(893), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(900), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(902), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(906), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37923,7 +37957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37941,112 +37975,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(893), + [anon_sym_readonly] = ACTIONS(893), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(893), + [anon_sym_declare] = ACTIONS(893), + [anon_sym_public] = ACTIONS(893), + [anon_sym_private] = ACTIONS(893), + [anon_sym_protected] = ACTIONS(893), + [anon_sym_override] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_any] = ACTIONS(893), + [anon_sym_number] = ACTIONS(893), + [anon_sym_boolean] = ACTIONS(893), + [anon_sym_string] = ACTIONS(893), + [anon_sym_symbol] = ACTIONS(893), + [anon_sym_object] = ACTIONS(893), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_type] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(930), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(938), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38073,7 +38105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38091,111 +38123,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [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(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1269), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1719), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_type] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(930), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(938), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38222,7 +38254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38240,111 +38272,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [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(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(938), - [anon_sym_export] = ACTIONS(940), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(891), + [anon_sym_export] = ACTIONS(893), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(942), + [anon_sym_type] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(940), + [anon_sym_let] = ACTIONS(893), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(940), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(946), + [anon_sym_async] = ACTIONS(902), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(950), + [anon_sym_new] = ACTIONS(906), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38371,7 +38404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38389,110 +38422,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(940), - [anon_sym_readonly] = ACTIONS(940), - [anon_sym_get] = ACTIONS(940), - [anon_sym_set] = ACTIONS(940), - [anon_sym_declare] = ACTIONS(940), - [anon_sym_public] = ACTIONS(940), - [anon_sym_private] = ACTIONS(940), - [anon_sym_protected] = ACTIONS(940), - [anon_sym_override] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_any] = ACTIONS(940), - [anon_sym_number] = ACTIONS(940), - [anon_sym_boolean] = ACTIONS(940), - [anon_sym_string] = ACTIONS(940), - [anon_sym_symbol] = ACTIONS(940), - [anon_sym_object] = ACTIONS(940), + [anon_sym_static] = ACTIONS(893), + [anon_sym_readonly] = ACTIONS(893), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(893), + [anon_sym_declare] = ACTIONS(893), + [anon_sym_public] = ACTIONS(893), + [anon_sym_private] = ACTIONS(893), + [anon_sym_protected] = ACTIONS(893), + [anon_sym_override] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_any] = ACTIONS(893), + [anon_sym_number] = ACTIONS(893), + [anon_sym_boolean] = ACTIONS(893), + [anon_sym_string] = ACTIONS(893), + [anon_sym_symbol] = ACTIONS(893), + [anon_sym_object] = ACTIONS(893), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(908), - [anon_sym_export] = ACTIONS(910), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(942), + [anon_sym_export] = ACTIONS(944), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(910), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(944), + [anon_sym_EQ] = ACTIONS(946), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(910), + [anon_sym_let] = ACTIONS(944), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(916), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_EQ_GT] = ACTIONS(952), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(920), + [anon_sym_new] = ACTIONS(954), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38519,7 +38553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38537,112 +38571,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(910), - [anon_sym_readonly] = ACTIONS(910), - [anon_sym_get] = ACTIONS(910), - [anon_sym_set] = ACTIONS(910), - [anon_sym_declare] = ACTIONS(910), - [anon_sym_public] = ACTIONS(910), - [anon_sym_private] = ACTIONS(910), - [anon_sym_protected] = ACTIONS(910), - [anon_sym_override] = ACTIONS(910), - [anon_sym_module] = ACTIONS(910), - [anon_sym_any] = ACTIONS(910), - [anon_sym_number] = ACTIONS(910), - [anon_sym_boolean] = ACTIONS(910), - [anon_sym_string] = ACTIONS(910), - [anon_sym_symbol] = ACTIONS(910), - [anon_sym_object] = ACTIONS(910), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_object] = ACTIONS(944), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4340), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5515), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(952), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38669,7 +38702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38687,111 +38720,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [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(162), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(942), + [anon_sym_export] = ACTIONS(944), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(944), + [anon_sym_EQ] = ACTIONS(946), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(944), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(950), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(952), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(954), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38818,7 +38851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38836,111 +38869,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_object] = ACTIONS(944), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5435), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(908), + [anon_sym_export] = ACTIONS(910), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(910), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(916), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(918), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(920), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38967,7 +38999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(922), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38985,110 +39017,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(910), + [anon_sym_readonly] = ACTIONS(910), + [anon_sym_get] = ACTIONS(910), + [anon_sym_set] = ACTIONS(910), + [anon_sym_declare] = ACTIONS(910), + [anon_sym_public] = ACTIONS(910), + [anon_sym_private] = ACTIONS(910), + [anon_sym_protected] = ACTIONS(910), + [anon_sym_override] = ACTIONS(910), + [anon_sym_module] = ACTIONS(910), + [anon_sym_any] = ACTIONS(910), + [anon_sym_number] = ACTIONS(910), + [anon_sym_boolean] = ACTIONS(910), + [anon_sym_string] = ACTIONS(910), + [anon_sym_symbol] = ACTIONS(910), + [anon_sym_object] = ACTIONS(910), [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4351), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5521), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(807), [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = 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(162), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39115,7 +39149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39133,15 +39167,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(809), [anon_sym_readonly] = ACTIONS(809), @@ -39160,84 +39194,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(809), [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_in] = ACTIONS(861), + [anon_sym_of] = ACTIONS(864), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39264,7 +39297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39282,110 +39315,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(847), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39412,7 +39445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39430,110 +39463,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(964), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(966), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(968), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39560,7 +39593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39578,102 +39611,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(891), [anon_sym_export] = ACTIONS(893), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(893), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), @@ -39708,7 +39741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39726,15 +39759,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(893), [anon_sym_readonly] = ACTIONS(893), @@ -39757,79 +39790,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(891), + [anon_sym_export] = ACTIONS(893), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_type] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(893), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(902), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(968), + [anon_sym_new] = ACTIONS(906), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39856,7 +39889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39874,110 +39907,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(893), + [anon_sym_readonly] = ACTIONS(893), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(893), + [anon_sym_declare] = ACTIONS(893), + [anon_sym_public] = ACTIONS(893), + [anon_sym_private] = ACTIONS(893), + [anon_sym_protected] = ACTIONS(893), + [anon_sym_override] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_any] = ACTIONS(893), + [anon_sym_number] = ACTIONS(893), + [anon_sym_boolean] = ACTIONS(893), + [anon_sym_string] = ACTIONS(893), + [anon_sym_symbol] = ACTIONS(893), + [anon_sym_object] = ACTIONS(893), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40004,7 +40037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40022,81 +40055,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(956), [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(122), @@ -40104,20 +40137,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), @@ -40170,15 +40203,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(958), [anon_sym_readonly] = ACTIONS(958), @@ -40201,79 +40234,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(966), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40300,7 +40333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40318,109 +40351,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(839), [anon_sym_EQ] = ACTIONS(972), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40447,7 +40480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40465,109 +40498,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(839), [anon_sym_EQ] = ACTIONS(974), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40594,7 +40627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40612,109 +40645,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(839), [anon_sym_EQ] = ACTIONS(976), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40741,7 +40774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40759,256 +40792,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(3305), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1931), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(5404), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5887), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2036), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4013), - [sym_pattern] = STATE(5084), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3238), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5383), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(978), - [anon_sym_export] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_typeof] = ACTIONS(984), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_const] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(990), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(992), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(1000), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1002), - [sym_number] = ACTIONS(1004), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(1006), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_undefined] = ACTIONS(1010), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(1012), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(1016), - [anon_sym_number] = ACTIONS(1016), - [anon_sym_boolean] = ACTIONS(1016), - [anon_sym_string] = ACTIONS(1016), - [anon_sym_symbol] = ACTIONS(1016), - [anon_sym_object] = ACTIONS(1016), - [anon_sym_abstract] = ACTIONS(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [135] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3964), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(978), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41035,7 +40921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41053,109 +40939,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [135] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1030), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(980), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41182,7 +41068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41200,109 +41086,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [136] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3915), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5206), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41329,7 +41215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41347,109 +41233,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [137] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(982), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41476,7 +41362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41494,109 +41380,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [138] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(984), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41623,7 +41509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41641,109 +41527,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [140] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [139] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(986), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41770,7 +41656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41788,109 +41674,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [140] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(988), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41917,7 +41803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41935,109 +41821,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, + [141] = { + [sym_import] = STATE(3266), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5197), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5610), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1972), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(4001), + [sym_pattern] = STATE(4675), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3226), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5368), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(990), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_typeof] = ACTIONS(996), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1002), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1004), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_void] = ACTIONS(1012), + [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(1014), + [sym_number] = ACTIONS(1016), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(1018), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_undefined] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(610), + [anon_sym_readonly] = ACTIONS(1024), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(1026), + [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(1028), + [anon_sym_number] = ACTIONS(1028), + [anon_sym_boolean] = ACTIONS(1028), + [anon_sym_string] = ACTIONS(1028), + [anon_sym_symbol] = ACTIONS(1028), + [anon_sym_object] = ACTIONS(1028), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, [142] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1430), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -42064,7 +42097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -42082,123 +42115,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(162), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5632), - [sym_string] = STATE(2193), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4986), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(4174), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(4477), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3395), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5910), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(5076), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(4232), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(4437), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1042), [anon_sym_export] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(612), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_typeof] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(733), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), [anon_sym_LBRACK] = ACTIONS(1050), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), @@ -42207,34 +42240,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1054), - [anon_sym_using] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(781), - [sym_number] = ACTIONS(783), - [sym_private_property_identifier] = ACTIONS(592), + [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(747), + [sym_number] = ACTIONS(749), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(1056), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), [sym_undefined] = ACTIONS(1058), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1044), [anon_sym_readonly] = ACTIONS(1060), [anon_sym_get] = ACTIONS(1044), [anon_sym_set] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_declare] = ACTIONS(1044), [anon_sym_public] = ACTIONS(1044), [anon_sym_private] = ACTIONS(1044), @@ -42257,139 +42290,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3951), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3951), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3951), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2123), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4167), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3395), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1530), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1668), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1064), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1066), - [anon_sym_namespace] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_typeof] = ACTIONS(558), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_typeof] = ACTIONS(1068), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(1044), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1070), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1072), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_using] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_using] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(594), + [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(1074), + [sym_number] = ACTIONS(1076), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(1078), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(1076), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), + [sym_undefined] = ACTIONS(1082), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_get] = ACTIONS(1066), - [anon_sym_set] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1066), - [anon_sym_public] = ACTIONS(1066), - [anon_sym_private] = ACTIONS(1066), - [anon_sym_protected] = ACTIONS(1066), - [anon_sym_override] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_any] = ACTIONS(1080), - [anon_sym_number] = ACTIONS(1080), - [anon_sym_boolean] = ACTIONS(1080), - [anon_sym_string] = ACTIONS(1080), - [anon_sym_symbol] = ACTIONS(1080), - [anon_sym_object] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1060), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1084), + [anon_sym_number] = ACTIONS(1084), + [anon_sym_boolean] = ACTIONS(1084), + [anon_sym_string] = ACTIONS(1084), + [anon_sym_symbol] = ACTIONS(1084), + [anon_sym_object] = ACTIONS(1084), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -42400,139 +42433,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2314), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2020), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3807), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1082), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), + [sym_import] = STATE(3445), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1945), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1086), + [anon_sym_export] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(1088), [anon_sym_typeof] = ACTIONS(1090), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(839), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1092), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1102), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1094), + [anon_sym_using] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1108), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1114), - [sym_number] = ACTIONS(1116), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1102), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), - [sym_undefined] = ACTIONS(1124), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_undefined] = ACTIONS(1106), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1128), - [anon_sym_number] = ACTIONS(1128), - [anon_sym_boolean] = ACTIONS(1128), - [anon_sym_string] = ACTIONS(1128), - [anon_sym_symbol] = ACTIONS(1128), - [anon_sym_object] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(839), + [anon_sym_readonly] = ACTIONS(1108), + [anon_sym_get] = ACTIONS(839), + [anon_sym_set] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(761), + [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(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), + [anon_sym_object] = ACTIONS(1110), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -42543,139 +42576,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(3438), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1714), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(1907), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3819), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1130), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_typeof] = ACTIONS(1138), + [sym_import] = STATE(3263), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1945), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1112), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_typeof] = ACTIONS(1120), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), + [anon_sym_let] = ACTIONS(1114), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1148), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1152), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1158), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1164), - [sym_number] = ACTIONS(1166), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(1170), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [sym_null] = ACTIONS(1172), - [sym_undefined] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1092), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1130), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(1102), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_undefined] = ACTIONS(1144), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1146), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1148), + [anon_sym_number] = ACTIONS(1148), + [anon_sym_boolean] = ACTIONS(1148), + [anon_sym_string] = ACTIONS(1148), + [anon_sym_symbol] = ACTIONS(1148), + [anon_sym_object] = ACTIONS(1148), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -42686,139 +42719,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(3277), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2096), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2020), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3807), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1180), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_typeof] = ACTIONS(1186), + [sym_import] = STATE(3259), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1990), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2425), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1150), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_typeof] = ACTIONS(1158), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1152), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1098), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1196), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1114), - [sym_number] = ACTIONS(1116), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(1120), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), - [sym_undefined] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1168), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1172), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1178), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_number] = ACTIONS(1186), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(1190), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(1192), + [sym_false] = ACTIONS(1192), + [sym_null] = ACTIONS(1192), + [sym_undefined] = ACTIONS(1194), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1212), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1214), - [anon_sym_number] = ACTIONS(1214), - [anon_sym_boolean] = ACTIONS(1214), - [anon_sym_string] = ACTIONS(1214), - [anon_sym_symbol] = ACTIONS(1214), - [anon_sym_object] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1196), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -42829,139 +42862,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(3287), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2053), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2395), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3819), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1224), + [sym_import] = STATE(3303), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(1951), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1200), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_typeof] = ACTIONS(1208), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_let] = ACTIONS(1202), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1216), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1236), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1220), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1248), - [sym_number] = ACTIONS(1250), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1226), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1232), + [sym_number] = ACTIONS(1234), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(1238), [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [sym_null] = ACTIONS(1256), - [sym_undefined] = ACTIONS(1258), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [sym_null] = ACTIONS(1240), + [sym_undefined] = ACTIONS(1242), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1262), - [anon_sym_number] = ACTIONS(1262), - [anon_sym_boolean] = ACTIONS(1262), - [anon_sym_string] = ACTIONS(1262), - [anon_sym_symbol] = ACTIONS(1262), - [anon_sym_object] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1244), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1246), + [anon_sym_number] = ACTIONS(1246), + [anon_sym_boolean] = ACTIONS(1246), + [anon_sym_string] = ACTIONS(1246), + [anon_sym_symbol] = ACTIONS(1246), + [anon_sym_object] = ACTIONS(1246), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -42972,139 +43005,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3277), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2020), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3807), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1268), + [sym_import] = STATE(3445), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1945), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_typeof] = ACTIONS(1254), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(1250), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(1256), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1092), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_using] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1264), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(185), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1114), - [sym_number] = ACTIONS(1116), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1270), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [sym_private_property_identifier] = ACTIONS(1276), + [sym_this] = ACTIONS(1102), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), - [sym_undefined] = ACTIONS(1274), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_undefined] = ACTIONS(1278), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(1276), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(1278), - [anon_sym_number] = ACTIONS(1278), - [anon_sym_boolean] = ACTIONS(1278), - [anon_sym_string] = ACTIONS(1278), - [anon_sym_symbol] = ACTIONS(1278), - [anon_sym_object] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1280), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1282), + [anon_sym_number] = ACTIONS(1282), + [anon_sym_boolean] = ACTIONS(1282), + [anon_sym_string] = ACTIONS(1282), + [anon_sym_symbol] = ACTIONS(1282), + [anon_sym_object] = ACTIONS(1282), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43115,92 +43148,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1631), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3807), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1280), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_typeof] = ACTIONS(1288), + [sym_import] = STATE(3395), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1668), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_typeof] = ACTIONS(1290), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1286), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1292), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1070), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -43209,45 +43242,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1300), [anon_sym_using] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(1304), [anon_sym_DASH] = ACTIONS(1304), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1306), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1312), - [sym_number] = ACTIONS(1314), - [sym_private_property_identifier] = ACTIONS(1316), - [sym_this] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1074), + [sym_number] = ACTIONS(1076), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(1078), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [sym_null] = ACTIONS(1320), - [sym_undefined] = ACTIONS(1322), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), + [sym_undefined] = ACTIONS(1314), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1326), - [anon_sym_number] = ACTIONS(1326), - [anon_sym_boolean] = ACTIONS(1326), - [anon_sym_string] = ACTIONS(1326), - [anon_sym_symbol] = ACTIONS(1326), - [anon_sym_object] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1316), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1318), + [anon_sym_number] = ACTIONS(1318), + [anon_sym_boolean] = ACTIONS(1318), + [anon_sym_string] = ACTIONS(1318), + [anon_sym_symbol] = ACTIONS(1318), + [anon_sym_object] = ACTIONS(1318), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43258,248 +43291,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(3438), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(1907), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3819), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1328), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_typeof] = ACTIONS(1334), + [sym_import] = STATE(3445), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3606), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3606), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3606), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2485), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1383), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4227), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1320), + [anon_sym_export] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_namespace] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_typeof] = ACTIONS(1328), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1148), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1342), - [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(1164), - [sym_number] = ACTIONS(1166), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1170), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [sym_null] = ACTIONS(1172), - [sym_undefined] = ACTIONS(1344), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [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(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [152] = { - [sym_import] = STATE(3277), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3633), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3633), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1350), - [sym_subscript_expression] = STATE(1350), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3633), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1350), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4167), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1350), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1322), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1330), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1332), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1364), + [anon_sym_new] = ACTIONS(1334), [anon_sym_using] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -43507,33 +43397,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1368), - [sym_number] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1338), + [sym_number] = ACTIONS(1340), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1372), + [sym_this] = ACTIONS(1342), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_null] = ACTIONS(1374), - [sym_undefined] = ACTIONS(1376), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [sym_null] = ACTIONS(1344), + [sym_undefined] = ACTIONS(1346), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(795), - [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(1380), - [anon_sym_number] = ACTIONS(1380), - [anon_sym_boolean] = ACTIONS(1380), - [anon_sym_string] = ACTIONS(1380), - [anon_sym_symbol] = ACTIONS(1380), - [anon_sym_object] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_readonly] = ACTIONS(1348), + [anon_sym_get] = ACTIONS(1322), + [anon_sym_set] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1322), + [anon_sym_public] = ACTIONS(1322), + [anon_sym_private] = ACTIONS(1322), + [anon_sym_protected] = ACTIONS(1322), + [anon_sym_override] = ACTIONS(1322), + [anon_sym_module] = ACTIONS(1322), + [anon_sym_any] = ACTIONS(1350), + [anon_sym_number] = ACTIONS(1350), + [anon_sym_boolean] = ACTIONS(1350), + [anon_sym_string] = ACTIONS(1350), + [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_object] = ACTIONS(1350), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43543,134 +43433,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1582), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1631), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3807), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1382), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_typeof] = ACTIONS(1384), + [152] = { + [sym_import] = STATE(3395), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1671), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(4088), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(4088), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1301), + [sym_subscript_expression] = STATE(1301), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(4088), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(2271), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1301), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4227), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_namespace] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1354), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(622), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(628), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1360), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_using] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1362), + [anon_sym_using] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1312), - [sym_number] = ACTIONS(1314), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(1318), + [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(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(656), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [sym_null] = ACTIONS(1320), - [sym_undefined] = ACTIONS(1388), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(1364), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_readonly] = ACTIONS(1366), + [anon_sym_get] = ACTIONS(1354), + [anon_sym_set] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1354), + [anon_sym_public] = ACTIONS(1354), + [anon_sym_private] = ACTIONS(1354), + [anon_sym_protected] = ACTIONS(1354), + [anon_sym_override] = ACTIONS(1354), + [anon_sym_module] = ACTIONS(1354), + [anon_sym_any] = ACTIONS(1368), + [anon_sym_number] = ACTIONS(1368), + [anon_sym_boolean] = ACTIONS(1368), + [anon_sym_string] = ACTIONS(1368), + [anon_sym_symbol] = ACTIONS(1368), + [anon_sym_object] = ACTIONS(1368), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [153] = { + [sym_import] = STATE(3303), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(1951), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_typeof] = ACTIONS(1376), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1216), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1380), + [anon_sym_using] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1384), + [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(1232), + [sym_number] = ACTIONS(1234), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(1238), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [sym_null] = ACTIONS(1240), + [sym_undefined] = ACTIONS(1386), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1388), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), [anon_sym_any] = ACTIONS(1390), [anon_sym_number] = ACTIONS(1390), [anon_sym_boolean] = ACTIONS(1390), @@ -43687,83 +43720,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(3277), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_nested_identifier] = STATE(5778), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(2020), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(4394), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3807), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5500), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3445), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_nested_identifier] = STATE(5707), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1945), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3952), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5276), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1392), [anon_sym_export] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(612), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1088), [anon_sym_typeof] = ACTIONS(1398), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -43772,7 +43805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(140), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1092), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -43781,8 +43814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1408), [anon_sym_using] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_SLASH] = ACTIONS(970), @@ -43793,21 +43826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1114), - [sym_number] = ACTIONS(1116), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(1120), + [sym_this] = ACTIONS(1102), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_undefined] = ACTIONS(1422), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1424), [anon_sym_get] = ACTIONS(1394), [anon_sym_set] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_declare] = ACTIONS(1394), [anon_sym_public] = ACTIONS(1394), [anon_sym_private] = ACTIONS(1394), @@ -43830,70 +43863,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1592), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_STAR] = ACTIONS(1430), [anon_sym_type] = ACTIONS(1044), [anon_sym_as] = ACTIONS(1432), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(1434), [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_await] = ACTIONS(562), + [anon_sym_await] = ACTIONS(624), [anon_sym_in] = ACTIONS(1432), [anon_sym_COLON] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(1434), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), @@ -43905,7 +43938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -43914,9 +43947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -43928,15 +43961,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -43965,62 +43998,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1646), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), + [anon_sym_export] = ACTIONS(1372), [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1330), + [anon_sym_type] = ACTIONS(1372), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(1434), [anon_sym_RBRACE] = ACTIONS(1434), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -44034,7 +44067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1444), @@ -44077,90 +44110,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [anon_sym_satisfies] = ACTIONS(1432), [sym__automatic_semicolon] = ACTIONS(1434), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1679), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1637), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), + [anon_sym_export] = ACTIONS(1202), [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1132), + [anon_sym_type] = ACTIONS(1202), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1228), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), + [anon_sym_await] = ACTIONS(1212), [anon_sym_in] = ACTIONS(1432), [anon_sym_of] = ACTIONS(1432), [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_yield] = ACTIONS(1214), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1432), @@ -44168,11 +44201,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), + [anon_sym_using] = ACTIONS(1222), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44181,8 +44214,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), @@ -44195,15 +44228,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44211,88 +44244,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [anon_sym_satisfies] = ACTIONS(1432), [sym__automatic_semicolon] = ACTIONS(1434), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2042), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), + [anon_sym_export] = ACTIONS(1152), [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1152), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), + [anon_sym_await] = ACTIONS(1164), [anon_sym_in] = ACTIONS(1432), [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1166), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1432), @@ -44300,11 +44333,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), + [anon_sym_using] = ACTIONS(1174), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44313,8 +44346,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), @@ -44327,15 +44360,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44343,89 +44376,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [anon_sym_satisfies] = ACTIONS(1432), [sym__automatic_semicolon] = ACTIONS(1434), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1792), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), + [anon_sym_export] = ACTIONS(1286), [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1286), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(1434), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1286), [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), [anon_sym_in] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), @@ -44459,15 +44492,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -44475,101 +44508,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [anon_sym_satisfies] = ACTIONS(1432), [anon_sym_implements] = ACTIONS(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2118), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2084), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), + [anon_sym_export] = ACTIONS(1250), [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1182), + [anon_sym_type] = ACTIONS(1250), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), [anon_sym_in] = ACTIONS(1432), [anon_sym_COLON] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), + [anon_sym_using] = ACTIONS(1266), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44578,9 +44611,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -44592,15 +44625,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -44608,87 +44641,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [anon_sym_satisfies] = ACTIONS(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2337), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1114), [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1084), + [anon_sym_type] = ACTIONS(1114), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), [anon_sym_in] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(1434), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), @@ -44696,11 +44729,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), + [anon_sym_using] = ACTIONS(1132), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44709,9 +44742,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -44723,15 +44756,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -44739,88 +44772,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [anon_sym_satisfies] = ACTIONS(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_STAR] = ACTIONS(1488), [anon_sym_type] = ACTIONS(1394), [anon_sym_as] = ACTIONS(1432), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_in] = ACTIONS(1432), [anon_sym_of] = ACTIONS(1432), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), @@ -44860,8 +44893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -44891,76 +44924,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2407), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(839), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(1432), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), @@ -44972,7 +45005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1432), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -44990,131 +45023,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_declaration] = STATE(840), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4152), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(857), + [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(172), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_void] = ACTIONS(220), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(208), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [165] = { + [sym_declaration] = STATE(4381), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(4336), + [sym_lexical_declaration] = STATE(4336), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1982), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(4336), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(4336), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(4336), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(4336), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(4336), + [sym_abstract_class_declaration] = STATE(4336), + [sym_module] = STATE(4336), + [sym_internal_module] = STATE(2261), + [sym_import_alias] = STATE(4336), + [sym_interface_declaration] = STATE(4336), + [sym_enum_declaration] = STATE(4336), + [sym_type_alias_declaration] = STATE(4336), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4256), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1528), + [anon_sym_var] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(1504), - [anon_sym_function] = ACTIONS(77), + [anon_sym_class] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_function] = ACTIONS(1540), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -45122,122 +45278,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1506), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1542), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(1546), + [anon_sym_interface] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1550), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_declaration] = STATE(799), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2009), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4169), + [166] = { + [sym_declaration] = STATE(788), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2023), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4317), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1558), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(630), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_function] = ACTIONS(634), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1560), + [anon_sym_function] = ACTIONS(77), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -45245,122 +45401,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1512), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_declaration] = STATE(3985), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(4286), - [sym_lexical_declaration] = STATE(4286), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(4286), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(4286), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(4286), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(4286), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(4286), - [sym_abstract_class_declaration] = STATE(4286), - [sym_module] = STATE(4286), - [sym_internal_module] = STATE(2133), - [sym_import_alias] = STATE(4286), - [sym_interface_declaration] = STATE(4286), - [sym_enum_declaration] = STATE(4286), - [sym_type_alias_declaration] = STATE(4286), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4243), + [167] = { + [sym_declaration] = STATE(766), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1949), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(223), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4317), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1556), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(1526), - [anon_sym_async] = ACTIONS(1528), - [anon_sym_function] = ACTIONS(1530), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1560), + [anon_sym_function] = ACTIONS(77), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -45368,122 +45524,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [anon_sym_abstract] = ACTIONS(1536), - [anon_sym_interface] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_declaration] = STATE(840), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4169), + [168] = { + [sym_declaration] = STATE(788), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2023), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4174), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1558), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(630), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_function] = ACTIONS(634), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -45491,122 +45647,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1506), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1570), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_declaration] = STATE(4346), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(4286), - [sym_lexical_declaration] = STATE(4286), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2046), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(4286), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(4286), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(4286), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(4286), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(4286), - [sym_abstract_class_declaration] = STATE(4286), - [sym_module] = STATE(4286), - [sym_internal_module] = STATE(2133), - [sym_import_alias] = STATE(4286), - [sym_interface_declaration] = STATE(4286), - [sym_enum_declaration] = STATE(4286), - [sym_type_alias_declaration] = STATE(4286), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4243), + [169] = { + [sym_declaration] = STATE(3999), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(4336), + [sym_lexical_declaration] = STATE(4336), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2017), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(4336), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(4336), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(4336), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(4336), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(4336), + [sym_abstract_class_declaration] = STATE(4336), + [sym_module] = STATE(4336), + [sym_internal_module] = STATE(2261), + [sym_import_alias] = STATE(4336), + [sym_interface_declaration] = STATE(4336), + [sym_enum_declaration] = STATE(4336), + [sym_type_alias_declaration] = STATE(4336), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4256), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1528), + [anon_sym_var] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(1526), - [anon_sym_async] = ACTIONS(1528), - [anon_sym_function] = ACTIONS(1530), + [anon_sym_class] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_function] = ACTIONS(1540), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -45614,122 +45770,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [anon_sym_abstract] = ACTIONS(1536), - [anon_sym_interface] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1542), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(1546), + [anon_sym_interface] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1550), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_declaration] = STATE(799), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2009), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4169), + [170] = { + [sym_declaration] = STATE(766), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1949), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4174), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1558), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(630), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_function] = ACTIONS(634), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -45737,245 +45893,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1506), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1570), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(160), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(172), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(220), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(208), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, [171] = { - [sym_declaration] = STATE(840), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(2231), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4169), + [sym_declaration] = STATE(788), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2023), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4174), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1558), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(630), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_function] = ACTIONS(634), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -45983,122 +46016,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1512), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_declaration] = STATE(799), - [sym_import] = STATE(3413), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2009), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_class_declaration] = STATE(814), - [sym_function_expression] = STATE(2274), - [sym_function_declaration] = STATE(814), - [sym_generator_function] = STATE(2274), - [sym_generator_function_declaration] = STATE(814), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(814), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(229), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4152), + [sym_declaration] = STATE(766), + [sym_import] = STATE(3306), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1949), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_class_declaration] = STATE(861), + [sym_function_expression] = STATE(2310), + [sym_function_declaration] = STATE(861), + [sym_generator_function] = STATE(2310), + [sym_generator_function_declaration] = STATE(861), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_function_signature] = STATE(861), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(2332), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4174), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1556), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1558), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(1504), - [anon_sym_function] = ACTIONS(77), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -46106,81 +46139,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1506), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(872), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1498), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(878), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46204,12 +46237,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46222,14 +46255,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46250,59 +46283,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1498), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46326,12 +46359,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46344,14 +46377,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46372,59 +46405,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46448,12 +46481,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46466,14 +46499,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46493,59 +46526,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(888), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46569,12 +46602,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46587,14 +46620,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46614,58 +46647,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3143), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_EQ] = ACTIONS(119), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(946), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(952), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1588), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46686,15 +46719,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46703,89 +46736,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1026), + [anon_sym_void] = ACTIONS(220), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1606), - [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(1018), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(208), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3619), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1572), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46806,15 +46839,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(172), + [anon_sym_AMP] = ACTIONS(1574), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46827,25 +46860,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1580), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(666), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -46854,57 +46887,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46928,12 +46961,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46946,14 +46979,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46974,57 +47007,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(912), + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3203), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1588), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), + [anon_sym_const] = ACTIONS(998), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1590), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1592), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1598), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47045,15 +47079,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(172), + [anon_sym_AMP] = ACTIONS(1600), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47062,90 +47096,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(220), + [anon_sym_void] = ACTIONS(1038), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(208), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3641), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(918), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1608), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47166,15 +47198,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47187,25 +47219,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(212), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_implements] = ACTIONS(122), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -47214,57 +47247,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47288,12 +47321,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47306,14 +47339,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47333,57 +47366,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47407,12 +47440,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47425,14 +47458,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47452,57 +47485,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(966), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47526,12 +47559,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47544,14 +47577,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47571,56 +47604,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1502), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1556), + [anon_sym_new] = ACTIONS(1510), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47644,12 +47677,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1514), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47662,14 +47695,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47689,298 +47722,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1596), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5814), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5725), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(1622), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(791), - [anon_sym_static] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(610), [anon_sym_readonly] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(797), - [anon_sym_private] = ACTIONS(797), - [anon_sym_protected] = ACTIONS(797), - [anon_sym_override] = ACTIONS(799), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_declare] = ACTIONS(610), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_override] = ACTIONS(765), + [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_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1459), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5729), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1511), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5635), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(1622), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(791), - [anon_sym_static] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(610), [anon_sym_readonly] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(797), - [anon_sym_private] = ACTIONS(797), - [anon_sym_protected] = ACTIONS(797), - [anon_sym_override] = ACTIONS(799), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_declare] = ACTIONS(610), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_override] = ACTIONS(765), + [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_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5226), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5226), - [sym_optional_parameter] = STATE(5226), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5251), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5251), + [sym_optional_parameter] = STATE(5251), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1628), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), @@ -47991,12 +48024,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48004,25 +48037,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48033,68 +48066,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5226), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5226), - [sym_optional_parameter] = STATE(5226), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5251), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5251), + [sym_optional_parameter] = STATE(5251), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1636), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), @@ -48105,12 +48138,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48118,25 +48151,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48147,68 +48180,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5226), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5226), - [sym_optional_parameter] = STATE(5226), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5251), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5251), + [sym_optional_parameter] = STATE(5251), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1638), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), @@ -48219,12 +48252,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48232,25 +48265,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48261,69 +48294,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5155), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5155), - [sym_optional_parameter] = STATE(5155), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5092), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5092), + [sym_optional_parameter] = STATE(5092), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1640), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -48333,12 +48366,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48346,25 +48379,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48375,69 +48408,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5226), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5226), - [sym_optional_parameter] = STATE(5226), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5251), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5251), + [sym_optional_parameter] = STATE(5251), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1642), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -48447,12 +48480,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48460,25 +48493,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48489,69 +48522,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5226), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5226), - [sym_optional_parameter] = STATE(5226), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(4890), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4890), + [sym_optional_parameter] = STATE(4890), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -48561,12 +48594,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48574,25 +48607,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48603,68 +48636,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5226), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5226), - [sym_optional_parameter] = STATE(5226), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5251), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5251), + [sym_optional_parameter] = STATE(5251), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1644), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), @@ -48675,12 +48708,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48688,25 +48721,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48717,68 +48750,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(4841), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(4841), - [sym_optional_parameter] = STATE(4841), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(4892), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(4892), + [sym_optional_parameter] = STATE(4892), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1646), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), @@ -48789,12 +48822,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48802,25 +48835,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48831,68 +48864,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5091), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5091), - [sym_optional_parameter] = STATE(5091), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5251), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5251), + [sym_optional_parameter] = STATE(5251), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1648), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), @@ -48903,12 +48936,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48916,25 +48949,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -48945,769 +48978,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1652), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), - [sym_html_comment] = ACTIONS(5), - }, - [198] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1654), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), - [sym_html_comment] = ACTIONS(5), - }, - [199] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4886), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4889), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1656), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), - [sym_html_comment] = ACTIONS(5), - }, - [200] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1658), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), - [sym_html_comment] = ACTIONS(5), - }, - [201] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4886), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4889), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1660), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), - [sym_html_comment] = ACTIONS(5), - }, - [202] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1662), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), - [sym_html_comment] = ACTIONS(5), - }, - [203] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -49719,7 +49074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1044), [anon_sym_get] = ACTIONS(1044), [anon_sym_set] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_QMARK] = ACTIONS(1650), [anon_sym_declare] = ACTIONS(1044), [anon_sym_public] = ACTIONS(1044), [anon_sym_private] = ACTIONS(1044), @@ -49732,185 +49087,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1044), [anon_sym_symbol] = ACTIONS(1044), [anon_sym_object] = ACTIONS(1044), - [anon_sym_extends] = ACTIONS(1666), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4886), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4889), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1656), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), - [sym_html_comment] = ACTIONS(5), - }, - [205] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym__formal_parameter] = STATE(5226), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(293), - [sym_required_parameter] = STATE(5226), - [sym_optional_parameter] = STATE(5226), - [sym__parameter_name] = STATE(3578), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(729), + [198] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym__formal_parameter] = STATE(5251), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4262), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(268), + [sym_override_modifier] = STATE(296), + [sym_required_parameter] = STATE(5251), + [sym_optional_parameter] = STATE(5251), + [sym__parameter_name] = STATE(3493), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -49920,12 +49162,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -49933,25 +49175,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1632), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1634), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -49961,94 +49203,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4892), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4897), - [aux_sym_array_pattern_repeat1] = STATE(4890), + [199] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(5152), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(5155), + [aux_sym_array_pattern_repeat1] = STATE(5165), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1656), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -50056,657 +49298,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), + [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_html_comment] = ACTIONS(5), }, - [207] = { - [sym_statement_block] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_as] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_glimmer_opening_tag] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_QMARK_DOT] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [sym_this] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_undefined] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_readonly] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_object] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_satisfies] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), + [200] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1658), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [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(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [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_html_comment] = ACTIONS(5), }, - [208] = { - [sym_statement_block] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_as] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_glimmer_opening_tag] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1678), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_QMARK_DOT] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [sym_this] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_undefined] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_readonly] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_object] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_satisfies] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), + [201] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1660), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [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(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [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_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5136), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5136), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5136), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_mapped_type_clause] = STATE(5901), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1682), - [anon_sym_type] = ACTIONS(1682), - [anon_sym_namespace] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1688), - [anon_sym_typeof] = ACTIONS(1110), + [202] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_RBRACK] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1662), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1694), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1696), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1620), + [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(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1698), + [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_readonly] = ACTIONS(1682), - [anon_sym_get] = ACTIONS(1682), - [anon_sym_set] = ACTIONS(1682), - [anon_sym_declare] = ACTIONS(1682), - [anon_sym_public] = ACTIONS(1682), - [anon_sym_private] = ACTIONS(1682), - [anon_sym_protected] = ACTIONS(1682), - [anon_sym_override] = ACTIONS(1682), - [anon_sym_module] = ACTIONS(1682), - [anon_sym_any] = ACTIONS(1682), - [anon_sym_number] = ACTIONS(1682), - [anon_sym_boolean] = ACTIONS(1682), - [anon_sym_string] = ACTIONS(1682), - [anon_sym_symbol] = ACTIONS(1682), - [anon_sym_object] = ACTIONS(1682), + [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_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(588), + [203] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(5152), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(5155), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1664), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1620), + [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(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [anon_sym_extends] = ACTIONS(1666), - [anon_sym_PIPE_RBRACE] = ACTIONS(1664), - [sym__automatic_semicolon] = ACTIONS(1664), + [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_html_comment] = ACTIONS(5), }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1706), - [anon_sym_as] = ACTIONS(1704), - [anon_sym_namespace] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_typeof] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_await] = ACTIONS(1702), - [anon_sym_in] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [sym_glimmer_opening_tag] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_class] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_QMARK_DOT] = ACTIONS(1708), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_using] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_GT_GT_GT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_STAR_STAR] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1708), - [anon_sym_BANG_EQ] = ACTIONS(1704), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1708), - [anon_sym_QMARK_QMARK] = ACTIONS(1708), - [anon_sym_instanceof] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1700), - [anon_sym_void] = ACTIONS(1702), - [anon_sym_delete] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1700), - [sym_number] = ACTIONS(1700), - [sym_private_property_identifier] = ACTIONS(1700), - [sym_this] = ACTIONS(1702), - [sym_super] = ACTIONS(1702), - [sym_true] = ACTIONS(1702), - [sym_false] = ACTIONS(1702), - [sym_null] = ACTIONS(1702), - [sym_undefined] = ACTIONS(1702), - [anon_sym_AT] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_readonly] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_declare] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_protected] = ACTIONS(1702), - [anon_sym_override] = ACTIONS(1702), - [anon_sym_module] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_number] = ACTIONS(1702), - [anon_sym_boolean] = ACTIONS(1702), - [anon_sym_string] = ACTIONS(1702), - [anon_sym_symbol] = ACTIONS(1702), - [anon_sym_object] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_satisfies] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(1710), - [sym__ternary_qmark] = ACTIONS(1708), + [204] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1666), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [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(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [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_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(3413), - [sym_expression_statement] = STATE(290), - [sym_variable_declaration] = STATE(290), - [sym_lexical_declaration] = STATE(290), - [sym_empty_statement] = STATE(290), - [sym_parenthesized_expression] = STATE(1293), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(4836), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(4836), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1293), - [sym_subscript_expression] = STATE(1293), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(4836), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1293), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1718), + [205] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(5152), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(5155), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1656), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [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(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [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_html_comment] = ACTIONS(5), + }, + [206] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4907), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4912), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1668), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [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(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [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_html_comment] = ACTIONS(5), + }, + [207] = { + [sym_import] = STATE(3306), + [sym_expression_statement] = STATE(288), + [sym_variable_declaration] = STATE(288), + [sym_lexical_declaration] = STATE(288), + [sym_empty_statement] = STATE(288), + [sym_parenthesized_expression] = STATE(1290), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(4963), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(4963), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1290), + [sym_subscript_expression] = STATE(1290), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(4963), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1290), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_var] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1724), + [anon_sym_var] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1682), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1684), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1686), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1688), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -50726,114 +50199,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1690), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), - [sym_html_comment] = ACTIONS(5), - }, - [213] = { - [sym_statement_block] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_as] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_glimmer_opening_tag] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_QMARK_DOT] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [sym_this] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_undefined] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1670), [anon_sym_static] = ACTIONS(1672), [anon_sym_readonly] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1672), @@ -50850,87 +50217,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1672), [anon_sym_symbol] = ACTIONS(1672), [anon_sym_object] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_satisfies] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), [sym_html_comment] = ACTIONS(5), }, - [214] = { - [sym_import] = STATE(3413), - [sym_expression_statement] = STATE(265), - [sym_variable_declaration] = STATE(265), - [sym_lexical_declaration] = STATE(265), - [sym_empty_statement] = STATE(265), - [sym_parenthesized_expression] = STATE(1293), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(4836), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(4836), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1293), - [sym_subscript_expression] = STATE(1293), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(4836), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1293), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1718), + [208] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5144), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5144), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1344), + [sym_subscript_expression] = STATE(1344), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1344), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_mapped_type_clause] = STATE(5639), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1694), + [anon_sym_type] = ACTIONS(1694), + [anon_sym_namespace] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1704), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1694), + [anon_sym_readonly] = ACTIONS(1694), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_declare] = ACTIONS(1694), + [anon_sym_public] = ACTIONS(1694), + [anon_sym_private] = ACTIONS(1694), + [anon_sym_protected] = ACTIONS(1694), + [anon_sym_override] = ACTIONS(1694), + [anon_sym_module] = ACTIONS(1694), + [anon_sym_any] = ACTIONS(1694), + [anon_sym_number] = ACTIONS(1694), + [anon_sym_boolean] = ACTIONS(1694), + [anon_sym_string] = ACTIONS(1694), + [anon_sym_symbol] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [sym_html_comment] = ACTIONS(5), + }, + [209] = { + [sym_import] = STATE(3306), + [sym_expression_statement] = STATE(277), + [sym_variable_declaration] = STATE(277), + [sym_lexical_declaration] = STATE(277), + [sym_empty_statement] = STATE(277), + [sym_parenthesized_expression] = STATE(1290), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(4963), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(4963), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1290), + [sym_subscript_expression] = STATE(1290), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(4963), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1290), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_var] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1724), + [anon_sym_var] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1682), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1684), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1686), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1688), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -50950,8 +50423,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1690), [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_readonly] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1672), + [anon_sym_private] = ACTIONS(1672), + [anon_sym_protected] = ACTIONS(1672), + [anon_sym_override] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1672), + [anon_sym_number] = ACTIONS(1672), + [anon_sym_boolean] = ACTIONS(1672), + [anon_sym_string] = ACTIONS(1672), + [anon_sym_symbol] = ACTIONS(1672), + [anon_sym_object] = ACTIONS(1672), + [sym_html_comment] = ACTIONS(5), + }, + [210] = { + [sym_statement_block] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1714), + [anon_sym_with] = ACTIONS(1714), + [anon_sym_var] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_await] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_debugger] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1712), + [sym_glimmer_opening_tag] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(1714), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_new] = ACTIONS(1714), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1712), + [anon_sym_PIPE_PIPE] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1714), + [anon_sym_GT_GT_GT] = ACTIONS(1712), + [anon_sym_LT_LT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_STAR_STAR] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_LT_EQ] = ACTIONS(1712), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), + [anon_sym_GT_EQ] = ACTIONS(1712), + [anon_sym_QMARK_QMARK] = ACTIONS(1712), + [anon_sym_instanceof] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_number] = ACTIONS(1712), + [sym_private_property_identifier] = ACTIONS(1712), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_true] = ACTIONS(1714), + [sym_false] = ACTIONS(1714), + [sym_null] = ACTIONS(1714), + [sym_undefined] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), [anon_sym_static] = ACTIONS(1714), [anon_sym_readonly] = ACTIONS(1714), [anon_sym_get] = ACTIONS(1714), @@ -50968,81 +50547,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1714), [anon_sym_symbol] = ACTIONS(1714), [anon_sym_object] = ACTIONS(1714), + [anon_sym_abstract] = ACTIONS(1714), + [anon_sym_satisfies] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [sym__automatic_semicolon] = ACTIONS(1712), + [sym__ternary_qmark] = ACTIONS(1712), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_import] = STATE(3413), - [sym_expression_statement] = STATE(288), - [sym_variable_declaration] = STATE(288), - [sym_lexical_declaration] = STATE(288), - [sym_empty_statement] = STATE(288), - [sym_parenthesized_expression] = STATE(1293), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(4836), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(4836), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1293), - [sym_subscript_expression] = STATE(1293), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(4836), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1293), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1712), + [211] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(1650), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [anon_sym_extends] = ACTIONS(1652), + [anon_sym_PIPE_RBRACE] = ACTIONS(1650), + [sym__automatic_semicolon] = ACTIONS(1650), + [sym_html_comment] = ACTIONS(5), + }, + [212] = { + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_EQ] = ACTIONS(1726), + [anon_sym_as] = ACTIONS(1724), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1728), + [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_await] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1724), + [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_SEMI] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [sym_glimmer_opening_tag] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_DOT] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_QMARK_DOT] = ACTIONS(1728), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1728), + [anon_sym_PIPE_PIPE] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_GT_GT_GT] = ACTIONS(1728), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1728), + [anon_sym_STAR_STAR] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_LT_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_GT_EQ] = ACTIONS(1728), + [anon_sym_QMARK_QMARK] = ACTIONS(1728), + [anon_sym_instanceof] = ACTIONS(1724), + [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), + [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(1724), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__ternary_qmark] = ACTIONS(1728), + [sym_html_comment] = ACTIONS(5), + }, + [213] = { + [sym_statement_block] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1714), + [anon_sym_with] = ACTIONS(1714), + [anon_sym_var] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_await] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_debugger] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1712), + [sym_glimmer_opening_tag] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(1714), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_new] = ACTIONS(1714), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1712), + [anon_sym_PIPE_PIPE] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1714), + [anon_sym_GT_GT_GT] = ACTIONS(1712), + [anon_sym_LT_LT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_STAR_STAR] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_LT_EQ] = ACTIONS(1712), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), + [anon_sym_GT_EQ] = ACTIONS(1712), + [anon_sym_QMARK_QMARK] = ACTIONS(1712), + [anon_sym_instanceof] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_number] = ACTIONS(1712), + [sym_private_property_identifier] = ACTIONS(1712), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_true] = ACTIONS(1714), + [sym_false] = ACTIONS(1714), + [sym_null] = ACTIONS(1714), + [sym_undefined] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_readonly] = ACTIONS(1714), + [anon_sym_get] = ACTIONS(1714), + [anon_sym_set] = ACTIONS(1714), + [anon_sym_declare] = ACTIONS(1714), + [anon_sym_public] = ACTIONS(1714), + [anon_sym_private] = ACTIONS(1714), + [anon_sym_protected] = ACTIONS(1714), + [anon_sym_override] = ACTIONS(1714), + [anon_sym_module] = ACTIONS(1714), + [anon_sym_any] = ACTIONS(1714), + [anon_sym_number] = ACTIONS(1714), + [anon_sym_boolean] = ACTIONS(1714), + [anon_sym_string] = ACTIONS(1714), + [anon_sym_symbol] = ACTIONS(1714), + [anon_sym_object] = ACTIONS(1714), + [anon_sym_abstract] = ACTIONS(1714), + [anon_sym_satisfies] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [sym__automatic_semicolon] = ACTIONS(1712), + [sym__ternary_qmark] = ACTIONS(1712), + [sym_html_comment] = ACTIONS(5), + }, + [214] = { + [sym_statement_block] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), [anon_sym_export] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), [anon_sym_type] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1714), + [anon_sym_with] = ACTIONS(1714), + [anon_sym_var] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_await] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_debugger] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1712), + [sym_glimmer_opening_tag] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(1714), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_new] = ACTIONS(1714), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1712), + [anon_sym_PIPE_PIPE] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1714), + [anon_sym_GT_GT_GT] = ACTIONS(1712), + [anon_sym_LT_LT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_STAR_STAR] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_LT_EQ] = ACTIONS(1712), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), + [anon_sym_GT_EQ] = ACTIONS(1712), + [anon_sym_QMARK_QMARK] = ACTIONS(1712), + [anon_sym_instanceof] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_number] = ACTIONS(1712), + [sym_private_property_identifier] = ACTIONS(1712), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_true] = ACTIONS(1714), + [sym_false] = ACTIONS(1714), + [sym_null] = ACTIONS(1714), + [sym_undefined] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_readonly] = ACTIONS(1714), + [anon_sym_get] = ACTIONS(1714), + [anon_sym_set] = ACTIONS(1714), + [anon_sym_declare] = ACTIONS(1714), + [anon_sym_public] = ACTIONS(1714), + [anon_sym_private] = ACTIONS(1714), + [anon_sym_protected] = ACTIONS(1714), + [anon_sym_override] = ACTIONS(1714), + [anon_sym_module] = ACTIONS(1714), + [anon_sym_any] = ACTIONS(1714), + [anon_sym_number] = ACTIONS(1714), + [anon_sym_boolean] = ACTIONS(1714), + [anon_sym_string] = ACTIONS(1714), + [anon_sym_symbol] = ACTIONS(1714), + [anon_sym_object] = ACTIONS(1714), + [anon_sym_abstract] = ACTIONS(1714), + [anon_sym_satisfies] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [sym__automatic_semicolon] = ACTIONS(1712), + [sym__ternary_qmark] = ACTIONS(1712), + [sym_html_comment] = ACTIONS(5), + }, + [215] = { + [sym_import] = STATE(3306), + [sym_expression_statement] = STATE(289), + [sym_variable_declaration] = STATE(289), + [sym_lexical_declaration] = STATE(289), + [sym_empty_statement] = STATE(289), + [sym_parenthesized_expression] = STATE(1290), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(4963), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(4963), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1290), + [sym_subscript_expression] = STATE(1290), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(4963), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1290), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1670), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_var] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1724), + [anon_sym_var] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1682), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1684), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1686), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1688), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -51062,24 +51095,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1690), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_readonly] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1672), + [anon_sym_private] = ACTIONS(1672), + [anon_sym_protected] = ACTIONS(1672), + [anon_sym_override] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1672), + [anon_sym_number] = ACTIONS(1672), + [anon_sym_boolean] = ACTIONS(1672), + [anon_sym_string] = ACTIONS(1672), + [anon_sym_symbol] = ACTIONS(1672), + [anon_sym_object] = ACTIONS(1672), [sym_html_comment] = ACTIONS(5), }, [216] = { @@ -51194,1312 +51227,1201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(187), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5512), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4979), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(5128), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1747), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1664), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), - [anon_sym_using] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1620), + [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(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [anon_sym_extends] = ACTIONS(1666), + [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_html_comment] = ACTIONS(5), }, [218] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1746), - [anon_sym_export] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1746), - [anon_sym_as] = ACTIONS(1746), - [anon_sym_namespace] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(1746), - [anon_sym_with] = ACTIONS(1746), - [anon_sym_var] = ACTIONS(1746), - [anon_sym_let] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_else] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_await] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_try] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_debugger] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_throw] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_yield] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1744), - [sym_glimmer_opening_tag] = ACTIONS(1744), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_class] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(1746), - [anon_sym_QMARK_DOT] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_GT_GT] = ACTIONS(1746), - [anon_sym_GT_GT_GT] = ACTIONS(1744), - [anon_sym_LT_LT] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1746), - [anon_sym_PERCENT] = ACTIONS(1744), - [anon_sym_STAR_STAR] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_LT_EQ] = ACTIONS(1744), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1744), - [anon_sym_BANG_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1744), - [anon_sym_GT_EQ] = ACTIONS(1744), - [anon_sym_QMARK_QMARK] = ACTIONS(1744), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_void] = ACTIONS(1746), - [anon_sym_delete] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1744), - [sym_number] = ACTIONS(1744), - [sym_private_property_identifier] = ACTIONS(1744), - [sym_this] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_undefined] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_readonly] = ACTIONS(1746), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1746), - [anon_sym_declare] = ACTIONS(1746), - [anon_sym_public] = ACTIONS(1746), - [anon_sym_private] = ACTIONS(1746), - [anon_sym_protected] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(1746), - [anon_sym_module] = ACTIONS(1746), - [anon_sym_any] = ACTIONS(1746), - [anon_sym_number] = ACTIONS(1746), - [anon_sym_boolean] = ACTIONS(1746), - [anon_sym_string] = ACTIONS(1746), - [anon_sym_symbol] = ACTIONS(1746), - [anon_sym_object] = ACTIONS(1746), - [anon_sym_abstract] = ACTIONS(1746), - [anon_sym_satisfies] = ACTIONS(1746), - [anon_sym_interface] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1744), - [sym__ternary_qmark] = ACTIONS(1744), + [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_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_SEMI] = ACTIONS(1751), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1751), + [sym_glimmer_opening_tag] = ACTIONS(1751), + [anon_sym_GT] = ACTIONS(1753), + [anon_sym_DOT] = ACTIONS(1753), + [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(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_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), + [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), [sym_html_comment] = ACTIONS(5), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_namespace] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym_import] = ACTIONS(1750), - [anon_sym_with] = ACTIONS(1750), - [anon_sym_var] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_else] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_await] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_try] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_debugger] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_throw] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_yield] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1748), - [sym_glimmer_opening_tag] = ACTIONS(1748), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_class] = ACTIONS(1750), - [anon_sym_async] = ACTIONS(1750), - [anon_sym_function] = ACTIONS(1750), - [anon_sym_QMARK_DOT] = ACTIONS(1754), - [anon_sym_new] = ACTIONS(1750), - [anon_sym_using] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1752), - [anon_sym_GT_GT_GT] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_STAR_STAR] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_QMARK_QMARK] = ACTIONS(1754), - [anon_sym_instanceof] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_void] = ACTIONS(1750), - [anon_sym_delete] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1748), - [sym_number] = ACTIONS(1748), - [sym_private_property_identifier] = ACTIONS(1748), - [sym_this] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_undefined] = ACTIONS(1750), - [anon_sym_AT] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_readonly] = ACTIONS(1750), - [anon_sym_get] = ACTIONS(1750), - [anon_sym_set] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1750), - [anon_sym_public] = ACTIONS(1750), - [anon_sym_private] = ACTIONS(1750), - [anon_sym_protected] = ACTIONS(1750), - [anon_sym_override] = ACTIONS(1750), - [anon_sym_module] = ACTIONS(1750), - [anon_sym_any] = ACTIONS(1750), - [anon_sym_number] = ACTIONS(1750), - [anon_sym_boolean] = ACTIONS(1750), - [anon_sym_string] = ACTIONS(1750), - [anon_sym_symbol] = ACTIONS(1750), - [anon_sym_object] = ACTIONS(1750), - [anon_sym_abstract] = ACTIONS(1750), - [anon_sym_satisfies] = ACTIONS(1752), - [anon_sym_interface] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1756), - [sym__ternary_qmark] = ACTIONS(1754), + [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_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_SEMI] = ACTIONS(1755), + [anon_sym_case] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1755), + [sym_glimmer_opening_tag] = ACTIONS(1755), + [anon_sym_GT] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1755), + [anon_sym_SQUOTE] = ACTIONS(1755), + [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_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), + [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), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_export] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_as] = ACTIONS(1760), - [anon_sym_namespace] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_COMMA] = 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(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_await] = ACTIONS(1760), - [anon_sym_in] = 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_SEMI] = ACTIONS(1758), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1758), - [sym_glimmer_opening_tag] = ACTIONS(1758), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_class] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_function] = ACTIONS(1760), - [anon_sym_QMARK_DOT] = ACTIONS(1758), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_using] = ACTIONS(1760), - [anon_sym_AMP_AMP] = ACTIONS(1758), - [anon_sym_PIPE_PIPE] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1760), - [anon_sym_GT_GT_GT] = ACTIONS(1758), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1758), - [anon_sym_STAR_STAR] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_QMARK_QMARK] = ACTIONS(1758), - [anon_sym_instanceof] = ACTIONS(1760), - [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), - [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(1760), - [anon_sym_interface] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [sym__automatic_semicolon] = ACTIONS(1758), - [sym__ternary_qmark] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), + [anon_sym_export] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_namespace] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_typeof] = ACTIONS(1767), + [anon_sym_import] = ACTIONS(1767), + [anon_sym_with] = ACTIONS(1767), + [anon_sym_var] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_else] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_switch] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_debugger] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_throw] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_case] = ACTIONS(1767), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1765), + [sym_glimmer_opening_tag] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_class] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(1765), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_using] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_GT_GT_GT] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_QMARK_QMARK] = ACTIONS(1765), + [anon_sym_instanceof] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_void] = ACTIONS(1767), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1765), + [sym_number] = ACTIONS(1765), + [sym_private_property_identifier] = ACTIONS(1765), + [sym_this] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_null] = ACTIONS(1767), + [sym_undefined] = ACTIONS(1767), + [anon_sym_AT] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_readonly] = ACTIONS(1767), + [anon_sym_get] = ACTIONS(1767), + [anon_sym_set] = ACTIONS(1767), + [anon_sym_declare] = ACTIONS(1767), + [anon_sym_public] = ACTIONS(1767), + [anon_sym_private] = ACTIONS(1767), + [anon_sym_protected] = ACTIONS(1767), + [anon_sym_override] = ACTIONS(1767), + [anon_sym_module] = ACTIONS(1767), + [anon_sym_any] = ACTIONS(1767), + [anon_sym_number] = ACTIONS(1767), + [anon_sym_boolean] = ACTIONS(1767), + [anon_sym_string] = ACTIONS(1767), + [anon_sym_symbol] = ACTIONS(1767), + [anon_sym_object] = ACTIONS(1767), + [anon_sym_abstract] = ACTIONS(1767), + [anon_sym_satisfies] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [sym__automatic_semicolon] = ACTIONS(1765), + [sym__ternary_qmark] = ACTIONS(1765), [sym_html_comment] = ACTIONS(5), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_namespace] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1764), - [anon_sym_import] = ACTIONS(1764), - [anon_sym_with] = ACTIONS(1764), - [anon_sym_var] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_switch] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_await] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_debugger] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_case] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1762), - [sym_glimmer_opening_tag] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1762), - [anon_sym_class] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_function] = ACTIONS(1764), - [anon_sym_QMARK_DOT] = ACTIONS(1762), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_using] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1762), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1764), - [anon_sym_GT_GT_GT] = ACTIONS(1762), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1762), - [anon_sym_STAR_STAR] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_QMARK_QMARK] = ACTIONS(1762), - [anon_sym_instanceof] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1762), - [anon_sym_void] = ACTIONS(1764), - [anon_sym_delete] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1762), - [sym_number] = ACTIONS(1762), - [sym_private_property_identifier] = ACTIONS(1762), - [sym_this] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_true] = ACTIONS(1764), - [sym_false] = ACTIONS(1764), - [sym_null] = ACTIONS(1764), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_readonly] = ACTIONS(1764), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_declare] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_protected] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_any] = ACTIONS(1764), - [anon_sym_number] = ACTIONS(1764), - [anon_sym_boolean] = ACTIONS(1764), - [anon_sym_string] = ACTIONS(1764), - [anon_sym_symbol] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_satisfies] = ACTIONS(1764), - [anon_sym_interface] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [sym__automatic_semicolon] = ACTIONS(1762), - [sym__ternary_qmark] = ACTIONS(1762), + [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_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_SEMI] = ACTIONS(1769), + [anon_sym_case] = ACTIONS(1771), + [anon_sym_yield] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1769), + [sym_glimmer_opening_tag] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [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_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), + [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), [sym_html_comment] = ACTIONS(5), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_as] = ACTIONS(1702), - [anon_sym_namespace] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_typeof] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_await] = ACTIONS(1702), - [anon_sym_in] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [sym_glimmer_opening_tag] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_class] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_QMARK_DOT] = ACTIONS(1700), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_using] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_GT_GT_GT] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1700), - [anon_sym_STAR_STAR] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_QMARK_QMARK] = ACTIONS(1700), - [anon_sym_instanceof] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1700), - [anon_sym_void] = ACTIONS(1702), - [anon_sym_delete] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1700), - [sym_number] = ACTIONS(1700), - [sym_private_property_identifier] = ACTIONS(1700), - [sym_this] = ACTIONS(1702), - [sym_super] = ACTIONS(1702), - [sym_true] = ACTIONS(1702), - [sym_false] = ACTIONS(1702), - [sym_null] = ACTIONS(1702), - [sym_undefined] = ACTIONS(1702), - [anon_sym_AT] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_readonly] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_declare] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_protected] = ACTIONS(1702), - [anon_sym_override] = ACTIONS(1702), - [anon_sym_module] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_number] = ACTIONS(1702), - [anon_sym_boolean] = ACTIONS(1702), - [anon_sym_string] = ACTIONS(1702), - [anon_sym_symbol] = ACTIONS(1702), - [anon_sym_object] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_satisfies] = ACTIONS(1702), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym__ternary_qmark] = ACTIONS(1700), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = 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(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_await] = ACTIONS(1781), + [anon_sym_in] = 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_SEMI] = ACTIONS(1779), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [sym_glimmer_opening_tag] = ACTIONS(1779), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_GT_GT] = ACTIONS(1781), + [anon_sym_GT_GT_GT] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1779), + [anon_sym_STAR_STAR] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_QMARK_QMARK] = ACTIONS(1779), + [anon_sym_instanceof] = 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), + [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(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(1779), + [sym__ternary_qmark] = ACTIONS(1779), [sym_html_comment] = ACTIONS(5), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_namespace] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_typeof] = ACTIONS(1770), - [anon_sym_import] = ACTIONS(1770), - [anon_sym_with] = ACTIONS(1770), - [anon_sym_var] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_switch] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_debugger] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_case] = ACTIONS(1770), - [anon_sym_yield] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1768), - [sym_glimmer_opening_tag] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_class] = ACTIONS(1770), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_function] = ACTIONS(1770), - [anon_sym_QMARK_DOT] = ACTIONS(1768), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1768), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_GT_GT_GT] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_GT_EQ] = ACTIONS(1768), - [anon_sym_QMARK_QMARK] = ACTIONS(1768), - [anon_sym_instanceof] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_void] = ACTIONS(1770), - [anon_sym_delete] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1768), - [anon_sym_DASH_DASH] = ACTIONS(1768), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1768), - [sym_number] = ACTIONS(1768), - [sym_private_property_identifier] = ACTIONS(1768), - [sym_this] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_null] = ACTIONS(1770), - [sym_undefined] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1770), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_declare] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_private] = ACTIONS(1770), - [anon_sym_protected] = ACTIONS(1770), - [anon_sym_override] = ACTIONS(1770), - [anon_sym_module] = ACTIONS(1770), - [anon_sym_any] = ACTIONS(1770), - [anon_sym_number] = ACTIONS(1770), - [anon_sym_boolean] = ACTIONS(1770), - [anon_sym_string] = ACTIONS(1770), - [anon_sym_symbol] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_abstract] = ACTIONS(1770), - [anon_sym_satisfies] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [sym__automatic_semicolon] = ACTIONS(1768), - [sym__ternary_qmark] = ACTIONS(1768), + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_var] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_debugger] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_throw] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_case] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1783), + [sym_glimmer_opening_tag] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(1785), + [anon_sym_QMARK_DOT] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_STAR_STAR] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_QMARK_QMARK] = ACTIONS(1789), + [anon_sym_instanceof] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_void] = ACTIONS(1785), + [anon_sym_delete] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1783), + [sym_number] = ACTIONS(1783), + [sym_private_property_identifier] = ACTIONS(1783), + [sym_this] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), + [sym_null] = ACTIONS(1785), + [sym_undefined] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_get] = ACTIONS(1785), + [anon_sym_set] = ACTIONS(1785), + [anon_sym_declare] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_private] = ACTIONS(1785), + [anon_sym_protected] = ACTIONS(1785), + [anon_sym_override] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_any] = ACTIONS(1785), + [anon_sym_number] = ACTIONS(1785), + [anon_sym_boolean] = ACTIONS(1785), + [anon_sym_string] = ACTIONS(1785), + [anon_sym_symbol] = ACTIONS(1785), + [anon_sym_object] = ACTIONS(1785), + [anon_sym_abstract] = ACTIONS(1785), + [anon_sym_satisfies] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [sym__automatic_semicolon] = ACTIONS(1789), + [sym__ternary_qmark] = ACTIONS(1789), [sym_html_comment] = ACTIONS(5), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(1774), - [anon_sym_namespace] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym_import] = ACTIONS(1774), - [anon_sym_with] = ACTIONS(1774), - [anon_sym_var] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_else] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_await] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_try] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_debugger] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_throw] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_yield] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1772), - [sym_glimmer_opening_tag] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_class] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_function] = ACTIONS(1774), - [anon_sym_QMARK_DOT] = ACTIONS(1772), - [anon_sym_new] = ACTIONS(1774), - [anon_sym_using] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_GT_GT_GT] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_SLASH] = ACTIONS(1774), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_STAR_STAR] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_QMARK_QMARK] = ACTIONS(1772), - [anon_sym_instanceof] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_void] = ACTIONS(1774), - [anon_sym_delete] = ACTIONS(1774), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1772), - [sym_number] = ACTIONS(1772), - [sym_private_property_identifier] = ACTIONS(1772), - [sym_this] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_undefined] = ACTIONS(1774), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_readonly] = ACTIONS(1774), - [anon_sym_get] = ACTIONS(1774), - [anon_sym_set] = ACTIONS(1774), - [anon_sym_declare] = ACTIONS(1774), - [anon_sym_public] = ACTIONS(1774), - [anon_sym_private] = ACTIONS(1774), - [anon_sym_protected] = ACTIONS(1774), - [anon_sym_override] = ACTIONS(1774), - [anon_sym_module] = ACTIONS(1774), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), - [anon_sym_object] = ACTIONS(1774), - [anon_sym_abstract] = ACTIONS(1774), - [anon_sym_satisfies] = ACTIONS(1774), - [anon_sym_interface] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym__ternary_qmark] = ACTIONS(1772), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [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_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_type] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_namespace] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1778), - [anon_sym_import] = ACTIONS(1778), - [anon_sym_with] = ACTIONS(1778), - [anon_sym_var] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_debugger] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_case] = ACTIONS(1778), - [anon_sym_yield] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1776), - [sym_glimmer_opening_tag] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_class] = ACTIONS(1778), - [anon_sym_async] = ACTIONS(1778), - [anon_sym_function] = ACTIONS(1778), - [anon_sym_QMARK_DOT] = ACTIONS(1776), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1776), - [anon_sym_PIPE_PIPE] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_GT_GT_GT] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_STAR_STAR] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_QMARK_QMARK] = ACTIONS(1776), - [anon_sym_instanceof] = ACTIONS(1778), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_void] = ACTIONS(1778), - [anon_sym_delete] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1776), - [sym_number] = ACTIONS(1776), - [sym_private_property_identifier] = ACTIONS(1776), - [sym_this] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_true] = ACTIONS(1778), - [sym_false] = ACTIONS(1778), - [sym_null] = ACTIONS(1778), - [sym_undefined] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_readonly] = ACTIONS(1778), - [anon_sym_get] = ACTIONS(1778), - [anon_sym_set] = ACTIONS(1778), - [anon_sym_declare] = ACTIONS(1778), - [anon_sym_public] = ACTIONS(1778), - [anon_sym_private] = ACTIONS(1778), - [anon_sym_protected] = ACTIONS(1778), - [anon_sym_override] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_any] = ACTIONS(1778), - [anon_sym_number] = ACTIONS(1778), - [anon_sym_boolean] = ACTIONS(1778), - [anon_sym_string] = ACTIONS(1778), - [anon_sym_symbol] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_abstract] = ACTIONS(1778), - [anon_sym_satisfies] = ACTIONS(1778), - [anon_sym_interface] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [sym__automatic_semicolon] = ACTIONS(1776), - [sym__ternary_qmark] = ACTIONS(1776), - [sym_html_comment] = ACTIONS(5), - }, - [226] = { - [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_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_SEMI] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_yield] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1780), - [sym_glimmer_opening_tag] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [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_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), - [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), - }, - [227] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2174), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5136), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5136), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5136), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(1790), - [anon_sym_export] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_namespace] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1688), - [anon_sym_typeof] = ACTIONS(1110), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5512), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4979), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(5128), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_RBRACK] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1791), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1798), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1620), + [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(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1698), + [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [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_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_html_comment] = ACTIONS(5), }, - [228] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(5268), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4993), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4996), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [226] = { + [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_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_SEMI] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [sym_glimmer_opening_tag] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [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_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), + [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(1795), + [sym__ternary_qmark] = ACTIONS(1720), + [sym_html_comment] = ACTIONS(5), + }, + [227] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5512), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_spread_element] = STATE(4979), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(5128), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1744), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(632), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -52507,368 +52429,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), + [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_html_comment] = ACTIONS(5), + }, + [228] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_await] = ACTIONS(1799), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_debugger] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [sym_glimmer_opening_tag] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1797), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_STAR_STAR] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1797), + [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1797), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1797), + [anon_sym_GT_EQ] = ACTIONS(1797), + [anon_sym_QMARK_QMARK] = ACTIONS(1797), + [anon_sym_instanceof] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_void] = ACTIONS(1799), + [anon_sym_delete] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1797), + [sym_number] = ACTIONS(1797), + [sym_private_property_identifier] = ACTIONS(1797), + [sym_this] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_undefined] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), + [anon_sym_satisfies] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [sym__automatic_semicolon] = ACTIONS(1797), + [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1811), - [anon_sym_DOT] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_STAR_STAR] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_QMARK_QMARK] = ACTIONS(1813), - [anon_sym_instanceof] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_satisfies] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [sym__automatic_semicolon] = ACTIONS(1813), - [sym__ternary_qmark] = ACTIONS(1813), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_typeof] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_debugger] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [sym_glimmer_opening_tag] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_QMARK_DOT] = ACTIONS(1807), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_STAR_STAR] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_QMARK_QMARK] = ACTIONS(1807), + [anon_sym_instanceof] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_void] = ACTIONS(1803), + [anon_sym_delete] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1801), + [sym_number] = ACTIONS(1801), + [sym_private_property_identifier] = ACTIONS(1801), + [sym_this] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_undefined] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_get] = ACTIONS(1803), + [anon_sym_set] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_protected] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_any] = ACTIONS(1803), + [anon_sym_number] = ACTIONS(1803), + [anon_sym_boolean] = ACTIONS(1803), + [anon_sym_string] = ACTIONS(1803), + [anon_sym_symbol] = ACTIONS(1803), + [anon_sym_object] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_satisfies] = ACTIONS(1805), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [sym__automatic_semicolon] = ACTIONS(1809), + [sym__ternary_qmark] = ACTIONS(1807), [sym_html_comment] = ACTIONS(5), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1817), - [anon_sym_export] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_as] = ACTIONS(1819), - [anon_sym_namespace] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1815), + [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_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_SEMI] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [sym_glimmer_opening_tag] = ACTIONS(1811), + [anon_sym_GT] = ACTIONS(1815), + [anon_sym_DOT] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), + [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_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), + [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] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(1817), - [anon_sym_import] = ACTIONS(1817), - [anon_sym_with] = ACTIONS(1817), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_switch] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_await] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_try] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_debugger] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_throw] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [sym_glimmer_opening_tag] = ACTIONS(1815), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_DOT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1815), - [anon_sym_SQUOTE] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_function] = ACTIONS(1817), + [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_await] = ACTIONS(1823), + [anon_sym_in] = 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_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), [anon_sym_QMARK_DOT] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1817), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), [anon_sym_AMP_AMP] = ACTIONS(1821), [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1823), [anon_sym_GT_GT_GT] = ACTIONS(1821), [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1823), [anon_sym_CARET] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), [anon_sym_PERCENT] = ACTIONS(1821), [anon_sym_STAR_STAR] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1823), [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1823), [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), - [anon_sym_BANG_EQ] = ACTIONS(1819), + [anon_sym_BANG_EQ] = ACTIONS(1823), [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), [anon_sym_GT_EQ] = ACTIONS(1821), [anon_sym_QMARK_QMARK] = ACTIONS(1821), - [anon_sym_instanceof] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_void] = ACTIONS(1817), - [anon_sym_delete] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1815), - [sym_number] = ACTIONS(1815), - [sym_private_property_identifier] = ACTIONS(1815), - [sym_this] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_true] = ACTIONS(1817), - [sym_false] = ACTIONS(1817), - [sym_null] = ACTIONS(1817), - [sym_undefined] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_readonly] = ACTIONS(1817), - [anon_sym_get] = ACTIONS(1817), - [anon_sym_set] = ACTIONS(1817), - [anon_sym_declare] = ACTIONS(1817), - [anon_sym_public] = ACTIONS(1817), - [anon_sym_private] = ACTIONS(1817), - [anon_sym_protected] = ACTIONS(1817), - [anon_sym_override] = ACTIONS(1817), - [anon_sym_module] = ACTIONS(1817), - [anon_sym_any] = ACTIONS(1817), - [anon_sym_number] = ACTIONS(1817), - [anon_sym_boolean] = ACTIONS(1817), - [anon_sym_string] = ACTIONS(1817), - [anon_sym_symbol] = ACTIONS(1817), - [anon_sym_object] = ACTIONS(1817), - [anon_sym_abstract] = ACTIONS(1817), - [anon_sym_satisfies] = ACTIONS(1819), - [anon_sym_interface] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [sym__automatic_semicolon] = ACTIONS(1823), + [anon_sym_instanceof] = 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), + [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(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1821), [sym__ternary_qmark] = ACTIONS(1821), [sym_html_comment] = ACTIONS(5), }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_as] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_QMARK_DOT] = ACTIONS(1825), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1825), - [anon_sym_STAR_STAR] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1825), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1825), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1825), - [anon_sym_QMARK_QMARK] = ACTIONS(1825), - [anon_sym_instanceof] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), + [232] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_RBRACK] = ACTIONS(1704), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_private_property_identifier] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_get] = ACTIONS(1827), - [anon_sym_set] = ACTIONS(1827), - [anon_sym_declare] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_satisfies] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [sym__automatic_semicolon] = ACTIONS(1825), - [sym__ternary_qmark] = ACTIONS(1825), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [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), }, - [232] = { + [233] = { [ts_builtin_sym_end] = ACTIONS(1825), [sym_identifier] = ACTIONS(1827), [anon_sym_export] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1829), [anon_sym_default] = ACTIONS(1827), [anon_sym_type] = ACTIONS(1827), - [anon_sym_as] = ACTIONS(1827), + [anon_sym_as] = ACTIONS(1829), [anon_sym_namespace] = ACTIONS(1827), [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_COMMA] = ACTIONS(1831), [anon_sym_RBRACE] = ACTIONS(1825), [anon_sym_typeof] = ACTIONS(1827), [anon_sym_import] = ACTIONS(1827), @@ -52883,7 +53027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1827), [anon_sym_LPAREN] = ACTIONS(1825), [anon_sym_await] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), + [anon_sym_in] = ACTIONS(1829), [anon_sym_while] = ACTIONS(1827), [anon_sym_do] = ACTIONS(1827), [anon_sym_try] = ACTIONS(1827), @@ -52897,38 +53041,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1827), [anon_sym_LBRACK] = ACTIONS(1825), [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), + [anon_sym_GT] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1829), [anon_sym_DQUOTE] = ACTIONS(1825), [anon_sym_SQUOTE] = ACTIONS(1825), [anon_sym_class] = ACTIONS(1827), [anon_sym_async] = ACTIONS(1827), [anon_sym_function] = ACTIONS(1827), - [anon_sym_QMARK_DOT] = ACTIONS(1825), + [anon_sym_QMARK_DOT] = ACTIONS(1831), [anon_sym_new] = ACTIONS(1827), [anon_sym_using] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1831), + [anon_sym_GT_GT] = ACTIONS(1829), + [anon_sym_GT_GT_GT] = ACTIONS(1831), + [anon_sym_LT_LT] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1829), [anon_sym_PLUS] = ACTIONS(1827), [anon_sym_DASH] = ACTIONS(1827), [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1825), - [anon_sym_STAR_STAR] = ACTIONS(1825), + [anon_sym_PERCENT] = ACTIONS(1831), + [anon_sym_STAR_STAR] = ACTIONS(1831), [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1825), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1825), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1825), - [anon_sym_QMARK_QMARK] = ACTIONS(1825), - [anon_sym_instanceof] = ACTIONS(1827), + [anon_sym_LT_EQ] = ACTIONS(1831), + [anon_sym_EQ_EQ] = ACTIONS(1829), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), + [anon_sym_BANG_EQ] = ACTIONS(1829), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(1831), + [anon_sym_QMARK_QMARK] = ACTIONS(1831), + [anon_sym_instanceof] = ACTIONS(1829), [anon_sym_TILDE] = ACTIONS(1825), [anon_sym_void] = ACTIONS(1827), [anon_sym_delete] = ACTIONS(1827), @@ -52962,121 +53106,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1827), [anon_sym_object] = ACTIONS(1827), [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_satisfies] = ACTIONS(1827), + [anon_sym_satisfies] = ACTIONS(1829), [anon_sym_interface] = ACTIONS(1827), [anon_sym_enum] = ACTIONS(1827), - [sym__automatic_semicolon] = ACTIONS(1829), - [sym__ternary_qmark] = ACTIONS(1825), - [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_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_SEMI] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_DOT] = ACTIONS(1833), - [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(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_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), - [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__automatic_semicolon] = ACTIONS(1833), [sym__ternary_qmark] = ACTIONS(1831), [sym_html_comment] = ACTIONS(5), }, @@ -53195,13 +53228,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1845), [sym_identifier] = ACTIONS(1847), [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1849), [anon_sym_default] = ACTIONS(1847), [anon_sym_type] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1849), [anon_sym_namespace] = ACTIONS(1847), [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1851), [anon_sym_RBRACE] = ACTIONS(1845), [anon_sym_typeof] = ACTIONS(1847), [anon_sym_import] = ACTIONS(1847), @@ -53216,7 +53249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1847), [anon_sym_LPAREN] = ACTIONS(1845), [anon_sym_await] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1849), [anon_sym_while] = ACTIONS(1847), [anon_sym_do] = ACTIONS(1847), [anon_sym_try] = ACTIONS(1847), @@ -53230,38 +53263,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1847), [anon_sym_LBRACK] = ACTIONS(1845), [sym_glimmer_opening_tag] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1847), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(1849), [anon_sym_DQUOTE] = ACTIONS(1845), [anon_sym_SQUOTE] = ACTIONS(1845), [anon_sym_class] = ACTIONS(1847), [anon_sym_async] = ACTIONS(1847), [anon_sym_function] = ACTIONS(1847), - [anon_sym_QMARK_DOT] = ACTIONS(1845), + [anon_sym_QMARK_DOT] = ACTIONS(1851), [anon_sym_new] = ACTIONS(1847), [anon_sym_using] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1847), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_AMP_AMP] = ACTIONS(1851), + [anon_sym_PIPE_PIPE] = ACTIONS(1851), + [anon_sym_GT_GT] = ACTIONS(1849), + [anon_sym_GT_GT_GT] = ACTIONS(1851), + [anon_sym_LT_LT] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(1847), [anon_sym_DASH] = ACTIONS(1847), [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_STAR_STAR] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1851), + [anon_sym_STAR_STAR] = ACTIONS(1851), [anon_sym_LT] = ACTIONS(1847), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_QMARK_QMARK] = ACTIONS(1845), - [anon_sym_instanceof] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1851), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), + [anon_sym_GT_EQ] = ACTIONS(1851), + [anon_sym_QMARK_QMARK] = ACTIONS(1851), + [anon_sym_instanceof] = ACTIONS(1849), [anon_sym_TILDE] = ACTIONS(1845), [anon_sym_void] = ACTIONS(1847), [anon_sym_delete] = ACTIONS(1847), @@ -53295,311 +53328,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1847), [anon_sym_object] = ACTIONS(1847), [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_satisfies] = ACTIONS(1847), + [anon_sym_satisfies] = ACTIONS(1849), [anon_sym_interface] = ACTIONS(1847), [anon_sym_enum] = ACTIONS(1847), - [sym__automatic_semicolon] = ACTIONS(1845), - [sym__ternary_qmark] = ACTIONS(1845), + [sym__automatic_semicolon] = ACTIONS(1853), + [sym__ternary_qmark] = ACTIONS(1851), [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(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = 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(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_await] = ACTIONS(1851), - [anon_sym_in] = 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_SEMI] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [sym_glimmer_opening_tag] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [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(1849), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1851), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1849), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = 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), - [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(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [sym__automatic_semicolon] = ACTIONS(1849), - [sym__ternary_qmark] = ACTIONS(1849), - [sym_html_comment] = ACTIONS(5), - }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), + [anon_sym_export] = ACTIONS(1857), [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), [anon_sym_as] = ACTIONS(1857), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1859), - [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_await] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_typeof] = ACTIONS(1857), + [anon_sym_import] = ACTIONS(1857), + [anon_sym_with] = ACTIONS(1857), + [anon_sym_var] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_else] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1857), [anon_sym_in] = ACTIONS(1857), - [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_SEMI] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_debugger] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_throw] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_case] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1855), + [sym_glimmer_opening_tag] = ACTIONS(1855), [anon_sym_GT] = ACTIONS(1857), [anon_sym_DOT] = ACTIONS(1857), - [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(1859), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1859), - [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_function] = ACTIONS(1857), + [anon_sym_QMARK_DOT] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1857), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), [anon_sym_GT_GT] = ACTIONS(1857), - [anon_sym_GT_GT_GT] = ACTIONS(1859), - [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1855), [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1855), [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1859), - [anon_sym_STAR_STAR] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_SLASH] = ACTIONS(1857), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_STAR_STAR] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1855), [anon_sym_EQ_EQ] = ACTIONS(1857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), [anon_sym_BANG_EQ] = ACTIONS(1857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), - [anon_sym_GT_EQ] = ACTIONS(1859), - [anon_sym_QMARK_QMARK] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_QMARK_QMARK] = ACTIONS(1855), [anon_sym_instanceof] = ACTIONS(1857), - [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_TILDE] = ACTIONS(1855), + [anon_sym_void] = ACTIONS(1857), + [anon_sym_delete] = ACTIONS(1857), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1855), + [sym_number] = ACTIONS(1855), + [sym_private_property_identifier] = ACTIONS(1855), + [sym_this] = ACTIONS(1857), + [sym_super] = ACTIONS(1857), + [sym_true] = ACTIONS(1857), + [sym_false] = ACTIONS(1857), + [sym_null] = ACTIONS(1857), + [sym_undefined] = ACTIONS(1857), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_readonly] = ACTIONS(1857), + [anon_sym_get] = ACTIONS(1857), + [anon_sym_set] = ACTIONS(1857), + [anon_sym_declare] = ACTIONS(1857), + [anon_sym_public] = ACTIONS(1857), + [anon_sym_private] = ACTIONS(1857), + [anon_sym_protected] = ACTIONS(1857), + [anon_sym_override] = ACTIONS(1857), + [anon_sym_module] = ACTIONS(1857), + [anon_sym_any] = ACTIONS(1857), + [anon_sym_number] = ACTIONS(1857), + [anon_sym_boolean] = ACTIONS(1857), + [anon_sym_string] = ACTIONS(1857), + [anon_sym_symbol] = ACTIONS(1857), + [anon_sym_object] = ACTIONS(1857), + [anon_sym_abstract] = ACTIONS(1857), [anon_sym_satisfies] = ACTIONS(1857), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [sym__automatic_semicolon] = ACTIONS(1861), - [sym__ternary_qmark] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [sym__automatic_semicolon] = ACTIONS(1855), + [sym__ternary_qmark] = ACTIONS(1855), + [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_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_SEMI] = ACTIONS(1859), + [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), + [anon_sym_SQUOTE] = ACTIONS(1859), + [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_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), + [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] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_assignment_pattern] = STATE(4885), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4432), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_pattern_repeat1] = STATE(4899), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_assignment_pattern] = STATE(4906), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4468), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_pattern_repeat1] = STATE(4923), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(1700), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1869), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -53607,15 +53640,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), @@ -53636,1063 +53669,1063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1869), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1865), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_as] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_with] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_await] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_debugger] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1865), - [sym_glimmer_opening_tag] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_function] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), [anon_sym_QMARK_DOT] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), [anon_sym_AMP_AMP] = ACTIONS(1871), [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_GT_GT] = ACTIONS(1869), + [anon_sym_GT_GT] = ACTIONS(1873), [anon_sym_GT_GT_GT] = ACTIONS(1871), [anon_sym_LT_LT] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1873), [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), [anon_sym_PERCENT] = ACTIONS(1871), [anon_sym_STAR_STAR] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1873), [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_EQ_EQ] = ACTIONS(1873), [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1873), [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), [anon_sym_GT_EQ] = ACTIONS(1871), [anon_sym_QMARK_QMARK] = ACTIONS(1871), - [anon_sym_instanceof] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1865), - [sym_number] = ACTIONS(1865), - [sym_private_property_identifier] = ACTIONS(1865), - [sym_this] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_undefined] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(1867), - [anon_sym_get] = ACTIONS(1867), - [anon_sym_set] = ACTIONS(1867), - [anon_sym_declare] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [anon_sym_override] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_any] = ACTIONS(1867), - [anon_sym_number] = ACTIONS(1867), - [anon_sym_boolean] = ACTIONS(1867), - [anon_sym_string] = ACTIONS(1867), - [anon_sym_symbol] = ACTIONS(1867), - [anon_sym_object] = ACTIONS(1867), - [anon_sym_abstract] = ACTIONS(1867), - [anon_sym_satisfies] = ACTIONS(1869), - [anon_sym_interface] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [sym__automatic_semicolon] = ACTIONS(1873), + [anon_sym_instanceof] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_satisfies] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(1871), [sym__ternary_qmark] = ACTIONS(1871), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(5268), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4993), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4996), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1875), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_typeof] = ACTIONS(1877), + [anon_sym_import] = ACTIONS(1877), + [anon_sym_with] = ACTIONS(1877), + [anon_sym_var] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_switch] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_debugger] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [sym_glimmer_opening_tag] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_function] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_STAR_STAR] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_QMARK_QMARK] = ACTIONS(1881), + [anon_sym_instanceof] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_void] = ACTIONS(1877), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1875), + [sym_number] = ACTIONS(1875), + [sym_private_property_identifier] = ACTIONS(1875), + [sym_this] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_null] = ACTIONS(1877), + [sym_undefined] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_readonly] = ACTIONS(1877), + [anon_sym_get] = ACTIONS(1877), + [anon_sym_set] = ACTIONS(1877), + [anon_sym_declare] = ACTIONS(1877), + [anon_sym_public] = ACTIONS(1877), + [anon_sym_private] = ACTIONS(1877), + [anon_sym_protected] = ACTIONS(1877), + [anon_sym_override] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_any] = ACTIONS(1877), + [anon_sym_number] = ACTIONS(1877), + [anon_sym_boolean] = ACTIONS(1877), + [anon_sym_string] = ACTIONS(1877), + [anon_sym_symbol] = ACTIONS(1877), + [anon_sym_object] = ACTIONS(1877), + [anon_sym_abstract] = ACTIONS(1877), + [anon_sym_satisfies] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [sym__automatic_semicolon] = ACTIONS(1883), + [sym__ternary_qmark] = ACTIONS(1881), [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(5268), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_spread_element] = STATE(4993), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4996), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(1800), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_namespace] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_typeof] = ACTIONS(1887), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_var] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_switch] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_debugger] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_case] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [sym_glimmer_opening_tag] = ACTIONS(1885), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1891), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_using] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1891), + [anon_sym_PIPE_PIPE] = ACTIONS(1891), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1891), + [anon_sym_LT_LT] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1891), + [anon_sym_STAR_STAR] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1891), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1891), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1891), + [anon_sym_GT_EQ] = ACTIONS(1891), + [anon_sym_QMARK_QMARK] = ACTIONS(1891), + [anon_sym_instanceof] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(1887), + [anon_sym_delete] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1885), + [sym_number] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(1887), + [sym_super] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_null] = ACTIONS(1887), + [sym_undefined] = ACTIONS(1887), + [anon_sym_AT] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_get] = ACTIONS(1887), + [anon_sym_set] = ACTIONS(1887), + [anon_sym_declare] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_private] = ACTIONS(1887), + [anon_sym_protected] = ACTIONS(1887), + [anon_sym_override] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_any] = ACTIONS(1887), + [anon_sym_number] = ACTIONS(1887), + [anon_sym_boolean] = ACTIONS(1887), + [anon_sym_string] = ACTIONS(1887), + [anon_sym_symbol] = ACTIONS(1887), + [anon_sym_object] = ACTIONS(1887), + [anon_sym_abstract] = ACTIONS(1887), + [anon_sym_satisfies] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [sym__automatic_semicolon] = ACTIONS(1893), + [sym__ternary_qmark] = ACTIONS(1891), [sym_html_comment] = ACTIONS(5), }, [242] = { - [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_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_SEMI] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [sym_glimmer_opening_tag] = ACTIONS(1879), - [anon_sym_GT] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1879), - [anon_sym_SQUOTE] = ACTIONS(1879), - [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_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), - [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(1887), - [sym__ternary_qmark] = ACTIONS(1885), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_namespace] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_typeof] = ACTIONS(1897), + [anon_sym_import] = ACTIONS(1897), + [anon_sym_with] = ACTIONS(1897), + [anon_sym_var] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_debugger] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_throw] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_case] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1895), + [sym_glimmer_opening_tag] = ACTIONS(1895), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(1897), + [anon_sym_QMARK_DOT] = ACTIONS(1901), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_using] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1901), + [anon_sym_PIPE_PIPE] = ACTIONS(1901), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1901), + [anon_sym_LT_LT] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1901), + [anon_sym_STAR_STAR] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1901), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), + [anon_sym_GT_EQ] = ACTIONS(1901), + [anon_sym_QMARK_QMARK] = ACTIONS(1901), + [anon_sym_instanceof] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1895), + [anon_sym_void] = ACTIONS(1897), + [anon_sym_delete] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1895), + [sym_number] = ACTIONS(1895), + [sym_private_property_identifier] = ACTIONS(1895), + [sym_this] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_true] = ACTIONS(1897), + [sym_false] = ACTIONS(1897), + [sym_null] = ACTIONS(1897), + [sym_undefined] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1895), + [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), + [anon_sym_abstract] = ACTIONS(1897), + [anon_sym_satisfies] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [sym__automatic_semicolon] = ACTIONS(1903), + [sym__ternary_qmark] = ACTIONS(1901), [sym_html_comment] = ACTIONS(5), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1893), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(1891), - [anon_sym_import] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), - [anon_sym_var] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_debugger] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1889), - [sym_glimmer_opening_tag] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_function] = ACTIONS(1891), - [anon_sym_QMARK_DOT] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_AMP_AMP] = ACTIONS(1895), - [anon_sym_PIPE_PIPE] = ACTIONS(1895), - [anon_sym_GT_GT] = ACTIONS(1893), - [anon_sym_GT_GT_GT] = ACTIONS(1895), - [anon_sym_LT_LT] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_PERCENT] = ACTIONS(1895), - [anon_sym_STAR_STAR] = ACTIONS(1895), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_LT_EQ] = ACTIONS(1895), - [anon_sym_EQ_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1895), - [anon_sym_BANG_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(1895), - [anon_sym_QMARK_QMARK] = ACTIONS(1895), - [anon_sym_instanceof] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_void] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1889), - [sym_number] = ACTIONS(1889), - [sym_private_property_identifier] = ACTIONS(1889), - [sym_this] = ACTIONS(1891), - [sym_super] = ACTIONS(1891), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_undefined] = ACTIONS(1891), - [anon_sym_AT] = ACTIONS(1889), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_readonly] = ACTIONS(1891), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1891), - [anon_sym_public] = ACTIONS(1891), - [anon_sym_private] = ACTIONS(1891), - [anon_sym_protected] = ACTIONS(1891), - [anon_sym_override] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_any] = ACTIONS(1891), - [anon_sym_number] = ACTIONS(1891), - [anon_sym_boolean] = ACTIONS(1891), - [anon_sym_string] = ACTIONS(1891), - [anon_sym_symbol] = ACTIONS(1891), - [anon_sym_object] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1891), - [anon_sym_satisfies] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym__ternary_qmark] = ACTIONS(1895), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_as] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_QMARK_DOT] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_GT_GT] = ACTIONS(1873), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_QMARK_QMARK] = ACTIONS(1871), + [anon_sym_instanceof] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_satisfies] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(1905), + [sym__ternary_qmark] = ACTIONS(1871), [sym_html_comment] = ACTIONS(5), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_typeof] = ACTIONS(1901), - [anon_sym_import] = ACTIONS(1901), - [anon_sym_with] = ACTIONS(1901), - [anon_sym_var] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_switch] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_debugger] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_throw] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [sym_glimmer_opening_tag] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_function] = ACTIONS(1901), - [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_using] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1903), - [anon_sym_GT_GT_GT] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1901), - [anon_sym_PERCENT] = ACTIONS(1905), - [anon_sym_STAR_STAR] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1903), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_QMARK_QMARK] = ACTIONS(1905), - [anon_sym_instanceof] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_void] = ACTIONS(1901), - [anon_sym_delete] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1899), - [sym_number] = ACTIONS(1899), - [sym_private_property_identifier] = ACTIONS(1899), - [sym_this] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_true] = ACTIONS(1901), - [sym_false] = ACTIONS(1901), - [sym_null] = ACTIONS(1901), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_readonly] = ACTIONS(1901), - [anon_sym_get] = ACTIONS(1901), - [anon_sym_set] = ACTIONS(1901), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1901), - [anon_sym_private] = ACTIONS(1901), - [anon_sym_protected] = ACTIONS(1901), - [anon_sym_override] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_any] = ACTIONS(1901), - [anon_sym_number] = ACTIONS(1901), - [anon_sym_boolean] = ACTIONS(1901), - [anon_sym_string] = ACTIONS(1901), - [anon_sym_symbol] = ACTIONS(1901), - [anon_sym_object] = ACTIONS(1901), - [anon_sym_abstract] = ACTIONS(1901), - [anon_sym_satisfies] = ACTIONS(1903), - [anon_sym_interface] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [sym__automatic_semicolon] = ACTIONS(1907), - [sym__ternary_qmark] = ACTIONS(1905), - [sym_html_comment] = ACTIONS(5), - }, - [245] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_assignment_pattern] = STATE(4855), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4456), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_pattern_repeat1] = STATE(4890), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(1688), - [anon_sym_typeof] = ACTIONS(187), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2199), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5144), + [sym_assignment_pattern] = STATE(5148), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5144), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1344), + [sym_subscript_expression] = STATE(1344), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4544), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1344), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_identifier] = ACTIONS(1907), + [anon_sym_export] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_RBRACK] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1704), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(1913), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(166), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_using] = ACTIONS(1132), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(1710), [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), + [anon_sym_static] = ACTIONS(1909), + [anon_sym_readonly] = ACTIONS(1909), + [anon_sym_get] = ACTIONS(1909), + [anon_sym_set] = ACTIONS(1909), + [anon_sym_declare] = ACTIONS(1909), + [anon_sym_public] = ACTIONS(1909), + [anon_sym_private] = ACTIONS(1909), + [anon_sym_protected] = ACTIONS(1909), + [anon_sym_override] = ACTIONS(1909), + [anon_sym_module] = ACTIONS(1909), + [anon_sym_any] = ACTIONS(1909), + [anon_sym_number] = ACTIONS(1909), + [anon_sym_boolean] = ACTIONS(1909), + [anon_sym_string] = ACTIONS(1909), + [anon_sym_symbol] = ACTIONS(1909), + [anon_sym_object] = ACTIONS(1909), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_COMMA] = ACTIONS(1915), - [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_await] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(1913), - [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_SEMI] = ACTIONS(1909), - [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(1913), - [anon_sym_DOT] = ACTIONS(1913), - [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(1915), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1911), - [anon_sym_AMP_AMP] = ACTIONS(1915), - [anon_sym_PIPE_PIPE] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_GT_GT_GT] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_STAR_STAR] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_QMARK_QMARK] = ACTIONS(1915), - [anon_sym_instanceof] = ACTIONS(1913), - [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(1913), - [anon_sym_interface] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), + [245] = { + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_default] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_namespace] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_COMMA] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_typeof] = ACTIONS(1919), + [anon_sym_import] = ACTIONS(1919), + [anon_sym_with] = ACTIONS(1919), + [anon_sym_var] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_switch] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_await] = ACTIONS(1919), + [anon_sym_in] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_debugger] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_throw] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_case] = ACTIONS(1919), + [anon_sym_yield] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1917), + [sym_glimmer_opening_tag] = ACTIONS(1917), + [anon_sym_GT] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1917), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_async] = ACTIONS(1919), + [anon_sym_function] = ACTIONS(1919), + [anon_sym_QMARK_DOT] = ACTIONS(1917), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_using] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_PIPE_PIPE] = ACTIONS(1917), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_GT_GT_GT] = ACTIONS(1917), + [anon_sym_LT_LT] = ACTIONS(1917), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_CARET] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_SLASH] = ACTIONS(1919), + [anon_sym_PERCENT] = ACTIONS(1917), + [anon_sym_STAR_STAR] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1917), + [anon_sym_EQ_EQ] = ACTIONS(1919), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1917), + [anon_sym_BANG_EQ] = ACTIONS(1919), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1917), + [anon_sym_GT_EQ] = ACTIONS(1917), + [anon_sym_QMARK_QMARK] = ACTIONS(1917), + [anon_sym_instanceof] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_void] = ACTIONS(1919), + [anon_sym_delete] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1917), + [sym_number] = ACTIONS(1917), + [sym_private_property_identifier] = ACTIONS(1917), + [sym_this] = ACTIONS(1919), + [sym_super] = ACTIONS(1919), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), + [sym_null] = ACTIONS(1919), + [sym_undefined] = ACTIONS(1919), + [anon_sym_AT] = ACTIONS(1917), + [anon_sym_static] = ACTIONS(1919), + [anon_sym_readonly] = ACTIONS(1919), + [anon_sym_get] = ACTIONS(1919), + [anon_sym_set] = ACTIONS(1919), + [anon_sym_declare] = ACTIONS(1919), + [anon_sym_public] = ACTIONS(1919), + [anon_sym_private] = ACTIONS(1919), + [anon_sym_protected] = ACTIONS(1919), + [anon_sym_override] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_any] = ACTIONS(1919), + [anon_sym_number] = ACTIONS(1919), + [anon_sym_boolean] = ACTIONS(1919), + [anon_sym_string] = ACTIONS(1919), + [anon_sym_symbol] = ACTIONS(1919), + [anon_sym_object] = ACTIONS(1919), + [anon_sym_abstract] = ACTIONS(1919), + [anon_sym_satisfies] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), [sym__automatic_semicolon] = ACTIONS(1917), - [sym__ternary_qmark] = ACTIONS(1915), + [sym__ternary_qmark] = ACTIONS(1917), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1921), - [anon_sym_export] = ACTIONS(1921), + [246] = { + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1923), + [anon_sym_export] = ACTIONS(1923), [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_type] = ACTIONS(1923), [anon_sym_as] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_typeof] = ACTIONS(1921), - [anon_sym_import] = ACTIONS(1921), - [anon_sym_with] = ACTIONS(1921), - [anon_sym_var] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_switch] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_await] = ACTIONS(1921), + [anon_sym_namespace] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_typeof] = ACTIONS(1923), + [anon_sym_import] = ACTIONS(1923), + [anon_sym_with] = ACTIONS(1923), + [anon_sym_var] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_else] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_switch] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_await] = ACTIONS(1923), [anon_sym_in] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_debugger] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_throw] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_case] = ACTIONS(1921), - [anon_sym_yield] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1919), - [sym_glimmer_opening_tag] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_debugger] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_throw] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_case] = ACTIONS(1923), + [anon_sym_yield] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1921), + [sym_glimmer_opening_tag] = ACTIONS(1921), [anon_sym_GT] = ACTIONS(1923), [anon_sym_DOT] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_class] = ACTIONS(1921), - [anon_sym_async] = ACTIONS(1921), - [anon_sym_function] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_class] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_QMARK_DOT] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_using] = ACTIONS(1923), + [anon_sym_AMP_AMP] = ACTIONS(1921), + [anon_sym_PIPE_PIPE] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_GT_GT_GT] = ACTIONS(1921), + [anon_sym_LT_LT] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_PERCENT] = ACTIONS(1921), + [anon_sym_STAR_STAR] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_LT_EQ] = ACTIONS(1921), + [anon_sym_EQ_EQ] = ACTIONS(1923), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1921), + [anon_sym_BANG_EQ] = ACTIONS(1923), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1921), + [anon_sym_GT_EQ] = ACTIONS(1921), + [anon_sym_QMARK_QMARK] = ACTIONS(1921), + [anon_sym_instanceof] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_void] = ACTIONS(1923), + [anon_sym_delete] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1921), + [sym_number] = ACTIONS(1921), + [sym_private_property_identifier] = ACTIONS(1921), + [sym_this] = ACTIONS(1923), + [sym_super] = ACTIONS(1923), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [sym_null] = ACTIONS(1923), + [sym_undefined] = ACTIONS(1923), + [anon_sym_AT] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_readonly] = ACTIONS(1923), + [anon_sym_get] = ACTIONS(1923), + [anon_sym_set] = ACTIONS(1923), + [anon_sym_declare] = ACTIONS(1923), + [anon_sym_public] = ACTIONS(1923), + [anon_sym_private] = ACTIONS(1923), + [anon_sym_protected] = ACTIONS(1923), + [anon_sym_override] = ACTIONS(1923), + [anon_sym_module] = ACTIONS(1923), + [anon_sym_any] = ACTIONS(1923), + [anon_sym_number] = ACTIONS(1923), + [anon_sym_boolean] = ACTIONS(1923), + [anon_sym_string] = ACTIONS(1923), + [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_object] = ACTIONS(1923), + [anon_sym_abstract] = ACTIONS(1923), + [anon_sym_satisfies] = ACTIONS(1923), + [anon_sym_interface] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [sym__automatic_semicolon] = ACTIONS(1921), + [sym__ternary_qmark] = ACTIONS(1921), + [sym_html_comment] = ACTIONS(5), + }, + [247] = { + [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_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_SEMI] = ACTIONS(1925), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1925), + [sym_glimmer_opening_tag] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [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(1921), - [anon_sym_using] = ACTIONS(1921), + [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(1923), + [anon_sym_GT_GT] = ACTIONS(1927), [anon_sym_GT_GT_GT] = ACTIONS(1925), [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1927), [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), + [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(1921), + [anon_sym_LT] = ACTIONS(1927), [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_EQ_EQ] = ACTIONS(1923), + [anon_sym_EQ_EQ] = ACTIONS(1927), [anon_sym_EQ_EQ_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ] = ACTIONS(1923), + [anon_sym_BANG_EQ] = ACTIONS(1927), [anon_sym_BANG_EQ_EQ] = ACTIONS(1925), [anon_sym_GT_EQ] = ACTIONS(1925), [anon_sym_QMARK_QMARK] = ACTIONS(1925), - [anon_sym_instanceof] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1921), - [anon_sym_delete] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1919), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [sym_this] = ACTIONS(1921), - [sym_super] = ACTIONS(1921), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_null] = ACTIONS(1921), - [sym_undefined] = ACTIONS(1921), - [anon_sym_AT] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_readonly] = ACTIONS(1921), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_declare] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1921), - [anon_sym_private] = ACTIONS(1921), - [anon_sym_protected] = ACTIONS(1921), - [anon_sym_override] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_any] = ACTIONS(1921), - [anon_sym_number] = ACTIONS(1921), - [anon_sym_boolean] = ACTIONS(1921), - [anon_sym_string] = ACTIONS(1921), - [anon_sym_symbol] = ACTIONS(1921), - [anon_sym_object] = ACTIONS(1921), - [anon_sym_abstract] = ACTIONS(1921), - [anon_sym_satisfies] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [sym__automatic_semicolon] = ACTIONS(1927), + [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), + [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), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_assignment_pattern] = STATE(5268), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4996), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_assignment_pattern] = STATE(5512), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(5128), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_COMMA] = ACTIONS(1929), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -54703,12 +54736,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -54716,15 +54749,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), @@ -54745,285 +54778,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(1160), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1664), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_extends] = ACTIONS(1666), - [sym_html_comment] = ACTIONS(5), - }, - [250] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(4695), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4696), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(4652), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4656), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [251] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(4599), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4600), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -55031,21 +54846,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -55071,286 +54886,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(1110), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1664), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), - [anon_sym_extends] = ACTIONS(1666), - [sym_html_comment] = ACTIONS(5), - }, - [253] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [250] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2040), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1650), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [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), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [anon_sym_extends] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(5095), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(5096), + [251] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(5151), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(5153), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -55358,21 +55064,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -55398,204 +55104,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(5156), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(5157), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(588), + [252] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1650), [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [256] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1664), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -55613,180 +55210,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1394), [anon_sym_symbol] = ACTIONS(1394), [anon_sym_object] = ACTIONS(1394), - [anon_sym_extends] = ACTIONS(1666), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2080), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(1244), + [253] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4399), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_accessibility_modifier] = STATE(265), + [sym_override_modifier] = STATE(293), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1664), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [anon_sym_extends] = ACTIONS(1666), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1941), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1943), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), + [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), }, - [258] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(4631), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4632), + [254] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(4676), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4677), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -55794,21 +55391,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -55834,177 +55431,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(1308), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1664), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [anon_sym_extends] = ACTIONS(1666), - [sym_html_comment] = ACTIONS(5), - }, - [260] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(4670), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4671), + [255] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(4694), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4695), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -56012,21 +55500,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -56052,68 +55540,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(4993), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [256] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(4610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4611), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1947), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -56121,21 +55609,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), + [anon_sym_using] = ACTIONS(636), [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -56161,307 +55649,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4242), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_accessibility_modifier] = STATE(280), - [sym_override_modifier] = STATE(292), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(187), + [257] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1650), [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(156), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1298), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1951), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(791), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1953), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_override] = ACTIONS(855), - [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_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(4659), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [aux_sym_array_repeat1] = STATE(4661), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(588), + [258] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1635), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1650), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2116), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [259] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1650), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -56469,95 +55957,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [anon_sym_extends] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(3413), - [sym_expression_statement] = STATE(297), - [sym_empty_statement] = STATE(297), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [260] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(1650), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(1650), [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), @@ -56578,302 +56066,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [266] = { - [sym_import] = STATE(3261), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1957), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1959), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(3261), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1961), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(187), + [261] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(4979), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1951), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1963), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(3407), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1965), + [262] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(4572), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4583), + [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -56881,21 +56263,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(1967), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -56920,176 +56303,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(224), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(227), - [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(227), - [anon_sym_await] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_yield] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1971), - [sym_glimmer_opening_tag] = ACTIONS(1971), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_class] = ACTIONS(1969), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_function] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [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), - [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(753), - [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(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [270] = { - [sym_import] = STATE(3407), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1973), + [263] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(4644), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [aux_sym_array_repeat1] = STATE(4645), + [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -57097,21 +56372,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(1959), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -57136,403 +56412,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_identifier] = ACTIONS(1975), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(224), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_typeof] = ACTIONS(1975), - [anon_sym_import] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(227), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1977), - [sym_glimmer_opening_tag] = ACTIONS(1977), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1977), - [anon_sym_class] = ACTIONS(1975), - [anon_sym_async] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1975), - [anon_sym_using] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1977), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_void] = ACTIONS(1975), - [anon_sym_delete] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1977), - [sym_number] = ACTIONS(1977), - [sym_private_property_identifier] = ACTIONS(1977), - [sym_this] = ACTIONS(1975), - [sym_super] = ACTIONS(1975), - [sym_true] = ACTIONS(1975), - [sym_false] = ACTIONS(1975), - [sym_null] = ACTIONS(1975), - [sym_undefined] = ACTIONS(1975), - [anon_sym_AT] = ACTIONS(1977), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_readonly] = ACTIONS(1975), - [anon_sym_get] = ACTIONS(1975), - [anon_sym_set] = ACTIONS(1975), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_declare] = ACTIONS(1975), - [anon_sym_public] = ACTIONS(1975), - [anon_sym_private] = ACTIONS(1975), - [anon_sym_protected] = ACTIONS(1975), - [anon_sym_override] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_any] = ACTIONS(1975), - [anon_sym_number] = ACTIONS(1975), - [anon_sym_boolean] = ACTIONS(1975), - [anon_sym_string] = ACTIONS(1975), - [anon_sym_symbol] = ACTIONS(1975), - [anon_sym_object] = ACTIONS(1975), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), + [264] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1650), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), + [anon_sym_extends] = ACTIONS(1652), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1931), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3522), - [sym_assignment_pattern] = STATE(5404), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3522), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1235), - [sym_subscript_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3522), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(5084), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(588), + [265] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4274), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_override_modifier] = STATE(292), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(574), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1957), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_get] = ACTIONS(548), - [anon_sym_set] = ACTIONS(548), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_public] = ACTIONS(548), - [anon_sym_private] = ACTIONS(548), - [anon_sym_protected] = ACTIONS(548), - [anon_sym_override] = ACTIONS(548), - [anon_sym_module] = ACTIONS(548), - [anon_sym_any] = ACTIONS(548), - [anon_sym_number] = ACTIONS(548), - [anon_sym_boolean] = ACTIONS(548), - [anon_sym_string] = ACTIONS(548), - [anon_sym_symbol] = ACTIONS(548), - [anon_sym_object] = ACTIONS(548), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1959), + [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(835), + [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), }, - [273] = { - [sym_import] = STATE(3407), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), + [266] = { + [sym_import] = STATE(3328), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1979), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1308), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1961), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), - [sym_this] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1963), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [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), [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(3261), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), + [267] = { + [sym_import] = STATE(3328), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -57540,92 +56817,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1967), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_assignment_pattern] = STATE(5404), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(5084), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [268] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_override_modifier] = STATE(295), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -57635,12 +56912,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -57648,25 +56925,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), + [sym_this] = ACTIONS(801), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1969), [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_override] = ACTIONS(835), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -57676,175 +56953,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [276] = { - [sym_import] = STATE(3344), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), + [269] = { + [sym_import] = STATE(3411), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(1985), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(1967), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [277] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), + [270] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(5667), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5667), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(5684), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5684), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -57852,21 +57129,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -57892,68 +57169,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(3407), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), + [271] = { + [sym_import] = STATE(3328), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1991), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(1967), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [272] = { + [sym_import] = STATE(3410), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1635), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym__type_query_member_expression] = STATE(2782), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1979), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [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(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(1981), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), + [sym_html_comment] = ACTIONS(5), + }, + [273] = { + [sym_import] = STATE(3411), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym__type_query_member_expression] = STATE(2782), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1983), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -57961,20 +57454,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(1963), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -58000,172 +57493,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(3301), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym__type_query_member_expression] = STATE(2821), - [sym__type_query_subscript_expression] = STATE(2826), - [sym__type_query_call_expression] = STATE(3005), - [sym__type_query_instantiation_expression] = STATE(3168), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1993), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [274] = { + [sym_import] = STATE(3328), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym__type_query_member_expression] = STATE(2782), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1985), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1987), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [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), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4183), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_override_modifier] = STATE(294), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [275] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_assignment_pattern] = STATE(5197), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4675), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -58175,12 +57668,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -58188,25 +57681,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1997), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1999), + [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(855), + [anon_sym_override] = ACTIONS(115), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -58216,147 +57709,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(3280), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2080), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), + [276] = { + [sym_import] = STATE(3328), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(2001), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), + [sym_this] = ACTIONS(1967), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_import] = STATE(3306), + [sym_expression_statement] = STATE(299), + [sym_empty_statement] = STATE(299), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = 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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1444), + [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(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [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(1252), - [sym_this] = ACTIONS(1985), + [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(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), + [278] = { + [sym_identifier] = ACTIONS(1991), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(128), - [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(128), - [anon_sym_await] = ACTIONS(1969), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_typeof] = ACTIONS(1991), + [anon_sym_import] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_await] = ACTIONS(1991), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1971), - [sym_glimmer_opening_tag] = ACTIONS(1971), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_glimmer_opening_tag] = ACTIONS(1993), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_class] = ACTIONS(1969), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_function] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_class] = ACTIONS(1991), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1991), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_using] = ACTIONS(1991), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -58372,7 +57973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(168), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -58381,12 +57982,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1991), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1991), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -58395,104 +57996,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [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), - [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(753), - [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_TILDE] = ACTIONS(1993), + [anon_sym_void] = ACTIONS(1991), + [anon_sym_delete] = ACTIONS(1991), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1993), + [sym_number] = ACTIONS(1993), + [sym_private_property_identifier] = ACTIONS(1993), + [sym_this] = ACTIONS(1991), + [sym_super] = ACTIONS(1991), + [sym_true] = ACTIONS(1991), + [sym_false] = ACTIONS(1991), + [sym_null] = ACTIONS(1991), + [sym_undefined] = ACTIONS(1991), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [anon_sym_object] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_spread_element] = STATE(5878), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5878), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), + [279] = { + [sym_import] = STATE(3264), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym__type_query_member_expression] = STATE(2832), + [sym__type_query_subscript_expression] = STATE(2839), + [sym__type_query_call_expression] = STATE(3005), + [sym__type_query_instantiation_expression] = STATE(3155), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1995), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -58500,22 +58102,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(1997), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -58540,147 +58141,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(3261), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2116), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(1959), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [285] = { - [sym_identifier] = ACTIONS(1975), - [anon_sym_export] = ACTIONS(1975), + [280] = { + [sym_identifier] = ACTIONS(1991), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1975), + [anon_sym_type] = ACTIONS(1991), [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1975), - [anon_sym_import] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(1991), + [anon_sym_import] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1975), + [anon_sym_await] = ACTIONS(1991), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1977), - [sym_glimmer_opening_tag] = ACTIONS(1977), + [anon_sym_yield] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_glimmer_opening_tag] = ACTIONS(1993), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1977), - [anon_sym_class] = ACTIONS(1975), - [anon_sym_async] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_class] = ACTIONS(1991), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1991), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1975), - [anon_sym_using] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_using] = ACTIONS(1991), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -58696,7 +58189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(168), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -58705,12 +58198,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1991), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1991), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -58719,326 +58212,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_void] = ACTIONS(1975), - [anon_sym_delete] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1977), - [sym_number] = ACTIONS(1977), - [sym_private_property_identifier] = ACTIONS(1977), - [sym_this] = ACTIONS(1975), - [sym_super] = ACTIONS(1975), - [sym_true] = ACTIONS(1975), - [sym_false] = ACTIONS(1975), - [sym_null] = ACTIONS(1975), - [sym_undefined] = ACTIONS(1975), - [anon_sym_AT] = ACTIONS(1977), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_readonly] = ACTIONS(1975), - [anon_sym_get] = ACTIONS(1975), - [anon_sym_set] = ACTIONS(1975), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_declare] = ACTIONS(1975), - [anon_sym_public] = ACTIONS(1975), - [anon_sym_private] = ACTIONS(1975), - [anon_sym_protected] = ACTIONS(1975), - [anon_sym_override] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_any] = ACTIONS(1975), - [anon_sym_number] = ACTIONS(1975), - [anon_sym_boolean] = ACTIONS(1975), - [anon_sym_string] = ACTIONS(1975), - [anon_sym_symbol] = ACTIONS(1975), - [anon_sym_object] = ACTIONS(1975), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_void] = ACTIONS(1991), + [anon_sym_delete] = ACTIONS(1991), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1993), + [sym_number] = ACTIONS(1993), + [sym_private_property_identifier] = ACTIONS(1993), + [sym_this] = ACTIONS(1991), + [sym_super] = ACTIONS(1991), + [sym_true] = ACTIONS(1991), + [sym_false] = ACTIONS(1991), + [sym_null] = ACTIONS(1991), + [sym_undefined] = ACTIONS(1991), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [anon_sym_object] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4223), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_override_modifier] = STATE(296), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2007), - [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(855), - [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), - }, - [287] = { - [sym_import] = STATE(3289), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), + [281] = { + [sym_import] = STATE(3261), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1999), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(1967), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(3413), - [sym_expression_statement] = STATE(300), - [sym_empty_statement] = STATE(300), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [282] = { + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(2001), + [anon_sym_import] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_await] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_LBRACK] = ACTIONS(2003), + [sym_glimmer_opening_tag] = ACTIONS(2003), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_function] = ACTIONS(2001), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(2001), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(2003), + [anon_sym_void] = ACTIONS(2001), + [anon_sym_delete] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2003), + [anon_sym_DASH_DASH] = ACTIONS(2003), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2003), + [sym_number] = ACTIONS(2003), + [sym_private_property_identifier] = ACTIONS(2003), + [sym_this] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_override] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [anon_sym_object] = ACTIONS(2001), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_import] = STATE(3410), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym__type_query_member_expression] = STATE(2782), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = 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(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -59055,98 +58548,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), + [sym_this] = ACTIONS(1981), [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(3344), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), + [284] = { + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_EQ] = ACTIONS(224), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_typeof] = ACTIONS(2001), + [anon_sym_import] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_await] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_LBRACK] = ACTIONS(2003), + [sym_glimmer_opening_tag] = ACTIONS(2003), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_function] = ACTIONS(2001), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(2001), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(2003), + [anon_sym_void] = ACTIONS(2001), + [anon_sym_delete] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2003), + [anon_sym_DASH_DASH] = ACTIONS(2003), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2003), + [sym_number] = ACTIONS(2003), + [sym_private_property_identifier] = ACTIONS(2003), + [sym_this] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_override] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [anon_sym_object] = ACTIONS(2001), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [285] = { + [sym_import] = STATE(3411), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(2011), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(1967), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [286] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3610), + [sym_assignment_pattern] = STATE(5197), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3610), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3610), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4675), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(632), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [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_html_comment] = ACTIONS(5), + }, + [287] = { + [sym_import] = STATE(3254), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2040), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym__type_query_member_expression] = STATE(2782), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(1981), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [sym_html_comment] = ACTIONS(5), + }, + [288] = { + [sym_import] = STATE(3306), + [sym_expression_statement] = STATE(300), + [sym_empty_statement] = STATE(300), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = 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(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -59163,87 +59088,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1985), + [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(3413), - [sym_expression_statement] = STATE(299), - [sym_empty_statement] = STATE(299), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5497), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [289] = { + [sym_import] = STATE(3306), + [sym_expression_statement] = STATE(297), + [sym_empty_statement] = STATE(297), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5482), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -59254,7 +59179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -59278,296 +59203,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(3261), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), + [290] = { + [sym_import] = STATE(3411), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2780), - [sym__type_query_call_expression] = STATE(2830), - [sym__type_query_instantiation_expression] = STATE(2947), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2013), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1416), + [sym__type_query_subscript_expression] = STATE(2783), + [sym__type_query_call_expression] = STATE(2833), + [sym__type_query_instantiation_expression] = STATE(2905), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2011), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(1959), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(1987), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4187), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(187), + [291] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_spread_element] = STATE(5785), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5785), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(2015), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2017), - [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_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4223), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [292] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4153), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -59577,12 +59503,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -59590,18 +59516,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(761), + [sym_this] = ACTIONS(2015), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2007), + [anon_sym_readonly] = ACTIONS(2017), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -59618,63 +59544,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4111), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [293] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4284), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -59684,12 +59610,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -59697,15 +59623,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(2019), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(2021), @@ -59725,60 +59651,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1624), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5507), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [294] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1747), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5385), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -59789,7 +59715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -59813,82 +59739,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym__automatic_semicolon] = ACTIONS(2023), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3625), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3625), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3625), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_pattern] = STATE(4155), - [sym_rest_pattern] = STATE(3554), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(729), + [295] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4268), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -59898,12 +59824,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), + [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -59911,15 +59837,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(803), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(751), + [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(2025), @@ -59939,66 +59865,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, + [296] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3588), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3588), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3588), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3700), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(801), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1969), + [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), + }, [297] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5731), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1882), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5812), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60006,20 +60039,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60046,50 +60079,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1372), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5101), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5101), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1372), - [sym_subscript_expression] = STATE(1372), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5101), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1372), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1373), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5154), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5154), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1373), + [sym_subscript_expression] = STATE(1373), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5154), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1373), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(2029), [anon_sym_export] = ACTIONS(2031), [anon_sym_type] = ACTIONS(2031), @@ -60101,7 +60134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2039), [anon_sym_const] = ACTIONS(2041), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(2043), @@ -60115,7 +60148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -60123,8 +60156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -60152,65 +60185,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5765), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5844), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60218,20 +60251,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60258,65 +60291,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5804), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5757), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(2053), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60324,20 +60357,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60364,169 +60397,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym__extends_clause_single] = STATE(4540), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1308), + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2159), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [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(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), + [sym_html_comment] = ACTIONS(5), + }, + [302] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5589), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1800), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5776), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [303] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5778), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60534,20 +60672,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60573,401 +60711,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2070), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [sym_html_comment] = ACTIONS(5), - }, [304] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1732), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2309), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1110), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5910), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [305] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1615), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2313), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1110), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5602), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2326), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1110), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_mapped_type_clause] = STATE(5617), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2059), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(2063), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60975,524 +61008,734 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(2059), + [anon_sym_readonly] = ACTIONS(2059), + [anon_sym_get] = ACTIONS(2059), + [anon_sym_set] = ACTIONS(2059), + [anon_sym_declare] = ACTIONS(2059), + [anon_sym_public] = ACTIONS(2059), + [anon_sym_private] = ACTIONS(2059), + [anon_sym_protected] = ACTIONS(2059), + [anon_sym_override] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_any] = ACTIONS(2059), + [anon_sym_number] = ACTIONS(2059), + [anon_sym_boolean] = ACTIONS(2059), + [anon_sym_string] = ACTIONS(2059), + [anon_sym_symbol] = ACTIONS(2059), + [anon_sym_object] = ACTIONS(2059), [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2328), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1110), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym__extends_clause_single] = STATE(4771), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1298), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1639), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1110), + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2379), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [309] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5676), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2330), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1110), + [310] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1750), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_sequence_expression] = STATE(5450), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [311] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1599), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5900), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2178), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2071), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [312] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2149), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(43), + [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1444), + [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(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [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(1252), + [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(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2179), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2072), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [313] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2149), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1983), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -61500,83 +61743,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5700), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [314] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1884), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5886), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -61584,20 +61827,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -61623,65 +61866,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [313] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1597), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5759), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [315] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1885), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5899), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -61689,20 +61932,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -61728,65 +61971,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5632), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [316] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1562), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5688), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -61794,20 +62037,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -61833,170 +62076,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1639), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2111), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1204), + [317] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1989), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [sym_html_comment] = ACTIONS(5), + }, + [318] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5557), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5777), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [319] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1886), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5905), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -62004,20 +62352,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -62043,827 +62391,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1732), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(1416), + [320] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2379), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2005), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1615), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(1416), + [321] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5911), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [319] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2374), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [320] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2376), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [321] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1639), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2377), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [322] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2378), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [323] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2112), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [324] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1732), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1599), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1044), [anon_sym_readonly] = ACTIONS(1044), @@ -62883,275 +62601,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_mapped_type_clause] = STATE(5599), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2061), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_namespace] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [322] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2159), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2009), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2069), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2063), - [anon_sym_readonly] = ACTIONS(2063), - [anon_sym_get] = ACTIONS(2063), - [anon_sym_set] = ACTIONS(2063), - [anon_sym_declare] = ACTIONS(2063), - [anon_sym_public] = ACTIONS(2063), - [anon_sym_private] = ACTIONS(2063), - [anon_sym_protected] = ACTIONS(2063), - [anon_sym_override] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_any] = ACTIONS(2063), - [anon_sym_number] = ACTIONS(2063), - [anon_sym_boolean] = ACTIONS(2063), - [anon_sym_string] = ACTIONS(2063), - [anon_sym_symbol] = ACTIONS(2063), - [anon_sym_object] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [326] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1732), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_typeof] = ACTIONS(187), + [323] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2161), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5691), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [324] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2167), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2011), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [sym_html_comment] = ACTIONS(5), + }, + [325] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5816), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -63159,20 +62982,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -63198,60 +63021,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2263), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [326] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1735), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(2055), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -63261,7 +63084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -63285,94 +63108,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1615), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2059), + [327] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1641), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63380,104 +63203,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2459), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2059), + [328] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1782), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63485,104 +63308,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2059), + [329] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1679), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63590,104 +63413,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1639), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2059), + [330] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1614), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63695,104 +63518,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [333] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2059), + [331] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1712), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63800,198 +63623,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1872), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5698), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [332] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [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), [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5642), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [333] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1641), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1507), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -63999,20 +63822,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -64038,380 +63861,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [336] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1204), + [334] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2149), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [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(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [337] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2128), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [335] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1657), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), [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), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1732), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1308), + [336] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2379), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1737), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [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(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1615), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [337] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym__extends_clause_single] = STATE(4481), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -64424,15 +64247,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -64440,209 +64263,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [340] = { - [sym_import] = STATE(3413), + [338] = { + [sym_import] = STATE(3306), [sym_statement_block] = STATE(2161), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), [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), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [341] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2110), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [339] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2167), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1773), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [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(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), + [sym_html_comment] = ACTIONS(5), + }, + [340] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1641), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2051), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -64650,608 +64578,713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), + [sym_html_comment] = ACTIONS(5), + }, + [341] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5736), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [342] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1308), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1782), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, [343] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1639), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1308), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1679), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2068), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1308), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1614), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2070), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1874), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5702), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1712), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2071), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, [346] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2128), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2066), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1244), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2072), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1885), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5704), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1782), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1527), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -65259,20 +65292,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -65299,379 +65332,1324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [348] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1628), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_sequence_expression] = STATE(5508), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1641), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2161), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1160), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1782), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2283), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, [350] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1615), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1576), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(588), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1679), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2296), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, [351] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5809), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1614), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2298), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), + [sym_html_comment] = ACTIONS(5), + }, + [352] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1712), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2299), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), + [sym_html_comment] = ACTIONS(5), + }, + [353] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2300), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), + [sym_html_comment] = ACTIONS(5), + }, + [354] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1641), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2346), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [355] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1782), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2350), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [356] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1679), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [357] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1614), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2365), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [358] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1712), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [359] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [360] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1679), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1560), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -65679,20 +66657,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -65718,275 +66696,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [352] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2263), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1713), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1160), + [361] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1641), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1857), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [353] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2128), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1160), + [362] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1782), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [354] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym__extends_clause_single] = STATE(4703), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [363] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1679), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(2069), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -65999,15 +66977,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -66015,398 +66993,713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [355] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2179), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1668), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), + [364] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1614), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), [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_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [356] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1160), + [365] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1712), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1877), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2178), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1160), + [366] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_void] = ACTIONS(1308), + [anon_sym_delete] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [358] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_mapped_type_clause] = STATE(5901), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [367] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1614), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1572), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [368] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1712), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1573), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [369] = { + [sym_import] = STATE(3334), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1574), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [370] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_mapped_type_clause] = STATE(5639), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(2071), [anon_sym_export] = ACTIONS(2073), [anon_sym_type] = ACTIONS(2073), [anon_sym_namespace] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -66414,20 +67707,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2077), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -66453,270 +67746,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2073), [sym_html_comment] = ACTIONS(5), }, - [359] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2179), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [371] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2159), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(43), + [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [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(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [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(1168), + [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(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [360] = { - [sym_import] = STATE(3413), + [372] = { + [sym_import] = STATE(3306), [sym_statement_block] = STATE(2161), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2047), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(43), + [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1444), + [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(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [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(1252), + [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(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1655), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [373] = { + [sym_import] = STATE(3306), + [sym_statement_block] = STATE(2167), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1695), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(2055), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -66726,7 +68019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -66750,83 +68043,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1602), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [374] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_sequence_expression] = STATE(5560), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -66834,20 +68127,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -66873,65 +68166,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1471), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [375] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1525), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -66939,20 +68231,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -66978,65 +68270,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1639), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1474), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [376] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1488), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -67044,20 +68335,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -67083,65 +68374,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1264), + [377] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -67149,20 +68439,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(2081), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -67188,485 +68478,896 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5846), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [378] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5706), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [379] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1652), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1601), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5726), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [380] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2087), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [sym_html_comment] = ACTIONS(5), + }, + [381] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2199), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1732), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2091), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1204), + [382] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1669), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [383] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2081), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [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), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_sequence_expression] = STATE(5725), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [384] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1751), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [385] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [386] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -67674,20 +69375,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -67713,165 +69414,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2263), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1244), + [387] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(43), + [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1444), + [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(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [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(1252), + [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(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(3413), - [sym_statement_block] = STATE(2178), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1657), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [388] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1618), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -67881,7 +69580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -67905,303 +69604,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [373] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1615), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(3340), - [sym_statement_block] = STATE(1734), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(1308), + [389] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5680), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5680), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5680), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1395), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(2091), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(2095), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_readonly] = ACTIONS(2087), + [anon_sym_get] = ACTIONS(2087), + [anon_sym_set] = ACTIONS(2087), + [anon_sym_declare] = ACTIONS(2087), + [anon_sym_public] = ACTIONS(2087), + [anon_sym_private] = ACTIONS(2087), + [anon_sym_protected] = ACTIONS(2087), + [anon_sym_override] = ACTIONS(2087), + [anon_sym_module] = ACTIONS(2087), + [anon_sym_any] = ACTIONS(2087), + [anon_sym_number] = ACTIONS(2087), + [anon_sym_boolean] = ACTIONS(2087), + [anon_sym_string] = ACTIONS(2087), + [anon_sym_symbol] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(2087), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [390] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1388), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5913), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1388), + [sym_subscript_expression] = STATE(1388), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_namespace] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(2099), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(2103), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(2105), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -68209,217 +69802,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(2107), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(2099), + [anon_sym_readonly] = ACTIONS(2099), + [anon_sym_get] = ACTIONS(2099), + [anon_sym_set] = ACTIONS(2099), + [anon_sym_declare] = ACTIONS(2099), + [anon_sym_public] = ACTIONS(2099), + [anon_sym_private] = ACTIONS(2099), + [anon_sym_protected] = ACTIONS(2099), + [anon_sym_override] = ACTIONS(2099), + [anon_sym_module] = ACTIONS(2099), + [anon_sym_any] = ACTIONS(2099), + [anon_sym_number] = ACTIONS(2099), + [anon_sym_boolean] = ACTIONS(2099), + [anon_sym_string] = ACTIONS(2099), + [anon_sym_symbol] = ACTIONS(2099), + [anon_sym_object] = ACTIONS(2099), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2124), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [391] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1644), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [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(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), + [sym_html_comment] = ACTIONS(5), + }, + [392] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1984), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [sym_html_comment] = ACTIONS(5), + }, + [393] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(2026), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [394] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1986), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2053), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [395] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1988), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), + [sym_html_comment] = ACTIONS(5), + }, + [396] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1990), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -68427,103 +70436,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [378] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2229), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [397] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2203), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -68531,103 +70540,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [398] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -68635,103 +70644,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [399] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1994), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -68739,103 +70748,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [400] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -68843,103 +70852,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [401] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1996), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -68947,103 +70956,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2058), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [402] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -69051,103 +71060,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2059), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [403] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1998), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -69155,103 +71164,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [385] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2060), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [404] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1999), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -69259,103 +71268,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [386] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2061), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [405] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2000), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -69363,103 +71372,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2062), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [406] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -69467,207 +71476,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [407] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2002), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [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), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2064), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [408] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -69675,103 +71684,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2065), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [409] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2006), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -69779,82 +71788,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [410] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), + [sym_html_comment] = ACTIONS(5), + }, + [411] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(2028), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -69862,20 +71975,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -69901,267 +72014,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [sym_html_comment] = ACTIONS(5), - }, - [393] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), - [sym_html_comment] = ACTIONS(5), - }, - [394] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [412] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -70171,7 +72076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -70195,103 +72100,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2073), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [413] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -70299,103 +72204,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2074), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [414] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -70403,103 +72308,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [415] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -70507,181 +72412,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [398] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2080), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1623), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [416] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -70691,7 +72492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -70715,181 +72516,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [400] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1931), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [417] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2040), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [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(709), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(1188), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [418] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -70899,7 +72700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -70923,103 +72724,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2076), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [419] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2123), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -71027,197 +72828,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [sym_html_comment] = ACTIONS(5), - }, - [403] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [420] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2408), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -71225,103 +72922,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [421] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -71329,207 +73026,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [406] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1630), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [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), [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [422] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -71537,103 +73130,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [423] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -71641,103 +73234,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [424] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -71745,103 +73338,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [425] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -71849,103 +73442,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [426] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -71953,103 +73546,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [412] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [427] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72057,103 +73650,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [428] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72161,103 +73754,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [414] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [429] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72265,103 +73858,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [415] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [430] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72369,103 +73962,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [431] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72473,103 +74066,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [432] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72577,103 +74170,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [433] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72681,103 +74274,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [434] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72785,103 +74378,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [420] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2460), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [435] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -72889,311 +74482,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [436] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [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_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [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), [sym_html_comment] = ACTIONS(5), }, - [422] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [437] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2226), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2466), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [438] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -73201,103 +74794,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [439] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -73305,311 +74898,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [425] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1588), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [426] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2120), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [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), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [440] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -73617,207 +75002,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2083), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2111), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [428] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [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), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2389), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [441] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -73825,103 +75106,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [442] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -73929,103 +75210,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), + [443] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), + [anon_sym_new] = ACTIONS(853), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -74033,207 +75314,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5594), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1389), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(187), + [444] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1502), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2095), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_readonly] = ACTIONS(2087), - [anon_sym_get] = ACTIONS(2087), - [anon_sym_set] = ACTIONS(2087), - [anon_sym_declare] = ACTIONS(2087), - [anon_sym_public] = ACTIONS(2087), - [anon_sym_private] = ACTIONS(2087), - [anon_sym_protected] = ACTIONS(2087), - [anon_sym_override] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_any] = ACTIONS(2087), - [anon_sym_number] = ACTIONS(2087), - [anon_sym_boolean] = ACTIONS(2087), - [anon_sym_string] = ACTIONS(2087), - [anon_sym_symbol] = ACTIONS(2087), - [anon_sym_object] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5619), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5619), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5619), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1387), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(815), + [445] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [446] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1393), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5823), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1393), + [sym_subscript_expression] = STATE(1393), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5823), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1393), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2113), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2115), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2119), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2121), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -74241,113 +75626,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2107), + [sym_undefined] = ACTIONS(2123), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_readonly] = ACTIONS(2099), - [anon_sym_get] = ACTIONS(2099), - [anon_sym_set] = ACTIONS(2099), - [anon_sym_declare] = ACTIONS(2099), - [anon_sym_public] = ACTIONS(2099), - [anon_sym_private] = ACTIONS(2099), - [anon_sym_protected] = ACTIONS(2099), - [anon_sym_override] = ACTIONS(2099), - [anon_sym_module] = ACTIONS(2099), - [anon_sym_any] = ACTIONS(2099), - [anon_sym_number] = ACTIONS(2099), - [anon_sym_boolean] = ACTIONS(2099), - [anon_sym_string] = ACTIONS(2099), - [anon_sym_symbol] = ACTIONS(2099), - [anon_sym_object] = ACTIONS(2099), + [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), }, - [434] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [447] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -74355,103 +75740,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1701), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [448] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1508), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -74459,103 +75948,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1712), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [450] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1651), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -74563,103 +76052,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1714), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [451] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -74667,103 +76156,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [452] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2258), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -74771,103 +76260,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [453] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1663), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -74875,103 +76364,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1715), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [454] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1665), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -74979,103 +76468,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [455] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1672), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75083,103 +76572,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1717), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [456] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75187,103 +76676,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [457] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75291,103 +76780,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1721), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [458] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1675), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75395,103 +76884,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [459] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1680), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75499,103 +76988,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1723), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [460] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75603,103 +77092,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1724), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [461] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1688), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75707,103 +77196,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [462] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75811,103 +77300,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1737), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [463] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75915,103 +77404,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1742), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [464] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -76019,77 +77508,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [465] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1738), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [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(709), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), + [sym_html_comment] = ACTIONS(5), + }, + [466] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -76099,7 +77692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -76123,103 +77716,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [467] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -76227,103 +77820,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [468] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -76331,207 +77924,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [469] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1635), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), [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), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [470] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1621), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -76539,727 +78132,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2291), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [471] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2376), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [458] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1769), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1819), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [460] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2385), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1416), + [472] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [473] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2053), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [462] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2092), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [474] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2054), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -77267,77 +78548,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [475] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -77347,7 +78628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -77371,207 +78652,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [464] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2093), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2094), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [476] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -77579,207 +78756,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [466] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2096), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [477] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2057), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -77787,103 +78860,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2097), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [478] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2058), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -77891,103 +78964,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2098), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [479] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2059), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -77995,103 +79068,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2099), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [480] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2060), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78099,103 +79172,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2100), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [481] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78203,103 +79276,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2101), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [482] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2062), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78307,103 +79380,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2102), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [483] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2063), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78411,103 +79484,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2103), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [484] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2064), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78515,103 +79588,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [485] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2065), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78619,103 +79692,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2105), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [486] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2066), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78723,103 +79796,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [487] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2067), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78827,103 +79900,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2107), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [488] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2069), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -78931,77 +80004,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1858), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [489] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -79011,7 +80084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -79035,285 +80108,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [480] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2109), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [481] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1642), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [490] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1709), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -79323,7 +80188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -79347,103 +80212,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2113), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [491] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -79451,103 +80316,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2114), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [492] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2074), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -79555,311 +80420,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [485] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1645), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1669), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [493] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(3606), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(3606), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1234), + [sym_subscript_expression] = STATE(1234), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(3606), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1234), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [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_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(2135), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [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_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2116), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [494] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -79867,207 +80628,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [495] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1518), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(2081), - [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_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2115), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [496] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2075), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -80075,77 +80836,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [497] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -80155,7 +80916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -80179,103 +80940,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2116), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [498] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -80283,103 +81044,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2117), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [499] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -80387,181 +81148,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [493] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1682), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1683), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [500] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1661), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -80571,7 +81228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -80595,93 +81252,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1394), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5560), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1394), - [sym_subscript_expression] = STATE(1394), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1394), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(815), + [501] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1390), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5591), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5591), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1390), + [sym_subscript_expression] = STATE(1390), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5591), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2143), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2145), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -80689,113 +81346,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2119), + [sym_undefined] = ACTIONS(2147), [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), + [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_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2308), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [502] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -80803,394 +81460,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [497] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2310), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), - [sym_html_comment] = ACTIONS(5), - }, - [498] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2311), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), - [sym_html_comment] = ACTIONS(5), - }, - [499] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2167), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [503] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2131), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -81209,8 +81554,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -81237,85 +81582,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2314), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [504] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -81323,103 +81668,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2315), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [505] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -81427,103 +81772,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [506] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2282), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -81531,207 +81876,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [507] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1179), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5854), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5854), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1179), + [sym_subscript_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5854), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1179), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), + [anon_sym_type] = ACTIONS(839), + [anon_sym_namespace] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(851), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(853), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [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), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2318), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [508] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -81739,103 +82084,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2319), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [509] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2285), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -81843,103 +82188,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2320), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [510] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2286), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -81947,103 +82292,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [511] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82051,103 +82396,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2322), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [512] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82155,103 +82500,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [513] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82259,103 +82604,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2324), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [514] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82363,103 +82708,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2325), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [515] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82467,77 +82812,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [516] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1764), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -82547,7 +82892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -82571,103 +82916,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2327), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [517] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82675,285 +83020,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(187), + [518] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1593), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [519] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2295), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1729), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [520] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1615), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -82963,7 +83308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -82987,103 +83332,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2331), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [521] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2297), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83091,103 +83436,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [522] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1617), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [523] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1624), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [524] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1627), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [525] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83195,82 +83852,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1600), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [526] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), + [sym_html_comment] = ACTIONS(5), + }, + [527] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1530), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -83278,20 +84039,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83317,85 +84078,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [528] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1534), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [529] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83403,207 +84268,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1731), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [530] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1537), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2333), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [531] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1538), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [532] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2303), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83611,103 +84580,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [533] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1541), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [534] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83715,103 +84788,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [535] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2306), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83819,93 +84892,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5764), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1391), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2123), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(815), + [536] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1542), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [537] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1392), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5790), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5790), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5790), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1392), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2153), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2157), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2159), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -83913,113 +85090,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2133), + [sym_undefined] = ACTIONS(2161), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_get] = ACTIONS(2125), - [anon_sym_set] = ACTIONS(2125), - [anon_sym_declare] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_private] = ACTIONS(2125), - [anon_sym_protected] = ACTIONS(2125), - [anon_sym_override] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_any] = ACTIONS(2125), - [anon_sym_number] = ACTIONS(2125), - [anon_sym_boolean] = ACTIONS(2125), - [anon_sym_string] = ACTIONS(2125), - [anon_sym_symbol] = ACTIONS(2125), - [anon_sym_object] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_readonly] = ACTIONS(2153), + [anon_sym_get] = ACTIONS(2153), + [anon_sym_set] = ACTIONS(2153), + [anon_sym_declare] = ACTIONS(2153), + [anon_sym_public] = ACTIONS(2153), + [anon_sym_private] = ACTIONS(2153), + [anon_sym_protected] = ACTIONS(2153), + [anon_sym_override] = ACTIONS(2153), + [anon_sym_module] = ACTIONS(2153), + [anon_sym_any] = ACTIONS(2153), + [anon_sym_number] = ACTIONS(2153), + [anon_sym_boolean] = ACTIONS(2153), + [anon_sym_string] = ACTIONS(2153), + [anon_sym_symbol] = ACTIONS(2153), + [anon_sym_object] = ACTIONS(2153), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2340), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [538] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2313), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -84027,82 +85204,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2358), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [539] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1543), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [540] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1660), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, + [541] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2347), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84121,8 +85506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84149,64 +85534,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2359), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [542] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84225,8 +85610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84253,64 +85638,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2360), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [543] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84329,8 +85714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84357,64 +85742,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [544] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84433,8 +85818,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84461,64 +85846,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [545] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2352), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84537,8 +85922,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84565,64 +85950,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [546] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2353), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84641,8 +86026,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84669,64 +86054,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [547] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84745,8 +86130,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84773,64 +86158,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [548] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2355), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84849,8 +86234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84877,64 +86262,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [549] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -84953,8 +86338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -84981,64 +86366,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [550] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2357), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85057,8 +86442,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85085,64 +86470,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [551] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2358), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85161,8 +86546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85189,64 +86574,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [552] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2359), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85265,8 +86650,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85293,64 +86678,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [540] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2371), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [553] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2360), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85369,8 +86754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85397,64 +86782,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [554] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85473,8 +86858,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85501,64 +86886,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [555] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85577,8 +86962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85605,64 +86990,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2375), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [556] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2364), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85681,8 +87066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85709,168 +87094,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(2068), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [557] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1629), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [558] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85889,8 +87274,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -85917,64 +87302,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [559] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -85993,8 +87378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -86021,64 +87406,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(2069), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [560] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1544), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -86086,20 +87471,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -86125,168 +87510,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [548] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [561] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1547), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [562] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -86305,8 +87690,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2083), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2111), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -86333,168 +87718,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [550] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [563] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1548), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [551] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1607), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [564] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -86502,20 +87887,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -86541,64 +87926,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [565] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -86617,8 +88002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -86645,64 +88030,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [566] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -86721,8 +88106,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -86749,64 +88134,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1379), - [sym_expression] = STATE(2383), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5864), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5864), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5892), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2916), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5864), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [567] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(2374), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5872), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5872), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5904), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2898), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5872), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -86825,8 +88210,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -86853,75 +88238,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1392), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5914), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5914), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1392), - [sym_subscript_expression] = STATE(1392), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5914), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1392), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(815), + [568] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1557), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [569] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1389), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5536), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5536), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5536), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2165), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2169), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2143), + [anon_sym_new] = ACTIONS(2171), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -86929,113 +88418,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2173), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_readonly] = ACTIONS(2165), + [anon_sym_get] = ACTIONS(2165), + [anon_sym_set] = ACTIONS(2165), + [anon_sym_declare] = ACTIONS(2165), + [anon_sym_public] = ACTIONS(2165), + [anon_sym_private] = ACTIONS(2165), + [anon_sym_protected] = ACTIONS(2165), + [anon_sym_override] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_any] = ACTIONS(2165), + [anon_sym_number] = ACTIONS(2165), + [anon_sym_boolean] = ACTIONS(2165), + [anon_sym_string] = ACTIONS(2165), + [anon_sym_symbol] = ACTIONS(2165), + [anon_sym_object] = ACTIONS(2165), [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2344), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [570] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2318), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -87043,186 +88532,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [557] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1485), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [571] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -87230,20 +88615,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -87269,168 +88654,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [559] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1632), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [560] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1582), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [572] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1561), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -87438,20 +88719,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -87477,85 +88758,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2080), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [573] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2040), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -87563,103 +88844,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2081), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [574] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2041), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -87667,207 +88948,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [sym_html_comment] = ACTIONS(5), - }, - [563] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1605), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [575] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2043), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5569), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2899), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_namespace] = ACTIONS(1154), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1180), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), + [anon_sym_await] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), [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(709), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1170), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1180), + [anon_sym_delete] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), + [sym_private_property_identifier] = ACTIONS(1188), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -87875,394 +89052,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [sym_html_comment] = ACTIONS(5), - }, - [565] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1610), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [566] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1611), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [567] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1537), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_readonly] = ACTIONS(1152), + [anon_sym_get] = ACTIONS(1152), + [anon_sym_set] = ACTIONS(1152), + [anon_sym_declare] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_any] = ACTIONS(1152), + [anon_sym_number] = ACTIONS(1152), + [anon_sym_boolean] = ACTIONS(1152), + [anon_sym_string] = ACTIONS(1152), + [anon_sym_symbol] = ACTIONS(1152), + [anon_sym_object] = ACTIONS(1152), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1456), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [576] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -88270,20 +89135,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -88309,64 +89174,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1878), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [577] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1890), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -88379,15 +89244,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -88395,186 +89260,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [sym_html_comment] = ACTIONS(5), - }, - [570] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2147), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [578] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1858), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -88587,15 +89348,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -88603,82 +89364,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [579] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1859), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -88691,15 +89452,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -88707,82 +89468,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [580] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -88795,15 +89556,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -88811,186 +89572,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [sym_html_comment] = ACTIONS(5), - }, - [574] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1457), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [581] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89003,15 +89660,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89019,82 +89676,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1889), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [582] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1863), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89107,15 +89764,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89123,82 +89780,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [583] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89211,15 +89868,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89227,82 +89884,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [584] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1865), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89315,15 +89972,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89331,82 +89988,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [585] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89419,15 +90076,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89435,82 +90092,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [586] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1867), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89523,15 +90180,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89539,82 +90196,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [581] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [587] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89627,15 +90284,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89643,82 +90300,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [588] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89731,15 +90388,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89747,82 +90404,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [589] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89835,15 +90492,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89851,82 +90508,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [590] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1871), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -89939,15 +90596,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -89955,186 +90612,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1460), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [591] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1671), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(4088), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(4088), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1301), + [sym_subscript_expression] = STATE(1301), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(4088), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1301), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(1354), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_namespace] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1360), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(2177), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_readonly] = ACTIONS(1354), + [anon_sym_get] = ACTIONS(1354), + [anon_sym_set] = ACTIONS(1354), + [anon_sym_declare] = ACTIONS(1354), + [anon_sym_public] = ACTIONS(1354), + [anon_sym_private] = ACTIONS(1354), + [anon_sym_protected] = ACTIONS(1354), + [anon_sym_override] = ACTIONS(1354), + [anon_sym_module] = ACTIONS(1354), + [anon_sym_any] = ACTIONS(1354), + [anon_sym_number] = ACTIONS(1354), + [anon_sym_boolean] = ACTIONS(1354), + [anon_sym_string] = ACTIONS(1354), + [anon_sym_symbol] = ACTIONS(1354), + [anon_sym_object] = ACTIONS(1354), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1881), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [592] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1872), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -90147,15 +90804,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -90163,82 +90820,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [593] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -90251,15 +90908,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -90267,186 +90924,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [sym_html_comment] = ACTIONS(5), - }, - [588] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1461), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [594] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -90459,15 +91012,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -90475,394 +91028,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1462), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [595] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1463), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [596] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1746), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3633), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3633), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1241), - [sym_subscript_expression] = STATE(1241), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3633), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1241), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(187), + [597] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1748), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2159), + [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(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), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [598] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -90875,15 +91428,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -90891,82 +91444,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [599] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1880), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -90979,15 +91532,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -90995,82 +91548,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1584), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [600] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91078,20 +91631,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91117,168 +91670,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1183), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5822), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5822), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5822), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1183), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(825), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(827), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2147), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(831), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [597] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [601] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91291,15 +91740,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91307,82 +91756,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1585), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [602] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91390,20 +91839,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91429,64 +91878,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1604), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [603] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91494,20 +91943,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91533,64 +91982,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [604] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1881), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91603,15 +92052,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91619,82 +92068,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [605] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [606] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91707,15 +92260,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91723,82 +92276,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1329), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5813), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5813), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5735), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2946), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5813), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [607] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1889), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5821), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5821), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5743), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2919), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5821), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_namespace] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1308), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91811,15 +92364,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1308), [anon_sym_SLASH] = ACTIONS(922), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1292), [anon_sym_void] = ACTIONS(1308), [anon_sym_delete] = ACTIONS(1308), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_DASH_DASH] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1312), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91827,82 +92380,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_readonly] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_declare] = ACTIONS(1282), - [anon_sym_public] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_readonly] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [anon_sym_object] = ACTIONS(1286), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1862), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [608] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -91910,20 +92463,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91949,64 +92502,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [609] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -92014,20 +92567,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2161), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -92053,267 +92606,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1735), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [610] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1578), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(709), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [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(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [sym_html_comment] = ACTIONS(5), - }, - [606] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2174), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [611] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -92323,7 +92772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -92347,597 +92796,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(3951), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(3951), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), + [612] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1742), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), [sym_member_expression] = STATE(1294), [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(3951), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_type] = ACTIONS(1066), - [anon_sym_namespace] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1072), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_readonly] = ACTIONS(1066), - [anon_sym_get] = ACTIONS(1066), - [anon_sym_set] = ACTIONS(1066), - [anon_sym_declare] = ACTIONS(1066), - [anon_sym_public] = ACTIONS(1066), - [anon_sym_private] = ACTIONS(1066), - [anon_sym_protected] = ACTIONS(1066), - [anon_sym_override] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_any] = ACTIONS(1066), - [anon_sym_number] = ACTIONS(1066), - [anon_sym_boolean] = ACTIONS(1066), - [anon_sym_string] = ACTIONS(1066), - [anon_sym_symbol] = ACTIONS(1066), - [anon_sym_object] = ACTIONS(1066), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1484), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1498), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(592), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1390), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5753), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5753), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1390), - [sym_subscript_expression] = STATE(1390), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5753), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1390), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(2169), - [anon_sym_export] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_readonly] = ACTIONS(2171), - [anon_sym_get] = ACTIONS(2171), - [anon_sym_set] = ACTIONS(2171), - [anon_sym_declare] = ACTIONS(2171), - [anon_sym_public] = ACTIONS(2171), - [anon_sym_private] = ACTIONS(2171), - [anon_sym_protected] = ACTIONS(2171), - [anon_sym_override] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2171), - [anon_sym_any] = ACTIONS(2171), - [anon_sym_number] = ACTIONS(2171), - [anon_sym_boolean] = ACTIONS(2171), - [anon_sym_string] = ACTIONS(2171), - [anon_sym_symbol] = ACTIONS(2171), - [anon_sym_object] = ACTIONS(2171), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1626), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1372), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -92947,7 +92876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -92971,82 +92900,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5530), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5530), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5530), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1386), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [613] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1391), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5761), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5761), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1391), + [sym_subscript_expression] = STATE(1391), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5761), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1391), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(2181), [anon_sym_export] = ACTIONS(2183), [anon_sym_type] = ACTIONS(2183), [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(2183), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -93057,7 +92986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -93065,8 +92994,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -93093,293 +93022,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, + [614] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), + [sym_html_comment] = ACTIONS(5), + }, [615] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1671), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [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(709), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [616] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1678), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1667), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(43), + [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [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(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [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(1168), + [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(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), [sym_html_comment] = ACTIONS(5), }, [617] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1299), - [sym_expression] = STATE(1684), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2948), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1299), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1635), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_namespace] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), [anon_sym_SLASH] = ACTIONS(882), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1168), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -93387,394 +93420,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_readonly] = ACTIONS(1132), - [anon_sym_get] = ACTIONS(1132), - [anon_sym_set] = ACTIONS(1132), - [anon_sym_declare] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_protected] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_module] = ACTIONS(1132), - [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_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, [618] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1302), - [sym_expression] = STATE(1616), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5732), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1332), + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1300), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5831), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5831), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5829), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1300), + [sym_subscript_expression] = STATE(1300), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5831), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1228), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1210), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), [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(709), - [anon_sym_async] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1218), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_SLASH] = ACTIONS(882), [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), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1228), + [anon_sym_delete] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1236), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_readonly] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(1330), - [anon_sym_public] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1202), + [anon_sym_set] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_protected] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_module] = ACTIONS(1202), + [anon_sym_any] = ACTIONS(1202), + [anon_sym_number] = ACTIONS(1202), + [anon_sym_boolean] = ACTIONS(1202), + [anon_sym_string] = ACTIONS(1202), + [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_object] = ACTIONS(1202), [sym_html_comment] = ACTIONS(5), }, [619] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2048), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), - [sym_html_comment] = ACTIONS(5), - }, - [620] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2119), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), - [sym_html_comment] = ACTIONS(5), - }, - [621] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1264), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5645), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5645), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5714), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1264), - [sym_subscript_expression] = STATE(1264), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2858), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5645), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1251), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5633), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5633), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5828), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1251), + [sym_subscript_expression] = STATE(1251), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2900), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5633), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(650), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -93782,20 +93607,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_void] = ACTIONS(588), - [anon_sym_delete] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(592), + [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(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(654), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -93821,85 +93646,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1344), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5853), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5741), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2904), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [620] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2085), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), + [sym_html_comment] = ACTIONS(5), + }, + [621] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2309), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_namespace] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_void] = ACTIONS(1110), - [anon_sym_delete] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -93907,82 +93836,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_readonly] = ACTIONS(1084), - [anon_sym_get] = ACTIONS(1084), - [anon_sym_set] = ACTIONS(1084), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_module] = ACTIONS(1084), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1388), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5589), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5589), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1388), - [sym_subscript_expression] = STATE(1388), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5589), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1388), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [622] = { + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5597), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5597), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5597), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1387), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(2193), [anon_sym_export] = ACTIONS(2195), [anon_sym_type] = ACTIONS(2195), [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(2195), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -93993,7 +93922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -94001,8 +93930,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -94029,85 +93958,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, + [623] = { + [sym_import] = STATE(3306), + [sym_parenthesized_expression] = STATE(1294), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(1946), + [sym_yield_expression] = STATE(2234), + [sym_object] = STATE(2310), + [sym_object_pattern] = STATE(5667), + [sym_array] = STATE(2310), + [sym_array_pattern] = STATE(5667), + [sym_glimmer_template] = STATE(2234), + [sym_jsx_element] = STATE(2234), + [sym_jsx_opening_element] = STATE(3051), + [sym_jsx_self_closing_element] = STATE(2234), + [sym_class] = STATE(2310), + [sym_function_expression] = STATE(2310), + [sym_generator_function] = STATE(2310), + [sym_arrow_function] = STATE(2310), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2310), + [sym_new_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_member_expression] = STATE(1294), + [sym_subscript_expression] = STATE(1294), + [sym_assignment_expression] = STATE(2234), + [sym__augmented_assignment_lhs] = STATE(2875), + [sym_augmented_assignment_expression] = STATE(2234), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2234), + [sym_binary_expression] = STATE(2234), + [sym_unary_expression] = STATE(2234), + [sym_update_expression] = STATE(2234), + [sym_string] = STATE(2310), + [sym_template_string] = STATE(2310), + [sym_regex] = STATE(2310), + [sym_meta_property] = STATE(2310), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(2234), + [sym_satisfies_expression] = STATE(2234), + [sym_instantiation_expression] = STATE(2234), + [sym_internal_module] = STATE(2234), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(709), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [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(2109), + [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(1372), + [anon_sym_readonly] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1372), + [anon_sym_set] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1372), + [anon_sym_public] = ACTIONS(1372), + [anon_sym_private] = ACTIONS(1372), + [anon_sym_protected] = ACTIONS(1372), + [anon_sym_override] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), + [anon_sym_object] = ACTIONS(1372), + [sym_html_comment] = ACTIONS(5), + }, [624] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(2346), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5737), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5737), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2892), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5737), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1262), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), - [sym_private_property_identifier] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -94115,82 +94148,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_object] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, [625] = { - [sym_import] = STATE(3340), - [sym_parenthesized_expression] = STATE(1393), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1513), - [sym_yield_expression] = STATE(1699), - [sym_object] = STATE(1627), - [sym_object_pattern] = STATE(5838), - [sym_array] = STATE(1627), - [sym_array_pattern] = STATE(5838), - [sym_glimmer_template] = STATE(1699), - [sym_jsx_element] = STATE(1699), - [sym_jsx_opening_element] = STATE(3074), - [sym_jsx_self_closing_element] = STATE(1699), - [sym_class] = STATE(1627), - [sym_function_expression] = STATE(1627), - [sym_generator_function] = STATE(1627), - [sym_arrow_function] = STATE(1627), - [sym__call_signature] = STATE(5612), - [sym_call_expression] = STATE(1627), - [sym_new_expression] = STATE(1699), - [sym_await_expression] = STATE(1699), - [sym_member_expression] = STATE(1393), - [sym_subscript_expression] = STATE(1393), - [sym_assignment_expression] = STATE(1699), - [sym__augmented_assignment_lhs] = STATE(2886), - [sym_augmented_assignment_expression] = STATE(1699), - [sym__destructuring_pattern] = STATE(5838), - [sym_ternary_expression] = STATE(1699), - [sym_binary_expression] = STATE(1699), - [sym_unary_expression] = STATE(1699), - [sym_update_expression] = STATE(1699), - [sym_string] = STATE(1627), - [sym_template_string] = STATE(1627), - [sym_regex] = STATE(1627), - [sym_meta_property] = STATE(1627), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1393), - [sym_as_expression] = STATE(1699), - [sym_satisfies_expression] = STATE(1699), - [sym_instantiation_expression] = STATE(1699), - [sym_internal_module] = STATE(1699), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4446), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5846), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5846), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5619), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2878), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5846), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1394), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(2207), [anon_sym_type] = ACTIONS(2207), [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(2207), [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(849), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -94201,7 +94234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(646), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -94209,8 +94242,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_number] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), @@ -94238,235 +94271,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [626] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2049), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1336), + [sym_expression] = STATE(2381), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5745), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5745), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5553), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1336), + [sym_subscript_expression] = STATE(1336), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2884), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5745), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1272), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_void] = ACTIONS(1272), + [anon_sym_delete] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1276), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_readonly] = ACTIONS(1250), + [anon_sym_get] = ACTIONS(1250), + [anon_sym_set] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_protected] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_any] = ACTIONS(1250), + [anon_sym_number] = ACTIONS(1250), + [anon_sym_boolean] = ACTIONS(1250), + [anon_sym_string] = ACTIONS(1250), + [anon_sym_symbol] = ACTIONS(1250), + [anon_sym_object] = ACTIONS(1250), [sym_html_comment] = ACTIONS(5), }, [627] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2051), - [sym_primary_expression] = STATE(1894), - [sym_yield_expression] = STATE(2242), - [sym_object] = STATE(2274), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(2274), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(2242), - [sym_jsx_element] = STATE(2242), - [sym_jsx_opening_element] = STATE(3045), - [sym_jsx_self_closing_element] = STATE(2242), - [sym_class] = STATE(2274), - [sym_function_expression] = STATE(2274), - [sym_generator_function] = STATE(2274), - [sym_arrow_function] = STATE(2274), - [sym__call_signature] = STATE(5561), - [sym_call_expression] = STATE(2274), - [sym_new_expression] = STATE(2242), - [sym_await_expression] = STATE(2242), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2242), - [sym__augmented_assignment_lhs] = STATE(2920), - [sym_augmented_assignment_expression] = STATE(2242), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(2242), - [sym_binary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym_update_expression] = STATE(2242), - [sym_string] = STATE(2274), - [sym_template_string] = STATE(2274), - [sym_regex] = STATE(2274), - [sym_meta_property] = STATE(2274), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3900), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2242), - [sym_satisfies_expression] = STATE(2242), - [sym_instantiation_expression] = STATE(2242), - [sym_internal_module] = STATE(2242), - [sym_type_parameters] = STATE(5525), - [aux_sym_export_statement_repeat1] = STATE(4426), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1244), + [sym_import] = STATE(3334), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2292), + [sym_primary_expression] = STATE(1468), + [sym_yield_expression] = STATE(1634), + [sym_object] = STATE(1650), + [sym_object_pattern] = STATE(5861), + [sym_array] = STATE(1650), + [sym_array_pattern] = STATE(5861), + [sym_glimmer_template] = STATE(1634), + [sym_jsx_element] = STATE(1634), + [sym_jsx_opening_element] = STATE(3026), + [sym_jsx_self_closing_element] = STATE(1634), + [sym_class] = STATE(1650), + [sym_function_expression] = STATE(1650), + [sym_generator_function] = STATE(1650), + [sym_arrow_function] = STATE(1650), + [sym__call_signature] = STATE(5765), + [sym_call_expression] = STATE(1650), + [sym_new_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1634), + [sym__augmented_assignment_lhs] = STATE(2891), + [sym_augmented_assignment_expression] = STATE(1634), + [sym__destructuring_pattern] = STATE(5861), + [sym_ternary_expression] = STATE(1634), + [sym_binary_expression] = STATE(1634), + [sym_unary_expression] = STATE(1634), + [sym_update_expression] = STATE(1634), + [sym_string] = STATE(1650), + [sym_template_string] = STATE(1650), + [sym_regex] = STATE(1650), + [sym_meta_property] = STATE(1650), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3742), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1634), + [sym_satisfies_expression] = STATE(1634), + [sym_instantiation_expression] = STATE(1634), + [sym_internal_module] = STATE(1634), + [sym_type_parameters] = STATE(5349), + [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1138), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [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(709), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1244), - [anon_sym_delete] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1252), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_void] = ACTIONS(1138), + [anon_sym_delete] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1142), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_declare] = ACTIONS(1218), - [anon_sym_public] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_protected] = ACTIONS(1218), - [anon_sym_override] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_number] = ACTIONS(1218), - [anon_sym_boolean] = ACTIONS(1218), - [anon_sym_string] = ACTIONS(1218), - [anon_sym_symbol] = ACTIONS(1218), - [anon_sym_object] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_readonly] = ACTIONS(1114), + [anon_sym_get] = ACTIONS(1114), + [anon_sym_set] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_protected] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(1114), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), [sym_html_comment] = ACTIONS(5), }, [628] = { - [sym_namespace_export] = STATE(5437), - [sym_export_clause] = STATE(4429), - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_namespace_export] = STATE(5254), + [sym_export_clause] = STATE(4500), + [sym_declaration] = STATE(859), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), @@ -94475,7 +94508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -94547,27 +94580,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [629] = { - [sym_namespace_export] = STATE(5437), - [sym_export_clause] = STATE(4429), - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_namespace_export] = STATE(5254), + [sym_export_clause] = STATE(4500), + [sym_declaration] = STATE(859), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), @@ -94576,7 +94609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -94648,27 +94681,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [630] = { - [sym_namespace_export] = STATE(5437), - [sym_export_clause] = STATE(4429), - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_namespace_export] = STATE(5254), + [sym_export_clause] = STATE(4500), + [sym_declaration] = STATE(859), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), @@ -94677,7 +94710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -94749,14 +94782,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [631] = { - [sym__call_signature] = STATE(5908), - [sym_string] = STATE(3909), - [sym_formal_parameters] = STATE(3900), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [sym_type_parameters] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym__call_signature] = STATE(5703), + [sym_string] = STATE(3788), + [sym_formal_parameters] = STATE(3742), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [sym_type_parameters] = STATE(5349), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2261), [anon_sym_export] = ACTIONS(2263), [anon_sym_STAR] = ACTIONS(2265), @@ -94765,7 +94798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2263), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2263), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2268), @@ -94848,14 +94881,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [632] = { - [sym__call_signature] = STATE(5908), - [sym_string] = STATE(3909), - [sym_formal_parameters] = STATE(3900), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [sym_type_parameters] = STATE(5525), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym__call_signature] = STATE(5703), + [sym_string] = STATE(3788), + [sym_formal_parameters] = STATE(3742), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [sym_type_parameters] = STATE(5349), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2261), [anon_sym_export] = ACTIONS(2263), [anon_sym_STAR] = ACTIONS(2265), @@ -94864,7 +94897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2263), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_let] = ACTIONS(2263), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2268), @@ -94947,14 +94980,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [633] = { - [sym__call_signature] = STATE(5908), - [sym_string] = STATE(3909), - [sym_formal_parameters] = STATE(3900), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [sym_type_parameters] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym__call_signature] = STATE(5703), + [sym_string] = STATE(3788), + [sym_formal_parameters] = STATE(3742), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [sym_type_parameters] = STATE(5349), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2261), [anon_sym_export] = ACTIONS(2263), [anon_sym_STAR] = ACTIONS(2265), @@ -94963,7 +94996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2263), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_let] = ACTIONS(2263), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2268), @@ -95046,32 +95079,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [634] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2227), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -95144,25 +95177,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [635] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(696), @@ -95242,32 +95275,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [636] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2227), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -95340,25 +95373,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [637] = { - [sym_namespace_export] = STATE(5437), - [sym_export_clause] = STATE(4429), - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), + [sym_namespace_export] = STATE(5254), + [sym_export_clause] = STATE(4500), + [sym_declaration] = STATE(859), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2295), [anon_sym_type] = ACTIONS(2221), @@ -95437,31 +95470,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_namespace_export] = STATE(5437), - [sym_export_clause] = STATE(4429), - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), + [sym_namespace_export] = STATE(5254), + [sym_export_clause] = STATE(4500), + [sym_declaration] = STATE(859), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2299), [anon_sym_type] = ACTIONS(2221), [anon_sym_EQ] = ACTIONS(2297), [anon_sym_as] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2301), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2231), @@ -95472,7 +95505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -95523,8 +95556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2305), [anon_sym_abstract] = ACTIONS(2255), [anon_sym_satisfies] = ACTIONS(162), [anon_sym_interface] = ACTIONS(2257), @@ -95534,31 +95567,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_namespace_export] = STATE(5437), - [sym_export_clause] = STATE(4429), - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), + [sym_namespace_export] = STATE(5254), + [sym_export_clause] = STATE(4500), + [sym_declaration] = STATE(859), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), [anon_sym_EQ] = ACTIONS(2297), [anon_sym_as] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2231), @@ -95569,7 +95602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(884), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -95620,8 +95653,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2305), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2253), [anon_sym_abstract] = ACTIONS(2255), [anon_sym_satisfies] = ACTIONS(162), [anon_sym_interface] = ACTIONS(2257), @@ -95631,12 +95664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [sym_override_modifier] = STATE(2715), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [sym_override_modifier] = STATE(2719), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -95645,7 +95678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -95727,12 +95760,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [641] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [sym_override_modifier] = STATE(2715), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [sym_override_modifier] = STATE(2719), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -95823,12 +95856,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [642] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [sym_override_modifier] = STATE(2715), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [sym_override_modifier] = STATE(2719), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -95837,7 +95870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -95919,20 +95952,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [643] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2307), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -95944,7 +95977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2307), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2307), @@ -95993,8 +96026,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2285), [anon_sym_static] = ACTIONS(2307), [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2313), - [anon_sym_set] = ACTIONS(2313), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), [anon_sym_QMARK] = ACTIONS(723), [anon_sym_declare] = ACTIONS(2307), [anon_sym_public] = ACTIONS(2307), @@ -96014,11 +96047,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [644] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -96027,7 +96060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96109,20 +96142,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [645] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [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_EQ] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_from] = 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_RPAREN] = 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_SEMI] = ACTIONS(1821), + [anon_sym_COLON] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_RBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_EQ_GT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [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), + [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_QMARK] = ACTIONS(1821), + [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_extends] = ACTIONS(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym_html_comment] = ACTIONS(5), + }, + [646] = { + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(2265), [anon_sym_type] = ACTIONS(2307), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96134,7 +96262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2307), @@ -96183,8 +96311,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2285), [anon_sym_static] = ACTIONS(2307), [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2307), - [anon_sym_set] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2313), + [anon_sym_set] = ACTIONS(2313), [anon_sym_QMARK] = ACTIONS(723), [anon_sym_declare] = ACTIONS(2307), [anon_sym_public] = ACTIONS(2307), @@ -96203,12 +96331,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [647] = { + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(122), @@ -96298,211 +96426,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_namespace] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_typeof] = ACTIONS(1770), - [anon_sym_import] = ACTIONS(1770), - [anon_sym_from] = ACTIONS(1770), - [anon_sym_with] = ACTIONS(1770), - [anon_sym_var] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_switch] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_debugger] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_COLON] = ACTIONS(1768), - [anon_sym_case] = ACTIONS(1770), - [anon_sym_yield] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_RBRACK] = ACTIONS(1768), - [sym_glimmer_opening_tag] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_class] = ACTIONS(1770), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_function] = ACTIONS(1770), - [anon_sym_EQ_GT] = ACTIONS(1768), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_void] = ACTIONS(1770), - [anon_sym_delete] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1768), - [anon_sym_DASH_DASH] = ACTIONS(1768), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1768), - [sym_number] = ACTIONS(1768), - [sym_private_property_identifier] = ACTIONS(1768), - [sym_this] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_null] = ACTIONS(1770), - [sym_undefined] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1770), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1768), - [anon_sym_declare] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_private] = ACTIONS(1770), - [anon_sym_protected] = ACTIONS(1770), - [anon_sym_override] = ACTIONS(1770), - [anon_sym_module] = ACTIONS(1770), - [anon_sym_any] = ACTIONS(1770), - [anon_sym_number] = ACTIONS(1770), - [anon_sym_boolean] = ACTIONS(1770), - [anon_sym_string] = ACTIONS(1770), - [anon_sym_symbol] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_abstract] = ACTIONS(1770), - [anon_sym_extends] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [sym_html_comment] = ACTIONS(5), - }, [648] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1746), - [anon_sym_export] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1746), - [anon_sym_namespace] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(1746), - [anon_sym_from] = ACTIONS(1746), - [anon_sym_with] = ACTIONS(1746), - [anon_sym_var] = ACTIONS(1746), - [anon_sym_let] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_else] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_await] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_try] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_debugger] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_throw] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_yield] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_RBRACK] = ACTIONS(1744), - [sym_glimmer_opening_tag] = ACTIONS(1744), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_class] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_void] = ACTIONS(1746), - [anon_sym_delete] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1744), - [sym_number] = ACTIONS(1744), - [sym_private_property_identifier] = ACTIONS(1744), - [sym_this] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_undefined] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_readonly] = ACTIONS(1746), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1746), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_declare] = ACTIONS(1746), - [anon_sym_public] = ACTIONS(1746), - [anon_sym_private] = ACTIONS(1746), - [anon_sym_protected] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(1746), - [anon_sym_module] = ACTIONS(1746), - [anon_sym_any] = ACTIONS(1746), - [anon_sym_number] = ACTIONS(1746), - [anon_sym_boolean] = ACTIONS(1746), - [anon_sym_string] = ACTIONS(1746), - [anon_sym_symbol] = ACTIONS(1746), - [anon_sym_object] = ACTIONS(1746), - [anon_sym_abstract] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1746), - [anon_sym_interface] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_default] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_EQ] = ACTIONS(1919), + [anon_sym_namespace] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_COMMA] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_typeof] = ACTIONS(1919), + [anon_sym_import] = ACTIONS(1919), + [anon_sym_from] = ACTIONS(1919), + [anon_sym_with] = ACTIONS(1919), + [anon_sym_var] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_switch] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_await] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_debugger] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_throw] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_COLON] = ACTIONS(1917), + [anon_sym_case] = ACTIONS(1919), + [anon_sym_yield] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_RBRACK] = ACTIONS(1917), + [sym_glimmer_opening_tag] = ACTIONS(1917), + [anon_sym_GT] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_async] = ACTIONS(1919), + [anon_sym_function] = ACTIONS(1919), + [anon_sym_EQ_GT] = ACTIONS(1917), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_using] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_SLASH] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_void] = ACTIONS(1919), + [anon_sym_delete] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1917), + [sym_number] = ACTIONS(1917), + [sym_private_property_identifier] = ACTIONS(1917), + [sym_this] = ACTIONS(1919), + [sym_super] = ACTIONS(1919), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), + [sym_null] = ACTIONS(1919), + [sym_undefined] = ACTIONS(1919), + [anon_sym_AT] = ACTIONS(1917), + [anon_sym_static] = ACTIONS(1919), + [anon_sym_readonly] = ACTIONS(1919), + [anon_sym_get] = ACTIONS(1919), + [anon_sym_set] = ACTIONS(1919), + [anon_sym_QMARK] = ACTIONS(1917), + [anon_sym_declare] = ACTIONS(1919), + [anon_sym_public] = ACTIONS(1919), + [anon_sym_private] = ACTIONS(1919), + [anon_sym_protected] = ACTIONS(1919), + [anon_sym_override] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_any] = ACTIONS(1919), + [anon_sym_number] = ACTIONS(1919), + [anon_sym_boolean] = ACTIONS(1919), + [anon_sym_string] = ACTIONS(1919), + [anon_sym_symbol] = ACTIONS(1919), + [anon_sym_object] = ACTIONS(1919), + [anon_sym_abstract] = ACTIONS(1919), + [anon_sym_extends] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), [sym_html_comment] = ACTIONS(5), }, [649] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2307), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96514,7 +96547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2307), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2307), @@ -96563,8 +96596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2285), [anon_sym_static] = ACTIONS(2307), [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2313), - [anon_sym_set] = ACTIONS(2313), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), [anon_sym_QMARK] = ACTIONS(723), [anon_sym_declare] = ACTIONS(2307), [anon_sym_public] = ACTIONS(2307), @@ -96584,20 +96617,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [650] = { - [sym_string] = STATE(3909), - [sym__property_name] = STATE(3909), - [sym_computed_property_name] = STATE(3909), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_string] = STATE(3788), + [sym__property_name] = STATE(3788), + [sym_computed_property_name] = STATE(3788), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(2265), [anon_sym_type] = ACTIONS(2307), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96609,7 +96642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2307), @@ -96658,8 +96691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2285), [anon_sym_static] = ACTIONS(2307), [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2307), - [anon_sym_set] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2313), + [anon_sym_set] = ACTIONS(2313), [anon_sym_QMARK] = ACTIONS(723), [anon_sym_declare] = ACTIONS(2307), [anon_sym_public] = ACTIONS(2307), @@ -96679,310 +96712,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [651] = { - [ts_builtin_sym_end] = ACTIONS(2317), - [sym_identifier] = ACTIONS(2319), - [anon_sym_export] = ACTIONS(2319), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2319), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_namespace] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_COMMA] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_typeof] = ACTIONS(2319), - [anon_sym_import] = ACTIONS(2319), - [anon_sym_with] = ACTIONS(2319), - [anon_sym_var] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [anon_sym_BANG] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_switch] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_do] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_debugger] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_throw] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2317), - [anon_sym_COLON] = ACTIONS(2317), - [anon_sym_case] = ACTIONS(2319), - [anon_sym_yield] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_RBRACK] = ACTIONS(2317), - [sym_glimmer_opening_tag] = ACTIONS(2317), - [anon_sym_GT] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_function] = ACTIONS(2319), - [anon_sym_EQ_GT] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_using] = ACTIONS(2319), - [anon_sym_AMP] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2317), - [anon_sym_void] = ACTIONS(2319), - [anon_sym_delete] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2317), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2317), - [sym_number] = ACTIONS(2317), - [sym_private_property_identifier] = ACTIONS(2317), - [sym_this] = ACTIONS(2319), - [sym_super] = ACTIONS(2319), - [sym_true] = ACTIONS(2319), - [sym_false] = ACTIONS(2319), - [sym_null] = ACTIONS(2319), - [sym_undefined] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_readonly] = ACTIONS(2319), - [anon_sym_get] = ACTIONS(2319), - [anon_sym_set] = ACTIONS(2319), - [anon_sym_QMARK] = ACTIONS(2317), - [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_abstract] = ACTIONS(2319), - [anon_sym_extends] = ACTIONS(2319), - [anon_sym_interface] = ACTIONS(2319), - [anon_sym_enum] = ACTIONS(2319), - [sym_html_comment] = ACTIONS(5), - }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_default] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_typeof] = ACTIONS(2323), - [anon_sym_import] = ACTIONS(2323), - [anon_sym_with] = ACTIONS(2323), - [anon_sym_var] = ACTIONS(2323), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_const] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2323), - [anon_sym_if] = ACTIONS(2323), - [anon_sym_switch] = ACTIONS(2323), - [anon_sym_for] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_while] = ACTIONS(2323), - [anon_sym_do] = ACTIONS(2323), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_break] = ACTIONS(2323), - [anon_sym_continue] = ACTIONS(2323), - [anon_sym_debugger] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_COLON] = ACTIONS(2321), - [anon_sym_case] = ACTIONS(2323), - [anon_sym_yield] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_RBRACK] = ACTIONS(2321), - [sym_glimmer_opening_tag] = ACTIONS(2321), - [anon_sym_GT] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_function] = ACTIONS(2323), - [anon_sym_EQ_GT] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_using] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_SLASH] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_void] = ACTIONS(2323), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2321), - [sym_number] = ACTIONS(2321), - [sym_private_property_identifier] = ACTIONS(2321), - [sym_this] = ACTIONS(2323), - [sym_super] = ACTIONS(2323), - [sym_true] = ACTIONS(2323), - [sym_false] = ACTIONS(2323), - [sym_null] = ACTIONS(2323), - [sym_undefined] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(2321), - [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_abstract] = ACTIONS(2323), - [anon_sym_extends] = ACTIONS(2323), - [anon_sym_interface] = ACTIONS(2323), - [anon_sym_enum] = ACTIONS(2323), - [sym_html_comment] = ACTIONS(5), - }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2327), - [anon_sym_export] = ACTIONS(2327), - [anon_sym_default] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_EQ] = ACTIONS(2327), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_typeof] = ACTIONS(2327), - [anon_sym_import] = ACTIONS(2327), - [anon_sym_with] = ACTIONS(2327), - [anon_sym_var] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2325), - [anon_sym_else] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_switch] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_await] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_do] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_debugger] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_throw] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_COLON] = ACTIONS(2325), - [anon_sym_case] = ACTIONS(2327), - [anon_sym_yield] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_RBRACK] = ACTIONS(2325), - [sym_glimmer_opening_tag] = ACTIONS(2325), - [anon_sym_GT] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2327), - [anon_sym_async] = ACTIONS(2327), - [anon_sym_function] = ACTIONS(2327), - [anon_sym_EQ_GT] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2327), - [anon_sym_using] = ACTIONS(2327), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_void] = ACTIONS(2327), - [anon_sym_delete] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2325), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2325), - [sym_number] = ACTIONS(2325), - [sym_private_property_identifier] = ACTIONS(2325), - [sym_this] = ACTIONS(2327), - [sym_super] = ACTIONS(2327), - [sym_true] = ACTIONS(2327), - [sym_false] = ACTIONS(2327), - [sym_null] = ACTIONS(2327), - [sym_undefined] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2327), - [anon_sym_readonly] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2327), - [anon_sym_set] = ACTIONS(2327), - [anon_sym_QMARK] = ACTIONS(2325), - [anon_sym_declare] = ACTIONS(2327), - [anon_sym_public] = ACTIONS(2327), - [anon_sym_private] = ACTIONS(2327), - [anon_sym_protected] = ACTIONS(2327), - [anon_sym_override] = ACTIONS(2327), - [anon_sym_module] = ACTIONS(2327), - [anon_sym_any] = ACTIONS(2327), - [anon_sym_number] = ACTIONS(2327), - [anon_sym_boolean] = ACTIONS(2327), - [anon_sym_string] = ACTIONS(2327), - [anon_sym_symbol] = ACTIONS(2327), - [anon_sym_object] = ACTIONS(2327), - [anon_sym_abstract] = ACTIONS(2327), - [anon_sym_extends] = ACTIONS(2327), - [anon_sym_interface] = ACTIONS(2327), - [anon_sym_enum] = ACTIONS(2327), - [sym_html_comment] = ACTIONS(5), - }, - [654] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2301), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), @@ -96992,7 +96743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -97043,8 +96794,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2291), + [anon_sym_declare] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2317), [anon_sym_abstract] = ACTIONS(2255), [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2293), @@ -97054,118 +96805,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2331), - [anon_sym_export] = ACTIONS(2331), - [anon_sym_default] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2331), - [anon_sym_EQ] = ACTIONS(2331), - [anon_sym_namespace] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_typeof] = ACTIONS(2331), - [anon_sym_import] = ACTIONS(2331), - [anon_sym_with] = ACTIONS(2331), - [anon_sym_var] = ACTIONS(2331), - [anon_sym_let] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_switch] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_await] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_do] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_debugger] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_throw] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2329), - [anon_sym_case] = ACTIONS(2331), - [anon_sym_yield] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_RBRACK] = ACTIONS(2329), - [sym_glimmer_opening_tag] = ACTIONS(2329), - [anon_sym_GT] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2331), - [anon_sym_async] = ACTIONS(2331), - [anon_sym_function] = ACTIONS(2331), - [anon_sym_EQ_GT] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2331), - [anon_sym_using] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_void] = ACTIONS(2331), - [anon_sym_delete] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2329), - [sym_number] = ACTIONS(2329), - [sym_private_property_identifier] = ACTIONS(2329), - [sym_this] = ACTIONS(2331), - [sym_super] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_null] = ACTIONS(2331), - [sym_undefined] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2331), - [anon_sym_readonly] = ACTIONS(2331), - [anon_sym_get] = ACTIONS(2331), - [anon_sym_set] = ACTIONS(2331), - [anon_sym_QMARK] = ACTIONS(2329), - [anon_sym_declare] = ACTIONS(2331), - [anon_sym_public] = ACTIONS(2331), - [anon_sym_private] = ACTIONS(2331), - [anon_sym_protected] = ACTIONS(2331), - [anon_sym_override] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2331), - [anon_sym_any] = ACTIONS(2331), - [anon_sym_number] = ACTIONS(2331), - [anon_sym_boolean] = ACTIONS(2331), - [anon_sym_string] = ACTIONS(2331), - [anon_sym_symbol] = ACTIONS(2331), - [anon_sym_object] = ACTIONS(2331), - [anon_sym_abstract] = ACTIONS(2331), - [anon_sym_extends] = ACTIONS(2331), - [anon_sym_interface] = ACTIONS(2331), - [anon_sym_enum] = ACTIONS(2331), + [652] = { + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_export] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_typeof] = ACTIONS(2321), + [anon_sym_import] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2321), + [anon_sym_var] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_debugger] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_RBRACK] = ACTIONS(2319), + [sym_glimmer_opening_tag] = ACTIONS(2319), + [anon_sym_GT] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_EQ_GT] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_void] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2319), + [sym_number] = ACTIONS(2319), + [sym_private_property_identifier] = ACTIONS(2319), + [sym_this] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [sym_null] = ACTIONS(2321), + [sym_undefined] = ACTIONS(2321), + [anon_sym_AT] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_readonly] = ACTIONS(2321), + [anon_sym_get] = ACTIONS(2321), + [anon_sym_set] = ACTIONS(2321), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_declare] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_override] = ACTIONS(2321), + [anon_sym_module] = ACTIONS(2321), + [anon_sym_any] = ACTIONS(2321), + [anon_sym_number] = ACTIONS(2321), + [anon_sym_boolean] = ACTIONS(2321), + [anon_sym_string] = ACTIONS(2321), + [anon_sym_symbol] = ACTIONS(2321), + [anon_sym_object] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_extends] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), + [653] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2325), + [anon_sym_export] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_EQ] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_COMMA] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_typeof] = ACTIONS(2325), + [anon_sym_import] = ACTIONS(2325), + [anon_sym_with] = ACTIONS(2325), + [anon_sym_var] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_else] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_RPAREN] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_debugger] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_COLON] = ACTIONS(2323), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_RBRACK] = ACTIONS(2323), + [sym_glimmer_opening_tag] = ACTIONS(2323), + [anon_sym_GT] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_function] = ACTIONS(2325), + [anon_sym_EQ_GT] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_SLASH] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_void] = ACTIONS(2325), + [anon_sym_delete] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2323), + [sym_number] = ACTIONS(2323), + [sym_private_property_identifier] = ACTIONS(2323), + [sym_this] = ACTIONS(2325), + [sym_super] = ACTIONS(2325), + [sym_true] = ACTIONS(2325), + [sym_false] = ACTIONS(2325), + [sym_null] = ACTIONS(2325), + [sym_undefined] = ACTIONS(2325), + [anon_sym_AT] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_readonly] = ACTIONS(2325), + [anon_sym_get] = ACTIONS(2325), + [anon_sym_set] = ACTIONS(2325), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_declare] = ACTIONS(2325), + [anon_sym_public] = ACTIONS(2325), + [anon_sym_private] = ACTIONS(2325), + [anon_sym_protected] = ACTIONS(2325), + [anon_sym_override] = ACTIONS(2325), + [anon_sym_module] = ACTIONS(2325), + [anon_sym_any] = ACTIONS(2325), + [anon_sym_number] = ACTIONS(2325), + [anon_sym_boolean] = ACTIONS(2325), + [anon_sym_string] = ACTIONS(2325), + [anon_sym_symbol] = ACTIONS(2325), + [anon_sym_object] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_extends] = ACTIONS(2325), + [anon_sym_interface] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [sym_html_comment] = ACTIONS(5), + }, + [654] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [anon_sym_export] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_typeof] = ACTIONS(2329), + [anon_sym_import] = ACTIONS(2329), + [anon_sym_with] = ACTIONS(2329), + [anon_sym_var] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_debugger] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_COLON] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_RBRACK] = ACTIONS(2327), + [sym_glimmer_opening_tag] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_EQ_GT] = ACTIONS(2327), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_SLASH] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_void] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2327), + [sym_number] = ACTIONS(2327), + [sym_private_property_identifier] = ACTIONS(2327), + [sym_this] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_undefined] = ACTIONS(2329), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_readonly] = ACTIONS(2329), + [anon_sym_get] = ACTIONS(2329), + [anon_sym_set] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2327), + [anon_sym_declare] = ACTIONS(2329), + [anon_sym_public] = ACTIONS(2329), + [anon_sym_private] = ACTIONS(2329), + [anon_sym_protected] = ACTIONS(2329), + [anon_sym_override] = ACTIONS(2329), + [anon_sym_module] = ACTIONS(2329), + [anon_sym_any] = ACTIONS(2329), + [anon_sym_number] = ACTIONS(2329), + [anon_sym_boolean] = ACTIONS(2329), + [anon_sym_string] = ACTIONS(2329), + [anon_sym_symbol] = ACTIONS(2329), + [anon_sym_object] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_extends] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [sym_html_comment] = ACTIONS(5), + }, + [655] = { + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(859), @@ -97180,7 +97119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), + [anon_sym_COLON] = ACTIONS(884), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -97242,29 +97181,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [656] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2333), + [anon_sym_export] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_COMMA] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_typeof] = ACTIONS(2333), + [anon_sym_import] = ACTIONS(2333), + [anon_sym_with] = ACTIONS(2333), + [anon_sym_var] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_debugger] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_COLON] = ACTIONS(2331), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_RBRACK] = ACTIONS(2331), + [sym_glimmer_opening_tag] = ACTIONS(2331), + [anon_sym_GT] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_EQ_GT] = ACTIONS(2331), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_SLASH] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_void] = ACTIONS(2333), + [anon_sym_delete] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2331), + [sym_number] = ACTIONS(2331), + [sym_private_property_identifier] = ACTIONS(2331), + [sym_this] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_true] = ACTIONS(2333), + [sym_false] = ACTIONS(2333), + [sym_null] = ACTIONS(2333), + [sym_undefined] = ACTIONS(2333), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_readonly] = ACTIONS(2333), + [anon_sym_get] = ACTIONS(2333), + [anon_sym_set] = ACTIONS(2333), + [anon_sym_QMARK] = ACTIONS(2331), + [anon_sym_declare] = ACTIONS(2333), + [anon_sym_public] = ACTIONS(2333), + [anon_sym_private] = ACTIONS(2333), + [anon_sym_protected] = ACTIONS(2333), + [anon_sym_override] = ACTIONS(2333), + [anon_sym_module] = ACTIONS(2333), + [anon_sym_any] = ACTIONS(2333), + [anon_sym_number] = ACTIONS(2333), + [anon_sym_boolean] = ACTIONS(2333), + [anon_sym_string] = ACTIONS(2333), + [anon_sym_symbol] = ACTIONS(2333), + [anon_sym_object] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_extends] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [sym_html_comment] = ACTIONS(5), + }, [657] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2227), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), @@ -97274,7 +97307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -97325,8 +97358,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2333), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2291), [anon_sym_abstract] = ACTIONS(2255), [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2293), @@ -97431,32 +97464,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [659] = { - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(1975), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1975), + [anon_sym_namespace] = ACTIONS(2001), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(1975), + [anon_sym_let] = ACTIONS(2001), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(2003), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1977), - [anon_sym_async] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2001), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(2001), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -97498,57 +97531,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(1977), - [sym_private_property_identifier] = ACTIONS(1977), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_readonly] = ACTIONS(1975), - [anon_sym_get] = ACTIONS(1975), - [anon_sym_set] = ACTIONS(1975), + [sym_number] = ACTIONS(2003), + [sym_private_property_identifier] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1975), - [anon_sym_public] = ACTIONS(1975), - [anon_sym_private] = ACTIONS(1975), - [anon_sym_protected] = ACTIONS(1975), - [anon_sym_override] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_any] = ACTIONS(1975), - [anon_sym_number] = ACTIONS(1975), - [anon_sym_boolean] = ACTIONS(1975), - [anon_sym_string] = ACTIONS(1975), - [anon_sym_symbol] = ACTIONS(1975), - [anon_sym_object] = ACTIONS(1975), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_override] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [anon_sym_object] = ACTIONS(2001), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [660] = { - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(696), + [sym_declaration] = STATE(4369), + [sym_variable_declaration] = STATE(4336), + [sym_lexical_declaration] = STATE(4336), + [sym_class_declaration] = STATE(4336), + [sym_function_declaration] = STATE(4336), + [sym_generator_function_declaration] = STATE(4336), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(4336), + [sym_ambient_declaration] = STATE(4336), + [sym_abstract_class_declaration] = STATE(4336), + [sym_module] = STATE(4336), + [sym_internal_module] = STATE(4343), + [sym_import_alias] = STATE(4336), + [sym_interface_declaration] = STATE(4336), + [sym_enum_declaration] = STATE(4336), + [sym_type_alias_declaration] = STATE(4336), + [aux_sym_export_statement_repeat1] = STATE(4333), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2339), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(1969), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_import] = ACTIONS(2343), + [anon_sym_var] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2349), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_function] = ACTIONS(2355), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -97577,7 +97622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(122), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -97585,62 +97630,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ_EQ] = ACTIONS(162), [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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(723), - [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(122), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2357), + [anon_sym_module] = ACTIONS(2359), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_global] = ACTIONS(2363), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2367), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [661] = { - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(1991), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_let] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_let] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1993), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1991), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1991), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -97682,57 +97715,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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), + [sym_number] = ACTIONS(1993), + [sym_private_property_identifier] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), [anon_sym_QMARK] = ACTIONS(723), - [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_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [anon_sym_object] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [662] = { - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(1975), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1975), + [anon_sym_namespace] = ACTIONS(2001), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_let] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_let] = ACTIONS(2001), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(2003), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1977), - [anon_sym_async] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2001), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(2001), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -97774,51 +97807,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(1977), - [sym_private_property_identifier] = ACTIONS(1977), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_readonly] = ACTIONS(1975), - [anon_sym_get] = ACTIONS(1975), - [anon_sym_set] = ACTIONS(1975), + [sym_number] = ACTIONS(2003), + [sym_private_property_identifier] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1975), - [anon_sym_public] = ACTIONS(1975), - [anon_sym_private] = ACTIONS(1975), - [anon_sym_protected] = ACTIONS(1975), - [anon_sym_override] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_any] = ACTIONS(1975), - [anon_sym_number] = ACTIONS(1975), - [anon_sym_boolean] = ACTIONS(1975), - [anon_sym_string] = ACTIONS(1975), - [anon_sym_symbol] = ACTIONS(1975), - [anon_sym_object] = ACTIONS(1975), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_override] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [anon_sym_object] = ACTIONS(2001), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2227), [anon_sym_import] = ACTIONS(2231), @@ -97835,7 +97868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(2242), [anon_sym_async] = ACTIONS(2244), [anon_sym_function] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -97891,44 +97924,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_declaration] = STATE(865), - [sym_variable_declaration] = STATE(814), - [sym_lexical_declaration] = STATE(814), - [sym_class_declaration] = STATE(814), - [sym_function_declaration] = STATE(814), - [sym_generator_function_declaration] = STATE(814), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(814), - [sym_ambient_declaration] = STATE(814), - [sym_abstract_class_declaration] = STATE(814), - [sym_module] = STATE(814), - [sym_internal_module] = STATE(779), - [sym_import_alias] = STATE(814), - [sym_interface_declaration] = STATE(814), - [sym_enum_declaration] = STATE(814), - [sym_type_alias_declaration] = STATE(814), - [aux_sym_export_statement_repeat1] = STATE(4171), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(928), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(1991), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_import] = ACTIONS(2231), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_let] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(1993), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1991), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -97957,7 +97978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2248), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -97965,62 +97986,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ_EQ] = ACTIONS(162), [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_instanceof] = ACTIONS(122), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_satisfies] = ACTIONS(162), - [anon_sym_global] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2259), + [sym_number] = ACTIONS(1993), + [sym_private_property_identifier] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [anon_sym_object] = ACTIONS(1991), + [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_declaration] = STATE(4327), - [sym_variable_declaration] = STATE(4286), - [sym_lexical_declaration] = STATE(4286), - [sym_class_declaration] = STATE(4286), - [sym_function_declaration] = STATE(4286), - [sym_generator_function_declaration] = STATE(4286), - [sym_decorator] = STATE(1236), - [sym_function_signature] = STATE(4286), - [sym_ambient_declaration] = STATE(4286), - [sym_abstract_class_declaration] = STATE(4286), - [sym_module] = STATE(4286), - [sym_internal_module] = STATE(4295), - [sym_import_alias] = STATE(4286), - [sym_interface_declaration] = STATE(4286), - [sym_enum_declaration] = STATE(4286), - [sym_type_alias_declaration] = STATE(4286), - [aux_sym_export_statement_repeat1] = STATE(4323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_EQ] = ACTIONS(928), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_import] = ACTIONS(2343), - [anon_sym_var] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_let] = ACTIONS(2001), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(2003), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2001), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98049,7 +98070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2248), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -98057,50 +98078,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ_EQ] = ACTIONS(162), [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_instanceof] = ACTIONS(122), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_satisfies] = ACTIONS(162), - [anon_sym_global] = ACTIONS(2363), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2367), + [sym_number] = ACTIONS(2003), + [sym_private_property_identifier] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_override] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [anon_sym_object] = ACTIONS(2001), + [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [666] = { - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(1975), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(696), + [sym_declaration] = STATE(819), + [sym_variable_declaration] = STATE(861), + [sym_lexical_declaration] = STATE(861), + [sym_class_declaration] = STATE(861), + [sym_function_declaration] = STATE(861), + [sym_generator_function_declaration] = STATE(861), + [sym_decorator] = STATE(1244), + [sym_function_signature] = STATE(861), + [sym_ambient_declaration] = STATE(861), + [sym_abstract_class_declaration] = STATE(861), + [sym_module] = STATE(861), + [sym_internal_module] = STATE(860), + [sym_import_alias] = STATE(861), + [sym_interface_declaration] = STATE(861), + [sym_enum_declaration] = STATE(861), + [sym_type_alias_declaration] = STATE(861), + [aux_sym_export_statement_repeat1] = STATE(4270), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(1975), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_import] = ACTIONS(2231), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2237), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1977), - [anon_sym_async] = ACTIONS(1975), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2246), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1975), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98129,7 +98174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(122), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -98137,62 +98182,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ_EQ] = ACTIONS(162), [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(1977), - [sym_private_property_identifier] = ACTIONS(1977), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_readonly] = ACTIONS(1975), - [anon_sym_get] = ACTIONS(1975), - [anon_sym_set] = ACTIONS(1975), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1975), - [anon_sym_public] = ACTIONS(1975), - [anon_sym_private] = ACTIONS(1975), - [anon_sym_protected] = ACTIONS(1975), - [anon_sym_override] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_any] = ACTIONS(1975), - [anon_sym_number] = ACTIONS(1975), - [anon_sym_boolean] = ACTIONS(1975), - [anon_sym_string] = ACTIONS(1975), - [anon_sym_symbol] = ACTIONS(1975), - [anon_sym_object] = ACTIONS(1975), - [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_global] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2259), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [667] = { - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(1991), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1993), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1991), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1991), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98234,56 +98267,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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), + [sym_number] = ACTIONS(1993), + [sym_private_property_identifier] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), [anon_sym_QMARK] = ACTIONS(723), - [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_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [anon_sym_object] = ACTIONS(1991), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym__call_signature] = STATE(5663), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(227), [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_RBRACK] = ACTIONS(227), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -98331,7 +98364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2371), [anon_sym_get] = ACTIONS(2371), [anon_sym_set] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(2371), [anon_sym_public] = ACTIONS(2371), [anon_sym_private] = ACTIONS(2371), @@ -98349,31 +98382,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), + [sym__call_signature] = STATE(5679), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), [sym_identifier] = ACTIONS(2381), [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_let] = ACTIONS(2383), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2383), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2383), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -98421,7 +98454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2383), [anon_sym_get] = ACTIONS(2383), [anon_sym_set] = ACTIONS(2383), - [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(2383), [anon_sym_public] = ACTIONS(2383), [anon_sym_private] = ACTIONS(2383), @@ -98439,121 +98472,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(224), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(227), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(227), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_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(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_QMARK] = ACTIONS(753), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [671] = { - [sym__call_signature] = STATE(5663), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(847), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(847), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(847), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -98601,6 +98544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2371), [anon_sym_get] = ACTIONS(2371), [anon_sym_set] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(855), [anon_sym_declare] = ACTIONS(2371), [anon_sym_public] = ACTIONS(2371), [anon_sym_private] = ACTIONS(2371), @@ -98617,20 +98561,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym__call_signature] = STATE(5663), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2371), + [671] = { + [sym__call_signature] = STATE(5679), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_namespace] = ACTIONS(2383), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2383), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_RPAREN] = ACTIONS(162), @@ -98640,11 +98584,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2383), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2383), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98686,52 +98630,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(2371), - [anon_sym_set] = ACTIONS(2371), - [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_static] = ACTIONS(2383), + [anon_sym_readonly] = ACTIONS(2383), + [anon_sym_get] = ACTIONS(2383), + [anon_sym_set] = ACTIONS(2383), + [anon_sym_declare] = ACTIONS(2383), + [anon_sym_public] = ACTIONS(2383), + [anon_sym_private] = ACTIONS(2383), + [anon_sym_protected] = ACTIONS(2383), + [anon_sym_override] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_any] = ACTIONS(2383), + [anon_sym_number] = ACTIONS(2383), + [anon_sym_boolean] = ACTIONS(2383), + [anon_sym_string] = ACTIONS(2383), + [anon_sym_symbol] = ACTIONS(2383), + [anon_sym_object] = ACTIONS(2383), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym__call_signature] = STATE(5908), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), + [672] = { + [sym__call_signature] = STATE(5679), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), + [anon_sym_namespace] = ACTIONS(2383), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2383), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2387), + [anon_sym_new] = ACTIONS(2383), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98773,36 +98719,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2383), + [anon_sym_readonly] = ACTIONS(2383), + [anon_sym_get] = ACTIONS(2383), + [anon_sym_set] = ACTIONS(2383), + [anon_sym_declare] = ACTIONS(2383), + [anon_sym_public] = ACTIONS(2383), + [anon_sym_private] = ACTIONS(2383), + [anon_sym_protected] = ACTIONS(2383), + [anon_sym_override] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_any] = ACTIONS(2383), + [anon_sym_number] = ACTIONS(2383), + [anon_sym_boolean] = ACTIONS(2383), + [anon_sym_string] = ACTIONS(2383), + [anon_sym_symbol] = ACTIONS(2383), + [anon_sym_object] = ACTIONS(2383), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym__call_signature] = STATE(5908), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), + [673] = { + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), [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_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2387), [anon_sym_COMMA] = ACTIONS(162), @@ -98810,14 +98755,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2391), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(878), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2387), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -98882,32 +98827,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym__call_signature] = STATE(5908), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), + [674] = { + [sym__call_signature] = STATE(5679), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2387), + [anon_sym_namespace] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_let] = ACTIONS(2383), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(847), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(888), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2391), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2387), + [anon_sym_new] = ACTIONS(2383), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98949,53 +98895,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2383), + [anon_sym_readonly] = ACTIONS(2383), + [anon_sym_get] = ACTIONS(2383), + [anon_sym_set] = ACTIONS(2383), + [anon_sym_declare] = ACTIONS(2383), + [anon_sym_public] = ACTIONS(2383), + [anon_sym_private] = ACTIONS(2383), + [anon_sym_protected] = ACTIONS(2383), + [anon_sym_override] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_any] = ACTIONS(2383), + [anon_sym_number] = ACTIONS(2383), + [anon_sym_boolean] = ACTIONS(2383), + [anon_sym_string] = ACTIONS(2383), + [anon_sym_symbol] = ACTIONS(2383), + [anon_sym_object] = ACTIONS(2383), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym__call_signature] = STATE(5829), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2393), - [anon_sym_export] = ACTIONS(2395), + [675] = { + [sym__call_signature] = STATE(5703), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(2393), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2395), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2393), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(884), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2395), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2279), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99037,53 +98982,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2395), - [anon_sym_readonly] = ACTIONS(2395), - [anon_sym_get] = ACTIONS(2395), - [anon_sym_set] = ACTIONS(2395), - [anon_sym_declare] = ACTIONS(2395), - [anon_sym_public] = ACTIONS(2395), - [anon_sym_private] = ACTIONS(2395), - [anon_sym_protected] = ACTIONS(2395), - [anon_sym_override] = ACTIONS(2395), - [anon_sym_module] = ACTIONS(2395), - [anon_sym_any] = ACTIONS(2395), - [anon_sym_number] = ACTIONS(2395), - [anon_sym_boolean] = ACTIONS(2395), - [anon_sym_string] = ACTIONS(2395), - [anon_sym_symbol] = ACTIONS(2395), - [anon_sym_object] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_readonly] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2393), + [anon_sym_set] = ACTIONS(2393), + [anon_sym_declare] = ACTIONS(2393), + [anon_sym_public] = ACTIONS(2393), + [anon_sym_private] = ACTIONS(2393), + [anon_sym_protected] = ACTIONS(2393), + [anon_sym_override] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_any] = ACTIONS(2393), + [anon_sym_number] = ACTIONS(2393), + [anon_sym_boolean] = ACTIONS(2393), + [anon_sym_string] = ACTIONS(2393), + [anon_sym_symbol] = ACTIONS(2393), + [anon_sym_object] = ACTIONS(2393), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym__call_signature] = STATE(5908), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), + [676] = { + [sym__call_signature] = STATE(5703), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(2393), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2393), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), + [anon_sym_namespace] = ACTIONS(2393), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), + [anon_sym_in] = ACTIONS(861), + [anon_sym_of] = ACTIONS(864), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2393), [anon_sym_function] = ACTIONS(2389), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2387), + [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99125,51 +99070,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2393), + [anon_sym_readonly] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2393), + [anon_sym_set] = ACTIONS(2393), + [anon_sym_declare] = ACTIONS(2393), + [anon_sym_public] = ACTIONS(2393), + [anon_sym_private] = ACTIONS(2393), + [anon_sym_protected] = ACTIONS(2393), + [anon_sym_override] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_any] = ACTIONS(2393), + [anon_sym_number] = ACTIONS(2393), + [anon_sym_boolean] = ACTIONS(2393), + [anon_sym_string] = ACTIONS(2393), + [anon_sym_symbol] = ACTIONS(2393), + [anon_sym_object] = ACTIONS(2393), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym__call_signature] = STATE(5908), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), + [677] = { + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), [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_EQ] = ACTIONS(872), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2387), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_let] = ACTIONS(2387), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2387), [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(878), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2387), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -99234,33 +99179,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym__call_signature] = STATE(5663), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2371), + [678] = { + [sym__call_signature] = STATE(5703), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(2393), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_let] = ACTIONS(2371), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(888), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99302,52 +99246,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(2371), - [anon_sym_set] = ACTIONS(2371), - [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_static] = ACTIONS(2393), + [anon_sym_readonly] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2393), + [anon_sym_set] = ACTIONS(2393), + [anon_sym_declare] = ACTIONS(2393), + [anon_sym_public] = ACTIONS(2393), + [anon_sym_private] = ACTIONS(2393), + [anon_sym_protected] = ACTIONS(2393), + [anon_sym_override] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_any] = ACTIONS(2393), + [anon_sym_number] = ACTIONS(2393), + [anon_sym_boolean] = ACTIONS(2393), + [anon_sym_string] = ACTIONS(2393), + [anon_sym_symbol] = ACTIONS(2393), + [anon_sym_object] = ACTIONS(2393), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym__call_signature] = STATE(5829), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2393), - [anon_sym_export] = ACTIONS(2395), + [679] = { + [sym__call_signature] = STATE(5703), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(2393), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2395), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2393), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2395), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2395), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99389,53 +99334,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2395), - [anon_sym_readonly] = ACTIONS(2395), - [anon_sym_get] = ACTIONS(2395), - [anon_sym_set] = ACTIONS(2395), - [anon_sym_declare] = ACTIONS(2395), - [anon_sym_public] = ACTIONS(2395), - [anon_sym_private] = ACTIONS(2395), - [anon_sym_protected] = ACTIONS(2395), - [anon_sym_override] = ACTIONS(2395), - [anon_sym_module] = ACTIONS(2395), - [anon_sym_any] = ACTIONS(2395), - [anon_sym_number] = ACTIONS(2395), - [anon_sym_boolean] = ACTIONS(2395), - [anon_sym_string] = ACTIONS(2395), - [anon_sym_symbol] = ACTIONS(2395), - [anon_sym_object] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_readonly] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2393), + [anon_sym_set] = ACTIONS(2393), + [anon_sym_declare] = ACTIONS(2393), + [anon_sym_public] = ACTIONS(2393), + [anon_sym_private] = ACTIONS(2393), + [anon_sym_protected] = ACTIONS(2393), + [anon_sym_override] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_any] = ACTIONS(2393), + [anon_sym_number] = ACTIONS(2393), + [anon_sym_boolean] = ACTIONS(2393), + [anon_sym_string] = ACTIONS(2393), + [anon_sym_symbol] = ACTIONS(2393), + [anon_sym_object] = ACTIONS(2393), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [681] = { - [sym__call_signature] = STATE(5908), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), + [680] = { + [sym__call_signature] = STATE(5703), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(2393), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2393), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), + [anon_sym_namespace] = ACTIONS(2393), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2395), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2387), + [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99477,52 +99422,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2393), + [anon_sym_readonly] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2393), + [anon_sym_set] = ACTIONS(2393), + [anon_sym_declare] = ACTIONS(2393), + [anon_sym_public] = ACTIONS(2393), + [anon_sym_private] = ACTIONS(2393), + [anon_sym_protected] = ACTIONS(2393), + [anon_sym_override] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_any] = ACTIONS(2393), + [anon_sym_number] = ACTIONS(2393), + [anon_sym_boolean] = ACTIONS(2393), + [anon_sym_string] = ACTIONS(2393), + [anon_sym_symbol] = ACTIONS(2393), + [anon_sym_object] = ACTIONS(2393), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [682] = { - [sym__call_signature] = STATE(5745), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), + [681] = { + [sym__call_signature] = STATE(5703), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(2393), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(2393), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99564,50 +99510,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2393), + [anon_sym_readonly] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2393), + [anon_sym_set] = ACTIONS(2393), + [anon_sym_declare] = ACTIONS(2393), + [anon_sym_public] = ACTIONS(2393), + [anon_sym_private] = ACTIONS(2393), + [anon_sym_protected] = ACTIONS(2393), + [anon_sym_override] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_any] = ACTIONS(2393), + [anon_sym_number] = ACTIONS(2393), + [anon_sym_boolean] = ACTIONS(2393), + [anon_sym_string] = ACTIONS(2393), + [anon_sym_symbol] = ACTIONS(2393), + [anon_sym_object] = ACTIONS(2393), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [683] = { - [sym__call_signature] = STATE(5745), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), + [682] = { + [sym__call_signature] = STATE(5772), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), [sym_identifier] = ACTIONS(2397), [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(895), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(900), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -99668,297 +99615,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2399), [anon_sym_object] = ACTIONS(2399), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_namespace] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_typeof] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_await] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_catch] = ACTIONS(1702), - [anon_sym_finally] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [sym_glimmer_opening_tag] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_class] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_using] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1700), - [anon_sym_void] = ACTIONS(1702), - [anon_sym_delete] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1700), - [sym_number] = ACTIONS(1700), - [sym_private_property_identifier] = ACTIONS(1700), - [sym_this] = ACTIONS(1702), - [sym_super] = ACTIONS(1702), - [sym_true] = ACTIONS(1702), - [sym_false] = ACTIONS(1702), - [sym_null] = ACTIONS(1702), - [sym_undefined] = ACTIONS(1702), - [anon_sym_AT] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_readonly] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_declare] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_protected] = ACTIONS(1702), - [anon_sym_override] = ACTIONS(1702), - [anon_sym_module] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_number] = ACTIONS(1702), - [anon_sym_boolean] = ACTIONS(1702), - [anon_sym_string] = ACTIONS(1702), - [anon_sym_symbol] = ACTIONS(1702), - [anon_sym_object] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(1710), + [683] = { + [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_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_SEMI] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_catch] = ACTIONS(1722), + [anon_sym_finally] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [sym_glimmer_opening_tag] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = 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(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), + [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__automatic_semicolon] = ACTIONS(1730), [sym_html_comment] = ACTIONS(5), }, - [685] = { - [sym_catch_clause] = STATE(714), - [sym_finally_clause] = STATE(841), - [ts_builtin_sym_end] = ACTIONS(2401), - [sym_identifier] = ACTIONS(2403), + [684] = { + [sym__call_signature] = STATE(5753), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2401), [anon_sym_export] = ACTIONS(2403), - [anon_sym_default] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(912), + [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_typeof] = ACTIONS(2403), - [anon_sym_import] = ACTIONS(2403), - [anon_sym_with] = ACTIONS(2403), - [anon_sym_var] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_let] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_switch] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_await] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_do] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_debugger] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_throw] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_case] = ACTIONS(2403), - [anon_sym_catch] = ACTIONS(2405), - [anon_sym_finally] = ACTIONS(2407), - [anon_sym_yield] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2401), - [sym_glimmer_opening_tag] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2403), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_using] = ACTIONS(2403), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_SLASH] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_void] = ACTIONS(2403), - [anon_sym_delete] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2401), - [anon_sym_DASH_DASH] = ACTIONS(2401), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2401), - [sym_number] = ACTIONS(2401), - [sym_private_property_identifier] = ACTIONS(2401), - [sym_this] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_true] = ACTIONS(2403), - [sym_false] = ACTIONS(2403), - [sym_null] = ACTIONS(2403), - [sym_undefined] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2401), - [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_abstract] = ACTIONS(2403), - [anon_sym_interface] = ACTIONS(2403), - [anon_sym_enum] = ACTIONS(2403), - [sym_html_comment] = ACTIONS(5), - }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_catch] = ACTIONS(1827), - [anon_sym_finally] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_private_property_identifier] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_get] = ACTIONS(1827), - [anon_sym_set] = ACTIONS(1827), - [anon_sym_declare] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [sym__automatic_semicolon] = ACTIONS(2409), - [sym_html_comment] = ACTIONS(5), - }, - [687] = { - [sym__call_signature] = STATE(5754), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2411), - [anon_sym_export] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(895), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2403), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(918), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2403), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100000,136 +99771,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_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), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [688] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_namespace] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_typeof] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_await] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [sym_glimmer_opening_tag] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_class] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_using] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1700), - [anon_sym_void] = ACTIONS(1702), - [anon_sym_delete] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1700), - [sym_number] = ACTIONS(1700), - [sym_private_property_identifier] = ACTIONS(1700), - [sym_this] = ACTIONS(1702), - [sym_super] = ACTIONS(1702), - [sym_true] = ACTIONS(1702), - [sym_false] = ACTIONS(1702), - [sym_null] = ACTIONS(1702), - [sym_undefined] = ACTIONS(1702), - [anon_sym_AT] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_readonly] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_declare] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_protected] = ACTIONS(1702), - [anon_sym_override] = ACTIONS(1702), - [anon_sym_module] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_number] = ACTIONS(1702), - [anon_sym_boolean] = ACTIONS(1702), - [anon_sym_string] = ACTIONS(1702), - [anon_sym_symbol] = ACTIONS(1702), - [anon_sym_object] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [anon_sym_PIPE_RBRACE] = ACTIONS(1700), - [sym__automatic_semicolon] = ACTIONS(2415), - [sym_html_comment] = ACTIONS(5), - }, - [689] = { - [sym__call_signature] = STATE(5580), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2417), - [anon_sym_export] = ACTIONS(2419), + [685] = { + [sym__call_signature] = STATE(5753), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2401), + [anon_sym_export] = ACTIONS(2403), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2403), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_function] = ACTIONS(2279), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(918), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2403), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100171,52 +99858,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [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(162), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [690] = { - [sym__call_signature] = STATE(5754), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2411), - [anon_sym_export] = ACTIONS(2413), + [686] = { + [sym_catch_clause] = STATE(706), + [sym_finally_clause] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2407), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2407), + [anon_sym_namespace] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_typeof] = ACTIONS(2407), + [anon_sym_import] = ACTIONS(2407), + [anon_sym_with] = ACTIONS(2407), + [anon_sym_var] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_switch] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_await] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_debugger] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_finally] = ACTIONS(2411), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [sym_glimmer_opening_tag] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2407), + [anon_sym_async] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2407), + [anon_sym_using] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_SLASH] = ACTIONS(2407), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_void] = ACTIONS(2407), + [anon_sym_delete] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2405), + [sym_number] = ACTIONS(2405), + [sym_private_property_identifier] = ACTIONS(2405), + [sym_this] = ACTIONS(2407), + [sym_super] = ACTIONS(2407), + [sym_true] = ACTIONS(2407), + [sym_false] = ACTIONS(2407), + [sym_null] = ACTIONS(2407), + [sym_undefined] = ACTIONS(2407), + [anon_sym_AT] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_readonly] = ACTIONS(2407), + [anon_sym_get] = ACTIONS(2407), + [anon_sym_set] = ACTIONS(2407), + [anon_sym_declare] = ACTIONS(2407), + [anon_sym_public] = ACTIONS(2407), + [anon_sym_private] = ACTIONS(2407), + [anon_sym_protected] = ACTIONS(2407), + [anon_sym_override] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_any] = ACTIONS(2407), + [anon_sym_number] = ACTIONS(2407), + [anon_sym_boolean] = ACTIONS(2407), + [anon_sym_string] = ACTIONS(2407), + [anon_sym_symbol] = ACTIONS(2407), + [anon_sym_object] = ACTIONS(2407), + [anon_sym_abstract] = ACTIONS(2407), + [anon_sym_interface] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [sym_html_comment] = ACTIONS(5), + }, + [687] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_catch] = ACTIONS(1873), + [anon_sym_finally] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(2413), + [sym_html_comment] = ACTIONS(5), + }, + [688] = { + [sym__call_signature] = STATE(5566), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2417), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(954), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2417), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(952), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100258,38 +100119,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_override] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + [anon_sym_object] = ACTIONS(2417), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [689] = { + [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_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(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_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_SEMI] = ACTIONS(1751), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1751), + [sym_glimmer_opening_tag] = 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(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), + [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), + [anon_sym_PIPE_RBRACE] = ACTIONS(1751), + [sym__automatic_semicolon] = ACTIONS(1751), + [sym_html_comment] = ACTIONS(5), + }, + [690] = { + [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_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(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_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_SEMI] = ACTIONS(1751), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_catch] = ACTIONS(1753), + [anon_sym_finally] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1751), + [sym_glimmer_opening_tag] = 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(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), + [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_html_comment] = ACTIONS(5), + }, [691] = { - [sym__call_signature] = STATE(5580), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2417), - [anon_sym_export] = ACTIONS(2419), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1923), + [anon_sym_export] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_type] = ACTIONS(1923), + [anon_sym_namespace] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_typeof] = ACTIONS(1923), + [anon_sym_import] = ACTIONS(1923), + [anon_sym_with] = ACTIONS(1923), + [anon_sym_var] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_else] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_switch] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_await] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_debugger] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_throw] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_case] = ACTIONS(1923), + [anon_sym_yield] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1921), + [sym_glimmer_opening_tag] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_class] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_using] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_void] = ACTIONS(1923), + [anon_sym_delete] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1921), + [sym_number] = ACTIONS(1921), + [sym_private_property_identifier] = ACTIONS(1921), + [sym_this] = ACTIONS(1923), + [sym_super] = ACTIONS(1923), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [sym_null] = ACTIONS(1923), + [sym_undefined] = ACTIONS(1923), + [anon_sym_AT] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_readonly] = ACTIONS(1923), + [anon_sym_get] = ACTIONS(1923), + [anon_sym_set] = ACTIONS(1923), + [anon_sym_declare] = ACTIONS(1923), + [anon_sym_public] = ACTIONS(1923), + [anon_sym_private] = ACTIONS(1923), + [anon_sym_protected] = ACTIONS(1923), + [anon_sym_override] = ACTIONS(1923), + [anon_sym_module] = ACTIONS(1923), + [anon_sym_any] = ACTIONS(1923), + [anon_sym_number] = ACTIONS(1923), + [anon_sym_boolean] = ACTIONS(1923), + [anon_sym_string] = ACTIONS(1923), + [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_object] = ACTIONS(1923), + [anon_sym_abstract] = ACTIONS(1923), + [anon_sym_interface] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_PIPE_RBRACE] = ACTIONS(1921), + [sym__automatic_semicolon] = ACTIONS(1921), + [sym_html_comment] = ACTIONS(5), + }, + [692] = { + [sym__call_signature] = STATE(5588), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2419), + [anon_sym_export] = ACTIONS(2421), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), @@ -100297,11 +100416,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2421), [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100343,51 +100462,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_readonly] = ACTIONS(2421), + [anon_sym_get] = ACTIONS(2421), + [anon_sym_set] = ACTIONS(2421), + [anon_sym_declare] = ACTIONS(2421), + [anon_sym_public] = ACTIONS(2421), + [anon_sym_private] = ACTIONS(2421), + [anon_sym_protected] = ACTIONS(2421), + [anon_sym_override] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_any] = ACTIONS(2421), + [anon_sym_number] = ACTIONS(2421), + [anon_sym_boolean] = ACTIONS(2421), + [anon_sym_string] = ACTIONS(2421), + [anon_sym_symbol] = ACTIONS(2421), + [anon_sym_object] = ACTIONS(2421), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [692] = { - [sym__call_signature] = STATE(5580), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2417), - [anon_sym_export] = ACTIONS(2419), + [693] = { + [sym__call_signature] = STATE(5772), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(940), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100429,224 +100549,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [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__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_catch] = ACTIONS(1827), - [anon_sym_finally] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_private_property_identifier] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_get] = ACTIONS(1827), - [anon_sym_set] = ACTIONS(1827), - [anon_sym_declare] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [sym_html_comment] = ACTIONS(5), - }, [694] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_identifier] = ACTIONS(1847), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_typeof] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1847), - [anon_sym_with] = ACTIONS(1847), - [anon_sym_var] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_await] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_finally] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1845), - [sym_glimmer_opening_tag] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_void] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1845), - [sym_number] = ACTIONS(1845), - [sym_private_property_identifier] = ACTIONS(1845), - [sym_this] = ACTIONS(1847), - [sym_super] = ACTIONS(1847), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_undefined] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1845), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_readonly] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_protected] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_any] = ACTIONS(1847), - [anon_sym_number] = ACTIONS(1847), - [anon_sym_boolean] = ACTIONS(1847), - [anon_sym_string] = ACTIONS(1847), - [anon_sym_symbol] = ACTIONS(1847), - [anon_sym_object] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_interface] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_PIPE_RBRACE] = ACTIONS(1871), + [sym__automatic_semicolon] = ACTIONS(2423), [sym_html_comment] = ACTIONS(5), }, [695] = { - [sym__call_signature] = STATE(5754), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2411), - [anon_sym_export] = ACTIONS(2413), + [sym__call_signature] = STATE(5588), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2419), + [anon_sym_export] = ACTIONS(2421), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100688,51 +100720,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2421), + [anon_sym_readonly] = ACTIONS(2421), + [anon_sym_get] = ACTIONS(2421), + [anon_sym_set] = ACTIONS(2421), + [anon_sym_declare] = ACTIONS(2421), + [anon_sym_public] = ACTIONS(2421), + [anon_sym_private] = ACTIONS(2421), + [anon_sym_protected] = ACTIONS(2421), + [anon_sym_override] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_any] = ACTIONS(2421), + [anon_sym_number] = ACTIONS(2421), + [anon_sym_boolean] = ACTIONS(2421), + [anon_sym_string] = ACTIONS(2421), + [anon_sym_symbol] = ACTIONS(2421), + [anon_sym_object] = ACTIONS(2421), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym__call_signature] = STATE(5754), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2411), - [anon_sym_export] = ACTIONS(2413), + [sym__call_signature] = STATE(5588), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2419), + [anon_sym_export] = ACTIONS(2421), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(895), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_let] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2279), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100774,51 +100806,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_static] = ACTIONS(2421), + [anon_sym_readonly] = ACTIONS(2421), + [anon_sym_get] = ACTIONS(2421), + [anon_sym_set] = ACTIONS(2421), + [anon_sym_declare] = ACTIONS(2421), + [anon_sym_public] = ACTIONS(2421), + [anon_sym_private] = ACTIONS(2421), + [anon_sym_protected] = ACTIONS(2421), + [anon_sym_override] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_any] = ACTIONS(2421), + [anon_sym_number] = ACTIONS(2421), + [anon_sym_boolean] = ACTIONS(2421), + [anon_sym_string] = ACTIONS(2421), + [anon_sym_symbol] = ACTIONS(2421), + [anon_sym_object] = ACTIONS(2421), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym__call_signature] = STATE(5541), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), + [sym__call_signature] = STATE(5772), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(942), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2423), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(900), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2423), + [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2423), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100860,395 +100893,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_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(162), [sym_html_comment] = ACTIONS(5), }, [698] = { - [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_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_SEMI] = ACTIONS(1831), - [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), - [anon_sym_PIPE_RBRACE] = ACTIONS(1831), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym_html_comment] = ACTIONS(5), - }, - [699] = { - [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_COMMA] = 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_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_SEMI] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [sym_glimmer_opening_tag] = 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(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), - [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), - [anon_sym_PIPE_RBRACE] = ACTIONS(1849), - [sym__automatic_semicolon] = ACTIONS(1849), - [sym_html_comment] = ACTIONS(5), - }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_private_property_identifier] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_get] = ACTIONS(1827), - [anon_sym_set] = ACTIONS(1827), - [anon_sym_declare] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_PIPE_RBRACE] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(1825), - [sym_html_comment] = ACTIONS(5), - }, - [701] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_identifier] = ACTIONS(1847), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_typeof] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1847), - [anon_sym_with] = ACTIONS(1847), - [anon_sym_var] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_await] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1845), - [sym_glimmer_opening_tag] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_void] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1845), - [sym_number] = ACTIONS(1845), - [sym_private_property_identifier] = ACTIONS(1845), - [sym_this] = ACTIONS(1847), - [sym_super] = ACTIONS(1847), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_undefined] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1845), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_readonly] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_protected] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_any] = ACTIONS(1847), - [anon_sym_number] = ACTIONS(1847), - [anon_sym_boolean] = ACTIONS(1847), - [anon_sym_string] = ACTIONS(1847), - [anon_sym_symbol] = ACTIONS(1847), - [anon_sym_object] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_interface] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_PIPE_RBRACE] = ACTIONS(1845), - [sym__automatic_semicolon] = ACTIONS(1845), - [sym_html_comment] = ACTIONS(5), - }, - [702] = { - [sym__call_signature] = STATE(5541), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), + [sym__call_signature] = STATE(5772), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(895), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2423), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2423), + [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2423), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101290,38 +100979,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_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(162), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym__call_signature] = STATE(5580), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2417), - [anon_sym_export] = ACTIONS(2419), + [699] = { + [ts_builtin_sym_end] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), + [anon_sym_export] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_namespace] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_typeof] = ACTIONS(1767), + [anon_sym_import] = ACTIONS(1767), + [anon_sym_with] = ACTIONS(1767), + [anon_sym_var] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_switch] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_debugger] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_throw] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_case] = ACTIONS(1767), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1765), + [sym_glimmer_opening_tag] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_class] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_using] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_void] = ACTIONS(1767), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1765), + [sym_number] = ACTIONS(1765), + [sym_private_property_identifier] = ACTIONS(1765), + [sym_this] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_null] = ACTIONS(1767), + [sym_undefined] = ACTIONS(1767), + [anon_sym_AT] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_readonly] = ACTIONS(1767), + [anon_sym_get] = ACTIONS(1767), + [anon_sym_set] = ACTIONS(1767), + [anon_sym_declare] = ACTIONS(1767), + [anon_sym_public] = ACTIONS(1767), + [anon_sym_private] = ACTIONS(1767), + [anon_sym_protected] = ACTIONS(1767), + [anon_sym_override] = ACTIONS(1767), + [anon_sym_module] = ACTIONS(1767), + [anon_sym_any] = ACTIONS(1767), + [anon_sym_number] = ACTIONS(1767), + [anon_sym_boolean] = ACTIONS(1767), + [anon_sym_string] = ACTIONS(1767), + [anon_sym_symbol] = ACTIONS(1767), + [anon_sym_object] = ACTIONS(1767), + [anon_sym_abstract] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_PIPE_RBRACE] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(1765), + [sym_html_comment] = ACTIONS(5), + }, + [700] = { + [sym__call_signature] = STATE(5588), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2419), + [anon_sym_export] = ACTIONS(2421), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), @@ -101329,11 +101104,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_function] = ACTIONS(2391), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2395), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101375,51 +101150,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_readonly] = ACTIONS(2421), + [anon_sym_get] = ACTIONS(2421), + [anon_sym_set] = ACTIONS(2421), + [anon_sym_declare] = ACTIONS(2421), + [anon_sym_public] = ACTIONS(2421), + [anon_sym_private] = ACTIONS(2421), + [anon_sym_protected] = ACTIONS(2421), + [anon_sym_override] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_any] = ACTIONS(2421), + [anon_sym_number] = ACTIONS(2421), + [anon_sym_boolean] = ACTIONS(2421), + [anon_sym_string] = ACTIONS(2421), + [anon_sym_symbol] = ACTIONS(2421), + [anon_sym_object] = ACTIONS(2421), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym__call_signature] = STATE(5580), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2417), - [anon_sym_export] = ACTIONS(2419), + [701] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_catch] = ACTIONS(1873), + [anon_sym_finally] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym_html_comment] = ACTIONS(5), + }, + [702] = { + [sym__call_signature] = STATE(5566), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2417), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(928), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_EQ] = ACTIONS(946), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_function] = ACTIONS(2425), - [anon_sym_EQ_GT] = ACTIONS(934), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(952), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101461,137 +101323,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_override] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + [anon_sym_object] = ACTIONS(2417), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_private_property_identifier] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_get] = ACTIONS(1827), - [anon_sym_set] = ACTIONS(1827), - [anon_sym_declare] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_PIPE_RBRACE] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(2427), + [703] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_PIPE_RBRACE] = ACTIONS(1871), + [sym__automatic_semicolon] = ACTIONS(1871), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [704] = { + [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_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_SEMI] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [sym_glimmer_opening_tag] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = 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(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), + [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(2425), + [sym_html_comment] = ACTIONS(5), + }, + [705] = { + [sym__call_signature] = STATE(5588), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2419), + [anon_sym_export] = ACTIONS(2421), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2427), + [anon_sym_EQ_GT] = ACTIONS(924), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101633,135 +101580,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_readonly] = ACTIONS(2421), + [anon_sym_get] = ACTIONS(2421), + [anon_sym_set] = ACTIONS(2421), + [anon_sym_declare] = ACTIONS(2421), + [anon_sym_public] = ACTIONS(2421), + [anon_sym_private] = ACTIONS(2421), + [anon_sym_protected] = ACTIONS(2421), + [anon_sym_override] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_any] = ACTIONS(2421), + [anon_sym_number] = ACTIONS(2421), + [anon_sym_boolean] = ACTIONS(2421), + [anon_sym_string] = ACTIONS(2421), + [anon_sym_symbol] = ACTIONS(2421), + [anon_sym_object] = ACTIONS(2421), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym_statement_block] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1672), + [706] = { + [sym_finally_clause] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2431), + [anon_sym_export] = ACTIONS(2431), + [anon_sym_default] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2431), + [anon_sym_namespace] = ACTIONS(2431), [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_glimmer_opening_tag] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [sym_this] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_undefined] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_readonly] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_object] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_typeof] = ACTIONS(2431), + [anon_sym_import] = ACTIONS(2431), + [anon_sym_with] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2431), + [anon_sym_let] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_switch] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [anon_sym_do] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_debugger] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_throw] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_case] = ACTIONS(2431), + [anon_sym_finally] = ACTIONS(2411), + [anon_sym_yield] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [sym_glimmer_opening_tag] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_new] = ACTIONS(2431), + [anon_sym_using] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_SLASH] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2429), + [anon_sym_void] = ACTIONS(2431), + [anon_sym_delete] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2429), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2429), + [sym_number] = ACTIONS(2429), + [sym_private_property_identifier] = ACTIONS(2429), + [sym_this] = ACTIONS(2431), + [sym_super] = ACTIONS(2431), + [sym_true] = ACTIONS(2431), + [sym_false] = ACTIONS(2431), + [sym_null] = ACTIONS(2431), + [sym_undefined] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2431), + [anon_sym_readonly] = ACTIONS(2431), + [anon_sym_get] = ACTIONS(2431), + [anon_sym_set] = ACTIONS(2431), + [anon_sym_declare] = ACTIONS(2431), + [anon_sym_public] = ACTIONS(2431), + [anon_sym_private] = ACTIONS(2431), + [anon_sym_protected] = ACTIONS(2431), + [anon_sym_override] = ACTIONS(2431), + [anon_sym_module] = ACTIONS(2431), + [anon_sym_any] = ACTIONS(2431), + [anon_sym_number] = ACTIONS(2431), + [anon_sym_boolean] = ACTIONS(2431), + [anon_sym_string] = ACTIONS(2431), + [anon_sym_symbol] = ACTIONS(2431), + [anon_sym_object] = ACTIONS(2431), + [anon_sym_abstract] = ACTIONS(2431), + [anon_sym_interface] = ACTIONS(2431), + [anon_sym_enum] = ACTIONS(2431), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [707] = { + [sym__call_signature] = STATE(5912), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2433), + [anon_sym_export] = ACTIONS(2435), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2435), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(966), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2435), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101803,38 +101751,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_readonly] = ACTIONS(2435), + [anon_sym_get] = ACTIONS(2435), + [anon_sym_set] = ACTIONS(2435), + [anon_sym_declare] = ACTIONS(2435), + [anon_sym_public] = ACTIONS(2435), + [anon_sym_private] = ACTIONS(2435), + [anon_sym_protected] = ACTIONS(2435), + [anon_sym_override] = ACTIONS(2435), + [anon_sym_module] = ACTIONS(2435), + [anon_sym_any] = ACTIONS(2435), + [anon_sym_number] = ACTIONS(2435), + [anon_sym_boolean] = ACTIONS(2435), + [anon_sym_string] = ACTIONS(2435), + [anon_sym_symbol] = ACTIONS(2435), + [anon_sym_object] = ACTIONS(2435), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym__call_signature] = STATE(5754), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2411), - [anon_sym_export] = ACTIONS(2413), + [708] = { + [sym__call_signature] = STATE(5772), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), @@ -101842,11 +101790,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101888,38 +101836,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_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(162), [sym_html_comment] = ACTIONS(5), }, + [709] = { + [sym_statement_block] = STATE(862), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1714), + [anon_sym_with] = ACTIONS(1714), + [anon_sym_var] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_await] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_debugger] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1712), + [sym_glimmer_opening_tag] = ACTIONS(1712), + [anon_sym_DOT] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(1714), + [anon_sym_new] = ACTIONS(1714), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_number] = ACTIONS(1712), + [sym_private_property_identifier] = ACTIONS(1712), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_true] = ACTIONS(1714), + [sym_false] = ACTIONS(1714), + [sym_null] = ACTIONS(1714), + [sym_undefined] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_readonly] = ACTIONS(1714), + [anon_sym_get] = ACTIONS(1714), + [anon_sym_set] = ACTIONS(1714), + [anon_sym_declare] = ACTIONS(1714), + [anon_sym_public] = ACTIONS(1714), + [anon_sym_private] = ACTIONS(1714), + [anon_sym_protected] = ACTIONS(1714), + [anon_sym_override] = ACTIONS(1714), + [anon_sym_module] = ACTIONS(1714), + [anon_sym_any] = ACTIONS(1714), + [anon_sym_number] = ACTIONS(1714), + [anon_sym_boolean] = ACTIONS(1714), + [anon_sym_string] = ACTIONS(1714), + [anon_sym_symbol] = ACTIONS(1714), + [anon_sym_object] = ACTIONS(1714), + [anon_sym_abstract] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [sym_html_comment] = ACTIONS(5), + }, [710] = { - [sym__call_signature] = STATE(5754), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2411), - [anon_sym_export] = ACTIONS(2413), + [sym__call_signature] = STATE(5772), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), @@ -101927,11 +101960,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(904), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101973,35 +102006,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [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_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(162), [sym_html_comment] = ACTIONS(5), }, [711] = { - [sym__call_signature] = STATE(5903), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), + [sym_statement_block] = STATE(862), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1714), + [anon_sym_with] = ACTIONS(1714), + [anon_sym_var] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_await] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_debugger] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1712), + [sym_glimmer_opening_tag] = ACTIONS(1712), + [anon_sym_DOT] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(1714), + [anon_sym_new] = ACTIONS(1714), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_number] = ACTIONS(1712), + [sym_private_property_identifier] = ACTIONS(1712), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_true] = ACTIONS(1714), + [sym_false] = ACTIONS(1714), + [sym_null] = ACTIONS(1714), + [sym_undefined] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_readonly] = ACTIONS(1714), + [anon_sym_get] = ACTIONS(1714), + [anon_sym_set] = ACTIONS(1714), + [anon_sym_declare] = ACTIONS(1714), + [anon_sym_public] = ACTIONS(1714), + [anon_sym_private] = ACTIONS(1714), + [anon_sym_protected] = ACTIONS(1714), + [anon_sym_override] = ACTIONS(1714), + [anon_sym_module] = ACTIONS(1714), + [anon_sym_any] = ACTIONS(1714), + [anon_sym_number] = ACTIONS(1714), + [anon_sym_boolean] = ACTIONS(1714), + [anon_sym_string] = ACTIONS(1714), + [anon_sym_symbol] = ACTIONS(1714), + [anon_sym_object] = ACTIONS(1714), + [anon_sym_abstract] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [sym_html_comment] = ACTIONS(5), + }, + [712] = { + [sym__call_signature] = STATE(5912), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), [sym_identifier] = ACTIONS(2433), [anon_sym_export] = ACTIONS(2435), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2435), [anon_sym_let] = ACTIONS(2435), @@ -102078,30 +102196,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym__call_signature] = STATE(5903), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2433), - [anon_sym_export] = ACTIONS(2435), + [713] = { + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(847), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -102143,303 +102261,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_readonly] = ACTIONS(2435), - [anon_sym_get] = ACTIONS(2435), - [anon_sym_set] = ACTIONS(2435), - [anon_sym_declare] = ACTIONS(2435), - [anon_sym_public] = ACTIONS(2435), - [anon_sym_private] = ACTIONS(2435), - [anon_sym_protected] = ACTIONS(2435), - [anon_sym_override] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_any] = ACTIONS(2435), - [anon_sym_number] = ACTIONS(2435), - [anon_sym_boolean] = ACTIONS(2435), - [anon_sym_string] = ACTIONS(2435), - [anon_sym_symbol] = ACTIONS(2435), - [anon_sym_object] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [713] = { - [sym_statement_block] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_glimmer_opening_tag] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [sym_this] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_undefined] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_readonly] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_object] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [sym_html_comment] = ACTIONS(5), - }, [714] = { - [sym_finally_clause] = STATE(804), - [ts_builtin_sym_end] = ACTIONS(2439), - [sym_identifier] = ACTIONS(2441), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_default] = ACTIONS(2441), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(2441), - [anon_sym_import] = ACTIONS(2441), - [anon_sym_with] = ACTIONS(2441), - [anon_sym_var] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_debugger] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2441), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_case] = ACTIONS(2441), - [anon_sym_finally] = ACTIONS(2407), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2439), - [sym_glimmer_opening_tag] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_using] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_SLASH] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_void] = ACTIONS(2441), - [anon_sym_delete] = ACTIONS(2441), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2439), - [sym_number] = ACTIONS(2439), - [sym_private_property_identifier] = ACTIONS(2439), - [sym_this] = ACTIONS(2441), - [sym_super] = ACTIONS(2441), - [sym_true] = ACTIONS(2441), - [sym_false] = ACTIONS(2441), - [sym_null] = ACTIONS(2441), - [sym_undefined] = ACTIONS(2441), - [anon_sym_AT] = ACTIONS(2439), - [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_abstract] = ACTIONS(2441), - [anon_sym_interface] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [sym_html_comment] = ACTIONS(5), - }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2445), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_typeof] = ACTIONS(2445), - [anon_sym_import] = ACTIONS(2445), - [anon_sym_with] = ACTIONS(2445), - [anon_sym_var] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_debugger] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2445), - [anon_sym_finally] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [sym_glimmer_opening_tag] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2443), - [anon_sym_SQUOTE] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_SLASH] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_void] = ACTIONS(2445), - [anon_sym_delete] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2443), - [sym_number] = ACTIONS(2443), - [sym_private_property_identifier] = ACTIONS(2443), - [sym_this] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_true] = ACTIONS(2445), - [sym_false] = ACTIONS(2445), - [sym_null] = ACTIONS(2445), - [sym_undefined] = ACTIONS(2445), - [anon_sym_AT] = ACTIONS(2443), - [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_abstract] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [sym_html_comment] = ACTIONS(5), - }, - [716] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), + [anon_sym_in] = ACTIONS(861), + [anon_sym_of] = ACTIONS(864), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -102481,360 +102346,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [717] = { - [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_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_SEMI] = ACTIONS(1909), - [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), - [sym__automatic_semicolon] = ACTIONS(1917), + [715] = { + [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_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_SEMI] = ACTIONS(1859), + [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), + [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), + [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_html_comment] = ACTIONS(5), }, - [718] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_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(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), + [716] = { + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_namespace] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_typeof] = ACTIONS(1877), + [anon_sym_import] = ACTIONS(1877), + [anon_sym_with] = ACTIONS(1877), + [anon_sym_var] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_switch] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_debugger] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [sym_glimmer_opening_tag] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_function] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_void] = ACTIONS(1877), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1875), + [sym_number] = ACTIONS(1875), + [sym_private_property_identifier] = ACTIONS(1875), + [sym_this] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_null] = ACTIONS(1877), + [sym_undefined] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_readonly] = ACTIONS(1877), + [anon_sym_get] = ACTIONS(1877), + [anon_sym_set] = ACTIONS(1877), + [anon_sym_declare] = ACTIONS(1877), + [anon_sym_public] = ACTIONS(1877), + [anon_sym_private] = ACTIONS(1877), + [anon_sym_protected] = ACTIONS(1877), + [anon_sym_override] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_any] = ACTIONS(1877), + [anon_sym_number] = ACTIONS(1877), + [anon_sym_boolean] = ACTIONS(1877), + [anon_sym_string] = ACTIONS(1877), + [anon_sym_symbol] = ACTIONS(1877), + [anon_sym_object] = ACTIONS(1877), + [anon_sym_abstract] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [sym__automatic_semicolon] = ACTIONS(1883), + [sym_html_comment] = ACTIONS(5), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_export] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_typeof] = ACTIONS(1827), + [anon_sym_import] = ACTIONS(1827), + [anon_sym_with] = ACTIONS(1827), + [anon_sym_var] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_else] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_switch] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_do] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_debugger] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_throw] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1827), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1825), + [sym_glimmer_opening_tag] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1825), + [anon_sym_class] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_function] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_using] = ACTIONS(1827), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_SLASH] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1827), + [anon_sym_delete] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1825), + [sym_number] = ACTIONS(1825), + [sym_private_property_identifier] = ACTIONS(1825), + [sym_this] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_null] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(1827), + [anon_sym_get] = ACTIONS(1827), + [anon_sym_set] = ACTIONS(1827), + [anon_sym_declare] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_private] = ACTIONS(1827), + [anon_sym_protected] = ACTIONS(1827), + [anon_sym_override] = ACTIONS(1827), + [anon_sym_module] = ACTIONS(1827), + [anon_sym_any] = ACTIONS(1827), + [anon_sym_number] = ACTIONS(1827), + [anon_sym_boolean] = ACTIONS(1827), + [anon_sym_string] = ACTIONS(1827), + [anon_sym_symbol] = ACTIONS(1827), + [anon_sym_object] = ACTIONS(1827), + [anon_sym_abstract] = ACTIONS(1827), + [anon_sym_interface] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [sym__automatic_semicolon] = ACTIONS(1833), + [sym_html_comment] = ACTIONS(5), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_typeof] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_debugger] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [sym_glimmer_opening_tag] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_void] = ACTIONS(1803), + [anon_sym_delete] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1801), + [sym_number] = ACTIONS(1801), + [sym_private_property_identifier] = ACTIONS(1801), + [sym_this] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_undefined] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_get] = ACTIONS(1803), + [anon_sym_set] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_protected] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_any] = ACTIONS(1803), + [anon_sym_number] = ACTIONS(1803), + [anon_sym_boolean] = ACTIONS(1803), + [anon_sym_string] = ACTIONS(1803), + [anon_sym_symbol] = ACTIONS(1803), + [anon_sym_object] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [sym__automatic_semicolon] = ACTIONS(1809), [sym_html_comment] = ACTIONS(5), }, [719] = { - [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_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_SEMI] = ACTIONS(1758), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1758), - [sym_glimmer_opening_tag] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = 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(1760), - [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), - [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), + [ts_builtin_sym_end] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_type] = ACTIONS(1736), + [anon_sym_namespace] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_typeof] = ACTIONS(1736), + [anon_sym_import] = ACTIONS(1736), + [anon_sym_with] = ACTIONS(1736), + [anon_sym_var] = ACTIONS(1736), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_await] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_do] = ACTIONS(1736), + [anon_sym_try] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_debugger] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_throw] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1736), + [anon_sym_yield] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1734), + [sym_glimmer_opening_tag] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_class] = ACTIONS(1736), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_function] = ACTIONS(1736), + [anon_sym_new] = ACTIONS(1736), + [anon_sym_using] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_SLASH] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_void] = ACTIONS(1736), + [anon_sym_delete] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1734), + [sym_number] = ACTIONS(1734), + [sym_private_property_identifier] = ACTIONS(1734), + [sym_this] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_undefined] = ACTIONS(1736), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_readonly] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(1736), + [anon_sym_set] = ACTIONS(1736), + [anon_sym_declare] = ACTIONS(1736), + [anon_sym_public] = ACTIONS(1736), + [anon_sym_private] = ACTIONS(1736), + [anon_sym_protected] = ACTIONS(1736), + [anon_sym_override] = ACTIONS(1736), + [anon_sym_module] = ACTIONS(1736), + [anon_sym_any] = ACTIONS(1736), + [anon_sym_number] = ACTIONS(1736), + [anon_sym_boolean] = ACTIONS(1736), + [anon_sym_string] = ACTIONS(1736), + [anon_sym_symbol] = ACTIONS(1736), + [anon_sym_object] = ACTIONS(1736), + [anon_sym_abstract] = ACTIONS(1736), + [anon_sym_interface] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1742), [sym_html_comment] = ACTIONS(5), }, [720] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_namespace] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym_import] = ACTIONS(1774), - [anon_sym_with] = ACTIONS(1774), - [anon_sym_var] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_await] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_try] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_debugger] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_throw] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_yield] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1772), - [sym_glimmer_opening_tag] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_class] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_function] = ACTIONS(1774), - [anon_sym_new] = ACTIONS(1774), - [anon_sym_using] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_SLASH] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_void] = ACTIONS(1774), - [anon_sym_delete] = ACTIONS(1774), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1772), - [sym_number] = ACTIONS(1772), - [sym_private_property_identifier] = ACTIONS(1772), - [sym_this] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_undefined] = ACTIONS(1774), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_readonly] = ACTIONS(1774), - [anon_sym_get] = ACTIONS(1774), - [anon_sym_set] = ACTIONS(1774), - [anon_sym_declare] = ACTIONS(1774), - [anon_sym_public] = ACTIONS(1774), - [anon_sym_private] = ACTIONS(1774), - [anon_sym_protected] = ACTIONS(1774), - [anon_sym_override] = ACTIONS(1774), - [anon_sym_module] = ACTIONS(1774), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), - [anon_sym_object] = ACTIONS(1774), - [anon_sym_abstract] = ACTIONS(1774), - [anon_sym_interface] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2445), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_typeof] = ACTIONS(2445), + [anon_sym_import] = ACTIONS(2445), + [anon_sym_with] = ACTIONS(2445), + [anon_sym_var] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_debugger] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_case] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2443), + [sym_glimmer_opening_tag] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_void] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2443), + [sym_number] = ACTIONS(2443), + [sym_private_property_identifier] = ACTIONS(2443), + [sym_this] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), + [sym_undefined] = ACTIONS(2445), + [anon_sym_AT] = ACTIONS(2443), + [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_abstract] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [sym__automatic_semicolon] = ACTIONS(2443), [sym_html_comment] = ACTIONS(5), }, [721] = { @@ -102869,6 +102902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2449), [anon_sym_SEMI] = ACTIONS(2447), [anon_sym_case] = ACTIONS(2449), + [anon_sym_finally] = ACTIONS(2449), [anon_sym_yield] = ACTIONS(2449), [anon_sym_LBRACK] = ACTIONS(2447), [sym_glimmer_opening_tag] = ACTIONS(2447), @@ -102918,262 +102952,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2449), [anon_sym_interface] = ACTIONS(2449), [anon_sym_enum] = ACTIONS(2449), - [sym__automatic_semicolon] = ACTIONS(2447), [sym_html_comment] = ACTIONS(5), }, [722] = { - [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_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_SEMI] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [sym_glimmer_opening_tag] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [anon_sym_SQUOTE] = 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), - [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), - [sym__automatic_semicolon] = ACTIONS(1887), - [sym_html_comment] = ACTIONS(5), - }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(1891), - [anon_sym_import] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), - [anon_sym_var] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_debugger] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1889), - [sym_glimmer_opening_tag] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_function] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_void] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1889), - [sym_number] = ACTIONS(1889), - [sym_private_property_identifier] = ACTIONS(1889), - [sym_this] = ACTIONS(1891), - [sym_super] = ACTIONS(1891), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_undefined] = ACTIONS(1891), - [anon_sym_AT] = ACTIONS(1889), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_readonly] = ACTIONS(1891), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1891), - [anon_sym_public] = ACTIONS(1891), - [anon_sym_private] = ACTIONS(1891), - [anon_sym_protected] = ACTIONS(1891), - [anon_sym_override] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_any] = ACTIONS(1891), - [anon_sym_number] = ACTIONS(1891), - [anon_sym_boolean] = ACTIONS(1891), - [anon_sym_string] = ACTIONS(1891), - [anon_sym_symbol] = ACTIONS(1891), - [anon_sym_object] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1891), - [anon_sym_interface] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym_html_comment] = ACTIONS(5), - }, - [724] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_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(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [725] = { [ts_builtin_sym_end] = ACTIONS(2451), [sym_identifier] = ACTIONS(2453), [anon_sym_export] = ACTIONS(2453), @@ -103205,6 +102986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2453), [anon_sym_SEMI] = ACTIONS(2451), [anon_sym_case] = ACTIONS(2453), + [anon_sym_finally] = ACTIONS(2453), [anon_sym_yield] = ACTIONS(2453), [anon_sym_LBRACK] = ACTIONS(2451), [sym_glimmer_opening_tag] = ACTIONS(2451), @@ -103254,116 +103036,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2453), [anon_sym_interface] = ACTIONS(2453), [anon_sym_enum] = ACTIONS(2453), - [sym__automatic_semicolon] = ACTIONS(2451), [sym_html_comment] = ACTIONS(5), }, - [726] = { - [sym_statement_block] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_glimmer_opening_tag] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_void] = ACTIONS(1672), - [anon_sym_delete] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1670), - [sym_number] = ACTIONS(1670), - [sym_private_property_identifier] = ACTIONS(1670), - [sym_this] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_undefined] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_readonly] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_object] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), + [723] = { + [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_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_SEMI] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [sym_glimmer_opening_tag] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), }, - [727] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [724] = { + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_namespace] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_typeof] = ACTIONS(1887), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_var] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_switch] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_debugger] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_case] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [sym_glimmer_opening_tag] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_using] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(1887), + [anon_sym_delete] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1885), + [sym_number] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(1887), + [sym_super] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_null] = ACTIONS(1887), + [sym_undefined] = ACTIONS(1887), + [anon_sym_AT] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_get] = ACTIONS(1887), + [anon_sym_set] = ACTIONS(1887), + [anon_sym_declare] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_private] = ACTIONS(1887), + [anon_sym_protected] = ACTIONS(1887), + [anon_sym_override] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_any] = ACTIONS(1887), + [anon_sym_number] = ACTIONS(1887), + [anon_sym_boolean] = ACTIONS(1887), + [anon_sym_string] = ACTIONS(1887), + [anon_sym_symbol] = ACTIONS(1887), + [anon_sym_object] = ACTIONS(1887), + [anon_sym_abstract] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [sym__automatic_semicolon] = ACTIONS(1893), + [sym_html_comment] = ACTIONS(5), + }, + [725] = { + [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_RPAREN] = 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_SEMI] = ACTIONS(2455), + [anon_sym_case] = ACTIONS(2457), + [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_html_comment] = ACTIONS(5), + }, + [726] = { + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(1030), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(982), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -103405,49 +103354,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [728] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [727] = { + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(976), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(980), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -103489,363 +103438,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [729] = { - [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_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_SEMI] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = 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), - [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), - [sym__automatic_semicolon] = ACTIONS(1843), + [728] = { + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_namespace] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_typeof] = ACTIONS(1897), + [anon_sym_import] = ACTIONS(1897), + [anon_sym_with] = ACTIONS(1897), + [anon_sym_var] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_debugger] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_throw] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_case] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1895), + [sym_glimmer_opening_tag] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(1897), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_using] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1895), + [anon_sym_void] = ACTIONS(1897), + [anon_sym_delete] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1895), + [sym_number] = ACTIONS(1895), + [sym_private_property_identifier] = ACTIONS(1895), + [sym_this] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_true] = ACTIONS(1897), + [sym_false] = ACTIONS(1897), + [sym_null] = ACTIONS(1897), + [sym_undefined] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1895), + [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), + [anon_sym_abstract] = ACTIONS(1897), + [anon_sym_interface] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [sym__automatic_semicolon] = ACTIONS(1903), [sym_html_comment] = ACTIONS(5), }, - [730] = { - [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_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_SEMI] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2457), - [anon_sym_finally] = ACTIONS(2457), - [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), + [729] = { + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(841), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_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(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [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), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_typeof] = ACTIONS(1901), - [anon_sym_import] = ACTIONS(1901), - [anon_sym_with] = ACTIONS(1901), - [anon_sym_var] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_switch] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_debugger] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_throw] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [sym_glimmer_opening_tag] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_function] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_using] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_void] = ACTIONS(1901), - [anon_sym_delete] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1899), - [sym_number] = ACTIONS(1899), - [sym_private_property_identifier] = ACTIONS(1899), - [sym_this] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_true] = ACTIONS(1901), - [sym_false] = ACTIONS(1901), - [sym_null] = ACTIONS(1901), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_readonly] = ACTIONS(1901), - [anon_sym_get] = ACTIONS(1901), - [anon_sym_set] = ACTIONS(1901), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1901), - [anon_sym_private] = ACTIONS(1901), - [anon_sym_protected] = ACTIONS(1901), - [anon_sym_override] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_any] = ACTIONS(1901), - [anon_sym_number] = ACTIONS(1901), - [anon_sym_boolean] = ACTIONS(1901), - [anon_sym_string] = ACTIONS(1901), - [anon_sym_symbol] = ACTIONS(1901), - [anon_sym_object] = ACTIONS(1901), - [anon_sym_abstract] = ACTIONS(1901), - [anon_sym_interface] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [sym__automatic_semicolon] = ACTIONS(1907), - [sym_html_comment] = ACTIONS(5), - }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_namespace] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym_import] = ACTIONS(1750), - [anon_sym_with] = ACTIONS(1750), - [anon_sym_var] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_else] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_await] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_try] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_debugger] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_throw] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_yield] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1748), - [sym_glimmer_opening_tag] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_class] = ACTIONS(1750), - [anon_sym_async] = ACTIONS(1750), - [anon_sym_function] = ACTIONS(1750), - [anon_sym_new] = ACTIONS(1750), - [anon_sym_using] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_void] = ACTIONS(1750), - [anon_sym_delete] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1748), - [sym_number] = ACTIONS(1748), - [sym_private_property_identifier] = ACTIONS(1748), - [sym_this] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_undefined] = ACTIONS(1750), - [anon_sym_AT] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_readonly] = ACTIONS(1750), - [anon_sym_get] = ACTIONS(1750), - [anon_sym_set] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1750), - [anon_sym_public] = ACTIONS(1750), - [anon_sym_private] = ACTIONS(1750), - [anon_sym_protected] = ACTIONS(1750), - [anon_sym_override] = ACTIONS(1750), - [anon_sym_module] = ACTIONS(1750), - [anon_sym_any] = ACTIONS(1750), - [anon_sym_number] = ACTIONS(1750), - [anon_sym_boolean] = ACTIONS(1750), - [anon_sym_string] = ACTIONS(1750), - [anon_sym_symbol] = ACTIONS(1750), - [anon_sym_object] = ACTIONS(1750), - [anon_sym_abstract] = ACTIONS(1750), - [anon_sym_interface] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [733] = { + [730] = { [ts_builtin_sym_end] = ACTIONS(2459), [sym_identifier] = ACTIONS(2461), [anon_sym_export] = ACTIONS(2461), @@ -103866,7 +103647,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2461), [anon_sym_for] = ACTIONS(2461), [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_RPAREN] = ACTIONS(2459), [anon_sym_await] = ACTIONS(2461), [anon_sym_while] = ACTIONS(2461), [anon_sym_do] = ACTIONS(2461), @@ -103927,10 +103707,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2461), [anon_sym_interface] = ACTIONS(2461), [anon_sym_enum] = ACTIONS(2461), + [sym__automatic_semicolon] = ACTIONS(2459), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym_else_clause] = STATE(791), + [731] = { [ts_builtin_sym_end] = ACTIONS(2463), [sym_identifier] = ACTIONS(2465), [anon_sym_export] = ACTIONS(2465), @@ -103946,7 +103726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2465), [anon_sym_const] = ACTIONS(2465), [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2465), [anon_sym_if] = ACTIONS(2465), [anon_sym_switch] = ACTIONS(2465), [anon_sym_for] = ACTIONS(2465), @@ -103962,6 +103742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2465), [anon_sym_SEMI] = ACTIONS(2463), [anon_sym_case] = ACTIONS(2465), + [anon_sym_finally] = ACTIONS(2465), [anon_sym_yield] = ACTIONS(2465), [anon_sym_LBRACK] = ACTIONS(2463), [sym_glimmer_opening_tag] = ACTIONS(2463), @@ -104013,29 +103794,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2465), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [732] = { + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_export] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_typeof] = ACTIONS(2469), + [anon_sym_import] = ACTIONS(2469), + [anon_sym_with] = ACTIONS(2469), + [anon_sym_var] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_debugger] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_case] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [sym_glimmer_opening_tag] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_function] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_SLASH] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_void] = ACTIONS(2469), + [anon_sym_delete] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2467), + [sym_number] = ACTIONS(2467), + [sym_private_property_identifier] = ACTIONS(2467), + [sym_this] = ACTIONS(2469), + [sym_super] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_null] = ACTIONS(2469), + [sym_undefined] = ACTIONS(2469), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_readonly] = ACTIONS(2469), + [anon_sym_get] = ACTIONS(2469), + [anon_sym_set] = ACTIONS(2469), + [anon_sym_declare] = ACTIONS(2469), + [anon_sym_public] = ACTIONS(2469), + [anon_sym_private] = ACTIONS(2469), + [anon_sym_protected] = ACTIONS(2469), + [anon_sym_override] = ACTIONS(2469), + [anon_sym_module] = ACTIONS(2469), + [anon_sym_any] = ACTIONS(2469), + [anon_sym_number] = ACTIONS(2469), + [anon_sym_boolean] = ACTIONS(2469), + [anon_sym_string] = ACTIONS(2469), + [anon_sym_symbol] = ACTIONS(2469), + [anon_sym_object] = ACTIONS(2469), + [anon_sym_abstract] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [sym__automatic_semicolon] = ACTIONS(2471), + [sym_html_comment] = ACTIONS(5), + }, + [733] = { + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(984), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -104077,111 +103942,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [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_RPAREN] = 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_SEMI] = ACTIONS(2469), - [anon_sym_case] = 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_html_comment] = ACTIONS(5), - }, - [737] = { + [734] = { + [sym_else_clause] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2473), [sym_identifier] = ACTIONS(2475), [anon_sym_export] = ACTIONS(2475), @@ -104197,7 +103979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2475), [anon_sym_const] = ACTIONS(2475), [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2477), [anon_sym_if] = ACTIONS(2475), [anon_sym_switch] = ACTIONS(2475), [anon_sym_for] = ACTIONS(2475), @@ -104211,7 +103993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(2475), [anon_sym_return] = ACTIONS(2475), [anon_sym_throw] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2473), [anon_sym_case] = ACTIONS(2475), [anon_sym_yield] = ACTIONS(2475), [anon_sym_LBRACK] = ACTIONS(2473), @@ -104262,100 +104044,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2475), [anon_sym_interface] = ACTIONS(2475), [anon_sym_enum] = ACTIONS(2475), - [sym__automatic_semicolon] = ACTIONS(2477), [sym_html_comment] = ACTIONS(5), }, - [738] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_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(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), + [735] = { + [ts_builtin_sym_end] = ACTIONS(1845), + [sym_identifier] = ACTIONS(1847), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_namespace] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_typeof] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_with] = ACTIONS(1847), + [anon_sym_var] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_switch] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_await] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_debugger] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_throw] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_yield] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [sym_glimmer_opening_tag] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_function] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_using] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_void] = ACTIONS(1847), + [anon_sym_delete] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), + [anon_sym_BQUOTE] = ACTIONS(1845), + [sym_number] = ACTIONS(1845), + [sym_private_property_identifier] = ACTIONS(1845), + [sym_this] = ACTIONS(1847), + [sym_super] = ACTIONS(1847), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_null] = ACTIONS(1847), + [sym_undefined] = ACTIONS(1847), + [anon_sym_AT] = ACTIONS(1845), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_readonly] = ACTIONS(1847), + [anon_sym_get] = ACTIONS(1847), + [anon_sym_set] = ACTIONS(1847), + [anon_sym_declare] = ACTIONS(1847), + [anon_sym_public] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_protected] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_any] = ACTIONS(1847), + [anon_sym_number] = ACTIONS(1847), + [anon_sym_boolean] = ACTIONS(1847), + [anon_sym_string] = ACTIONS(1847), + [anon_sym_symbol] = ACTIONS(1847), + [anon_sym_object] = ACTIONS(1847), + [anon_sym_abstract] = ACTIONS(1847), + [anon_sym_interface] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [sym__automatic_semicolon] = ACTIONS(1853), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [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), + [736] = { + [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_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_SEMI] = ACTIONS(1835), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [sym_glimmer_opening_tag] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_SQUOTE] = 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), + [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), + [sym__automatic_semicolon] = ACTIONS(1843), + [sym_html_comment] = ACTIONS(5), + }, + [737] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_await] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_debugger] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [sym_glimmer_opening_tag] = ACTIONS(1797), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_void] = ACTIONS(1799), + [anon_sym_delete] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1797), + [sym_number] = ACTIONS(1797), + [sym_private_property_identifier] = ACTIONS(1797), + [sym_this] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_undefined] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [sym_html_comment] = ACTIONS(5), + }, + [738] = { + [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), @@ -104370,6 +104319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2481), [anon_sym_for] = ACTIONS(2481), [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_RPAREN] = ACTIONS(2479), [anon_sym_await] = ACTIONS(2481), [anon_sym_while] = ACTIONS(2481), [anon_sym_do] = ACTIONS(2481), @@ -104381,7 +104331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2481), [anon_sym_SEMI] = ACTIONS(2479), [anon_sym_case] = ACTIONS(2481), - [anon_sym_finally] = ACTIONS(2481), [anon_sym_yield] = ACTIONS(2481), [anon_sym_LBRACK] = ACTIONS(2479), [sym_glimmer_opening_tag] = ACTIONS(2479), @@ -104433,113 +104382,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2481), [sym_html_comment] = ACTIONS(5), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_namespace] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_import] = ACTIONS(1736), - [anon_sym_with] = ACTIONS(1736), - [anon_sym_var] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_switch] = ACTIONS(1736), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_while] = ACTIONS(1736), - [anon_sym_do] = ACTIONS(1736), - [anon_sym_try] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_debugger] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_throw] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1736), - [anon_sym_yield] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1734), - [sym_glimmer_opening_tag] = ACTIONS(1734), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_class] = ACTIONS(1736), - [anon_sym_async] = ACTIONS(1736), - [anon_sym_function] = ACTIONS(1736), - [anon_sym_new] = ACTIONS(1736), - [anon_sym_using] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_void] = ACTIONS(1736), - [anon_sym_delete] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1734), - [sym_number] = ACTIONS(1734), - [sym_private_property_identifier] = ACTIONS(1734), - [sym_this] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_null] = ACTIONS(1736), - [sym_undefined] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_readonly] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1736), - [anon_sym_set] = ACTIONS(1736), - [anon_sym_declare] = ACTIONS(1736), - [anon_sym_public] = ACTIONS(1736), - [anon_sym_private] = ACTIONS(1736), - [anon_sym_protected] = ACTIONS(1736), - [anon_sym_override] = ACTIONS(1736), - [anon_sym_module] = ACTIONS(1736), - [anon_sym_any] = ACTIONS(1736), - [anon_sym_number] = ACTIONS(1736), - [anon_sym_boolean] = ACTIONS(1736), - [anon_sym_string] = ACTIONS(1736), - [anon_sym_symbol] = ACTIONS(1736), - [anon_sym_object] = ACTIONS(1736), - [anon_sym_abstract] = ACTIONS(1736), - [anon_sym_interface] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1742), + [739] = { + [ts_builtin_sym_end] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), + [anon_sym_export] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), + [anon_sym_namespace] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_typeof] = ACTIONS(1857), + [anon_sym_import] = ACTIONS(1857), + [anon_sym_with] = ACTIONS(1857), + [anon_sym_var] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_debugger] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_throw] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_case] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1855), + [sym_glimmer_opening_tag] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_function] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_SLASH] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_void] = ACTIONS(1857), + [anon_sym_delete] = ACTIONS(1857), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1855), + [sym_number] = ACTIONS(1855), + [sym_private_property_identifier] = ACTIONS(1855), + [sym_this] = ACTIONS(1857), + [sym_super] = ACTIONS(1857), + [sym_true] = ACTIONS(1857), + [sym_false] = ACTIONS(1857), + [sym_null] = ACTIONS(1857), + [sym_undefined] = ACTIONS(1857), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_readonly] = ACTIONS(1857), + [anon_sym_get] = ACTIONS(1857), + [anon_sym_set] = ACTIONS(1857), + [anon_sym_declare] = ACTIONS(1857), + [anon_sym_public] = ACTIONS(1857), + [anon_sym_private] = ACTIONS(1857), + [anon_sym_protected] = ACTIONS(1857), + [anon_sym_override] = ACTIONS(1857), + [anon_sym_module] = ACTIONS(1857), + [anon_sym_any] = ACTIONS(1857), + [anon_sym_number] = ACTIONS(1857), + [anon_sym_boolean] = ACTIONS(1857), + [anon_sym_string] = ACTIONS(1857), + [anon_sym_symbol] = ACTIONS(1857), + [anon_sym_object] = ACTIONS(1857), + [anon_sym_abstract] = ACTIONS(1857), + [anon_sym_interface] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [740] = { + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(976), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -104581,385 +104530,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [741] = { + [sym_statement_block] = STATE(862), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1714), + [anon_sym_import] = ACTIONS(1714), + [anon_sym_with] = ACTIONS(1714), + [anon_sym_var] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_await] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_debugger] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1712), + [sym_glimmer_opening_tag] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_class] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(1714), + [anon_sym_new] = ACTIONS(1714), + [anon_sym_using] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_void] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_number] = ACTIONS(1712), + [sym_private_property_identifier] = ACTIONS(1712), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_true] = ACTIONS(1714), + [sym_false] = ACTIONS(1714), + [sym_null] = ACTIONS(1714), + [sym_undefined] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_readonly] = ACTIONS(1714), + [anon_sym_get] = ACTIONS(1714), + [anon_sym_set] = ACTIONS(1714), + [anon_sym_declare] = ACTIONS(1714), + [anon_sym_public] = ACTIONS(1714), + [anon_sym_private] = ACTIONS(1714), + [anon_sym_protected] = ACTIONS(1714), + [anon_sym_override] = ACTIONS(1714), + [anon_sym_module] = ACTIONS(1714), + [anon_sym_any] = ACTIONS(1714), + [anon_sym_number] = ACTIONS(1714), + [anon_sym_boolean] = ACTIONS(1714), + [anon_sym_string] = ACTIONS(1714), + [anon_sym_symbol] = ACTIONS(1714), + [anon_sym_object] = ACTIONS(1714), + [anon_sym_abstract] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [sym_html_comment] = ACTIONS(5), + }, [742] = { - [ts_builtin_sym_end] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1921), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_default] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), - [anon_sym_namespace] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_typeof] = ACTIONS(1921), - [anon_sym_import] = ACTIONS(1921), - [anon_sym_with] = ACTIONS(1921), - [anon_sym_var] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_switch] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_await] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_debugger] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_throw] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_case] = ACTIONS(1921), - [anon_sym_yield] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1919), - [sym_glimmer_opening_tag] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_class] = ACTIONS(1921), - [anon_sym_async] = ACTIONS(1921), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_using] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1921), - [anon_sym_delete] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1919), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [sym_this] = ACTIONS(1921), - [sym_super] = ACTIONS(1921), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_null] = ACTIONS(1921), - [sym_undefined] = ACTIONS(1921), - [anon_sym_AT] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_readonly] = ACTIONS(1921), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_declare] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1921), - [anon_sym_private] = ACTIONS(1921), - [anon_sym_protected] = ACTIONS(1921), - [anon_sym_override] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_any] = ACTIONS(1921), - [anon_sym_number] = ACTIONS(1921), - [anon_sym_boolean] = ACTIONS(1921), - [anon_sym_string] = ACTIONS(1921), - [anon_sym_symbol] = ACTIONS(1921), - [anon_sym_object] = ACTIONS(1921), - [anon_sym_abstract] = ACTIONS(1921), - [anon_sym_interface] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [sym__automatic_semicolon] = ACTIONS(1927), + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_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(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [743] = { - [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_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_SEMI] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_yield] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1780), - [sym_glimmer_opening_tag] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = 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(1782), - [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), - [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__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_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(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [744] = { - [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_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_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_SEMI] = ACTIONS(1853), - [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), - [sym__automatic_semicolon] = ACTIONS(1861), + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_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(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [745] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1817), - [anon_sym_export] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_namespace] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(1817), - [anon_sym_import] = ACTIONS(1817), - [anon_sym_with] = ACTIONS(1817), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_switch] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_await] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_try] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_debugger] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_throw] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [sym_glimmer_opening_tag] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(1815), - [anon_sym_SQUOTE] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_function] = ACTIONS(1817), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_void] = ACTIONS(1817), - [anon_sym_delete] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1815), - [sym_number] = ACTIONS(1815), - [sym_private_property_identifier] = ACTIONS(1815), - [sym_this] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_true] = ACTIONS(1817), - [sym_false] = ACTIONS(1817), - [sym_null] = ACTIONS(1817), - [sym_undefined] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_readonly] = ACTIONS(1817), - [anon_sym_get] = ACTIONS(1817), - [anon_sym_set] = ACTIONS(1817), - [anon_sym_declare] = ACTIONS(1817), - [anon_sym_public] = ACTIONS(1817), - [anon_sym_private] = ACTIONS(1817), - [anon_sym_protected] = ACTIONS(1817), - [anon_sym_override] = ACTIONS(1817), - [anon_sym_module] = ACTIONS(1817), - [anon_sym_any] = ACTIONS(1817), - [anon_sym_number] = ACTIONS(1817), - [anon_sym_boolean] = ACTIONS(1817), - [anon_sym_string] = ACTIONS(1817), - [anon_sym_symbol] = ACTIONS(1817), - [anon_sym_object] = ACTIONS(1817), - [anon_sym_abstract] = ACTIONS(1817), - [anon_sym_interface] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [sym__automatic_semicolon] = ACTIONS(1823), - [sym_html_comment] = ACTIONS(5), - }, - [746] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(972), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -105001,49 +104950,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [746] = { + [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_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_SEMI] = ACTIONS(1769), + [anon_sym_case] = ACTIONS(1771), + [anon_sym_yield] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1769), + [sym_glimmer_opening_tag] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), + }, [747] = { - [sym__call_signature] = STATE(5794), - [sym_formal_parameters] = STATE(3900), - [sym_type_parameters] = STATE(5525), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2383), + [sym__call_signature] = STATE(5738), + [sym_formal_parameters] = STATE(3742), + [sym_type_parameters] = STATE(5349), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(986), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -105085,108 +105118,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_readonly] = ACTIONS(2383), - [anon_sym_get] = ACTIONS(2383), - [anon_sym_set] = ACTIONS(2383), - [anon_sym_declare] = ACTIONS(2383), - [anon_sym_public] = ACTIONS(2383), - [anon_sym_private] = ACTIONS(2383), - [anon_sym_protected] = ACTIONS(2383), - [anon_sym_override] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_any] = ACTIONS(2383), - [anon_sym_number] = ACTIONS(2383), - [anon_sym_boolean] = ACTIONS(2383), - [anon_sym_string] = ACTIONS(2383), - [anon_sym_symbol] = ACTIONS(2383), - [anon_sym_object] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_with] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_await] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_debugger] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1865), - [sym_glimmer_opening_tag] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1865), - [sym_number] = ACTIONS(1865), - [sym_private_property_identifier] = ACTIONS(1865), - [sym_this] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_undefined] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(1867), - [anon_sym_get] = ACTIONS(1867), - [anon_sym_set] = ACTIONS(1867), - [anon_sym_declare] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [anon_sym_override] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_any] = ACTIONS(1867), - [anon_sym_number] = ACTIONS(1867), - [anon_sym_boolean] = ACTIONS(1867), - [anon_sym_string] = ACTIONS(1867), - [anon_sym_symbol] = ACTIONS(1867), - [anon_sym_object] = ACTIONS(1867), - [anon_sym_abstract] = ACTIONS(1867), - [anon_sym_interface] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [sym__automatic_semicolon] = ACTIONS(1873), + [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_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_SEMI] = ACTIONS(1755), + [anon_sym_case] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1755), + [sym_glimmer_opening_tag] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1755), + [anon_sym_SQUOTE] = 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), + [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), [sym_html_comment] = ACTIONS(5), }, [749] = { @@ -105356,6 +105389,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [751] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_typeof] = ACTIONS(2489), + [anon_sym_import] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_var] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_debugger] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [sym_glimmer_opening_tag] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2487), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [sym_this] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_undefined] = ACTIONS(2489), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_readonly] = ACTIONS(2489), + [anon_sym_get] = ACTIONS(2489), + [anon_sym_set] = ACTIONS(2489), + [anon_sym_declare] = ACTIONS(2489), + [anon_sym_public] = ACTIONS(2489), + [anon_sym_private] = ACTIONS(2489), + [anon_sym_protected] = ACTIONS(2489), + [anon_sym_override] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_any] = ACTIONS(2489), + [anon_sym_number] = ACTIONS(2489), + [anon_sym_boolean] = ACTIONS(2489), + [anon_sym_string] = ACTIONS(2489), + [anon_sym_symbol] = ACTIONS(2489), + [anon_sym_object] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [sym_html_comment] = ACTIONS(5), + }, + [752] = { [ts_builtin_sym_end] = ACTIONS(2491), [sym_identifier] = ACTIONS(2493), [anon_sym_export] = ACTIONS(2493), @@ -105438,89 +105554,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2493), [sym_html_comment] = ACTIONS(5), }, - [752] = { - [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_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_SEMI] = ACTIONS(2495), - [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), - }, [753] = { [ts_builtin_sym_end] = ACTIONS(2495), [sym_identifier] = ACTIONS(2497), @@ -105688,6 +105721,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [755] = { + [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_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_SEMI] = ACTIONS(2499), + [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), + }, + [756] = { [ts_builtin_sym_end] = ACTIONS(2503), [sym_identifier] = ACTIONS(2505), [anon_sym_export] = ACTIONS(2505), @@ -105770,89 +105886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2505), [sym_html_comment] = ACTIONS(5), }, - [756] = { - [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_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_SEMI] = ACTIONS(2495), - [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), - }, [757] = { [ts_builtin_sym_end] = ACTIONS(2507), [sym_identifier] = ACTIONS(2509), @@ -106269,6 +106302,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [762] = { + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1923), + [anon_sym_export] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_type] = ACTIONS(1923), + [anon_sym_namespace] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_typeof] = ACTIONS(1923), + [anon_sym_import] = ACTIONS(1923), + [anon_sym_with] = ACTIONS(1923), + [anon_sym_var] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_else] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_switch] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_await] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_debugger] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_throw] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_case] = ACTIONS(1923), + [anon_sym_yield] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1921), + [sym_glimmer_opening_tag] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_class] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_using] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_void] = ACTIONS(1923), + [anon_sym_delete] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1921), + [sym_number] = ACTIONS(1921), + [sym_private_property_identifier] = ACTIONS(1921), + [sym_this] = ACTIONS(1923), + [sym_super] = ACTIONS(1923), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [sym_null] = ACTIONS(1923), + [sym_undefined] = ACTIONS(1923), + [anon_sym_AT] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_readonly] = ACTIONS(1923), + [anon_sym_get] = ACTIONS(1923), + [anon_sym_set] = ACTIONS(1923), + [anon_sym_declare] = ACTIONS(1923), + [anon_sym_public] = ACTIONS(1923), + [anon_sym_private] = ACTIONS(1923), + [anon_sym_protected] = ACTIONS(1923), + [anon_sym_override] = ACTIONS(1923), + [anon_sym_module] = ACTIONS(1923), + [anon_sym_any] = ACTIONS(1923), + [anon_sym_number] = ACTIONS(1923), + [anon_sym_boolean] = ACTIONS(1923), + [anon_sym_string] = ACTIONS(1923), + [anon_sym_symbol] = ACTIONS(1923), + [anon_sym_object] = ACTIONS(1923), + [anon_sym_abstract] = ACTIONS(1923), + [anon_sym_interface] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [sym_html_comment] = ACTIONS(5), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), + [anon_sym_export] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_namespace] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_typeof] = ACTIONS(1767), + [anon_sym_import] = ACTIONS(1767), + [anon_sym_with] = ACTIONS(1767), + [anon_sym_var] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_switch] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_debugger] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_throw] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_case] = ACTIONS(1767), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1765), + [sym_glimmer_opening_tag] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_class] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_using] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_void] = ACTIONS(1767), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1765), + [sym_number] = ACTIONS(1765), + [sym_private_property_identifier] = ACTIONS(1765), + [sym_this] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_null] = ACTIONS(1767), + [sym_undefined] = ACTIONS(1767), + [anon_sym_AT] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_readonly] = ACTIONS(1767), + [anon_sym_get] = ACTIONS(1767), + [anon_sym_set] = ACTIONS(1767), + [anon_sym_declare] = ACTIONS(1767), + [anon_sym_public] = ACTIONS(1767), + [anon_sym_private] = ACTIONS(1767), + [anon_sym_protected] = ACTIONS(1767), + [anon_sym_override] = ACTIONS(1767), + [anon_sym_module] = ACTIONS(1767), + [anon_sym_any] = ACTIONS(1767), + [anon_sym_number] = ACTIONS(1767), + [anon_sym_boolean] = ACTIONS(1767), + [anon_sym_string] = ACTIONS(1767), + [anon_sym_symbol] = ACTIONS(1767), + [anon_sym_object] = ACTIONS(1767), + [anon_sym_abstract] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [sym_html_comment] = ACTIONS(5), + }, + [764] = { [ts_builtin_sym_end] = ACTIONS(2527), [sym_identifier] = ACTIONS(2529), [anon_sym_export] = ACTIONS(2529), @@ -106351,7 +106550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2529), [sym_html_comment] = ACTIONS(5), }, - [763] = { + [765] = { [ts_builtin_sym_end] = ACTIONS(2531), [sym_identifier] = ACTIONS(2533), [anon_sym_export] = ACTIONS(2533), @@ -106434,7 +106633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2533), [sym_html_comment] = ACTIONS(5), }, - [764] = { + [766] = { [ts_builtin_sym_end] = ACTIONS(2535), [sym_identifier] = ACTIONS(2537), [anon_sym_export] = ACTIONS(2537), @@ -106517,7 +106716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2537), [sym_html_comment] = ACTIONS(5), }, - [765] = { + [767] = { [ts_builtin_sym_end] = ACTIONS(2539), [sym_identifier] = ACTIONS(2541), [anon_sym_export] = ACTIONS(2541), @@ -106600,7 +106799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2541), [sym_html_comment] = ACTIONS(5), }, - [766] = { + [768] = { [ts_builtin_sym_end] = ACTIONS(2543), [sym_identifier] = ACTIONS(2545), [anon_sym_export] = ACTIONS(2545), @@ -106683,7 +106882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2545), [sym_html_comment] = ACTIONS(5), }, - [767] = { + [769] = { [ts_builtin_sym_end] = ACTIONS(2547), [sym_identifier] = ACTIONS(2549), [anon_sym_export] = ACTIONS(2549), @@ -106766,90 +106965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2549), [sym_html_comment] = ACTIONS(5), }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_namespace] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1764), - [anon_sym_import] = ACTIONS(1764), - [anon_sym_with] = ACTIONS(1764), - [anon_sym_var] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_switch] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_await] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_debugger] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_case] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1762), - [sym_glimmer_opening_tag] = ACTIONS(1762), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1762), - [anon_sym_class] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_function] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_using] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1762), - [anon_sym_void] = ACTIONS(1764), - [anon_sym_delete] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1762), - [sym_number] = ACTIONS(1762), - [sym_private_property_identifier] = ACTIONS(1762), - [sym_this] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_true] = ACTIONS(1764), - [sym_false] = ACTIONS(1764), - [sym_null] = ACTIONS(1764), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_readonly] = ACTIONS(1764), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_declare] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_protected] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_any] = ACTIONS(1764), - [anon_sym_number] = ACTIONS(1764), - [anon_sym_boolean] = ACTIONS(1764), - [anon_sym_string] = ACTIONS(1764), - [anon_sym_symbol] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_interface] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [sym_html_comment] = ACTIONS(5), - }, - [769] = { + [770] = { [ts_builtin_sym_end] = ACTIONS(2551), [sym_identifier] = ACTIONS(2553), [anon_sym_export] = ACTIONS(2553), @@ -106932,89 +107048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2553), [sym_html_comment] = ACTIONS(5), }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_typeof] = ACTIONS(2557), - [anon_sym_import] = ACTIONS(2557), - [anon_sym_with] = ACTIONS(2557), - [anon_sym_var] = ACTIONS(2557), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_debugger] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [sym_glimmer_opening_tag] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_SLASH] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(2557), - [anon_sym_delete] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2555), - [sym_number] = ACTIONS(2555), - [sym_private_property_identifier] = ACTIONS(2555), - [sym_this] = ACTIONS(2557), - [sym_super] = ACTIONS(2557), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_undefined] = ACTIONS(2557), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_readonly] = ACTIONS(2557), - [anon_sym_get] = ACTIONS(2557), - [anon_sym_set] = ACTIONS(2557), - [anon_sym_declare] = ACTIONS(2557), - [anon_sym_public] = ACTIONS(2557), - [anon_sym_private] = ACTIONS(2557), - [anon_sym_protected] = ACTIONS(2557), - [anon_sym_override] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_any] = ACTIONS(2557), - [anon_sym_number] = ACTIONS(2557), - [anon_sym_boolean] = ACTIONS(2557), - [anon_sym_string] = ACTIONS(2557), - [anon_sym_symbol] = ACTIONS(2557), - [anon_sym_object] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [sym_html_comment] = ACTIONS(5), - }, [771] = { [ts_builtin_sym_end] = ACTIONS(2555), [sym_identifier] = ACTIONS(2557), @@ -107265,587 +107298,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [774] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4607), - [sym_optional_tuple_parameter] = STATE(4607), - [sym_optional_type] = STATE(4607), - [sym_rest_type] = STATE(4607), - [sym__tuple_type_member] = STATE(4607), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_typeof] = ACTIONS(1546), + [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_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_SEMI] = ACTIONS(2567), + [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), + }, + [775] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(4770), + [sym_optional_tuple_parameter] = STATE(4770), + [sym_optional_type] = STATE(4770), + [sym_rest_type] = STATE(4770), + [sym__tuple_type_member] = STATE(4770), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(2573), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_typeof] = ACTIONS(2557), - [anon_sym_import] = ACTIONS(2557), - [anon_sym_with] = ACTIONS(2557), - [anon_sym_var] = ACTIONS(2557), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_debugger] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [sym_glimmer_opening_tag] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_SLASH] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(2557), - [anon_sym_delete] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2555), - [sym_number] = ACTIONS(2555), - [sym_private_property_identifier] = ACTIONS(2555), - [sym_this] = ACTIONS(2557), - [sym_super] = ACTIONS(2557), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_undefined] = ACTIONS(2557), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_readonly] = ACTIONS(2557), - [anon_sym_get] = ACTIONS(2557), - [anon_sym_set] = ACTIONS(2557), - [anon_sym_declare] = ACTIONS(2557), - [anon_sym_public] = ACTIONS(2557), - [anon_sym_private] = ACTIONS(2557), - [anon_sym_protected] = ACTIONS(2557), - [anon_sym_override] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_any] = ACTIONS(2557), - [anon_sym_number] = ACTIONS(2557), - [anon_sym_boolean] = ACTIONS(2557), - [anon_sym_string] = ACTIONS(2557), - [anon_sym_symbol] = ACTIONS(2557), - [anon_sym_object] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [sym_html_comment] = ACTIONS(5), - }, [776] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_typeof] = ACTIONS(2557), - [anon_sym_import] = ACTIONS(2557), - [anon_sym_with] = ACTIONS(2557), - [anon_sym_var] = ACTIONS(2557), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_debugger] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [sym_glimmer_opening_tag] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_SLASH] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(2557), - [anon_sym_delete] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), + [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_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_SEMI] = ACTIONS(2583), + [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(2555), - [sym_number] = ACTIONS(2555), - [sym_private_property_identifier] = ACTIONS(2555), - [sym_this] = ACTIONS(2557), - [sym_super] = ACTIONS(2557), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_undefined] = ACTIONS(2557), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_readonly] = ACTIONS(2557), - [anon_sym_get] = ACTIONS(2557), - [anon_sym_set] = ACTIONS(2557), - [anon_sym_declare] = ACTIONS(2557), - [anon_sym_public] = ACTIONS(2557), - [anon_sym_private] = ACTIONS(2557), - [anon_sym_protected] = ACTIONS(2557), - [anon_sym_override] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_any] = ACTIONS(2557), - [anon_sym_number] = ACTIONS(2557), - [anon_sym_boolean] = ACTIONS(2557), - [anon_sym_string] = ACTIONS(2557), - [anon_sym_symbol] = ACTIONS(2557), - [anon_sym_object] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), + [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), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_typeof] = ACTIONS(2557), - [anon_sym_import] = ACTIONS(2557), - [anon_sym_with] = ACTIONS(2557), - [anon_sym_var] = ACTIONS(2557), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_debugger] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [sym_glimmer_opening_tag] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_SLASH] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(2557), - [anon_sym_delete] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), + [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_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_SEMI] = ACTIONS(2583), + [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(2555), - [sym_number] = ACTIONS(2555), - [sym_private_property_identifier] = ACTIONS(2555), - [sym_this] = ACTIONS(2557), - [sym_super] = ACTIONS(2557), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_undefined] = ACTIONS(2557), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_readonly] = ACTIONS(2557), - [anon_sym_get] = ACTIONS(2557), - [anon_sym_set] = ACTIONS(2557), - [anon_sym_declare] = ACTIONS(2557), - [anon_sym_public] = ACTIONS(2557), - [anon_sym_private] = ACTIONS(2557), - [anon_sym_protected] = ACTIONS(2557), - [anon_sym_override] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_any] = ACTIONS(2557), - [anon_sym_number] = ACTIONS(2557), - [anon_sym_boolean] = ACTIONS(2557), - [anon_sym_string] = ACTIONS(2557), - [anon_sym_symbol] = ACTIONS(2557), - [anon_sym_object] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), + [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), }, [778] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_typeof] = ACTIONS(2557), - [anon_sym_import] = ACTIONS(2557), - [anon_sym_with] = ACTIONS(2557), - [anon_sym_var] = ACTIONS(2557), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_debugger] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2555), - [sym_glimmer_opening_tag] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_SLASH] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(2557), - [anon_sym_delete] = ACTIONS(2557), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2555), - [sym_number] = ACTIONS(2555), - [sym_private_property_identifier] = ACTIONS(2555), - [sym_this] = ACTIONS(2557), - [sym_super] = ACTIONS(2557), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_undefined] = ACTIONS(2557), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_readonly] = ACTIONS(2557), - [anon_sym_get] = ACTIONS(2557), - [anon_sym_set] = ACTIONS(2557), - [anon_sym_declare] = ACTIONS(2557), - [anon_sym_public] = ACTIONS(2557), - [anon_sym_private] = ACTIONS(2557), - [anon_sym_protected] = ACTIONS(2557), - [anon_sym_override] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_any] = ACTIONS(2557), - [anon_sym_number] = ACTIONS(2557), - [anon_sym_boolean] = ACTIONS(2557), - [anon_sym_string] = ACTIONS(2557), - [anon_sym_symbol] = ACTIONS(2557), - [anon_sym_object] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [sym_html_comment] = ACTIONS(5), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, - [780] = { - [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_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_SEMI] = ACTIONS(2579), - [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), - }, - [781] = { [ts_builtin_sym_end] = ACTIONS(2583), [sym_identifier] = ACTIONS(2585), [anon_sym_export] = ACTIONS(2585), @@ -107928,7 +107712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2585), [sym_html_comment] = ACTIONS(5), }, - [782] = { + [779] = { [ts_builtin_sym_end] = ACTIONS(2587), [sym_identifier] = ACTIONS(2589), [anon_sym_export] = ACTIONS(2589), @@ -108011,90 +107795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2589), [sym_html_comment] = ACTIONS(5), }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(2483), - [sym_identifier] = ACTIONS(2485), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_default] = ACTIONS(2485), - [anon_sym_type] = ACTIONS(2485), - [anon_sym_namespace] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_typeof] = ACTIONS(2485), - [anon_sym_import] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2485), - [anon_sym_var] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_switch] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_debugger] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [sym_glimmer_opening_tag] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2485), - [anon_sym_async] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_using] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_SLASH] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_void] = ACTIONS(2485), - [anon_sym_delete] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2483), - [sym_number] = ACTIONS(2483), - [sym_private_property_identifier] = ACTIONS(2483), - [sym_this] = ACTIONS(2485), - [sym_super] = ACTIONS(2485), - [sym_true] = ACTIONS(2485), - [sym_false] = ACTIONS(2485), - [sym_null] = ACTIONS(2485), - [sym_undefined] = ACTIONS(2485), - [anon_sym_AT] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2485), - [anon_sym_readonly] = ACTIONS(2485), - [anon_sym_get] = ACTIONS(2485), - [anon_sym_set] = ACTIONS(2485), - [anon_sym_declare] = ACTIONS(2485), - [anon_sym_public] = ACTIONS(2485), - [anon_sym_private] = ACTIONS(2485), - [anon_sym_protected] = ACTIONS(2485), - [anon_sym_override] = ACTIONS(2485), - [anon_sym_module] = ACTIONS(2485), - [anon_sym_any] = ACTIONS(2485), - [anon_sym_number] = ACTIONS(2485), - [anon_sym_boolean] = ACTIONS(2485), - [anon_sym_string] = ACTIONS(2485), - [anon_sym_symbol] = ACTIONS(2485), - [anon_sym_object] = ACTIONS(2485), - [anon_sym_abstract] = ACTIONS(2485), - [anon_sym_interface] = ACTIONS(2485), - [anon_sym_enum] = ACTIONS(2485), - [sym_html_comment] = ACTIONS(5), - }, - [784] = { + [780] = { [ts_builtin_sym_end] = ACTIONS(2591), [sym_identifier] = ACTIONS(2593), [anon_sym_export] = ACTIONS(2593), @@ -108177,7 +107878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2593), [sym_html_comment] = ACTIONS(5), }, - [785] = { + [781] = { [ts_builtin_sym_end] = ACTIONS(2595), [sym_identifier] = ACTIONS(2597), [anon_sym_export] = ACTIONS(2597), @@ -108260,7 +107961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2597), [sym_html_comment] = ACTIONS(5), }, - [786] = { + [782] = { [ts_builtin_sym_end] = ACTIONS(2599), [sym_identifier] = ACTIONS(2601), [anon_sym_export] = ACTIONS(2601), @@ -108343,90 +108044,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2601), [sym_html_comment] = ACTIONS(5), }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_identifier] = ACTIONS(2605), - [anon_sym_export] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_typeof] = ACTIONS(2605), - [anon_sym_import] = ACTIONS(2605), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_var] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_await] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_debugger] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2603), - [sym_glimmer_opening_tag] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_async] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_SLASH] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_void] = ACTIONS(2605), - [anon_sym_delete] = ACTIONS(2605), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2603), - [sym_number] = ACTIONS(2603), - [sym_private_property_identifier] = ACTIONS(2603), - [sym_this] = ACTIONS(2605), - [sym_super] = ACTIONS(2605), - [sym_true] = ACTIONS(2605), - [sym_false] = ACTIONS(2605), - [sym_null] = ACTIONS(2605), - [sym_undefined] = ACTIONS(2605), - [anon_sym_AT] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_readonly] = ACTIONS(2605), - [anon_sym_get] = ACTIONS(2605), - [anon_sym_set] = ACTIONS(2605), - [anon_sym_declare] = ACTIONS(2605), - [anon_sym_public] = ACTIONS(2605), - [anon_sym_private] = ACTIONS(2605), - [anon_sym_protected] = ACTIONS(2605), - [anon_sym_override] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_any] = ACTIONS(2605), - [anon_sym_number] = ACTIONS(2605), - [anon_sym_boolean] = ACTIONS(2605), - [anon_sym_string] = ACTIONS(2605), - [anon_sym_symbol] = ACTIONS(2605), - [anon_sym_object] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), + [783] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(4889), + [sym_optional_tuple_parameter] = STATE(4889), + [sym_optional_type] = STATE(4889), + [sym_rest_type] = STATE(4889), + [sym__tuple_type_member] = STATE(4889), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(2603), + [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [788] = { + [784] = { [ts_builtin_sym_end] = ACTIONS(2607), [sym_identifier] = ACTIONS(2609), [anon_sym_export] = ACTIONS(2609), @@ -108509,7 +108210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2609), [sym_html_comment] = ACTIONS(5), }, - [789] = { + [785] = { [ts_builtin_sym_end] = ACTIONS(2611), [sym_identifier] = ACTIONS(2613), [anon_sym_export] = ACTIONS(2613), @@ -108592,90 +108293,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2613), [sym_html_comment] = ACTIONS(5), }, - [790] = { - [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_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_SEMI] = ACTIONS(2615), - [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), + [786] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(4619), + [sym_optional_tuple_parameter] = STATE(4619), + [sym_optional_type] = STATE(4619), + [sym_rest_type] = STATE(4619), + [sym__tuple_type_member] = STATE(4619), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(2615), + [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [791] = { + [787] = { [ts_builtin_sym_end] = ACTIONS(2619), [sym_identifier] = ACTIONS(2621), [anon_sym_export] = ACTIONS(2621), @@ -108758,7 +108459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2621), [sym_html_comment] = ACTIONS(5), }, - [792] = { + [788] = { [ts_builtin_sym_end] = ACTIONS(2623), [sym_identifier] = ACTIONS(2625), [anon_sym_export] = ACTIONS(2625), @@ -108841,90 +108542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2625), [sym_html_comment] = ACTIONS(5), }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_type] = ACTIONS(1778), - [anon_sym_namespace] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1778), - [anon_sym_import] = ACTIONS(1778), - [anon_sym_with] = ACTIONS(1778), - [anon_sym_var] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_debugger] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_case] = ACTIONS(1778), - [anon_sym_yield] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1776), - [sym_glimmer_opening_tag] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_class] = ACTIONS(1778), - [anon_sym_async] = ACTIONS(1778), - [anon_sym_function] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_void] = ACTIONS(1778), - [anon_sym_delete] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1776), - [sym_number] = ACTIONS(1776), - [sym_private_property_identifier] = ACTIONS(1776), - [sym_this] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_true] = ACTIONS(1778), - [sym_false] = ACTIONS(1778), - [sym_null] = ACTIONS(1778), - [sym_undefined] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_readonly] = ACTIONS(1778), - [anon_sym_get] = ACTIONS(1778), - [anon_sym_set] = ACTIONS(1778), - [anon_sym_declare] = ACTIONS(1778), - [anon_sym_public] = ACTIONS(1778), - [anon_sym_private] = ACTIONS(1778), - [anon_sym_protected] = ACTIONS(1778), - [anon_sym_override] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_any] = ACTIONS(1778), - [anon_sym_number] = ACTIONS(1778), - [anon_sym_boolean] = ACTIONS(1778), - [anon_sym_string] = ACTIONS(1778), - [anon_sym_symbol] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_abstract] = ACTIONS(1778), - [anon_sym_interface] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { + [789] = { [ts_builtin_sym_end] = ACTIONS(2627), [sym_identifier] = ACTIONS(2629), [anon_sym_export] = ACTIONS(2629), @@ -109007,90 +108625,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2629), [sym_html_comment] = ACTIONS(5), }, - [795] = { - [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_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_SEMI] = ACTIONS(2631), - [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), + [790] = { + [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_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_SEMI] = ACTIONS(2627), + [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), [sym_html_comment] = ACTIONS(5), }, - [796] = { + [791] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(4650), + [sym_optional_tuple_parameter] = STATE(4650), + [sym_optional_type] = STATE(4650), + [sym_rest_type] = STATE(4650), + [sym__tuple_type_member] = STATE(4650), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(2631), + [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [792] = { [ts_builtin_sym_end] = ACTIONS(2635), [sym_identifier] = ACTIONS(2637), [anon_sym_export] = ACTIONS(2637), @@ -109173,7 +108874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2637), [sym_html_comment] = ACTIONS(5), }, - [797] = { + [793] = { [ts_builtin_sym_end] = ACTIONS(2639), [sym_identifier] = ACTIONS(2641), [anon_sym_export] = ACTIONS(2641), @@ -109256,7 +108957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2641), [sym_html_comment] = ACTIONS(5), }, - [798] = { + [794] = { [ts_builtin_sym_end] = ACTIONS(2643), [sym_identifier] = ACTIONS(2645), [anon_sym_export] = ACTIONS(2645), @@ -109339,7 +109040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2645), [sym_html_comment] = ACTIONS(5), }, - [799] = { + [795] = { [ts_builtin_sym_end] = ACTIONS(2647), [sym_identifier] = ACTIONS(2649), [anon_sym_export] = ACTIONS(2649), @@ -109422,7 +109123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2649), [sym_html_comment] = ACTIONS(5), }, - [800] = { + [796] = { [ts_builtin_sym_end] = ACTIONS(2651), [sym_identifier] = ACTIONS(2653), [anon_sym_export] = ACTIONS(2653), @@ -109505,90 +109206,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2653), [sym_html_comment] = ACTIONS(5), }, - [801] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4640), - [sym_optional_tuple_parameter] = STATE(4640), - [sym_optional_type] = STATE(4640), - [sym_rest_type] = STATE(4640), - [sym__tuple_type_member] = STATE(4640), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [797] = { + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_export] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_typeof] = ACTIONS(2657), + [anon_sym_import] = ACTIONS(2657), + [anon_sym_with] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(2657), + [anon_sym_let] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_await] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_debugger] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_yield] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [sym_glimmer_opening_tag] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_function] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_void] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2655), + [sym_number] = ACTIONS(2655), + [sym_private_property_identifier] = ACTIONS(2655), + [sym_this] = ACTIONS(2657), + [sym_super] = ACTIONS(2657), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_undefined] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_readonly] = ACTIONS(2657), + [anon_sym_get] = ACTIONS(2657), + [anon_sym_set] = ACTIONS(2657), + [anon_sym_declare] = ACTIONS(2657), + [anon_sym_public] = ACTIONS(2657), + [anon_sym_private] = ACTIONS(2657), + [anon_sym_protected] = ACTIONS(2657), + [anon_sym_override] = ACTIONS(2657), + [anon_sym_module] = ACTIONS(2657), + [anon_sym_any] = ACTIONS(2657), + [anon_sym_number] = ACTIONS(2657), + [anon_sym_boolean] = ACTIONS(2657), + [anon_sym_string] = ACTIONS(2657), + [anon_sym_symbol] = ACTIONS(2657), + [anon_sym_object] = ACTIONS(2657), + [anon_sym_abstract] = ACTIONS(2657), + [anon_sym_interface] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), [sym_html_comment] = ACTIONS(5), }, - [802] = { + [798] = { + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_export] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_typeof] = ACTIONS(2657), + [anon_sym_import] = ACTIONS(2657), + [anon_sym_with] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(2657), + [anon_sym_let] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_await] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_debugger] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_yield] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [sym_glimmer_opening_tag] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_function] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_void] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2655), + [sym_number] = ACTIONS(2655), + [sym_private_property_identifier] = ACTIONS(2655), + [sym_this] = ACTIONS(2657), + [sym_super] = ACTIONS(2657), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_undefined] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_readonly] = ACTIONS(2657), + [anon_sym_get] = ACTIONS(2657), + [anon_sym_set] = ACTIONS(2657), + [anon_sym_declare] = ACTIONS(2657), + [anon_sym_public] = ACTIONS(2657), + [anon_sym_private] = ACTIONS(2657), + [anon_sym_protected] = ACTIONS(2657), + [anon_sym_override] = ACTIONS(2657), + [anon_sym_module] = ACTIONS(2657), + [anon_sym_any] = ACTIONS(2657), + [anon_sym_number] = ACTIONS(2657), + [anon_sym_boolean] = ACTIONS(2657), + [anon_sym_string] = ACTIONS(2657), + [anon_sym_symbol] = ACTIONS(2657), + [anon_sym_object] = ACTIONS(2657), + [anon_sym_abstract] = ACTIONS(2657), + [anon_sym_interface] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [sym_html_comment] = ACTIONS(5), + }, + [799] = { [ts_builtin_sym_end] = ACTIONS(2659), [sym_identifier] = ACTIONS(2661), [anon_sym_export] = ACTIONS(2661), @@ -109671,7 +109455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2661), [sym_html_comment] = ACTIONS(5), }, - [803] = { + [800] = { [ts_builtin_sym_end] = ACTIONS(2663), [sym_identifier] = ACTIONS(2665), [anon_sym_export] = ACTIONS(2665), @@ -109754,7 +109538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2665), [sym_html_comment] = ACTIONS(5), }, - [804] = { + [801] = { [ts_builtin_sym_end] = ACTIONS(2667), [sym_identifier] = ACTIONS(2669), [anon_sym_export] = ACTIONS(2669), @@ -109837,7 +109621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2669), [sym_html_comment] = ACTIONS(5), }, - [805] = { + [802] = { [ts_builtin_sym_end] = ACTIONS(2671), [sym_identifier] = ACTIONS(2673), [anon_sym_export] = ACTIONS(2673), @@ -109920,7 +109704,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2673), [sym_html_comment] = ACTIONS(5), }, - [806] = { + [803] = { + [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_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_SEMI] = ACTIONS(2671), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [804] = { [ts_builtin_sym_end] = ACTIONS(2675), [sym_identifier] = ACTIONS(2677), [anon_sym_export] = ACTIONS(2677), @@ -110003,7 +109870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2677), [sym_html_comment] = ACTIONS(5), }, - [807] = { + [805] = { [ts_builtin_sym_end] = ACTIONS(2679), [sym_identifier] = ACTIONS(2681), [anon_sym_export] = ACTIONS(2681), @@ -110086,7 +109953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2681), [sym_html_comment] = ACTIONS(5), }, - [808] = { + [806] = { [ts_builtin_sym_end] = ACTIONS(2683), [sym_identifier] = ACTIONS(2685), [anon_sym_export] = ACTIONS(2685), @@ -110169,7 +110036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2685), [sym_html_comment] = ACTIONS(5), }, - [809] = { + [807] = { [ts_builtin_sym_end] = ACTIONS(2687), [sym_identifier] = ACTIONS(2689), [anon_sym_export] = ACTIONS(2689), @@ -110252,7 +110119,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2689), [sym_html_comment] = ACTIONS(5), }, - [810] = { + [808] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_typeof] = ACTIONS(2489), + [anon_sym_import] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_var] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_debugger] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [sym_glimmer_opening_tag] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2487), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [sym_this] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_undefined] = ACTIONS(2489), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_readonly] = ACTIONS(2489), + [anon_sym_get] = ACTIONS(2489), + [anon_sym_set] = ACTIONS(2489), + [anon_sym_declare] = ACTIONS(2489), + [anon_sym_public] = ACTIONS(2489), + [anon_sym_private] = ACTIONS(2489), + [anon_sym_protected] = ACTIONS(2489), + [anon_sym_override] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_any] = ACTIONS(2489), + [anon_sym_number] = ACTIONS(2489), + [anon_sym_boolean] = ACTIONS(2489), + [anon_sym_string] = ACTIONS(2489), + [anon_sym_symbol] = ACTIONS(2489), + [anon_sym_object] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [sym_html_comment] = ACTIONS(5), + }, + [809] = { [ts_builtin_sym_end] = ACTIONS(2691), [sym_identifier] = ACTIONS(2693), [anon_sym_export] = ACTIONS(2693), @@ -110335,87 +110285,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2693), [sym_html_comment] = ACTIONS(5), }, + [810] = { + [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_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_SEMI] = ACTIONS(2695), + [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), + [sym_html_comment] = ACTIONS(5), + }, [811] = { - [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_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_SEMI] = ACTIONS(2659), - [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), + [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_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_SEMI] = ACTIONS(2695), + [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(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), + [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), }, [812] = { @@ -110585,89 +110618,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [814] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, - [815] = { [ts_builtin_sym_end] = ACTIONS(2703), [sym_identifier] = ACTIONS(2705), [anon_sym_export] = ACTIONS(2705), @@ -110750,7 +110700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2705), [sym_html_comment] = ACTIONS(5), }, - [816] = { + [815] = { [ts_builtin_sym_end] = ACTIONS(2707), [sym_identifier] = ACTIONS(2709), [anon_sym_export] = ACTIONS(2709), @@ -110833,7 +110783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2709), [sym_html_comment] = ACTIONS(5), }, - [817] = { + [816] = { [ts_builtin_sym_end] = ACTIONS(2711), [sym_identifier] = ACTIONS(2713), [anon_sym_export] = ACTIONS(2713), @@ -110916,7 +110866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2713), [sym_html_comment] = ACTIONS(5), }, - [818] = { + [817] = { [ts_builtin_sym_end] = ACTIONS(2715), [sym_identifier] = ACTIONS(2717), [anon_sym_export] = ACTIONS(2717), @@ -110999,90 +110949,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2717), [sym_html_comment] = ACTIONS(5), }, - [819] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4975), - [sym_optional_tuple_parameter] = STATE(4975), - [sym_optional_type] = STATE(4975), - [sym_rest_type] = STATE(4975), - [sym__tuple_type_member] = STATE(4975), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(2719), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [818] = { + [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_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_SEMI] = ACTIONS(2719), + [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), [sym_html_comment] = ACTIONS(5), }, - [820] = { + [819] = { [ts_builtin_sym_end] = ACTIONS(2723), [sym_identifier] = ACTIONS(2725), [anon_sym_export] = ACTIONS(2725), @@ -111165,339 +111115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2725), [sym_html_comment] = ACTIONS(5), }, - [821] = { - [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_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_SEMI] = ACTIONS(2723), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [822] = { - [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_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_SEMI] = ACTIONS(2723), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [823] = { - [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_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_SEMI] = ACTIONS(1831), - [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_html_comment] = ACTIONS(5), - }, - [824] = { - [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_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_SEMI] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [sym_glimmer_opening_tag] = 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(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), - [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_html_comment] = ACTIONS(5), - }, - [825] = { + [820] = { [ts_builtin_sym_end] = ACTIONS(2727), [sym_identifier] = ACTIONS(2729), [anon_sym_export] = ACTIONS(2729), @@ -111580,90 +111198,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2729), [sym_html_comment] = ACTIONS(5), }, - [826] = { - [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_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_SEMI] = ACTIONS(2731), - [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), + [821] = { + [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_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_SEMI] = ACTIONS(2727), + [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(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), + [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), }, - [827] = { + [822] = { [ts_builtin_sym_end] = ACTIONS(2731), [sym_identifier] = ACTIONS(2733), [anon_sym_export] = ACTIONS(2733), @@ -111746,7 +111364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2733), [sym_html_comment] = ACTIONS(5), }, - [828] = { + [823] = { [ts_builtin_sym_end] = ACTIONS(2735), [sym_identifier] = ACTIONS(2737), [anon_sym_export] = ACTIONS(2737), @@ -111829,7 +111447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2737), [sym_html_comment] = ACTIONS(5), }, - [829] = { + [824] = { [ts_builtin_sym_end] = ACTIONS(2739), [sym_identifier] = ACTIONS(2741), [anon_sym_export] = ACTIONS(2741), @@ -111912,7 +111530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2741), [sym_html_comment] = ACTIONS(5), }, - [830] = { + [825] = { [ts_builtin_sym_end] = ACTIONS(2743), [sym_identifier] = ACTIONS(2745), [anon_sym_export] = ACTIONS(2745), @@ -111995,7 +111613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2745), [sym_html_comment] = ACTIONS(5), }, - [831] = { + [826] = { [ts_builtin_sym_end] = ACTIONS(2747), [sym_identifier] = ACTIONS(2749), [anon_sym_export] = ACTIONS(2749), @@ -112078,7 +111696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2749), [sym_html_comment] = ACTIONS(5), }, - [832] = { + [827] = { [ts_builtin_sym_end] = ACTIONS(2751), [sym_identifier] = ACTIONS(2753), [anon_sym_export] = ACTIONS(2753), @@ -112161,7 +111779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2753), [sym_html_comment] = ACTIONS(5), }, - [833] = { + [828] = { [ts_builtin_sym_end] = ACTIONS(2755), [sym_identifier] = ACTIONS(2757), [anon_sym_export] = ACTIONS(2757), @@ -112244,7 +111862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2757), [sym_html_comment] = ACTIONS(5), }, - [834] = { + [829] = { [ts_builtin_sym_end] = ACTIONS(2759), [sym_identifier] = ACTIONS(2761), [anon_sym_export] = ACTIONS(2761), @@ -112327,7 +111945,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2761), [sym_html_comment] = ACTIONS(5), }, - [835] = { + [830] = { + [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_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_SEMI] = ACTIONS(2759), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [831] = { [ts_builtin_sym_end] = ACTIONS(2763), [sym_identifier] = ACTIONS(2765), [anon_sym_export] = ACTIONS(2765), @@ -112410,90 +112111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2765), [sym_html_comment] = ACTIONS(5), }, - [836] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4556), - [sym_optional_tuple_parameter] = STATE(4556), - [sym_optional_type] = STATE(4556), - [sym_rest_type] = STATE(4556), - [sym__tuple_type_member] = STATE(4556), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(2767), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [832] = { + [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_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_SEMI] = ACTIONS(2767), + [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), [sym_html_comment] = ACTIONS(5), }, - [837] = { + [833] = { [ts_builtin_sym_end] = ACTIONS(2771), [sym_identifier] = ACTIONS(2773), [anon_sym_export] = ACTIONS(2773), @@ -112576,7 +112277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2773), [sym_html_comment] = ACTIONS(5), }, - [838] = { + [834] = { [ts_builtin_sym_end] = ACTIONS(2775), [sym_identifier] = ACTIONS(2777), [anon_sym_export] = ACTIONS(2777), @@ -112659,7 +112360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2777), [sym_html_comment] = ACTIONS(5), }, - [839] = { + [835] = { [ts_builtin_sym_end] = ACTIONS(2779), [sym_identifier] = ACTIONS(2781), [anon_sym_export] = ACTIONS(2781), @@ -112742,7 +112443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2781), [sym_html_comment] = ACTIONS(5), }, - [840] = { + [836] = { [ts_builtin_sym_end] = ACTIONS(2783), [sym_identifier] = ACTIONS(2785), [anon_sym_export] = ACTIONS(2785), @@ -112825,7 +112526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2785), [sym_html_comment] = ACTIONS(5), }, - [841] = { + [837] = { [ts_builtin_sym_end] = ACTIONS(2787), [sym_identifier] = ACTIONS(2789), [anon_sym_export] = ACTIONS(2789), @@ -112908,90 +112609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2789), [sym_html_comment] = ACTIONS(5), }, - [842] = { - [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_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_SEMI] = ACTIONS(2791), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [843] = { + [838] = { [ts_builtin_sym_end] = ACTIONS(2791), [sym_identifier] = ACTIONS(2793), [anon_sym_export] = ACTIONS(2793), @@ -113074,7 +112692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2793), [sym_html_comment] = ACTIONS(5), }, - [844] = { + [839] = { [ts_builtin_sym_end] = ACTIONS(2795), [sym_identifier] = ACTIONS(2797), [anon_sym_export] = ACTIONS(2797), @@ -113157,7 +112775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2797), [sym_html_comment] = ACTIONS(5), }, - [845] = { + [840] = { [ts_builtin_sym_end] = ACTIONS(2799), [sym_identifier] = ACTIONS(2801), [anon_sym_export] = ACTIONS(2801), @@ -113240,7 +112858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2801), [sym_html_comment] = ACTIONS(5), }, - [846] = { + [841] = { [ts_builtin_sym_end] = ACTIONS(2803), [sym_identifier] = ACTIONS(2805), [anon_sym_export] = ACTIONS(2805), @@ -113323,7 +112941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2805), [sym_html_comment] = ACTIONS(5), }, - [847] = { + [842] = { [ts_builtin_sym_end] = ACTIONS(2807), [sym_identifier] = ACTIONS(2809), [anon_sym_export] = ACTIONS(2809), @@ -113406,7 +113024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2809), [sym_html_comment] = ACTIONS(5), }, - [848] = { + [843] = { [ts_builtin_sym_end] = ACTIONS(2811), [sym_identifier] = ACTIONS(2813), [anon_sym_export] = ACTIONS(2813), @@ -113489,7 +113107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2813), [sym_html_comment] = ACTIONS(5), }, - [849] = { + [844] = { [ts_builtin_sym_end] = ACTIONS(2815), [sym_identifier] = ACTIONS(2817), [anon_sym_export] = ACTIONS(2817), @@ -113572,7 +113190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2817), [sym_html_comment] = ACTIONS(5), }, - [850] = { + [845] = { [ts_builtin_sym_end] = ACTIONS(2819), [sym_identifier] = ACTIONS(2821), [anon_sym_export] = ACTIONS(2821), @@ -113655,7 +113273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2821), [sym_html_comment] = ACTIONS(5), }, - [851] = { + [846] = { [ts_builtin_sym_end] = ACTIONS(2823), [sym_identifier] = ACTIONS(2825), [anon_sym_export] = ACTIONS(2825), @@ -113738,173 +113356,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2825), [sym_html_comment] = ACTIONS(5), }, - [852] = { - [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_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_SEMI] = ACTIONS(2827), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [853] = { - [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_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_SEMI] = ACTIONS(2831), - [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), + [847] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5049), + [sym_optional_tuple_parameter] = STATE(5049), + [sym_optional_type] = STATE(5049), + [sym_rest_type] = STATE(5049), + [sym__tuple_type_member] = STATE(5049), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(2827), + [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), [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), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [854] = { + [848] = { [ts_builtin_sym_end] = ACTIONS(2831), [sym_identifier] = ACTIONS(2833), [anon_sym_export] = ACTIONS(2833), @@ -113987,7 +113522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2833), [sym_html_comment] = ACTIONS(5), }, - [855] = { + [849] = { [ts_builtin_sym_end] = ACTIONS(2835), [sym_identifier] = ACTIONS(2837), [anon_sym_export] = ACTIONS(2837), @@ -114070,90 +113605,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2837), [sym_html_comment] = ACTIONS(5), }, - [856] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(4755), - [sym_optional_tuple_parameter] = STATE(4755), - [sym_optional_type] = STATE(4755), - [sym_rest_type] = STATE(4755), - [sym__tuple_type_member] = STATE(4755), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [850] = { + [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_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_SEMI] = ACTIONS(2839), + [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), [sym_html_comment] = ACTIONS(5), }, - [857] = { + [851] = { [ts_builtin_sym_end] = ACTIONS(2843), [sym_identifier] = ACTIONS(2845), [anon_sym_export] = ACTIONS(2845), @@ -114236,7 +113771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2845), [sym_html_comment] = ACTIONS(5), }, - [858] = { + [852] = { [ts_builtin_sym_end] = ACTIONS(2847), [sym_identifier] = ACTIONS(2849), [anon_sym_export] = ACTIONS(2849), @@ -114319,90 +113854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2849), [sym_html_comment] = ACTIONS(5), }, - [859] = { - [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_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_SEMI] = ACTIONS(2851), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [860] = { + [853] = { [ts_builtin_sym_end] = ACTIONS(2851), [sym_identifier] = ACTIONS(2853), [anon_sym_export] = ACTIONS(2853), @@ -114485,7 +113937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2853), [sym_html_comment] = ACTIONS(5), }, - [861] = { + [854] = { [ts_builtin_sym_end] = ACTIONS(2855), [sym_identifier] = ACTIONS(2857), [anon_sym_export] = ACTIONS(2857), @@ -114568,7 +114020,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2857), [sym_html_comment] = ACTIONS(5), }, - [862] = { + [855] = { + [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_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_SEMI] = ACTIONS(1925), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1925), + [sym_glimmer_opening_tag] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = 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), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [856] = { [ts_builtin_sym_end] = ACTIONS(2859), [sym_identifier] = ACTIONS(2861), [anon_sym_export] = ACTIONS(2861), @@ -114651,7 +114186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2861), [sym_html_comment] = ACTIONS(5), }, - [863] = { + [857] = { [ts_builtin_sym_end] = ACTIONS(2863), [sym_identifier] = ACTIONS(2865), [anon_sym_export] = ACTIONS(2865), @@ -114734,7 +114269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2865), [sym_html_comment] = ACTIONS(5), }, - [864] = { + [858] = { [ts_builtin_sym_end] = ACTIONS(2867), [sym_identifier] = ACTIONS(2869), [anon_sym_export] = ACTIONS(2869), @@ -114817,7 +114352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2869), [sym_html_comment] = ACTIONS(5), }, - [865] = { + [859] = { [ts_builtin_sym_end] = ACTIONS(2871), [sym_identifier] = ACTIONS(2873), [anon_sym_export] = ACTIONS(2873), @@ -114900,7 +114435,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2873), [sym_html_comment] = ACTIONS(5), }, - [866] = { + [860] = { + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_namespace] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_var] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_debugger] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_throw] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_case] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1783), + [sym_glimmer_opening_tag] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1785), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_void] = ACTIONS(1785), + [anon_sym_delete] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1783), + [sym_number] = ACTIONS(1783), + [sym_private_property_identifier] = ACTIONS(1783), + [sym_this] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), + [sym_null] = ACTIONS(1785), + [sym_undefined] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_get] = ACTIONS(1785), + [anon_sym_set] = ACTIONS(1785), + [anon_sym_declare] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_private] = ACTIONS(1785), + [anon_sym_protected] = ACTIONS(1785), + [anon_sym_override] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_any] = ACTIONS(1785), + [anon_sym_number] = ACTIONS(1785), + [anon_sym_boolean] = ACTIONS(1785), + [anon_sym_string] = ACTIONS(1785), + [anon_sym_symbol] = ACTIONS(1785), + [anon_sym_object] = ACTIONS(1785), + [anon_sym_abstract] = ACTIONS(1785), + [anon_sym_interface] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [sym_html_comment] = ACTIONS(5), + }, + [861] = { + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_namespace] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_var] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_debugger] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_throw] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_case] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1783), + [sym_glimmer_opening_tag] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1785), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_void] = ACTIONS(1785), + [anon_sym_delete] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1783), + [sym_number] = ACTIONS(1783), + [sym_private_property_identifier] = ACTIONS(1783), + [sym_this] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), + [sym_null] = ACTIONS(1785), + [sym_undefined] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_get] = ACTIONS(1785), + [anon_sym_set] = ACTIONS(1785), + [anon_sym_declare] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_private] = ACTIONS(1785), + [anon_sym_protected] = ACTIONS(1785), + [anon_sym_override] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_any] = ACTIONS(1785), + [anon_sym_number] = ACTIONS(1785), + [anon_sym_boolean] = ACTIONS(1785), + [anon_sym_string] = ACTIONS(1785), + [anon_sym_symbol] = ACTIONS(1785), + [anon_sym_object] = ACTIONS(1785), + [anon_sym_abstract] = ACTIONS(1785), + [anon_sym_interface] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [sym_html_comment] = ACTIONS(5), + }, + [862] = { + [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_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_SEMI] = ACTIONS(1779), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [sym_glimmer_opening_tag] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), + }, + [863] = { [ts_builtin_sym_end] = ACTIONS(2875), [sym_identifier] = ACTIONS(2877), [anon_sym_export] = ACTIONS(2877), @@ -114983,7 +114767,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2877), [sym_html_comment] = ACTIONS(5), }, - [867] = { + [864] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_typeof] = ACTIONS(2489), + [anon_sym_import] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_var] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_debugger] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [sym_glimmer_opening_tag] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2487), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [sym_this] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_undefined] = ACTIONS(2489), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_readonly] = ACTIONS(2489), + [anon_sym_get] = ACTIONS(2489), + [anon_sym_set] = ACTIONS(2489), + [anon_sym_declare] = ACTIONS(2489), + [anon_sym_public] = ACTIONS(2489), + [anon_sym_private] = ACTIONS(2489), + [anon_sym_protected] = ACTIONS(2489), + [anon_sym_override] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_any] = ACTIONS(2489), + [anon_sym_number] = ACTIONS(2489), + [anon_sym_boolean] = ACTIONS(2489), + [anon_sym_string] = ACTIONS(2489), + [anon_sym_symbol] = ACTIONS(2489), + [anon_sym_object] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [sym_html_comment] = ACTIONS(5), + }, + [865] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_typeof] = ACTIONS(2489), + [anon_sym_import] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_var] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_debugger] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [sym_glimmer_opening_tag] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2487), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [sym_this] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_undefined] = ACTIONS(2489), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_readonly] = ACTIONS(2489), + [anon_sym_get] = ACTIONS(2489), + [anon_sym_set] = ACTIONS(2489), + [anon_sym_declare] = ACTIONS(2489), + [anon_sym_public] = ACTIONS(2489), + [anon_sym_private] = ACTIONS(2489), + [anon_sym_protected] = ACTIONS(2489), + [anon_sym_override] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_any] = ACTIONS(2489), + [anon_sym_number] = ACTIONS(2489), + [anon_sym_boolean] = ACTIONS(2489), + [anon_sym_string] = ACTIONS(2489), + [anon_sym_symbol] = ACTIONS(2489), + [anon_sym_object] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [sym_html_comment] = ACTIONS(5), + }, + [866] = { [ts_builtin_sym_end] = ACTIONS(2879), [sym_identifier] = ACTIONS(2881), [anon_sym_export] = ACTIONS(2881), @@ -115066,7 +115016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2881), [sym_html_comment] = ACTIONS(5), }, - [868] = { + [867] = { [ts_builtin_sym_end] = ACTIONS(2883), [sym_identifier] = ACTIONS(2885), [anon_sym_export] = ACTIONS(2885), @@ -115149,6 +115099,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2885), [sym_html_comment] = ACTIONS(5), }, + [868] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_typeof] = ACTIONS(2489), + [anon_sym_import] = ACTIONS(2489), + [anon_sym_with] = ACTIONS(2489), + [anon_sym_var] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_debugger] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [sym_glimmer_opening_tag] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2487), + [sym_number] = ACTIONS(2487), + [sym_private_property_identifier] = ACTIONS(2487), + [sym_this] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_undefined] = ACTIONS(2489), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_readonly] = ACTIONS(2489), + [anon_sym_get] = ACTIONS(2489), + [anon_sym_set] = ACTIONS(2489), + [anon_sym_declare] = ACTIONS(2489), + [anon_sym_public] = ACTIONS(2489), + [anon_sym_private] = ACTIONS(2489), + [anon_sym_protected] = ACTIONS(2489), + [anon_sym_override] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_any] = ACTIONS(2489), + [anon_sym_number] = ACTIONS(2489), + [anon_sym_boolean] = ACTIONS(2489), + [anon_sym_string] = ACTIONS(2489), + [anon_sym_symbol] = ACTIONS(2489), + [anon_sym_object] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [sym_html_comment] = ACTIONS(5), + }, [869] = { [ts_builtin_sym_end] = ACTIONS(2887), [sym_identifier] = ACTIONS(2889), @@ -115233,81 +115266,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [870] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115315,81 +115348,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [871] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115397,81 +115430,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [872] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115479,81 +115512,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [873] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115561,81 +115594,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [874] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115643,81 +115676,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [875] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115725,81 +115758,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [876] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115807,81 +115840,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [877] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115889,81 +115922,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [878] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115971,81 +116004,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -116053,80 +116086,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [880] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3809), - [sym_tuple_parameter] = STATE(5368), - [sym_optional_tuple_parameter] = STATE(5368), - [sym_optional_type] = STATE(5368), - [sym_rest_type] = STATE(5368), - [sym__tuple_type_member] = STATE(5368), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_rest_pattern] = STATE(5377), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3859), + [sym_tuple_parameter] = STATE(5447), + [sym_optional_tuple_parameter] = STATE(5447), + [sym_optional_type] = STATE(5447), + [sym_rest_type] = STATE(5447), + [sym__tuple_type_member] = STATE(5447), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -116212,81 +116245,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [882] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [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(2917), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [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_SEMI] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), - [sym_glimmer_opening_tag] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [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(2915), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2445), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_typeof] = ACTIONS(2445), + [anon_sym_import] = ACTIONS(2445), + [anon_sym_with] = ACTIONS(2445), + [anon_sym_var] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_debugger] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2443), + [sym_glimmer_opening_tag] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_void] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [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(2917), - [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), + [anon_sym_BQUOTE] = ACTIONS(2443), + [sym_number] = ACTIONS(2443), + [sym_private_property_identifier] = ACTIONS(2443), + [sym_this] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), + [sym_undefined] = ACTIONS(2445), + [anon_sym_AT] = ACTIONS(2443), + [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_abstract] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), [sym_html_comment] = ACTIONS(5), }, [883] = { @@ -116368,630 +116401,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [884] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [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(2917), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [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_SEMI] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), - [sym_glimmer_opening_tag] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [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(2915), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [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(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [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_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [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(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [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(2917), - [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), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [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(2913), + [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), }, [885] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [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(2917), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [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_SEMI] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), - [sym_glimmer_opening_tag] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [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(2915), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [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(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [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_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [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(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [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(2917), - [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), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [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(2913), + [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), }, [886] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [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(2917), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [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_SEMI] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), - [sym_glimmer_opening_tag] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [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(2915), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [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(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [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_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [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(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [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(2917), - [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), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [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(2913), + [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), }, [887] = { - [sym_identifier] = ACTIONS(2449), - [anon_sym_export] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_typeof] = ACTIONS(2449), - [anon_sym_import] = ACTIONS(2449), - [anon_sym_with] = ACTIONS(2449), - [anon_sym_var] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_switch] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_debugger] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [sym_glimmer_opening_tag] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_using] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_void] = ACTIONS(2449), - [anon_sym_delete] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [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(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [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_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [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(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2447), - [sym_number] = ACTIONS(2447), - [sym_private_property_identifier] = ACTIONS(2447), - [sym_this] = ACTIONS(2449), - [sym_super] = ACTIONS(2449), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_null] = ACTIONS(2449), - [sym_undefined] = ACTIONS(2449), - [anon_sym_AT] = ACTIONS(2447), - [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_abstract] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [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(2913), + [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), }, [888] = { - [sym_identifier] = ACTIONS(2453), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_typeof] = ACTIONS(2453), - [anon_sym_import] = ACTIONS(2453), - [anon_sym_with] = ACTIONS(2453), - [anon_sym_var] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_debugger] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [sym_glimmer_opening_tag] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_void] = ACTIONS(2453), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [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(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [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_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [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(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2451), - [sym_number] = ACTIONS(2451), - [sym_private_property_identifier] = ACTIONS(2451), - [sym_this] = ACTIONS(2453), - [sym_super] = ACTIONS(2453), - [sym_true] = ACTIONS(2453), - [sym_false] = ACTIONS(2453), - [sym_null] = ACTIONS(2453), - [sym_undefined] = ACTIONS(2453), - [anon_sym_AT] = ACTIONS(2451), - [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_abstract] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [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(2913), + [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), }, [889] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [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(2917), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [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_SEMI] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), - [sym_glimmer_opening_tag] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [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(2915), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [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(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [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_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [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(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [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(2917), - [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), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [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(2913), + [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), }, [890] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [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(2917), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [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_SEMI] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), - [sym_glimmer_opening_tag] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [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(2915), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [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(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [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_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [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(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [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(2917), - [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), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [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(2913), + [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), }, [891] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [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(2917), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [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_SEMI] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), - [sym_glimmer_opening_tag] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [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(2915), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [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(2917), - [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), - }, - [892] = { [sym_identifier] = ACTIONS(2919), [anon_sym_export] = ACTIONS(2919), [anon_sym_type] = ACTIONS(2919), @@ -117069,6 +117024,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2919), [sym_html_comment] = ACTIONS(5), }, + [892] = { + [sym_identifier] = ACTIONS(2461), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_LBRACE] = 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_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_LPAREN] = 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_SEMI] = ACTIONS(2459), + [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_html_comment] = ACTIONS(5), + }, [893] = { [sym_identifier] = ACTIONS(2923), [anon_sym_export] = ACTIONS(2923), @@ -117148,66 +117181,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [894] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_asserts] = STATE(2879), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_predicate] = STATE(2879), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2959), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_asserts] = STATE(1894), + [sym_type] = STATE(1895), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_predicate] = STATE(1894), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1811), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), [sym_identifier] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(2955), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_asserts] = ACTIONS(2965), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [895] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_asserts] = STATE(3174), + [sym_type] = STATE(3175), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_predicate] = STATE(3174), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3112), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(2979), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_asserts] = ACTIONS(2981), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [896] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_asserts] = STATE(3299), + [sym_type] = STATE(3317), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_predicate] = STATE(3299), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3227), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3015), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_asserts] = ACTIONS(3025), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [897] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_asserts] = STATE(2926), + [sym_type] = STATE(3059), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_predicate] = STATE(2926), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2995), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(2929), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -117215,7 +117479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), - [anon_sym_asserts] = ACTIONS(2931), + [anon_sym_asserts] = ACTIONS(3039), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), @@ -117224,1222 +117488,837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [895] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_asserts] = STATE(3722), - [sym_type] = STATE(3238), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_predicate] = STATE(3787), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3138), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(2937), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_asserts] = ACTIONS(2939), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [896] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_asserts] = STATE(2928), - [sym_type] = STATE(3064), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_predicate] = STATE(2928), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2959), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [898] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_asserts] = STATE(2926), + [sym_type] = STATE(3829), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_predicate] = STATE(2926), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(3590), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(2929), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(3053), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_asserts] = ACTIONS(2931), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_asserts] = ACTIONS(3061), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [897] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_asserts] = STATE(3916), - [sym_type] = STATE(3476), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_predicate] = STATE(3917), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3227), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_asserts] = ACTIONS(2983), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), - [sym_html_comment] = ACTIONS(5), - }, - [898] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_asserts] = STATE(1517), - [sym_type] = STATE(1518), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_predicate] = STATE(1517), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1442), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3021), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_asserts] = ACTIONS(3031), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, [899] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_asserts] = STATE(3148), - [sym_type] = STATE(3149), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_predicate] = STATE(3148), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3138), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_asserts] = STATE(3208), + [sym_type] = STATE(3152), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_predicate] = STATE(3208), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3112), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(2937), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_asserts] = ACTIONS(2939), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(2979), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_asserts] = ACTIONS(2981), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, [900] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_asserts] = STATE(1545), - [sym_type] = STATE(1546), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_predicate] = STATE(1545), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1442), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3021), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_asserts] = ACTIONS(3031), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [sym_html_comment] = ACTIONS(5), - }, - [901] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_asserts] = STATE(3363), - [sym_type] = STATE(3369), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_predicate] = STATE(3363), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_asserts] = STATE(3419), + [sym_type] = STATE(3421), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_predicate] = STATE(3419), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), [sym_predefined_type] = STATE(3227), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_asserts] = ACTIONS(2983), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), - [sym_html_comment] = ACTIONS(5), - }, - [902] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_asserts] = STATE(1975), - [sym_type] = STATE(1976), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_predicate] = STATE(1975), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1865), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3069), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_asserts] = ACTIONS(3079), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3015), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_asserts] = ACTIONS(3025), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [903] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_asserts] = STATE(2879), - [sym_type] = STATE(3747), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_predicate] = STATE(2879), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(3654), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [901] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_asserts] = STATE(5487), + [sym_type] = STATE(3333), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_predicate] = STATE(5492), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2995), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(3101), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_asserts] = ACTIONS(3109), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_asserts] = ACTIONS(3039), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [904] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_asserts] = STATE(1946), - [sym_type] = STATE(1947), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_predicate] = STATE(1946), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1865), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), + [902] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_asserts] = STATE(3933), + [sym_type] = STATE(3454), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_predicate] = STATE(3935), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3227), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3069), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_asserts] = ACTIONS(3079), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3015), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_asserts] = ACTIONS(3025), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [905] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_asserts] = STATE(2928), - [sym_type] = STATE(3772), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_predicate] = STATE(2928), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(3654), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [903] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_asserts] = STATE(1457), + [sym_type] = STATE(1458), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_predicate] = STATE(1457), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1450), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3097), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_asserts] = ACTIONS(3107), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [904] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_asserts] = STATE(2874), + [sym_type] = STATE(3812), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_predicate] = STATE(2874), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(3590), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(3101), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(3053), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_asserts] = ACTIONS(3109), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_asserts] = ACTIONS(3061), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [906] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_asserts] = STATE(2879), - [sym_type] = STATE(3679), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_predicate] = STATE(2879), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(3488), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), + [905] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_asserts] = STATE(2874), + [sym_type] = STATE(3623), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_predicate] = STATE(2874), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(3472), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), [sym_identifier] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), [sym_this] = ACTIONS(3119), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(666), [anon_sym_asserts] = ACTIONS(3121), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [907] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_asserts] = STATE(3430), - [sym_type] = STATE(3431), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_predicate] = STATE(3430), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3227), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_asserts] = ACTIONS(2983), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), - [sym_html_comment] = ACTIONS(5), - }, - [908] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_asserts] = STATE(3169), - [sym_type] = STATE(3174), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_predicate] = STATE(3169), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3138), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(2937), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_asserts] = ACTIONS(2939), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [909] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_asserts] = STATE(2928), - [sym_type] = STATE(3718), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_predicate] = STATE(2928), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(3488), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), + [906] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_asserts] = STATE(2926), + [sym_type] = STATE(3651), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_predicate] = STATE(2926), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(3472), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), [sym_identifier] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), [sym_this] = ACTIONS(3119), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(666), [anon_sym_asserts] = ACTIONS(3121), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [910] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_asserts] = STATE(5405), - [sym_type] = STATE(3285), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_predicate] = STATE(5340), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2959), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [907] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_asserts] = STATE(3896), + [sym_type] = STATE(3226), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_predicate] = STATE(3900), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3112), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(2979), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_asserts] = ACTIONS(2981), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [908] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_asserts] = STATE(2874), + [sym_type] = STATE(3006), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_predicate] = STATE(2874), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2995), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(2929), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -118447,7 +118326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), - [anon_sym_asserts] = ACTIONS(2931), + [anon_sym_asserts] = ACTIONS(3039), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), @@ -118456,6 +118335,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, + [909] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_asserts] = STATE(2096), + [sym_type] = STATE(2097), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_predicate] = STATE(2096), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1811), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(2955), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_asserts] = ACTIONS(2965), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [910] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_asserts] = STATE(1491), + [sym_type] = STATE(1492), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_predicate] = STATE(1491), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1450), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3097), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_asserts] = ACTIONS(3107), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, [911] = { [sym_identifier] = ACTIONS(3123), [anon_sym_export] = ACTIONS(3123), @@ -118685,65 +118718,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [914] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -118760,65 +118793,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -118835,65 +118868,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -118910,65 +118943,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [917] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4534), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -118985,65 +119018,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4476), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3738), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [sym_jsx_identifier] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119060,65 +119093,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4432), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119135,65 +119168,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [920] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4446), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119210,65 +119243,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4494), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119285,65 +119318,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4503), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119360,65 +119393,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [923] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3850), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [sym_jsx_identifier] = ACTIONS(3155), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119435,65 +119468,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [924] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119510,65 +119543,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4417), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119585,65 +119618,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [926] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119660,65 +119693,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [927] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119735,65 +119768,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [928] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119810,65 +119843,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [929] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4517), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119885,65 +119918,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [930] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4514), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -119960,65 +119993,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [931] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4487), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -120035,65 +120068,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [932] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -120110,65 +120143,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [933] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_GT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -120185,1396 +120218,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [934] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3266), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), - [sym_html_comment] = ACTIONS(5), - }, - [935] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1953), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [936] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(4039), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [937] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3364), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), - [sym_html_comment] = ACTIONS(5), - }, - [938] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3366), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), - [sym_html_comment] = ACTIONS(5), - }, - [939] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1972), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [940] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1973), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [941] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2852), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4561), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [942] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1990), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [943] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1991), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [944] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(2003), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [945] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(2004), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1919), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [947] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2880), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [935] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [948] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3684), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [936] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4791), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2858), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [949] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3698), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [937] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4791), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2860), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [950] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3699), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [938] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2876), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [951] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4986), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(4174), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(4477), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [939] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3813), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [952] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3872), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [940] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(5076), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(4232), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(4437), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -121590,879 +120735,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [953] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1923), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [954] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4485), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [941] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3819), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [955] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3185), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [956] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3196), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [957] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3143), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [958] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4557), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(3146), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(1014), - [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(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [959] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4557), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(3151), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(1014), - [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(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [960] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2925), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [942] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3820), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [961] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [943] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [962] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3715), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [944] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3828), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [963] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4756), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(1924), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), + [945] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3171), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [964] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2880), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [946] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -122478,879 +121179,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [965] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2995), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [947] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3176), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [948] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2854), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [966] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(4057), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [967] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3202), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [968] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3204), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [969] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2867), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [949] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2859), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [970] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [950] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2857), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [971] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(2013), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [972] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(2014), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [973] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3142), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [974] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3144), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [975] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2868), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [951] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [976] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4483), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [952] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2876), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -123366,879 +121623,805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [977] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3176), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [978] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3177), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [979] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3189), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [980] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3190), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [981] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2856), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [953] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3017), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [982] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3495), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [954] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4444), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [983] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4756), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(1926), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), + [955] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3201), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [956] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3168), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [957] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1909), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), [sym_html_comment] = ACTIONS(5), }, - [984] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1489), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [958] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1939), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), [sym_html_comment] = ACTIONS(5), }, - [985] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1490), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [959] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1940), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), [sym_html_comment] = ACTIONS(5), }, - [986] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1494), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [960] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3170), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [987] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4608), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(1495), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [961] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3172), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(3027), - [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(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [988] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [962] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1910), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [963] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3833), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -124254,139 +122437,805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [989] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4608), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(1497), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [964] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1922), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(3027), - [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(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), [sym_html_comment] = ACTIONS(5), }, - [990] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4324), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [965] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3191), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [966] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3192), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [967] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3210), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [968] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3211), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [969] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1563), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [970] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1564), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [971] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1923), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [972] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1580), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [973] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1581), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [974] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3000), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -124402,65 +123251,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [991] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4530), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [975] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3001), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -124476,657 +123325,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [992] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1523), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [976] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1586), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [993] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1524), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [977] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4620), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(1587), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [994] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1542), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [978] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4620), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(1590), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [995] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1543), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [979] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3226), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [980] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1463), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [996] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1561), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [981] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1464), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [997] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1562), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [982] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1484), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [998] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1574), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [983] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1487), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [999] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1575), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [984] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(2019), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [985] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1510), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [1000] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [986] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1512), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [987] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1529), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [988] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4541), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -125142,435 +124287,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1001] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3325), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [989] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4298), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [1002] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3327), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [990] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4546), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3330), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [991] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1531), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [1004] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4642), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(3332), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [992] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(4094), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(2979), - [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(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1005] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4642), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(3334), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [993] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(2979), - [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_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1006] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3850), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [994] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -125586,65 +124731,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3910), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [995] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3054), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -125660,1249 +124805,1545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1008] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3395), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [996] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3329), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [1009] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(4018), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), + [997] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3330), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [1010] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3423), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [998] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3337), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [1011] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3426), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), + [999] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4651), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(3338), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [1000] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4651), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(3346), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [1001] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(4011), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1002] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(4393), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1003] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(4033), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1004] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1892), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), [sym_html_comment] = ACTIONS(5), }, - [1012] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3066), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1005] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2876), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1013] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3062), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1006] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3625), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1014] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3267), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), - [sym_html_comment] = ACTIONS(5), - }, - [1015] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3286), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [1007] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3427), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [1016] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3288), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [1008] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3629), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1017] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3811), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1009] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3630), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1018] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3836), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1010] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1019] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1011] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3646), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1020] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(4334), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), + [1012] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3428), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [1021] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4427), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1013] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(4058), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1014] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2854), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1022] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4986), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2861), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1015] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2859), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1023] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3952), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [1024] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4455), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1016] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4485), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -126918,583 +126359,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1025] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3454), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [1026] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3455), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [1027] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3456), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [1028] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2852), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1017] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2857), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1029] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3640), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1018] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3666), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3641), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1019] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3251), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [1020] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3260), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [1021] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3889), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1031] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(5046), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2860), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1022] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3268), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [1023] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3269), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [1024] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3282), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [sym_html_comment] = ACTIONS(5), + }, + [1025] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3782), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(5046), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2861), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1026] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3469), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1027] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3456), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1028] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3475), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1029] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4466), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -127503,146 +127314,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1033] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1910), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [1034] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4415), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1030] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4537), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -127658,65 +127395,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1035] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4498), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1031] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2854), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -127732,65 +127469,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1032] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2859), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -127806,65 +127543,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3001), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1033] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4476), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -127880,65 +127617,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1038] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4499), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1034] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3165), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1035] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3177), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1036] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -127954,361 +127839,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1039] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(4011), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [1040] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1899), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), + [1037] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1941), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), [sym_html_comment] = ACTIONS(5), }, - [1041] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1609), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [1038] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(4047), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1042] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1598), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [1039] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4549), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1043] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2867), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1040] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4553), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128324,65 +128135,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1044] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3819), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1041] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4562), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128398,65 +128209,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1045] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2868), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1042] = { + [sym_import] = STATE(5139), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5827), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2958), + [sym__type_query_call_expression_in_type_annotation] = STATE(3113), + [sym_type] = STATE(3203), + [sym_constructor_type] = STATE(3205), + [sym_primary_type] = STATE(3150), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(3205), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5228), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(3205), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(3205), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1043] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4567), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(3204), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1044] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2857), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128472,65 +128431,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, + [1045] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5610), + [sym_string] = STATE(3160), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(3047), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4567), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(3146), + [sym_template_literal_type] = STATE(3195), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(3195), + [sym_generic_type] = STATE(3195), + [sym_type_query] = STATE(3195), + [sym_index_type_query] = STATE(3195), + [sym_lookup_type] = STATE(3195), + [sym_literal_type] = STATE(3195), + [sym__number] = STATE(3154), + [sym_existential_type] = STATE(3195), + [sym_flow_maybe_type] = STATE(3195), + [sym_parenthesized_type] = STATE(3195), + [sym_predefined_type] = STATE(3195), + [sym_object_type] = STATE(3195), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(3195), + [sym_tuple_type] = STATE(3195), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(3195), + [sym_intersection_type] = STATE(3195), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(1038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1606), + [sym_number] = ACTIONS(1608), + [sym_this] = ACTIONS(1610), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, [1046] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3285), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4434), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128547,64 +128580,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4524), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2915), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128621,286 +128654,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1048] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2852), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3050), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [1049] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3813), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [1050] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3817), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3014), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [1051] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4776), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2860), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(5076), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2858), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128909,72 +128942,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [1052] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4776), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2861), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(5076), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2860), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128983,72 +129016,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [1053] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4494), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3961), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -129065,64 +129098,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1054] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4514), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3738), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -129139,286 +129172,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1055] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2880), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1536), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), + [sym_identifier] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), + [sym_this] = ACTIONS(3183), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [sym_html_comment] = ACTIONS(5), + }, + [1056] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3891), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1056] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3748), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1057] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4563), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1057] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1918), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), + [1058] = { + [sym_import] = STATE(4606), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1545), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(1441), + [sym__type_query_member_expression_in_type_annotation] = STATE(1440), + [sym__type_query_call_expression_in_type_annotation] = STATE(1555), + [sym_type] = STATE(1559), + [sym_constructor_type] = STATE(1556), + [sym_primary_type] = STATE(1565), + [sym_template_literal_type] = STATE(1540), + [sym_infer_type] = STATE(1556), + [sym_conditional_type] = STATE(1540), + [sym_generic_type] = STATE(1540), + [sym_type_query] = STATE(1540), + [sym_index_type_query] = STATE(1540), + [sym_lookup_type] = STATE(1540), + [sym_literal_type] = STATE(1540), + [sym__number] = STATE(1566), + [sym_existential_type] = STATE(1540), + [sym_flow_maybe_type] = STATE(1540), + [sym_parenthesized_type] = STATE(1540), + [sym_predefined_type] = STATE(1540), + [sym_object_type] = STATE(1540), + [sym_type_parameters] = STATE(5295), + [sym_array_type] = STATE(1540), + [sym_tuple_type] = STATE(1540), + [sym_readonly_type] = STATE(1556), + [sym_union_type] = STATE(1540), + [sym_intersection_type] = STATE(1540), + [sym_function_type] = STATE(1556), [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_typeof] = ACTIONS(3075), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3091), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_number] = ACTIONS(3095), [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_undefined] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3091), + [anon_sym_number] = ACTIONS(3091), + [anon_sym_boolean] = ACTIONS(3091), + [anon_sym_string] = ACTIONS(3091), + [anon_sym_symbol] = ACTIONS(3091), + [anon_sym_object] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_infer] = ACTIONS(3109), + [anon_sym_keyof] = ACTIONS(3111), + [anon_sym_unique] = ACTIONS(3113), + [anon_sym_unknown] = ACTIONS(3091), + [anon_sym_never] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3115), [sym_html_comment] = ACTIONS(5), }, - [1058] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2856), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1059] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3839), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -129434,65 +129541,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1059] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3807), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1060] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4536), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -129508,435 +129615,879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1060] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3755), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1061] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(2014), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [1062] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(2015), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [1063] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(2025), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [1064] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4781), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2027), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [1065] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4781), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2030), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [1066] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(1980), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [1067] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3756), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1061] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3756), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1068] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3879), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1062] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2925), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1069] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2915), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1063] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2925), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1070] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3618), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1064] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3771), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1071] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3619), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1065] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3061), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1072] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(5060), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2858), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -129945,146 +130496,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1066] = { - [sym_import] = STATE(4617), - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(1900), - [sym_formal_parameters] = STATE(5694), - [sym_nested_type_identifier] = STATE(1879), - [sym__type_query_member_expression_in_type_annotation] = STATE(1880), - [sym__type_query_call_expression_in_type_annotation] = STATE(1902), - [sym_type] = STATE(1952), - [sym_constructor_type] = STATE(1903), - [sym_primary_type] = STATE(1904), - [sym_template_literal_type] = STATE(1898), - [sym_infer_type] = STATE(1903), - [sym_conditional_type] = STATE(1898), - [sym_generic_type] = STATE(1898), - [sym_type_query] = STATE(1898), - [sym_index_type_query] = STATE(1898), - [sym_lookup_type] = STATE(1898), - [sym_literal_type] = STATE(1898), - [sym__number] = STATE(1905), - [sym_existential_type] = STATE(1898), - [sym_flow_maybe_type] = STATE(1898), - [sym_parenthesized_type] = STATE(1898), - [sym_predefined_type] = STATE(1898), - [sym_object_type] = STATE(1898), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(1898), - [sym_tuple_type] = STATE(1898), - [sym_readonly_type] = STATE(1903), - [sym_union_type] = STATE(1898), - [sym_intersection_type] = STATE(1898), - [sym_function_type] = STATE(1903), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_typeof] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(3063), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_number] = ACTIONS(3067), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [sym_null] = ACTIONS(3071), - [sym_undefined] = ACTIONS(3071), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3063), - [anon_sym_number] = ACTIONS(3063), - [anon_sym_boolean] = ACTIONS(3063), - [anon_sym_string] = ACTIONS(3063), - [anon_sym_symbol] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(3081), - [anon_sym_keyof] = ACTIONS(3083), - [anon_sym_unique] = ACTIONS(3085), - [anon_sym_unknown] = ACTIONS(3063), - [anon_sym_never] = ACTIONS(3063), - [anon_sym_LBRACE_PIPE] = ACTIONS(3087), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4986), - [sym_constructor_type] = STATE(2862), + [1073] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(5060), + [sym_constructor_type] = STATE(2896), [sym_primary_type] = STATE(2860), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -130093,590 +130570,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1068] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2867), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1074] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4496), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1069] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2868), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1075] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(3333), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1070] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1586), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [1076] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(2102), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), [sym_html_comment] = ACTIONS(5), }, - [1071] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(2856), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1077] = { + [sym_import] = STATE(4618), + [sym_nested_identifier] = STATE(5906), + [sym_string] = STATE(1947), + [sym_formal_parameters] = STATE(5651), + [sym_nested_type_identifier] = STATE(1799), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1928), + [sym_type] = STATE(2103), + [sym_constructor_type] = STATE(1929), + [sym_primary_type] = STATE(1931), + [sym_template_literal_type] = STATE(1936), + [sym_infer_type] = STATE(1929), + [sym_conditional_type] = STATE(1936), + [sym_generic_type] = STATE(1936), + [sym_type_query] = STATE(1936), + [sym_index_type_query] = STATE(1936), + [sym_lookup_type] = STATE(1936), + [sym_literal_type] = STATE(1936), + [sym__number] = STATE(1932), + [sym_existential_type] = STATE(1936), + [sym_flow_maybe_type] = STATE(1936), + [sym_parenthesized_type] = STATE(1936), + [sym_predefined_type] = STATE(1936), + [sym_object_type] = STATE(1936), + [sym_type_parameters] = STATE(5347), + [sym_array_type] = STATE(1936), + [sym_tuple_type] = STATE(1936), + [sym_readonly_type] = STATE(1929), + [sym_union_type] = STATE(1936), + [sym_intersection_type] = STATE(1936), + [sym_function_type] = STATE(1929), + [sym_identifier] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + [sym_this] = ACTIONS(3179), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_infer] = ACTIONS(2967), + [anon_sym_keyof] = ACTIONS(2969), + [anon_sym_unique] = ACTIONS(2971), + [anon_sym_unknown] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [sym_html_comment] = ACTIONS(5), + }, + [1078] = { + [sym_import] = STATE(4903), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5916), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3332), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(2915), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5386), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_typeof] = ACTIONS(3045), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_infer] = ACTIONS(3063), + [anon_sym_keyof] = ACTIONS(3065), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3067), [sym_html_comment] = ACTIONS(5), }, - [1072] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(3781), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), + [1079] = { + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4477), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [1073] = { - [sym_import] = STATE(4594), - [sym_nested_identifier] = STATE(5636), - [sym_string] = STATE(1472), - [sym_formal_parameters] = STATE(5588), - [sym_nested_type_identifier] = STATE(1452), - [sym__type_query_member_expression_in_type_annotation] = STATE(1450), - [sym__type_query_call_expression_in_type_annotation] = STATE(1475), - [sym_type] = STATE(1587), - [sym_constructor_type] = STATE(1476), - [sym_primary_type] = STATE(1477), - [sym_template_literal_type] = STATE(1470), - [sym_infer_type] = STATE(1476), - [sym_conditional_type] = STATE(1470), - [sym_generic_type] = STATE(1470), - [sym_type_query] = STATE(1470), - [sym_index_type_query] = STATE(1470), - [sym_lookup_type] = STATE(1470), - [sym_literal_type] = STATE(1470), - [sym__number] = STATE(1478), - [sym_existential_type] = STATE(1470), - [sym_flow_maybe_type] = STATE(1470), - [sym_parenthesized_type] = STATE(1470), - [sym_predefined_type] = STATE(1470), - [sym_object_type] = STATE(1470), - [sym_type_parameters] = STATE(5290), - [sym_array_type] = STATE(1470), - [sym_tuple_type] = STATE(1470), - [sym_readonly_type] = STATE(1476), - [sym_union_type] = STATE(1470), - [sym_intersection_type] = STATE(1470), - [sym_function_type] = STATE(1476), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [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(2577), - [anon_sym_void] = ACTIONS(3015), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3017), - [sym_number] = ACTIONS(3019), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_null] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [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(3029), - [anon_sym_infer] = ACTIONS(3033), - [anon_sym_keyof] = ACTIONS(3035), - [anon_sym_unique] = ACTIONS(3037), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [sym_html_comment] = ACTIONS(5), - }, - [1074] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3238), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1075] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1080] = { + [sym_import] = STATE(5087), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5709), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(2846), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4482), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5435), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -130692,592 +131095,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1076] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3164), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), + [1081] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3425), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, - [1077] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4464), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [1082] = { + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3426), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [1078] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4470), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [1079] = { - [sym_import] = STATE(5149), - [sym_nested_identifier] = STATE(5887), - [sym_string] = STATE(3187), - [sym_formal_parameters] = STATE(5850), - [sym_nested_type_identifier] = STATE(2996), - [sym__type_query_member_expression_in_type_annotation] = STATE(2973), - [sym__type_query_call_expression_in_type_annotation] = STATE(3107), - [sym_type] = STATE(3181), - [sym_constructor_type] = STATE(3160), - [sym_primary_type] = STATE(3162), - [sym_template_literal_type] = STATE(3173), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3173), - [sym_generic_type] = STATE(3173), - [sym_type_query] = STATE(3173), - [sym_index_type_query] = STATE(3173), - [sym_lookup_type] = STATE(3173), - [sym_literal_type] = STATE(3173), - [sym__number] = STATE(3141), - [sym_existential_type] = STATE(3173), - [sym_flow_maybe_type] = STATE(3173), - [sym_parenthesized_type] = STATE(3173), - [sym_predefined_type] = STATE(3173), - [sym_object_type] = STATE(3173), - [sym_type_parameters] = STATE(5225), - [sym_array_type] = STATE(3173), - [sym_tuple_type] = STATE(3173), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3173), - [sym_intersection_type] = STATE(3173), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_typeof] = ACTIONS(1578), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1596), - [sym_number] = ACTIONS(1598), - [sym_this] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_undefined] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1014), - [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(1018), - [anon_sym_infer] = ACTIONS(1020), - [anon_sym_keyof] = ACTIONS(1022), - [anon_sym_unique] = ACTIONS(1024), - [anon_sym_unknown] = ACTIONS(1026), - [anon_sym_never] = ACTIONS(1026), - [anon_sym_LBRACE_PIPE] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [1080] = { - [sym_import] = STATE(4894), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5907), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3351), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4253), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5385), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_typeof] = ACTIONS(3093), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3111), - [anon_sym_keyof] = ACTIONS(3113), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [1081] = { - [sym_import] = STATE(4982), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5791), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(2848), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4482), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5326), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [1082] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4525), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(220), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, [1083] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4529), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4542), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -131285,73 +131318,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1084] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4537), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4545), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -131359,73 +131392,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1085] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4547), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4548), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -131433,73 +131466,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1086] = { - [sym_import] = STATE(4750), - [sym_nested_identifier] = STATE(5778), - [sym_string] = STATE(2893), - [sym_formal_parameters] = STATE(5618), - [sym_nested_type_identifier] = STATE(2833), - [sym__type_query_member_expression_in_type_annotation] = STATE(3219), - [sym__type_query_call_expression_in_type_annotation] = STATE(2849), - [sym_type] = STATE(4552), - [sym_constructor_type] = STATE(2862), - [sym_primary_type] = STATE(2863), - [sym_template_literal_type] = STATE(2887), - [sym_infer_type] = STATE(2862), - [sym_conditional_type] = STATE(2887), - [sym_generic_type] = STATE(2887), - [sym_type_query] = STATE(2887), - [sym_index_type_query] = STATE(2887), - [sym_lookup_type] = STATE(2887), - [sym_literal_type] = STATE(2887), - [sym__number] = STATE(2864), - [sym_existential_type] = STATE(2887), - [sym_flow_maybe_type] = STATE(2887), - [sym_parenthesized_type] = STATE(2887), - [sym_predefined_type] = STATE(2887), - [sym_object_type] = STATE(2887), - [sym_type_parameters] = STATE(5511), - [sym_array_type] = STATE(2887), - [sym_tuple_type] = STATE(2887), - [sym_readonly_type] = STATE(2862), - [sym_union_type] = STATE(2887), - [sym_intersection_type] = STATE(2887), - [sym_function_type] = STATE(2862), - [sym_identifier] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_typeof] = ACTIONS(1546), + [sym_import] = STATE(4753), + [sym_nested_identifier] = STATE(5707), + [sym_string] = STATE(2889), + [sym_formal_parameters] = STATE(5626), + [sym_nested_type_identifier] = STATE(2828), + [sym__type_query_member_expression_in_type_annotation] = STATE(3228), + [sym__type_query_call_expression_in_type_annotation] = STATE(2850), + [sym_type] = STATE(4556), + [sym_constructor_type] = STATE(2896), + [sym_primary_type] = STATE(2897), + [sym_template_literal_type] = STATE(2885), + [sym_infer_type] = STATE(2896), + [sym_conditional_type] = STATE(2885), + [sym_generic_type] = STATE(2885), + [sym_type_query] = STATE(2885), + [sym_index_type_query] = STATE(2885), + [sym_lookup_type] = STATE(2885), + [sym_literal_type] = STATE(2885), + [sym__number] = STATE(2903), + [sym_existential_type] = STATE(2885), + [sym_flow_maybe_type] = STATE(2885), + [sym_parenthesized_type] = STATE(2885), + [sym_predefined_type] = STATE(2885), + [sym_object_type] = STATE(2885), + [sym_type_parameters] = STATE(5517), + [sym_array_type] = STATE(2885), + [sym_tuple_type] = STATE(2885), + [sym_readonly_type] = STATE(2896), + [sym_union_type] = STATE(2885), + [sym_intersection_type] = STATE(2885), + [sym_function_type] = STATE(2896), + [sym_identifier] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2581), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_true] = ACTIONS(1568), - [sym_false] = ACTIONS(1568), - [sym_null] = ACTIONS(1568), - [sym_undefined] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_this] = ACTIONS(1520), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_null] = ACTIONS(1522), + [sym_undefined] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(662), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(604), - [anon_sym_infer] = ACTIONS(606), - [anon_sym_keyof] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(666), + [anon_sym_infer] = ACTIONS(668), + [anon_sym_keyof] = ACTIONS(670), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -131507,107 +131540,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1087] = { - [sym_import] = STATE(4630), - [sym_nested_identifier] = STATE(5533), - [sym_string] = STATE(3262), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3098), - [sym__type_query_call_expression_in_type_annotation] = STATE(3241), - [sym_type] = STATE(3399), - [sym_constructor_type] = STATE(3282), - [sym_primary_type] = STATE(3283), - [sym_template_literal_type] = STATE(3249), - [sym_infer_type] = STATE(3282), - [sym_conditional_type] = STATE(3249), - [sym_generic_type] = STATE(3249), - [sym_type_query] = STATE(3249), - [sym_index_type_query] = STATE(3249), - [sym_lookup_type] = STATE(3249), - [sym_literal_type] = STATE(3249), - [sym__number] = STATE(3284), - [sym_existential_type] = STATE(3249), - [sym_flow_maybe_type] = STATE(3249), - [sym_parenthesized_type] = STATE(3249), - [sym_predefined_type] = STATE(3249), - [sym_object_type] = STATE(3249), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3249), - [sym_tuple_type] = STATE(3249), - [sym_readonly_type] = STATE(3282), - [sym_union_type] = STATE(3249), - [sym_intersection_type] = STATE(3249), - [sym_function_type] = STATE(3282), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_typeof] = ACTIONS(2947), + [sym_import] = STATE(4642), + [sym_nested_identifier] = STATE(5541), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5632), + [sym_nested_type_identifier] = STATE(3198), + [sym__type_query_member_expression_in_type_annotation] = STATE(3138), + [sym__type_query_call_expression_in_type_annotation] = STATE(3223), + [sym_type] = STATE(3284), + [sym_constructor_type] = STATE(3280), + [sym_primary_type] = STATE(3281), + [sym_template_literal_type] = STATE(3257), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(3257), + [sym_generic_type] = STATE(3257), + [sym_type_query] = STATE(3257), + [sym_index_type_query] = STATE(3257), + [sym_lookup_type] = STATE(3257), + [sym_literal_type] = STATE(3257), + [sym__number] = STATE(3285), + [sym_existential_type] = STATE(3257), + [sym_flow_maybe_type] = STATE(3257), + [sym_parenthesized_type] = STATE(3257), + [sym_predefined_type] = STATE(3257), + [sym_object_type] = STATE(3257), + [sym_type_parameters] = STATE(5324), + [sym_array_type] = STATE(3257), + [sym_tuple_type] = STATE(3257), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(3257), + [sym_intersection_type] = STATE(3257), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_typeof] = ACTIONS(2989), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2967), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2971), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2979), - [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(2981), - [anon_sym_infer] = ACTIONS(2985), - [anon_sym_keyof] = ACTIONS(2987), - [anon_sym_unique] = ACTIONS(2989), - [anon_sym_unknown] = ACTIONS(2967), - [anon_sym_never] = ACTIONS(2967), - [anon_sym_LBRACE_PIPE] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(3009), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_number] = ACTIONS(3013), + [sym_this] = ACTIONS(3187), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [sym_undefined] = ACTIONS(3017), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_any] = ACTIONS(3009), + [anon_sym_number] = ACTIONS(3009), + [anon_sym_boolean] = ACTIONS(3009), + [anon_sym_string] = ACTIONS(3009), + [anon_sym_symbol] = ACTIONS(3009), + [anon_sym_object] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3027), + [anon_sym_keyof] = ACTIONS(3029), + [anon_sym_unique] = ACTIONS(3031), + [anon_sym_unknown] = ACTIONS(3009), + [anon_sym_never] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), [sym_html_comment] = ACTIONS(5), }, [1088] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), + [sym_export_statement] = STATE(3911), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3911), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3911), + [sym_property_signature] = STATE(3911), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3911), + [sym_index_signature] = STATE(3911), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(3193), [anon_sym_export] = ACTIONS(3195), [anon_sym_STAR] = ACTIONS(3197), @@ -131620,14 +131653,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3205), [anon_sym_SEMI] = ACTIONS(3207), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), [anon_sym_async] = ACTIONS(3211), [anon_sym_new] = ACTIONS(3213), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), @@ -131653,413 +131686,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1089] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(5112), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(5112), - [sym_pair] = STATE(5112), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(5135), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3235), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3195), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3193), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3213), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3251), - [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_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3227), + [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(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1090] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3243), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3241), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3249), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [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(3253), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1091] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3195), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3243), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3241), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3249), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3227), - [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_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1092] = { - [sym_export_statement] = STATE(3876), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3876), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3876), - [sym_property_signature] = STATE(3876), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3876), - [sym_index_signature] = STATE(3876), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4603), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4603), + [sym_pair] = STATE(4603), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4682), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3263), + [anon_sym_export] = ACTIONS(3265), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3263), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_new] = ACTIONS(3271), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [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(3253), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3281), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1093] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3195), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3233), [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3253), + [anon_sym_let] = ACTIONS(3193), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3213), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [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(3253), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3227), + [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(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1094] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(3193), [anon_sym_export] = ACTIONS(3195), [anon_sym_STAR] = ACTIONS(3197), [anon_sym_type] = ACTIONS(3193), [anon_sym_namespace] = ACTIONS(3193), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3285), [anon_sym_let] = ACTIONS(3193), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), [anon_sym_async] = ACTIONS(3211), [anon_sym_new] = ACTIONS(3213), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), @@ -132081,381 +132114,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3193), [anon_sym_object] = ACTIONS(3193), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1095] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3287), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3289), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3287), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_protected] = ACTIONS(3301), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1096] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4603), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4603), + [sym_pair] = STATE(4603), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4682), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3263), + [anon_sym_export] = ACTIONS(3265), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3263), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_new] = ACTIONS(3271), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [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(3253), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1097] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(5112), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(5112), - [sym_pair] = STATE(5112), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(5135), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3235), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3311), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3309), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3313), + [anon_sym_new] = ACTIONS(3315), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3251), - [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_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3309), + [anon_sym_any] = ACTIONS(3309), + [anon_sym_number] = ACTIONS(3309), + [anon_sym_boolean] = ACTIONS(3309), + [anon_sym_string] = ACTIONS(3309), + [anon_sym_symbol] = ACTIONS(3309), + [anon_sym_object] = ACTIONS(3309), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1098] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3289), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3287), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3295), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1099] = { - [sym_export_statement] = STATE(3804), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5106), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(4773), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5106), - [sym_method_definition] = STATE(4773), - [sym_pair] = STATE(4773), - [sym_pair_pattern] = STATE(5106), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3804), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3804), - [sym_property_signature] = STATE(3804), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3804), - [sym_index_signature] = STATE(3804), - [aux_sym_export_statement_repeat1] = STATE(4505), - [aux_sym_object_repeat1] = STATE(4781), - [aux_sym_object_pattern_repeat1] = STATE(5139), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [sym_export_statement] = STATE(3830), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(4861), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(4835), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(4861), + [sym_method_definition] = STATE(4835), + [sym_pair] = STATE(4835), + [sym_pair_pattern] = STATE(4861), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3830), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3830), + [sym_property_signature] = STATE(3830), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3830), + [sym_index_signature] = STATE(3830), + [aux_sym_export_statement_repeat1] = STATE(4448), + [aux_sym_object_repeat1] = STATE(4839), + [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3243), [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3241), [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3249), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_PIPE_RBRACE] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1100] = { - [sym_variable_declarator] = STATE(4414), - [sym_object_pattern] = STATE(3716), - [sym_array_pattern] = STATE(3716), - [sym__destructuring_pattern] = STATE(3716), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_nested_identifier] = STATE(214), + [sym_string] = STATE(213), + [sym__module] = STATE(247), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3331), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(122), @@ -132463,9 +132494,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3333), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132516,27 +132549,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1101] = { - [sym_nested_identifier] = STATE(207), - [sym_string] = STATE(213), - [sym__module] = STATE(221), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_variable_declarator] = STATE(4506), + [sym_object_pattern] = STATE(3661), + [sym_array_pattern] = STATE(3661), + [sym__destructuring_pattern] = STATE(3661), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(3335), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3339), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3339), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132587,17 +132620,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1102] = { - [sym_nested_identifier] = STATE(207), + [sym_nested_identifier] = STATE(214), [sym_string] = STATE(213), - [sym__module] = STATE(221), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(3335), + [sym__module] = STATE(247), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), @@ -132606,8 +132639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3333), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132658,25 +132691,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1103] = { - [sym_variable_declarator] = STATE(4414), - [sym_object_pattern] = STATE(3716), - [sym_array_pattern] = STATE(3716), - [sym__destructuring_pattern] = STATE(3716), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(3329), + [sym_variable_declarator] = STATE(4506), + [sym_object_pattern] = STATE(3661), + [sym_array_pattern] = STATE(3661), + [sym__destructuring_pattern] = STATE(3661), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(3335), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3339), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_EQ_GT] = ACTIONS(715), @@ -132729,11 +132762,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1104] = { - [sym_nested_identifier] = STATE(707), - [sym_string] = STATE(726), - [sym__module] = STATE(754), - [aux_sym_object_repeat1] = STATE(4972), - [aux_sym_object_pattern_repeat1] = STATE(4973), + [sym_nested_identifier] = STATE(711), + [sym_string] = STATE(741), + [sym__module] = STATE(825), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), [sym_identifier] = ACTIONS(3341), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), @@ -132748,8 +132781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132800,17 +132833,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1105] = { - [sym_variable_declarator] = STATE(4414), - [sym_object_pattern] = STATE(3716), - [sym_array_pattern] = STATE(3716), - [sym__destructuring_pattern] = STATE(3716), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(3329), + [sym_nested_identifier] = STATE(711), + [sym_string] = STATE(741), + [sym__module] = STATE(825), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(3341), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3331), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_BANG] = ACTIONS(122), @@ -132818,9 +132849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132871,17 +132904,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1106] = { - [sym_nested_identifier] = STATE(707), - [sym_string] = STATE(726), - [sym__module] = STATE(754), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(3341), + [sym_nested_identifier] = STATE(214), + [sym_string] = STATE(213), + [sym__module] = STATE(247), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), @@ -132890,8 +132923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3333), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132942,12 +132975,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1107] = { - [sym_nested_identifier] = STATE(207), - [sym_string] = STATE(213), - [sym__module] = STATE(221), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(3335), + [sym_nested_identifier] = STATE(711), + [sym_string] = STATE(741), + [sym__module] = STATE(825), + [aux_sym_object_repeat1] = STATE(4671), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(3341), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), @@ -132961,8 +132994,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133013,27 +133046,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1108] = { - [sym_nested_identifier] = STATE(707), - [sym_string] = STATE(726), - [sym__module] = STATE(754), - [aux_sym_object_repeat1] = STATE(5160), - [aux_sym_object_pattern_repeat1] = STATE(4973), - [sym_identifier] = ACTIONS(3341), + [sym_variable_declarator] = STATE(4506), + [sym_object_pattern] = STATE(3661), + [sym_array_pattern] = STATE(3661), + [sym__destructuring_pattern] = STATE(3661), + [aux_sym_object_repeat1] = STATE(5156), + [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_identifier] = ACTIONS(3335), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3339), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133084,27 +133117,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1109] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), [sym_identifier] = ACTIONS(3343), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133147,33 +133180,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1110] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), [sym_identifier] = ACTIONS(3343), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_RPAREN] = ACTIONS(847), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(847), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_RBRACK] = ACTIONS(847), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133216,28 +133249,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(855), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1111] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), [sym_identifier] = ACTIONS(3343), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(227), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(227), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), @@ -133285,18 +133318,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1112] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), + [sym_export_statement] = STATE(3786), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(5227), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(5214), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(5227), + [sym_method_definition] = STATE(5214), + [sym_pair] = STATE(5214), + [sym_pair_pattern] = STATE(5227), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3786), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3786), + [sym_property_signature] = STATE(3786), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3786), + [sym_index_signature] = STATE(3786), + [aux_sym_export_statement_repeat1] = STATE(4448), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3345), + [anon_sym_any] = ACTIONS(3345), + [anon_sym_number] = ACTIONS(3345), + [anon_sym_boolean] = ACTIONS(3345), + [anon_sym_string] = ACTIONS(3345), + [anon_sym_symbol] = ACTIONS(3345), + [anon_sym_object] = ACTIONS(3345), + [anon_sym_abstract] = ACTIONS(3229), + [sym_html_comment] = ACTIONS(5), + }, + [1113] = { + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), [sym_identifier] = ACTIONS(3343), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), @@ -133358,10 +133459,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1113] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), + [1114] = { + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), [sym_identifier] = ACTIONS(3343), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(857), @@ -133426,100 +133527,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1114] = { - [sym_export_statement] = STATE(3729), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5353), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(5354), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5353), - [sym_method_definition] = STATE(5354), - [sym_pair] = STATE(5354), - [sym_pair_pattern] = STATE(5353), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3729), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3729), - [sym_property_signature] = STATE(3729), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3729), - [sym_index_signature] = STATE(3729), - [aux_sym_export_statement_repeat1] = STATE(4505), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_any] = ACTIONS(3345), - [anon_sym_number] = ACTIONS(3345), - [anon_sym_boolean] = ACTIONS(3345), - [anon_sym_string] = ACTIONS(3345), - [anon_sym_symbol] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3229), - [sym_html_comment] = ACTIONS(5), - }, [1115] = { - [sym_export_statement] = STATE(3871), - [sym_object_pattern] = STATE(5548), - [sym_object_assignment_pattern] = STATE(5353), - [sym_array_pattern] = STATE(5548), - [sym__call_signature] = STATE(4269), - [sym__destructuring_pattern] = STATE(5548), - [sym_spread_element] = STATE(5354), - [sym_string] = STATE(2997), - [sym_decorator] = STATE(1236), - [sym_formal_parameters] = STATE(3244), - [sym_rest_pattern] = STATE(5353), - [sym_method_definition] = STATE(5354), - [sym_pair] = STATE(5354), - [sym_pair_pattern] = STATE(5353), - [sym__property_name] = STATE(2997), - [sym_computed_property_name] = STATE(2997), - [sym_method_signature] = STATE(3871), - [sym_accessibility_modifier] = STATE(2677), - [sym_override_modifier] = STATE(2700), - [sym_call_signature] = STATE(3871), - [sym_property_signature] = STATE(3871), - [sym_type_parameters] = STATE(5406), - [sym_construct_signature] = STATE(3871), - [sym_index_signature] = STATE(3871), - [aux_sym_export_statement_repeat1] = STATE(4505), + [sym_export_statement] = STATE(3736), + [sym_object_pattern] = STATE(5760), + [sym_object_assignment_pattern] = STATE(5227), + [sym_array_pattern] = STATE(5760), + [sym__call_signature] = STATE(4329), + [sym__destructuring_pattern] = STATE(5760), + [sym_spread_element] = STATE(5214), + [sym_string] = STATE(3049), + [sym_decorator] = STATE(1244), + [sym_formal_parameters] = STATE(3229), + [sym_rest_pattern] = STATE(5227), + [sym_method_definition] = STATE(5214), + [sym_pair] = STATE(5214), + [sym_pair_pattern] = STATE(5227), + [sym__property_name] = STATE(3049), + [sym_computed_property_name] = STATE(3049), + [sym_method_signature] = STATE(3736), + [sym_accessibility_modifier] = STATE(2687), + [sym_override_modifier] = STATE(2717), + [sym_call_signature] = STATE(3736), + [sym_property_signature] = STATE(3736), + [sym_type_parameters] = STATE(5404), + [sym_construct_signature] = STATE(3736), + [sym_index_signature] = STATE(3736), + [aux_sym_export_statement_repeat1] = STATE(4448), [sym_identifier] = ACTIONS(3345), [anon_sym_export] = ACTIONS(3347), [anon_sym_STAR] = ACTIONS(3197), @@ -133531,14 +133564,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3345), [anon_sym_LPAREN] = ACTIONS(3205), [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1596), [anon_sym_async] = ACTIONS(3352), [anon_sym_new] = ACTIONS(3354), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(3215), [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2581), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3217), [sym_private_property_identifier] = ACTIONS(3217), @@ -133563,25 +133596,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1116] = { - [sym_variable_declarator] = STATE(4414), - [sym_object_pattern] = STATE(3716), - [sym_array_pattern] = STATE(3716), - [sym__destructuring_pattern] = STATE(3716), - [sym_identifier] = ACTIONS(3329), + [sym_nested_identifier] = STATE(1444), + [sym_string] = STATE(1452), + [sym__module] = STATE(1765), + [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(872), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3331), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_EQ_GT] = ACTIONS(878), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133630,26 +133663,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1117] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), - [sym_identifier] = ACTIONS(3343), + [sym_nested_identifier] = STATE(4429), + [sym_string] = STATE(741), + [sym__module] = STATE(825), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(888), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133693,29 +133725,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1118] = { - [sym_nested_identifier] = STATE(1445), - [sym_string] = STATE(1435), - [sym__module] = STATE(1727), - [sym_identifier] = ACTIONS(3366), + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), + [sym_identifier] = ACTIONS(3343), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(847), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(888), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133759,29 +133793,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_nested_identifier] = STATE(707), - [sym_string] = STATE(726), - [sym__module] = STATE(754), - [sym_identifier] = ACTIONS(3341), + [sym_variable_declarator] = STATE(4506), + [sym_object_pattern] = STATE(3442), + [sym_array_pattern] = STATE(3442), + [sym__destructuring_pattern] = STATE(3442), + [sym_identifier] = ACTIONS(3370), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), + [anon_sym_in] = ACTIONS(861), + [anon_sym_of] = ACTIONS(864), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3339), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133831,9 +133864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_nested_identifier] = STATE(1445), - [sym_string] = STATE(1435), - [sym__module] = STATE(1727), + [sym_nested_identifier] = STATE(1444), + [sym_string] = STATE(1452), + [sym__module] = STATE(1765), [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), @@ -133898,25 +133931,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), [sym_identifier] = ACTIONS(3343), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(878), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133965,25 +133998,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_nested_identifier] = STATE(1445), - [sym_string] = STATE(1435), - [sym__module] = STATE(1727), + [sym_nested_identifier] = STATE(1444), + [sym_string] = STATE(1452), + [sym__module] = STATE(1765), [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), + [anon_sym_in] = ACTIONS(861), + [anon_sym_of] = ACTIONS(864), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -134032,91 +134065,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_nested_identifier] = STATE(1466), - [sym_string] = STATE(1467), - [sym__module] = STATE(1614), - [sym_identifier] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(878), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_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(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [1124] = { - [sym_nested_identifier] = STATE(4421), - [sym_string] = STATE(726), - [sym__module] = STATE(754), - [sym_identifier] = ACTIONS(3368), + [sym_variable_declarator] = STATE(4506), + [sym_object_pattern] = STATE(3661), + [sym_array_pattern] = STATE(3661), + [sym__destructuring_pattern] = STATE(3661), + [sym_identifier] = ACTIONS(3335), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3339), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134165,25 +134131,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1125] = { - [sym_nested_identifier] = STATE(1445), - [sym_string] = STATE(1435), - [sym__module] = STATE(1727), - [sym_identifier] = ACTIONS(3366), + [1124] = { + [sym_nested_identifier] = STATE(214), + [sym_string] = STATE(213), + [sym__module] = STATE(247), + [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(884), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3333), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134232,11 +134198,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1126] = { - [sym_nested_identifier] = STATE(207), - [sym_string] = STATE(213), - [sym__module] = STATE(221), - [sym_identifier] = ACTIONS(3335), + [1125] = { + [sym_nested_identifier] = STATE(711), + [sym_string] = STATE(741), + [sym__module] = STATE(825), + [sym_identifier] = ACTIONS(3341), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), @@ -134249,8 +134215,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_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(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [1126] = { + [sym_nested_identifier] = STATE(1486), + [sym_string] = STATE(1513), + [sym__module] = STATE(1710), + [sym_identifier] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(841), + [anon_sym_as] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134300,22 +134333,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1127] = { - [sym_variable_declarator] = STATE(4414), - [sym_object_pattern] = STATE(3716), - [sym_array_pattern] = STATE(3716), - [sym__destructuring_pattern] = STATE(3716), - [sym_identifier] = ACTIONS(3329), + [sym_variable_declarator] = STATE(4506), + [sym_object_pattern] = STATE(3661), + [sym_array_pattern] = STATE(3661), + [sym__destructuring_pattern] = STATE(3661), + [sym_identifier] = ACTIONS(3335), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3339), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_EQ_GT] = ACTIONS(715), @@ -134367,24 +134400,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1128] = { - [sym_nested_identifier] = STATE(1445), - [sym_string] = STATE(1435), - [sym__module] = STATE(1727), - [sym_identifier] = ACTIONS(3366), + [sym_variable_declarator] = STATE(4506), + [sym_object_pattern] = STATE(3661), + [sym_array_pattern] = STATE(3661), + [sym__destructuring_pattern] = STATE(3661), + [sym_identifier] = ACTIONS(3335), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(3339), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134434,10 +134467,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1129] = { - [sym_nested_identifier] = STATE(707), - [sym_string] = STATE(726), - [sym__module] = STATE(754), - [sym_identifier] = ACTIONS(3341), + [sym_nested_identifier] = STATE(1444), + [sym_string] = STATE(1452), + [sym__module] = STATE(1765), + [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), @@ -134446,12 +134479,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134501,24 +134534,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_variable_declarator] = STATE(4414), - [sym_object_pattern] = STATE(3311), - [sym_array_pattern] = STATE(3311), - [sym__destructuring_pattern] = STATE(3311), - [sym_identifier] = ACTIONS(3370), + [sym_nested_identifier] = STATE(1444), + [sym_string] = STATE(1452), + [sym__module] = STATE(1765), + [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3331), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_COLON] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134568,24 +134601,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1131] = { - [sym_variable_declarator] = STATE(4414), - [sym_object_pattern] = STATE(3716), - [sym_array_pattern] = STATE(3716), - [sym__destructuring_pattern] = STATE(3716), - [sym_identifier] = ACTIONS(3329), + [sym_nested_identifier] = STATE(711), + [sym_string] = STATE(741), + [sym__module] = STATE(825), + [sym_identifier] = ACTIONS(3341), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3331), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_COLON] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134637,31 +134670,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(912), 1, + [0] = 14, + ACTIONS(696), 1, anon_sym_EQ, - ACTIONS(918), 1, + ACTIONS(704), 1, + anon_sym_COLON, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_LT, + ACTIONS(3372), 1, sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(162), 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, @@ -134688,7 +134725,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(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134707,33 +134744,31 @@ 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, - [89] = 14, + [93] = 14, ACTIONS(696), 1, anon_sym_EQ, + ACTIONS(702), 1, + anon_sym_RBRACE, ACTIONS(704), 1, anon_sym_COLON, ACTIONS(715), 1, anon_sym_EQ_GT, ACTIONS(723), 1, anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, ACTIONS(2239), 1, anon_sym_LPAREN, ACTIONS(2248), 1, anon_sym_LT, ACTIONS(3372), 1, sym_identifier, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -134793,7 +134828,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [182] = 14, + [186] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(918), 1, + anon_sym_EQ_GT, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 14, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 25, + 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, + anon_sym_implements, + [275] = 14, ACTIONS(696), 1, anon_sym_EQ, ACTIONS(704), 1, @@ -134810,9 +134922,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(3372), 1, sym_identifier, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -134872,34 +134984,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [275] = 15, - ACTIONS(128), 1, - anon_sym_RBRACK, + [368] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_COMMA, - ACTIONS(895), 1, + ACTIONS(912), 1, anon_sym_EQ, - ACTIONS(900), 1, - anon_sym_COLON, - ACTIONS(904), 1, + ACTIONS(918), 1, anon_sym_EQ_GT, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(162), 14, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -134927,7 +135035,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(122), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134952,30 +135060,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [370] = 12, + anon_sym_implements, + [457] = 15, + ACTIONS(128), 1, + anon_sym_RBRACK, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(811), 1, + ACTIONS(227), 1, + anon_sym_COMMA, + ACTIONS(895), 1, anon_sym_EQ, - ACTIONS(918), 1, + ACTIONS(900), 1, + anon_sym_COLON, + ACTIONS(904), 1, anon_sym_EQ_GT, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -135003,7 +135116,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(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135028,103 +135141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [459] = 14, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(704), 1, - anon_sym_COLON, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(2239), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LT, - ACTIONS(3372), 1, - sym_identifier, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 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(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - 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_satisfies, [552] = 12, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(934), 1, - anon_sym_EQ_GT, - ACTIONS(1552), 1, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(3368), 1, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(3343), 1, sym_identifier, - STATE(726), 1, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, sym_string, - STATE(754), 1, + STATE(1710), 1, sym__module, - STATE(4421), 1, - sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -135184,84 +135217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [640] = 11, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(934), 1, - anon_sym_EQ_GT, - ACTIONS(3329), 1, - sym_identifier, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - STATE(4414), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(162), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, - [726] = 4, - ACTIONS(3378), 1, - anon_sym_extends, + [640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -135289,7 +135245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3376), 37, + ACTIONS(3376), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135297,6 +135253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -135327,41 +135284,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [798] = 12, - ACTIONS(928), 1, + [710] = 13, + ACTIONS(696), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(704), 1, + anon_sym_COLON, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3335), 1, - sym_identifier, - ACTIONS(3337), 1, - anon_sym_DQUOTE, - ACTIONS(3339), 1, - anon_sym_SQUOTE, - STATE(207), 1, - sym_nested_identifier, - STATE(213), 1, - sym_string, - STATE(221), 1, - sym__module, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_LT, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -135378,9 +135322,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(162), 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, @@ -135397,28 +135358,25 @@ 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, - [886] = 12, + [800] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(811), 1, + ACTIONS(946), 1, anon_sym_EQ, - ACTIONS(948), 1, + ACTIONS(952), 1, anon_sym_EQ_GT, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -135479,29 +135437,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [974] = 13, - ACTIONS(704), 1, + [888] = 13, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(900), 1, anon_sym_COLON, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3386), 1, - anon_sym_LPAREN, - ACTIONS(3389), 1, + ACTIONS(904), 1, anon_sym_EQ_GT, - ACTIONS(3393), 1, - anon_sym_LT, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(926), 1, + anon_sym_EQ, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(162), 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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135517,26 +135489,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(3384), 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(3380), 20, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -135553,35 +135508,37 @@ 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, - [1064] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(942), 1, - anon_sym_EQ, - ACTIONS(948), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [978] = 11, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(3335), 1, sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + STATE(4442), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 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, @@ -135632,29 +135589,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1152] = 13, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(704), 1, - anon_sym_COLON, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(2239), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LT, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, + [1064] = 4, + ACTIONS(3382), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3378), 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(3380), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135670,12 +135647,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(162), 17, - 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, + anon_sym_implements, + [1136] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(952), 1, + anon_sym_EQ_GT, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135683,13 +135689,28 @@ 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(122), 20, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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, @@ -135706,14 +135727,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, - [1242] = 3, + anon_sym_instanceof, + anon_sym_satisfies, + [1224] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3396), 23, + ACTIONS(3384), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -135737,7 +135761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3398), 38, + ACTIONS(3386), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135776,11 +135800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1312] = 3, + [1294] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 23, + ACTIONS(3378), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -135804,7 +135828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3402), 38, + ACTIONS(3380), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135843,140 +135867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1382] = 14, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3414), 1, - anon_sym_EQ_GT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_LT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, + [1364] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 17, + ACTIONS(3388), 23, 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, - [1474] = 14, - ACTIONS(128), 1, - anon_sym_RBRACK, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_COMMA, - ACTIONS(895), 1, anon_sym_EQ, - ACTIONS(904), 1, - anon_sym_EQ_GT, - ACTIONS(3343), 1, - sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 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(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, @@ -135997,45 +135894,21 @@ 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, - [1566] = 13, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(900), 1, - anon_sym_COLON, - ACTIONS(904), 1, - anon_sym_EQ_GT, - ACTIONS(952), 1, - anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 13, + anon_sym_QMARK, + ACTIONS(3390), 38, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136051,38 +135924,21 @@ 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_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - 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_LT_EQ, + anon_sym_EQ_EQ_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, - [1656] = 4, - ACTIONS(3424), 1, - anon_sym_extends, + anon_sym_implements, + [1434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 23, + ACTIONS(3392), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -136106,7 +135962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3422), 37, + ACTIONS(3394), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136114,6 +135970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -136144,11 +136001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1728] = 3, + [1504] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3374), 23, + ACTIONS(3396), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -136172,7 +136029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3376), 38, + ACTIONS(3398), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136211,22 +136068,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1798] = 12, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(934), 1, + [1574] = 12, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(1552), 1, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(3329), 1, + sym_identifier, + ACTIONS(3331), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(3333), 1, anon_sym_SQUOTE, - ACTIONS(3341), 1, - sym_identifier, - STATE(707), 1, - sym_nested_identifier, - STATE(726), 1, + STATE(213), 1, sym_string, - STATE(754), 1, + STATE(214), 1, + sym_nested_identifier, + STATE(247), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -136287,13 +136144,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1886] = 3, + [1662] = 14, + ACTIONS(3402), 1, + anon_sym_EQ, + ACTIONS(3408), 1, + anon_sym_LPAREN, + ACTIONS(3410), 1, + anon_sym_DOT, + ACTIONS(3412), 1, + anon_sym_EQ_GT, + ACTIONS(3414), 1, + anon_sym_QMARK_DOT, + ACTIONS(3420), 1, + anon_sym_LT, + STATE(3020), 1, + sym_arguments, + STATE(3189), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3426), 23, + ACTIONS(3418), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3406), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136302,81 +136213,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_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3428), 38, + [1754] = 12, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(71), 1, + anon_sym_SQUOTE, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(3366), 1, + sym_identifier, + STATE(1444), 1, + sym_nested_identifier, + STATE(1452), 1, + sym_string, + STATE(1765), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, 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, - [1956] = 13, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(704), 1, - anon_sym_COLON, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3386), 1, - anon_sym_LPAREN, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3393), 1, - anon_sym_LT, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136392,26 +136273,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(3384), 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(3380), 20, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136428,32 +136292,35 @@ 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, - [2046] = 13, + anon_sym_instanceof, + anon_sym_satisfies, + [1842] = 13, ACTIONS(704), 1, anon_sym_COLON, ACTIONS(723), 1, anon_sym_QMARK, ACTIONS(725), 1, anon_sym_RBRACE, - ACTIONS(3382), 1, + ACTIONS(3422), 1, anon_sym_EQ, - ACTIONS(3386), 1, + ACTIONS(3424), 1, anon_sym_LPAREN, - ACTIONS(3389), 1, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3393), 1, + ACTIONS(3429), 1, anon_sym_LT, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136469,7 +136336,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(3384), 17, + ACTIONS(3404), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136487,7 +136354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 20, + ACTIONS(3400), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136508,22 +136375,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2136] = 12, - ACTIONS(69), 1, + [1932] = 12, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(934), 1, - anon_sym_EQ_GT, - ACTIONS(3366), 1, + ACTIONS(3432), 1, sym_identifier, - STATE(1435), 1, - sym_string, - STATE(1445), 1, + STATE(3483), 1, sym_nested_identifier, - STATE(1727), 1, + STATE(3697), 1, + sym_string, + STATE(4370), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -136584,41 +136451,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2224] = 11, - ACTIONS(928), 1, + [2020] = 13, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(704), 1, + anon_sym_COLON, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(3422), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(3424), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3329), 1, - sym_identifier, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - STATE(4409), 1, - sym_variable_declarator, + ACTIONS(3429), 1, + anon_sym_LT, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(162), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136634,38 +136489,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(3404), 17, + sym__automatic_semicolon, + sym__ternary_qmark, 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_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, - [2310] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3430), 23, + ACTIONS(3400), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136682,68 +136525,27 @@ 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(3432), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [2380] = 13, + [2110] = 13, ACTIONS(696), 1, anon_sym_EQ, + ACTIONS(702), 1, + anon_sym_RBRACE, ACTIONS(704), 1, anon_sym_COLON, ACTIONS(715), 1, anon_sym_EQ_GT, ACTIONS(723), 1, anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, ACTIONS(2239), 1, anon_sym_LPAREN, ACTIONS(2248), 1, anon_sym_LT, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -136803,42 +136605,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2470] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(811), 1, + [2200] = 13, + ACTIONS(704), 1, + anon_sym_COLON, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(3422), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(3424), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, - sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, + ACTIONS(3429), 1, + anon_sym_LT, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 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(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136854,9 +136643,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(3404), 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(3400), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136873,28 +136679,25 @@ 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, - [2558] = 12, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(934), 1, + [2290] = 12, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(1584), 1, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(3434), 1, + ACTIONS(3341), 1, sym_identifier, - STATE(3481), 1, + STATE(711), 1, sym_nested_identifier, - STATE(3632), 1, + STATE(741), 1, sym_string, - STATE(4328), 1, + STATE(825), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -136955,7 +136758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2646] = 13, + [2378] = 13, ACTIONS(696), 1, anon_sym_EQ, ACTIONS(704), 1, @@ -136964,16 +136767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(723), 1, anon_sym_QMARK, - ACTIONS(725), 1, + ACTIONS(727), 1, anon_sym_RBRACE, ACTIONS(2239), 1, anon_sym_LPAREN, ACTIONS(2248), 1, anon_sym_LT, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(4671), 1, aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -137032,33 +136835,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2736] = 13, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, + [2468] = 11, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(952), 1, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(954), 1, - anon_sym_COLON, - ACTIONS(3343), 1, + ACTIONS(3335), 1, sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + STATE(4506), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, ACTIONS(162), 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, @@ -137109,11 +136910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2826] = 3, + [2554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 23, + ACTIONS(3434), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137137,7 +136938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3438), 38, + ACTIONS(3436), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137176,50 +136977,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2896] = 14, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(3414), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - anon_sym_DOT, - ACTIONS(3444), 1, - anon_sym_QMARK_DOT, - ACTIONS(3446), 1, - anon_sym_LT, - STATE(2994), 1, - sym_arguments, - STATE(3188), 1, - sym_type_arguments, + [2624] = 14, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, + anon_sym_COMMA, + ACTIONS(895), 1, + anon_sym_EQ, + ACTIONS(904), 1, + anon_sym_EQ_GT, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3384), 11, + ACTIONS(162), 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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137235,8 +137030,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(3380), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -137245,72 +137041,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_QMARK_QMARK, - [2988] = 3, + anon_sym_instanceof, + anon_sym_satisfies, + [2716] = 14, + ACTIONS(3402), 1, + anon_sym_EQ, + ACTIONS(3412), 1, + anon_sym_EQ_GT, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, + anon_sym_LT, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3406), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3418), 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(3422), 38, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -137320,41 +137099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3058] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(811), 1, - anon_sym_EQ, - ACTIONS(966), 1, - anon_sym_EQ_GT, - ACTIONS(3343), 1, - sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 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(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137370,37 +137115,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(3400), 17, 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, - anon_sym_instanceof, - anon_sym_satisfies, - [3145] = 3, + [2808] = 4, + ACTIONS(3446), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2453), 22, + ACTIONS(3384), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137423,7 +137162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2451), 38, + anon_sym_QMARK, + ACTIONS(3386), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137431,7 +137171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137462,122 +137201,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3214] = 8, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3452), 1, - anon_sym_DOT, - ACTIONS(3454), 1, - anon_sym_LT, - STATE(1243), 1, - sym_arguments, - STATE(5413), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3450), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [2880] = 13, + ACTIONS(150), 1, anon_sym_DQUOTE, + ACTIONS(152), 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(3448), 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_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, - [3293] = 16, - ACTIONS(3414), 1, + ACTIONS(904), 1, anon_sym_EQ_GT, - ACTIONS(3456), 1, + ACTIONS(926), 1, anon_sym_EQ, - ACTIONS(3463), 1, + ACTIONS(940), 1, anon_sym_COLON, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3477), 1, - anon_sym_QMARK, - ACTIONS(3480), 1, - anon_sym_extends, - STATE(2855), 1, - sym_type_arguments, - STATE(5310), 1, - sym_type_annotation, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3459), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3471), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 13, + ACTIONS(162), 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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137593,8 +137253,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(3380), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -137603,38 +137264,45 @@ 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, - [3388] = 12, - ACTIONS(150), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2970] = 12, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(152), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, - anon_sym_EQ, - ACTIONS(966), 1, - anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(3368), 1, sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, + STATE(741), 1, sym_string, - STATE(1614), 1, + STATE(825), 1, sym__module, + STATE(4429), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137661,12 +137329,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(122), 24, 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, @@ -137687,30 +137354,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3475] = 12, - ACTIONS(3404), 1, + [3058] = 14, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3414), 1, + ACTIONS(3412), 1, anon_sym_EQ_GT, - ACTIONS(3468), 1, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3474), 1, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - STATE(2855), 1, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3471), 3, - anon_sym_GT, + ACTIONS(3418), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3391), 15, + ACTIONS(3406), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3404), 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(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137726,10 +137412,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(3380), 17, + ACTIONS(3400), 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, @@ -137744,49 +137431,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3384), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3562] = 12, + [3149] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(811), 1, + ACTIONS(960), 1, anon_sym_EQ, - ACTIONS(904), 1, + ACTIONS(966), 1, anon_sym_EQ_GT, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 13, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137812,11 +137480,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(122), 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, @@ -137837,49 +137506,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3649] = 14, - ACTIONS(3404), 1, + [3236] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3414), 1, + ACTIONS(966), 1, anon_sym_EQ_GT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_LT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3384), 13, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + 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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137895,57 +137555,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 18, + ACTIONS(122), 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, - [3740] = 13, - ACTIONS(3414), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3323] = 14, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3456), 1, - anon_sym_EQ, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3482), 1, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3485), 1, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, anon_sym_LT, - STATE(3208), 1, + ACTIONS(3448), 1, + anon_sym_EQ, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3459), 2, + ACTIONS(3406), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3471), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3418), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3480), 4, + ACTIONS(3404), 14, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -137955,7 +137624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137971,11 +137640,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(3380), 18, + ACTIONS(3400), 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, @@ -137990,22 +137658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3829] = 14, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3408), 1, + [3414] = 14, + ACTIONS(3438), 1, anon_sym_LPAREN, - ACTIONS(3412), 1, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3416), 1, + ACTIONS(3442), 1, anon_sym_QMARK_DOT, - ACTIONS(3418), 1, + ACTIONS(3444), 1, anon_sym_LT, - ACTIONS(3488), 1, + ACTIONS(3450), 1, anon_sym_EQ, - STATE(2822), 1, + ACTIONS(3452), 1, + anon_sym_EQ_GT, + STATE(2829), 1, sym_arguments, - STATE(2872), 1, + STATE(2852), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -138014,15 +137682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3410), 3, + ACTIONS(3418), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 14, + ACTIONS(3404), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -138033,7 +137701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138049,7 +137717,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(3380), 17, + ACTIONS(3400), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138067,24 +137735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3920] = 13, + [3505] = 13, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(811), 1, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(817), 1, + ACTIONS(847), 1, anon_sym_COLON, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -138143,14 +137811,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4009] = 14, + [3594] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2445), 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(2443), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [3663] = 13, + ACTIONS(3412), 1, + anon_sym_EQ_GT, + ACTIONS(3454), 1, + anon_sym_EQ, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3466), 1, + anon_sym_DOT, + ACTIONS(3472), 1, + anon_sym_LT, + STATE(3194), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3457), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3469), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3461), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [3752] = 14, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(811), 1, + ACTIONS(841), 1, anon_sym_EQ, ACTIONS(861), 1, anon_sym_in, @@ -138158,11 +137968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -138220,22 +138030,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4100] = 12, + [3843] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, + ACTIONS(841), 1, + anon_sym_EQ, ACTIONS(904), 1, anon_sym_EQ_GT, - ACTIONS(952), 1, - anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -138295,11 +138105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4187] = 3, + [3930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2449), 22, + ACTIONS(2461), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138322,7 +138132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2447), 38, + ACTIONS(2459), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138361,90 +138171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4256] = 14, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_LT, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3492), 1, - anon_sym_EQ_GT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [4347] = 5, - ACTIONS(3494), 1, + [3999] = 5, + ACTIONS(3475), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138460,7 +138193,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138482,7 +138215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3384), 23, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138506,31 +138239,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4420] = 9, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(160), 1, + [4072] = 16, + ACTIONS(3412), 1, anon_sym_EQ_GT, - ACTIONS(3496), 1, + ACTIONS(3454), 1, + anon_sym_EQ, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3463), 1, anon_sym_LBRACK, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3485), 1, + anon_sym_QMARK, + STATE(2856), 1, + sym_type_arguments, + STATE(5509), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3457), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3469), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1664), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(162), 14, + ACTIONS(3404), 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, @@ -138541,7 +138283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138557,7 +138299,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(3400), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138573,34 +138315,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, - [4500] = 12, + [4167] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(229), 1, + ACTIONS(904), 1, anon_sym_EQ_GT, - ACTIONS(1040), 1, + ACTIONS(926), 1, anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(162), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138651,101 +138393,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4586] = 15, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - ACTIONS(3502), 1, + [4254] = 12, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3507), 1, - anon_sym_RPAREN, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - ACTIONS(3512), 1, - anon_sym_QMARK, - STATE(2855), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3471), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [4678] = 9, - ACTIONS(160), 1, + ACTIONS(3412), 1, anon_sym_EQ_GT, - ACTIONS(857), 1, - anon_sym_EQ, - ACTIONS(1664), 1, + ACTIONS(3461), 1, anon_sym_extends, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 2, + ACTIONS(3463), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3499), 3, + ACTIONS(3469), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138761,7 +138432,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(3400), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138776,11 +138447,10 @@ 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, - ACTIONS(162), 18, + ACTIONS(3404), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -138788,7 +138458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -138799,35 +138468,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4758] = 15, - ACTIONS(3414), 1, + [4341] = 8, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3492), 1, + anon_sym_DOT, + ACTIONS(3494), 1, + anon_sym_LT, + STATE(1194), 1, + sym_arguments, + STATE(5478), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 14, + anon_sym_LBRACE, + anon_sym_BANG, + 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(3488), 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_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, + [4420] = 15, + ACTIONS(3412), 1, anon_sym_EQ_GT, - ACTIONS(3456), 1, + ACTIONS(3454), 1, anon_sym_EQ, - ACTIONS(3459), 1, + ACTIONS(3457), 1, anon_sym_RPAREN, - ACTIONS(3465), 1, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3463), 1, anon_sym_LBRACK, - ACTIONS(3468), 1, + ACTIONS(3479), 1, anon_sym_DOT, - ACTIONS(3474), 1, + ACTIONS(3482), 1, anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - ACTIONS(3512), 1, + ACTIONS(3499), 1, anon_sym_QMARK, - STATE(2855), 1, + STATE(2856), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3469), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3514), 2, + ACTIONS(3496), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3384), 13, + ACTIONS(3404), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -138841,7 +138581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138857,7 +138597,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(3380), 18, + ACTIONS(3400), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138876,30 +138616,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4850] = 12, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3492), 1, + [4512] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, anon_sym_EQ_GT, - STATE(2855), 1, - sym_type_arguments, + ACTIONS(988), 1, + anon_sym_EQ, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 2, - anon_sym_COMMA, + ACTIONS(162), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3471), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3391), 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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138915,57 +138665,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + 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, + [4598] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(982), 1, + anon_sym_EQ, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 12, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, - 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(3380), 17, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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, - [4936] = 14, - ACTIONS(3408), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4684] = 14, + ACTIONS(3438), 1, anon_sym_LPAREN, - ACTIONS(3412), 1, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3416), 1, + ACTIONS(3442), 1, anon_sym_QMARK_DOT, - ACTIONS(3418), 1, + ACTIONS(3444), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3519), 1, + ACTIONS(3503), 1, anon_sym_EQ_GT, - STATE(2822), 1, + STATE(2829), 1, sym_arguments, - STATE(2872), 1, + STATE(2852), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -138974,11 +138788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3410), 3, + ACTIONS(3418), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 13, + ACTIONS(3404), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138992,7 +138806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139008,7 +138822,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(3380), 17, + ACTIONS(3400), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139026,27 +138840,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5026] = 8, + [4774] = 9, ACTIONS(119), 1, anon_sym_EQ, ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(753), 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(1650), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(162), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139074,7 +138891,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(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139084,9 +138901,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, @@ -139096,30 +138911,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5104] = 12, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - ACTIONS(3488), 1, + [4854] = 8, + ACTIONS(224), 1, anon_sym_EQ, - STATE(2855), 1, - sym_type_arguments, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(793), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 2, + ACTIONS(227), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3471), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3391), 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139135,57 +138959,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 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(3380), 17, + 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, - [5190] = 12, + [4932] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(1030), 1, + ACTIONS(978), 1, anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139244,23 +139055,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5276] = 8, - ACTIONS(3414), 1, - anon_sym_EQ_GT, - ACTIONS(3456), 1, + [5018] = 8, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3512), 1, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(793), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 5, + ACTIONS(128), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3384), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -139276,7 +139087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139292,7 +139103,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(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139314,22 +139125,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5354] = 7, - ACTIONS(3525), 1, - anon_sym_class, - ACTIONS(3528), 1, - anon_sym_AT, - STATE(1209), 1, - aux_sym_export_statement_repeat1, - STATE(1236), 1, - sym_decorator, + [5096] = 8, + ACTIONS(3499), 1, + anon_sym_QMARK, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(3516), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3523), 14, + ACTIONS(3514), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [5174] = 14, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, + anon_sym_LT, + ACTIONS(3518), 1, + anon_sym_EQ, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3406), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3418), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [5264] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -139341,7 +139291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3521), 41, + anon_sym_AT, + ACTIONS(3522), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -139350,6 +139301,7 @@ 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, @@ -139383,49 +139335,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [5430] = 14, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_LT, - ACTIONS(3531), 1, - anon_sym_EQ, - ACTIONS(3533), 1, + anon_sym_abstract, + [5332] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, anon_sym_EQ_GT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(3343), 1, + sym_identifier, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 13, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + 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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139441,40 +139385,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(3380), 17, + 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, - [5520] = 12, + anon_sym_instanceof, + anon_sym_satisfies, + [5418] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(811), 1, + ACTIONS(976), 1, anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139533,22 +139484,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5606] = 12, + [5504] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(1038), 1, + ACTIONS(972), 1, anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139607,22 +139558,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5692] = 12, + [5590] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(980), 1, anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139681,30 +139632,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5778] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, + [5676] = 12, + ACTIONS(3450), 1, + anon_sym_EQ, + ACTIONS(3452), 1, + anon_sym_EQ_GT, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + STATE(2856), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3469), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3404), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + 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(3400), 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, + [5762] = 12, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(976), 1, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(861), 1, + anon_sym_in, + ACTIONS(864), 1, + anon_sym_of, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(3526), 1, sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, + ACTIONS(3528), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + STATE(5532), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 11, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139730,11 +139756,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(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, @@ -139755,17 +139780,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5864] = 8, - ACTIONS(224), 1, + [5848] = 6, + ACTIONS(3535), 1, + anon_sym_AT, + STATE(1201), 1, + aux_sym_export_statement_repeat1, + STATE(1244), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3533), 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(3531), 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, + [5922] = 9, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(857), 1, anon_sym_EQ, + ACTIONS(1650), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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, + ACTIONS(162), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + anon_sym_satisfies, + [6002] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3540), 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(3538), 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, + [6070] = 8, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(753), 1, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(855), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(227), 5, + ACTIONS(847), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -139825,38 +140054,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5942] = 14, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(3408), 1, + [6148] = 14, + ACTIONS(3438), 1, anon_sym_LPAREN, - ACTIONS(3412), 1, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3414), 1, - anon_sym_EQ_GT, - ACTIONS(3416), 1, + ACTIONS(3442), 1, anon_sym_QMARK_DOT, - ACTIONS(3418), 1, + ACTIONS(3444), 1, anon_sym_LT, - STATE(2822), 1, + ACTIONS(3542), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_EQ_GT, + STATE(2829), 1, sym_arguments, - STATE(2872), 1, + STATE(2852), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3406), 4, + ACTIONS(3406), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3384), 11, + ACTIONS(3418), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -139866,7 +140095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + anon_sym_implements, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139882,11 +140112,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(3380), 18, + ACTIONS(3400), 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, @@ -139901,28 +140130,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6032] = 8, - ACTIONS(3502), 1, + [6238] = 15, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_QMARK, + ACTIONS(3511), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3516), 1, anon_sym_EQ_GT, - ACTIONS(3512), 1, - anon_sym_QMARK, + ACTIONS(3546), 1, + anon_sym_RPAREN, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 5, + ACTIONS(3469), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3514), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3384), 15, + ACTIONS(3404), 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, @@ -139933,7 +140172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139949,7 +140188,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(3380), 21, + ACTIONS(3400), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139959,34 +140198,31 @@ 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, - [6110] = 12, + [6330] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(1034), 1, + ACTIONS(974), 1, anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140045,31 +140281,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6196] = 12, + [6416] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(811), 1, + ACTIONS(986), 1, anon_sym_EQ, - ACTIONS(861), 1, - anon_sym_in, - ACTIONS(864), 1, - anon_sym_of, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3535), 1, + ACTIONS(3343), 1, sym_identifier, - ACTIONS(3537), 1, - anon_sym_LBRACK, + STATE(1486), 1, + sym_nested_identifier, + STATE(1513), 1, + sym_string, + STATE(1710), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5476), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(162), 11, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140095,10 +140330,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(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, @@ -140119,28 +140355,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6282] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(972), 1, + [6502] = 8, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + ACTIONS(3551), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(3549), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3404), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140149,10 +140382,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(168), 15, + anon_sym_satisfies, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140168,9 +140403,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(3400), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140191,24 +140425,22 @@ 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, - [6368] = 12, + [6580] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(1032), 1, + ACTIONS(984), 1, anon_sym_EQ, ACTIONS(3343), 1, sym_identifier, - STATE(1466), 1, + STATE(1486), 1, sym_nested_identifier, - STATE(1467), 1, + STATE(1513), 1, sym_string, - STATE(1614), 1, + STATE(1710), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140267,38 +140499,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6454] = 14, - ACTIONS(3408), 1, - anon_sym_LPAREN, + [6666] = 14, + ACTIONS(3402), 1, + anon_sym_EQ, ACTIONS(3412), 1, + anon_sym_EQ_GT, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3416), 1, + ACTIONS(3442), 1, anon_sym_QMARK_DOT, - ACTIONS(3418), 1, + ACTIONS(3444), 1, anon_sym_LT, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(3542), 1, - anon_sym_EQ_GT, - STATE(2822), 1, + STATE(2829), 1, sym_arguments, - STATE(2872), 1, + STATE(2852), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3418), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3406), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 13, + ACTIONS(3404), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140308,8 +140540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140325,10 +140556,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(3380), 17, + ACTIONS(3400), 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, @@ -140343,17 +140575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6544] = 6, - ACTIONS(3528), 1, + [6756] = 7, + ACTIONS(3535), 1, anon_sym_AT, - STATE(1209), 1, + ACTIONS(3553), 1, + anon_sym_class, + STATE(1201), 1, aux_sym_export_statement_repeat1, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3523), 14, + ACTIONS(3533), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -140368,7 +140602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3521), 42, + ACTIONS(3531), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -140377,7 +140611,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, @@ -140411,39 +140644,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6618] = 8, - ACTIONS(229), 1, + [6832] = 12, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(811), 1, + ACTIONS(3448), 1, anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_QMARK, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(817), 5, + ACTIONS(3463), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(162), 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(168), 15, + ACTIONS(3469), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140459,119 +140683,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), 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, - [6696] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(1036), 1, - anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1466), 1, - sym_nested_identifier, - STATE(1467), 1, - sym_string, - STATE(1614), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 12, + ACTIONS(3404), 16, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + 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, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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(3400), 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, - [6782] = 8, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + [6918] = 8, + ACTIONS(3412), 1, anon_sym_EQ_GT, - ACTIONS(3546), 1, + ACTIONS(3454), 1, + anon_sym_EQ, + ACTIONS(3499), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, + ACTIONS(3496), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -140587,7 +140750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140603,7 +140766,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140625,48 +140788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6860] = 14, - ACTIONS(3408), 1, - anon_sym_LPAREN, + [6996] = 6, ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_EQ, - ACTIONS(3550), 1, anon_sym_EQ_GT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, + ACTIONS(3475), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 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(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140682,41 +140812,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(3380), 17, + ACTIONS(3404), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(3400), 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, - [6949] = 9, - ACTIONS(715), 1, + [7069] = 6, + ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(857), 1, anon_sym_EQ, - ACTIONS(1664), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3499), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140733,13 +140879,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(162), 17, - sym__automatic_semicolon, + ACTIONS(162), 20, 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, @@ -140751,16 +140900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + 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, @@ -140770,15 +140922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7028] = 6, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(811), 1, + [7142] = 6, + ACTIONS(3402), 1, anon_sym_EQ, + ACTIONS(3412), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140794,7 +140946,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(162), 20, + ACTIONS(3404), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -140815,7 +140967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140837,37 +140989,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7101] = 14, - ACTIONS(3408), 1, + [7215] = 14, + ACTIONS(3438), 1, anon_sym_LPAREN, - ACTIONS(3412), 1, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3416), 1, + ACTIONS(3442), 1, anon_sym_QMARK_DOT, - ACTIONS(3418), 1, + ACTIONS(3444), 1, anon_sym_LT, - ACTIONS(3494), 1, + ACTIONS(3556), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3558), 1, anon_sym_EQ_GT, - STATE(2822), 1, + STATE(2829), 1, sym_arguments, - STATE(2872), 1, + STATE(2852), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 4, + ACTIONS(3406), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3384), 11, + ACTIONS(3418), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140877,7 +141030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140893,11 +141046,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(3380), 18, + ACTIONS(3400), 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, @@ -140912,47 +141064,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7190] = 4, + [7304] = 14, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, + anon_sym_LT, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(3562), 1, + anon_sym_EQ_GT, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 3, + ACTIONS(3406), 3, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3374), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3418), 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(3376), 33, + ACTIONS(3404), 12, 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_LT_EQ, + anon_sym_EQ_EQ_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(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140968,56 +141121,64 @@ 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, - [7259] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3424), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3420), 22, + ACTIONS(3400), 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(3422), 33, + [7393] = 12, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3542), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_EQ_GT, + STATE(2856), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3469), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, - 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, + anon_sym_implements, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141033,40 +141194,43 @@ 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, - [7328] = 11, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(753), 1, + ACTIONS(3400), 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, + [7478] = 7, + ACTIONS(3499), 1, anon_sym_QMARK, - ACTIONS(3496), 1, - anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, + ACTIONS(3514), 5, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1664), 2, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3499), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(162), 14, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141078,7 +141242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141094,7 +141258,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(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141104,7 +141268,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, @@ -141114,35 +141280,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7411] = 12, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3517), 1, + [7553] = 11, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3519), 1, + ACTIONS(160), 1, anon_sym_EQ_GT, - STATE(2855), 1, - sym_type_arguments, + ACTIONS(793), 1, + anon_sym_QMARK, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 2, + ACTIONS(128), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1650), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3471), 3, - anon_sym_GT, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 15, - sym__automatic_semicolon, + ACTIONS(162), 14, 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, @@ -141153,7 +141316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141169,10 +141332,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(3380), 17, + ACTIONS(122), 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, @@ -141184,101 +141348,92 @@ 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, - [7496] = 3, + [7636] = 4, + ACTIONS(3446), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3554), 15, - anon_sym_LBRACE, + ACTIONS(3384), 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(3386), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, 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, - anon_sym_AT, - ACTIONS(3552), 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, - [7563] = 8, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, - anon_sym_EQ, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(3372), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_satisfies, + [7705] = 9, + ACTIONS(872), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_EQ_GT, + ACTIONS(1650), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141295,20 +141450,34 @@ 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(162), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + 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, + 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, @@ -141318,15 +141487,13 @@ 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, - [7640] = 4, - ACTIONS(3424), 1, + [7784] = 4, + ACTIONS(3382), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 22, + ACTIONS(3378), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -141349,7 +141516,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(3380), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141385,105 +141552,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7709] = 6, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(3414), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + [7853] = 12, + ACTIONS(3463), 1, 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(3380), 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, - [7782] = 14, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3412), 1, + ACTIONS(3479), 1, anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, + ACTIONS(3482), 1, anon_sym_LT, - ACTIONS(3556), 1, + ACTIONS(3518), 1, anon_sym_EQ, - ACTIONS(3558), 1, + ACTIONS(3520), 1, anon_sym_EQ_GT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, + STATE(2856), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3461), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3410), 3, + ACTIONS(3469), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 12, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -141493,7 +141591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141509,7 +141607,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(3380), 17, + ACTIONS(3400), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141527,47 +141625,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7871] = 14, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(3414), 1, - anon_sym_EQ_GT, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - ACTIONS(3544), 1, - anon_sym_COLON, - STATE(2855), 1, - sym_type_arguments, + [7938] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3560), 2, + ACTIONS(3446), 3, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3384), 13, + anon_sym_extends, + ACTIONS(3384), 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(3386), 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_LT_EQ, - anon_sym_EQ_EQ_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(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141583,30 +141681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [7960] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3566), 15, + ACTIONS(3490), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -141622,7 +141710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3564), 43, + ACTIONS(3488), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -141666,221 +141754,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [8027] = 6, - ACTIONS(160), 1, + [8074] = 8, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(857), 1, + ACTIONS(859), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(886), 1, 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, - 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, - [8100] = 4, + ACTIONS(3372), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 4, + ACTIONS(162), 15, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3374), 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(3376), 32, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8169] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3424), 4, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - 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, - anon_sym_AMP, - 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__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8238] = 7, - ACTIONS(3502), 1, - anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3384), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141888,12 +141779,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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141909,75 +141798,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(3380), 21, + ACTIONS(122), 24, 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, - [8313] = 6, - ACTIONS(3414), 1, - anon_sym_EQ_GT, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 20, - sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(3380), 21, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141998,165 +141821,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8386] = 13, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - ACTIONS(3544), 1, - anon_sym_COLON, - STATE(2855), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3471), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3480), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [8473] = 9, - ACTIONS(872), 1, - anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_EQ_GT, - ACTIONS(1664), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3499), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - 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, - 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, - [8552] = 7, - ACTIONS(3456), 1, + [8151] = 7, + ACTIONS(3454), 1, anon_sym_EQ, - ACTIONS(3512), 1, + ACTIONS(3499), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 5, + ACTIONS(3496), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -142172,7 +141853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142188,7 +141869,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142210,11 +141891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8627] = 3, + [8226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3570), 15, + ACTIONS(3566), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -142230,7 +141911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3568), 43, + ACTIONS(3564), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142239,6 +141920,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, @@ -142273,34 +141955,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [8694] = 12, - ACTIONS(3468), 1, + [8293] = 13, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3479), 1, anon_sym_DOT, - ACTIONS(3474), 1, + ACTIONS(3482), 1, anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(3542), 1, + ACTIONS(3516), 1, anon_sym_EQ_GT, - STATE(2855), 1, + ACTIONS(3549), 1, + anon_sym_COLON, + STATE(2856), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3471), 3, - anon_sym_GT, + ACTIONS(3469), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 15, + ACTIONS(3461), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3404), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142312,8 +141994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142329,10 +142010,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(3380), 17, + ACTIONS(3400), 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, @@ -142347,11 +142029,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8779] = 3, + [8380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3450), 15, + ACTIONS(3570), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -142367,7 +142049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3448), 43, + ACTIONS(3568), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142411,35 +142093,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [8846] = 12, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3531), 1, + [8447] = 7, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3533), 1, - anon_sym_EQ_GT, - STATE(2855), 1, - sym_type_arguments, + ACTIONS(3551), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 2, + ACTIONS(3549), 5, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3471), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 15, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3404), 15, 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, @@ -142450,7 +142123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142466,32 +142139,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(3380), 17, + ACTIONS(3400), 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, - [8931] = 11, + [8522] = 11, ACTIONS(224), 1, anon_sym_EQ, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(753), 1, + ACTIONS(793), 1, anon_sym_QMARK, - ACTIONS(3496), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -142499,10 +142176,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(227), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1664), 2, + ACTIONS(1650), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3499), 2, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(162), 14, @@ -142556,26 +142233,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9014] = 7, - ACTIONS(3494), 1, + [8605] = 12, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3546), 1, - anon_sym_QMARK, + ACTIONS(3503), 1, + anon_sym_EQ_GT, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, + ACTIONS(3461), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3384), 15, + anon_sym_extends, + ACTIONS(3469), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142586,7 +142272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142602,57 +142288,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 21, + ACTIONS(3400), 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, - [9089] = 8, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [8690] = 14, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, + anon_sym_LT, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(886), 1, - anon_sym_COLON, - ACTIONS(3372), 1, - sym_identifier, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3418), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3406), 4, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3404), 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(168), 15, + anon_sym_satisfies, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142668,9 +142362,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(3400), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142679,93 +142372,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_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9166] = 3, + [8779] = 8, + ACTIONS(715), 1, + anon_sym_EQ_GT, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(3372), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3574), 15, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(162), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, 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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3572), 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, - [9233] = 4, - ACTIONS(3378), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3374), 22, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142786,43 +142448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3376), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [9302] = 8, + [8856] = 8, ACTIONS(715), 1, anon_sym_EQ_GT, ACTIONS(859), 1, @@ -142891,15 +142519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [9379] = 6, - ACTIONS(3492), 1, + [8933] = 6, + ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(3494), 1, + ACTIONS(841), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142915,15 +142543,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(3384), 19, - sym__automatic_semicolon, + ACTIONS(162), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142935,7 +142564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142957,11 +142586,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9451] = 3, + [9006] = 14, + ACTIONS(3402), 1, + anon_sym_EQ, + ACTIONS(3412), 1, + anon_sym_EQ_GT, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3549), 1, + anon_sym_COLON, + STATE(2856), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3469), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3572), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [9095] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 22, + ACTIONS(3382), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3378), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -142984,15 +142692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3402), 35, - sym__automatic_semicolon, + ACTIONS(3380), 33, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -143020,11 +142726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9517] = 3, + [9164] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3426), 22, + ACTIONS(3446), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3384), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -143047,15 +142758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3428), 35, - sym__automatic_semicolon, + ACTIONS(3386), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -143083,54 +142791,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9583] = 8, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(817), 1, - anon_sym_COLON, - ACTIONS(857), 1, - anon_sym_EQ, + [9233] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(888), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(162), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3578), 15, + 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, + 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, - anon_sym_satisfies, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3576), 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, + [9300] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3382), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3378), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143151,46 +142887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9659] = 14, - ACTIONS(3408), 1, + ACTIONS(3380), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3412), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3416), 1, anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_LT, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3410), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3384), 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(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143206,39 +142911,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(3380), 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, - [9747] = 9, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(934), 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, + [9369] = 9, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3496), 1, - anon_sym_LBRACK, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(1650), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 2, + ACTIONS(3505), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3499), 3, + anon_sym_LBRACK, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -143258,10 +142953,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(162), 16, + ACTIONS(162), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_DOT, @@ -143294,76 +142990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9825] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3374), 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(3376), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [9891] = 5, - ACTIONS(3494), 1, + [9448] = 6, + ACTIONS(3427), 1, + anon_sym_EQ_GT, + ACTIONS(3475), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143379,14 +143014,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(3384), 20, + ACTIONS(3404), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -143400,7 +143034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143422,14 +143056,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9961] = 6, - ACTIONS(811), 1, - anon_sym_EQ, - ACTIONS(878), 1, + [9520] = 11, + ACTIONS(160), 1, anon_sym_EQ_GT, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(857), 1, + anon_sym_EQ, + ACTIONS(1650), 1, + anon_sym_extends, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3580), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(162), 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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -143446,27 +143107,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(162), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - 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(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143476,9 +143117,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, @@ -143488,18 +143127,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10033] = 8, - ACTIONS(715), 1, + [9602] = 8, + ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(857), 1, anon_sym_EQ, - ACTIONS(861), 1, - anon_sym_in, - ACTIONS(3576), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(888), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(162), 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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -143516,28 +143173,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(162), 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), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143556,40 +143195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10109] = 10, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(811), 1, + [9678] = 6, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(817), 1, - anon_sym_COLON, - ACTIONS(3496), 1, - anon_sym_LBRACK, + ACTIONS(878), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1664), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(162), 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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -143606,7 +143219,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(122), 19, + ACTIONS(162), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -143616,7 +143249,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, @@ -143626,17 +143261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10189] = 7, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [9750] = 5, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(884), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143652,14 +143283,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(162), 18, - sym__automatic_semicolon, + ACTIONS(3404), 20, 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, @@ -143671,7 +143304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143693,11 +143326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10263] = 3, + [9820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2453), 22, + ACTIONS(3396), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -143720,7 +143353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2451), 35, + ACTIONS(3398), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143756,89 +143389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10329] = 14, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_LT, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [10417] = 6, - ACTIONS(3389), 1, + [9886] = 6, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3494), 1, + ACTIONS(841), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143854,7 +143413,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(3384), 19, + ACTIONS(162), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143874,7 +143433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143896,15 +143455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10489] = 6, - ACTIONS(872), 1, - anon_sym_EQ, - ACTIONS(878), 1, + [9958] = 6, + ACTIONS(3452), 1, anon_sym_EQ_GT, + ACTIONS(3475), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143920,7 +143479,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(162), 19, + ACTIONS(3404), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143940,7 +143499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143962,42 +143521,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10561] = 11, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(817), 1, - anon_sym_COLON, - ACTIONS(857), 1, - anon_sym_EQ, - ACTIONS(1664), 1, - anon_sym_extends, - ACTIONS(3496), 1, - anon_sym_LBRACK, + [10030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3434), 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, - ACTIONS(3578), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(162), 14, + 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(3436), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144013,8 +143575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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, + [10096] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3374), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144023,7 +143599,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, @@ -144033,19 +143611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10643] = 8, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3488), 1, - anon_sym_EQ, - ACTIONS(3582), 1, - anon_sym_in, - ACTIONS(3585), 1, + ACTIONS(3376), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3391), 15, + 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, @@ -144061,16 +143638,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(3384), 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, @@ -144080,9 +143647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 20, + [10162] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144101,13 +143674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10719] = 5, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3391), 15, + ACTIONS(3386), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144123,18 +143701,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(3384), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144144,8 +143710,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + [10228] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3378), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144166,24 +143737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10789] = 9, - ACTIONS(912), 1, - anon_sym_EQ, - ACTIONS(918), 1, - anon_sym_EQ_GT, - ACTIONS(1664), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 2, + ACTIONS(3380), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3499), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(168), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144199,13 +143764,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(162), 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, @@ -144215,31 +143773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - 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, - [10867] = 3, + [10294] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 22, + ACTIONS(3388), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -144262,7 +143800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3438), 35, + ACTIONS(3390), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144298,11 +143836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10933] = 3, + [10360] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3430), 22, + ACTIONS(3392), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -144325,7 +143863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3432), 35, + ACTIONS(3394), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144361,23 +143899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10999] = 9, - ACTIONS(942), 1, - anon_sym_EQ, - ACTIONS(948), 1, + [10426] = 8, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3496), 1, - anon_sym_LBRACK, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(861), 1, + anon_sym_in, + ACTIONS(3584), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3499), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -144394,12 +143927,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(162), 16, + ACTIONS(162), 18, + 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144411,16 +143946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + 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, @@ -144430,17 +143967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11077] = 7, - ACTIONS(884), 1, - anon_sym_COLON, - ACTIONS(3389), 1, + [10502] = 6, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3488), 1, + ACTIONS(3448), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144456,11 +143991,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(3384), 18, + ACTIONS(3404), 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, @@ -144475,7 +144011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144497,12 +144033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11151] = 7, + [10574] = 7, ACTIONS(715), 1, anon_sym_EQ_GT, ACTIONS(859), 1, anon_sym_EQ, - ACTIONS(866), 1, + ACTIONS(884), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, @@ -144564,45 +144100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11225] = 3, + [10648] = 7, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(3427), 1, + anon_sym_EQ_GT, + ACTIONS(3448), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3396), 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(3398), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144618,6 +144126,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(3404), 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, @@ -144627,13 +144145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11291] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3420), 22, + ACTIONS(3400), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144654,47 +144167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11357] = 6, + [10722] = 7, ACTIONS(715), 1, anon_sym_EQ_GT, ACTIONS(859), 1, anon_sym_EQ, + ACTIONS(866), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -144714,12 +144193,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(162), 19, + ACTIONS(162), 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, @@ -144756,15 +144234,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11429] = 6, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(811), 1, + [10796] = 14, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, + anon_sym_LT, + ACTIONS(3475), 1, anon_sym_EQ, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3406), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3418), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 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(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144780,57 +144290,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(162), 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(122), 21, + ACTIONS(3400), 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, - [11501] = 6, - ACTIONS(3389), 1, + [10884] = 8, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3488), 1, + ACTIONS(3448), 1, anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144846,12 +144336,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(3384), 19, + ACTIONS(3404), 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, @@ -144866,10 +144355,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144888,17 +144376,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11573] = 7, - ACTIONS(886), 1, - anon_sym_COLON, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3488), 1, + [10960] = 14, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(3444), 1, + anon_sym_LT, + ACTIONS(3475), 1, anon_sym_EQ, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3418), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3406), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3404), 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(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144914,26 +144431,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(3384), 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(3380), 21, + ACTIONS(3400), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144943,29 +144441,22 @@ 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, - [11647] = 7, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [11048] = 5, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(886), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144981,12 +144472,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(162), 18, + ACTIONS(3404), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145000,7 +144493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145022,15 +144515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11721] = 6, - ACTIONS(3490), 1, + [11118] = 6, + ACTIONS(872), 1, anon_sym_EQ, - ACTIONS(3492), 1, + ACTIONS(878), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145046,7 +144539,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(3384), 19, + ACTIONS(162), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145066,7 +144559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145088,11 +144581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11793] = 3, + [11190] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2449), 22, + ACTIONS(2445), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145115,7 +144608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2447), 35, + ACTIONS(2443), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145151,35 +144644,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11859] = 12, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_EQ, - ACTIONS(3550), 1, - anon_sym_EQ_GT, - STATE(2855), 1, - sym_type_arguments, + [11256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3471), 3, + ACTIONS(2461), 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, - ACTIONS(3384), 14, + 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(2459), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145189,7 +144707,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + [11322] = 9, + ACTIONS(912), 1, + anon_sym_EQ, + ACTIONS(918), 1, + anon_sym_EQ_GT, + ACTIONS(1650), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145205,7 +144740,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(3380), 17, + ACTIONS(162), 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(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145220,37 +144772,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, - [11943] = 12, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3556), 1, - anon_sym_EQ, - ACTIONS(3558), 1, + [11400] = 10, + ACTIONS(229), 1, anon_sym_EQ_GT, - STATE(2855), 1, - sym_type_arguments, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3471), 3, - anon_sym_GT, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 14, + ACTIONS(1650), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(162), 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, @@ -145261,7 +144810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145277,10 +144826,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(3380), 17, + ACTIONS(122), 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, @@ -145292,25 +144842,26 @@ 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, - [12027] = 10, + [11480] = 10, ACTIONS(119), 1, anon_sym_EQ, ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(1666), 1, + ACTIONS(1652), 1, anon_sym_QMARK, - ACTIONS(3496), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1664), 3, + ACTIONS(1650), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, @@ -145365,44 +144916,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12107] = 12, - ACTIONS(3404), 1, + [11560] = 9, + ACTIONS(946), 1, anon_sym_EQ, - ACTIONS(3414), 1, + ACTIONS(952), 1, anon_sym_EQ_GT, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3480), 1, - anon_sym_extends, - STATE(2855), 1, - sym_type_arguments, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3471), 2, + ACTIONS(1650), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3508), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145418,11 +144949,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(3380), 18, + ACTIONS(162), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145434,20 +144981,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, - [12191] = 7, - ACTIONS(866), 1, + [11638] = 7, + ACTIONS(886), 1, anon_sym_COLON, - ACTIONS(3389), 1, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3488), 1, + ACTIONS(3448), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145463,7 +145011,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(3384), 18, + ACTIONS(3404), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145482,7 +145030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145504,16 +145052,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12265] = 4, + [11712] = 7, + ACTIONS(715), 1, + anon_sym_EQ_GT, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(886), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 2, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3374), 22, + 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_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145534,15 +145119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3376), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + [11786] = 9, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(3505), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1650), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145558,6 +145152,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(162), 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, @@ -145567,15 +145169,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12332] = 6, - ACTIONS(3540), 1, + 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, + [11864] = 6, + ACTIONS(3450), 1, anon_sym_EQ, - ACTIONS(3542), 1, + ACTIONS(3452), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145591,12 +145212,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(3384), 18, + ACTIONS(3404), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -145609,8 +145232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145632,45 +145254,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12403] = 4, + [11936] = 12, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3556), 1, + anon_sym_EQ, + ACTIONS(3558), 1, + anon_sym_EQ_GT, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 2, + ACTIONS(3461), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3420), 22, + ACTIONS(3469), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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(3422), 32, - sym__automatic_semicolon, + [12020] = 12, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(3562), 1, + anon_sym_EQ_GT, + STATE(2856), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3469), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 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, + anon_sym_satisfies, + ACTIONS(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [12104] = 6, + ACTIONS(715), 1, + anon_sym_EQ_GT, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145686,6 +145422,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(162), 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, @@ -145695,24 +145442,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12470] = 7, - ACTIONS(3404), 1, + 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, + [12176] = 12, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3414), 1, + ACTIONS(3412), 1, anon_sym_EQ_GT, + ACTIONS(3461), 1, + anon_sym_extends, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 3, - anon_sym_COMMA, + ACTIONS(3463), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3384), 15, + anon_sym_LBRACK, + ACTIONS(3469), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 14, 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, @@ -145723,7 +145501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145739,7 +145517,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(3380), 21, + ACTIONS(3400), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145749,39 +145527,101 @@ 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, - [12543] = 9, - ACTIONS(160), 1, + [12260] = 7, + ACTIONS(884), 1, + anon_sym_COLON, + ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(857), 1, + ACTIONS(3448), 1, anon_sym_EQ, - ACTIONS(1664), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 2, - anon_sym_RBRACE, + ACTIONS(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3404), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3499), 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(3400), 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, + [12334] = 9, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(227), 1, + anon_sym_COMMA, + ACTIONS(895), 1, + anon_sym_EQ, + ACTIONS(900), 1, + anon_sym_COLON, + ACTIONS(904), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(162), 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, @@ -145809,7 +145649,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(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145819,7 +145659,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, @@ -145829,32 +145671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12620] = 7, - ACTIONS(928), 1, + [12411] = 6, + ACTIONS(3542), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(3544), 1, anon_sym_EQ_GT, - ACTIONS(3590), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 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(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145870,9 +145695,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(122), 24, - anon_sym_STAR, + ACTIONS(3404), 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(3400), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145893,17 +145736,14 @@ 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, - [12693] = 5, - ACTIONS(3378), 1, - anon_sym_extends, - ACTIONS(3592), 1, - anon_sym_QMARK, + [12482] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3374), 22, + ACTIONS(3446), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3384), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145926,13 +145766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3376), 32, + ACTIONS(3386), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -145959,17 +145799,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12762] = 5, - ACTIONS(3424), 1, - anon_sym_extends, - ACTIONS(3594), 1, - anon_sym_QMARK, + [12549] = 7, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(932), 1, + anon_sym_EQ, + ACTIONS(3591), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 22, + ACTIONS(162), 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(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145990,50 +145863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 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, - [12831] = 7, - ACTIONS(3488), 1, + [12622] = 7, + ACTIONS(3448), 1, anon_sym_EQ, - ACTIONS(3582), 1, + ACTIONS(3586), 1, anon_sym_in, - ACTIONS(3585), 1, + ACTIONS(3589), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146049,7 +145891,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(3384), 18, + ACTIONS(3404), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146068,7 +145910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 20, + ACTIONS(3400), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -146089,22 +145931,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12904] = 7, - ACTIONS(3404), 1, + [12695] = 7, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(3544), 1, - anon_sym_COLON, + ACTIONS(3372), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3384), 15, + ACTIONS(162), 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, @@ -146112,12 +145953,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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146133,8 +145972,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(3380), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146155,21 +145995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12977] = 7, - ACTIONS(928), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [12768] = 7, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(3412), 1, anon_sym_EQ_GT, - ACTIONS(3372), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, - sym__automatic_semicolon, + ACTIONS(3593), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3404), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146177,10 +146020,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(168), 15, + anon_sym_satisfies, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146196,9 +146041,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(3400), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146219,36 +146063,60 @@ 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, - [13050] = 12, - ACTIONS(3465), 1, - anon_sym_LBRACK, - ACTIONS(3468), 1, - anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_LT, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - STATE(2855), 1, - sym_type_arguments, + [12841] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 2, + ACTIONS(3382), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3471), 3, + ACTIONS(3378), 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, - ACTIONS(3384), 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_QMARK_QMARK, + ACTIONS(3380), 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, @@ -146258,7 +146126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + [12908] = 5, + ACTIONS(3448), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146274,25 +146148,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 17, + ACTIONS(3404), 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(3400), 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, - [13133] = 6, + [12977] = 6, ACTIONS(912), 1, anon_sym_EQ, ACTIONS(918), 1, @@ -146357,8 +146255,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13204] = 6, - ACTIONS(811), 1, + [13048] = 12, + ACTIONS(3463), 1, + anon_sym_LBRACK, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_LT, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + STATE(2856), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3469), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [13131] = 5, + ACTIONS(3446), 1, + anon_sym_extends, + ACTIONS(3596), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 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(3386), 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, + [13200] = 5, + ACTIONS(3382), 1, + anon_sym_extends, + ACTIONS(3598), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3378), 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(3380), 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, + [13269] = 6, + ACTIONS(841), 1, anon_sym_EQ, ACTIONS(918), 1, anon_sym_EQ_GT, @@ -146422,13 +146519,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13275] = 5, - ACTIONS(3490), 1, + [13340] = 5, + ACTIONS(3450), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146444,7 +146541,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(3384), 19, + ACTIONS(3404), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146464,7 +146561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146486,21 +146583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13344] = 9, - ACTIONS(128), 1, - anon_sym_RBRACK, - ACTIONS(227), 1, - anon_sym_COMMA, - ACTIONS(895), 1, + [13409] = 7, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(900), 1, + ACTIONS(3549), 1, anon_sym_COLON, - ACTIONS(904), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3593), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146516,7 +146611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146532,7 +146627,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(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146554,28 +146649,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13421] = 9, - ACTIONS(904), 1, + [13482] = 10, + ACTIONS(3496), 1, + anon_sym_RBRACK, + ACTIONS(3514), 1, + anon_sym_COMMA, + ACTIONS(3558), 1, anon_sym_EQ_GT, - ACTIONS(952), 1, + ACTIONS(3600), 1, anon_sym_EQ, - ACTIONS(3496), 1, - anon_sym_LBRACK, + ACTIONS(3603), 1, + anon_sym_in, + ACTIONS(3605), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3499), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(162), 15, + ACTIONS(3404), 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, @@ -146587,7 +146681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146603,16 +146697,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(122), 18, + ACTIONS(3400), 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, @@ -146622,13 +146718,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13498] = 5, - ACTIONS(3488), 1, + [13561] = 9, + ACTIONS(904), 1, + anon_sym_EQ_GT, + ACTIONS(926), 1, anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(1650), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 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(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146644,39 +146767,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(3384), 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(3380), 21, + ACTIONS(122), 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, @@ -146686,20 +146786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13567] = 9, + [13638] = 9, ACTIONS(960), 1, anon_sym_EQ, ACTIONS(966), 1, anon_sym_EQ_GT, - ACTIONS(3496), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 2, + ACTIONS(1650), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3499), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -146754,15 +146854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13644] = 6, - ACTIONS(3494), 1, + [13715] = 6, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3542), 1, + ACTIONS(3544), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146778,7 +146878,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(3384), 18, + ACTIONS(3404), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -146797,7 +146897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146819,27 +146919,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13715] = 10, - ACTIONS(3505), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_RBRACK, - ACTIONS(3550), 1, + [13786] = 9, + ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(3596), 1, + ACTIONS(857), 1, anon_sym_EQ, - ACTIONS(3599), 1, - anon_sym_in, - ACTIONS(3601), 1, - anon_sym_COLON, + ACTIONS(1650), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3505), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 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, @@ -146851,7 +146951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146867,18 +146967,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(3380), 20, + ACTIONS(122), 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_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146888,105 +146987,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13794] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3605), 1, - anon_sym_export, - ACTIONS(3607), 1, - anon_sym_STAR, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3615), 1, - anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, - ACTIONS(3621), 1, - anon_sym_static, - ACTIONS(3623), 1, - anon_sym_readonly, - ACTIONS(3629), 1, - anon_sym_override, - STATE(1236), 1, - sym_decorator, - STATE(2681), 1, - sym_accessibility_modifier, - STATE(2717), 1, - sym_override_modifier, - STATE(3244), 1, - sym_formal_parameters, - STATE(4269), 1, - sym__call_signature, - STATE(4505), 1, - aux_sym_export_statement_repeat1, - STATE(5406), 1, - sym_type_parameters, + [13863] = 6, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(952), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3609), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3611), 2, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 17, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3619), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3625), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3072), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3865), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3603), 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, - [13914] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3424), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3420), 22, + 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(122), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147007,45 +147051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 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, - [13980] = 7, - ACTIONS(904), 1, + [13933] = 6, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(952), 1, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(954), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -147065,12 +147075,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(162), 16, + ACTIONS(162), 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, @@ -147104,83 +147115,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14052] = 31, + [14003] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3207), 2, - anon_sym_COMMA, - anon_sym_SEMI, ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3231), 2, + ACTIONS(3613), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3615), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3804), 6, + STATE(3753), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -147193,114 +147204,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14172] = 8, - ACTIONS(3505), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_RBRACK, - ACTIONS(3550), 1, - anon_sym_EQ_GT, - ACTIONS(3596), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [14246] = 31, + [14123] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -147308,34 +147253,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3625), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3631), 2, + ACTIONS(3237), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3633), 2, + ACTIONS(3239), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3629), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3855), 6, + STATE(3830), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -147348,15 +147293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14366] = 6, - ACTIONS(811), 1, + [14243] = 8, + ACTIONS(3556), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(3558), 1, anon_sym_EQ_GT, + ACTIONS(3603), 1, + anon_sym_in, + ACTIONS(3605), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147372,13 +147321,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(162), 17, - sym__automatic_semicolon, + ACTIONS(3404), 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, @@ -147390,10 +147338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3400), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147412,20 +147359,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14436] = 9, + [14317] = 9, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(811), 1, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(3496), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 2, + ACTIONS(1650), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3499), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -147479,7 +147426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14512] = 8, + [14393] = 8, ACTIONS(128), 1, anon_sym_RBRACK, ACTIONS(227), 1, @@ -147545,48 +147492,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14586] = 31, + [14467] = 6, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3503), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3404), 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(3400), 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, + [14537] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -147594,10 +147605,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, ACTIONS(3635), 2, @@ -147606,22 +147617,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3637), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3831), 6, + STATE(3874), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -147634,13 +147645,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14706] = 7, - ACTIONS(900), 1, - anon_sym_COLON, - ACTIONS(904), 1, + [14657] = 8, + ACTIONS(3556), 1, + anon_sym_EQ, + ACTIONS(3558), 1, anon_sym_EQ_GT, - ACTIONS(952), 1, + ACTIONS(3603), 1, + anon_sym_in, + ACTIONS(3639), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3404), 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(3400), 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, + [14731] = 6, + ACTIONS(946), 1, anon_sym_EQ, + ACTIONS(952), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -147660,12 +147735,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(162), 16, + ACTIONS(162), 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, @@ -147699,218 +147775,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14778] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3605), 1, - anon_sym_export, - ACTIONS(3607), 1, - anon_sym_STAR, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3615), 1, - anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, - ACTIONS(3621), 1, - anon_sym_static, - ACTIONS(3623), 1, - anon_sym_readonly, - ACTIONS(3629), 1, - anon_sym_override, - STATE(1236), 1, - sym_decorator, - STATE(2681), 1, - sym_accessibility_modifier, - STATE(2717), 1, - sym_override_modifier, - STATE(3244), 1, - sym_formal_parameters, - STATE(4269), 1, - sym__call_signature, - STATE(4505), 1, - aux_sym_export_statement_repeat1, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3279), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3281), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3619), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3625), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3072), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3876), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3603), 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, - [14898] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3605), 1, - anon_sym_export, - ACTIONS(3607), 1, - anon_sym_STAR, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3615), 1, - anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, - ACTIONS(3621), 1, - anon_sym_static, - ACTIONS(3623), 1, - anon_sym_readonly, - ACTIONS(3629), 1, - anon_sym_override, - STATE(1236), 1, - sym_decorator, - STATE(2681), 1, - sym_accessibility_modifier, - STATE(2717), 1, - sym_override_modifier, - STATE(3244), 1, - sym_formal_parameters, - STATE(4269), 1, - sym__call_signature, - STATE(4505), 1, - aux_sym_export_statement_repeat1, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3619), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3625), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3639), 2, + [14801] = 8, + ACTIONS(3496), 1, + anon_sym_RBRACK, + ACTIONS(3514), 1, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3641), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3072), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3894), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3603), 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, - [15018] = 8, - ACTIONS(3548), 1, - anon_sym_EQ, - ACTIONS(3550), 1, + ACTIONS(3558), 1, anon_sym_EQ_GT, - ACTIONS(3599), 1, - anon_sym_in, - ACTIONS(3643), 1, - anon_sym_COLON, + ACTIONS(3600), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 16, + ACTIONS(3404), 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, @@ -147922,9 +147803,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 20, + ACTIONS(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147943,15 +147841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15092] = 6, - ACTIONS(3494), 1, + [14875] = 6, + ACTIONS(3518), 1, anon_sym_EQ, - ACTIONS(3519), 1, + ACTIONS(3520), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147967,12 +147865,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(3384), 17, - sym__automatic_semicolon, + ACTIONS(3404), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147985,7 +147883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148007,15 +147905,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15162] = 6, - ACTIONS(3517), 1, - anon_sym_EQ, - ACTIONS(3519), 1, - anon_sym_EQ_GT, + [14945] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3446), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3384), 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(3386), 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, @@ -148031,15 +147958,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(3384), 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, @@ -148049,8 +147967,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + [15011] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3229), 1, + anon_sym_abstract, + ACTIONS(3609), 1, + anon_sym_export, + ACTIONS(3611), 1, anon_sym_STAR, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, + anon_sym_async, + ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, + anon_sym_static, + ACTIONS(3627), 1, + anon_sym_readonly, + ACTIONS(3633), 1, + anon_sym_override, + STATE(1244), 1, + sym_decorator, + STATE(2674), 1, + sym_accessibility_modifier, + STATE(2702), 1, + sym_override_modifier, + STATE(3229), 1, + sym_formal_parameters, + STATE(4329), 1, + sym__call_signature, + STATE(4448), 1, + aux_sym_export_statement_repeat1, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3207), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3215), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3231), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3629), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3911), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3607), 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, + [15131] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3382), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3378), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148071,19 +148086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15232] = 8, - ACTIONS(3548), 1, - anon_sym_EQ, - ACTIONS(3550), 1, - anon_sym_EQ_GT, - ACTIONS(3599), 1, - anon_sym_in, - ACTIONS(3601), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3391), 15, + ACTIONS(3380), 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, @@ -148099,14 +148109,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(3384), 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, @@ -148116,36 +148118,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 20, + [15197] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3229), 1, + anon_sym_abstract, + ACTIONS(3609), 1, + anon_sym_export, + ACTIONS(3611), 1, 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, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, + anon_sym_async, + ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, + anon_sym_static, + ACTIONS(3627), 1, + anon_sym_readonly, + ACTIONS(3633), 1, + anon_sym_override, + STATE(1244), 1, + sym_decorator, + STATE(2674), 1, + sym_accessibility_modifier, + STATE(2702), 1, + sym_override_modifier, + STATE(3229), 1, + sym_formal_parameters, + STATE(4329), 1, + sym__call_signature, + STATE(4448), 1, + aux_sym_export_statement_repeat1, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3215), 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, - [15306] = 6, - ACTIONS(3531), 1, + ACTIONS(3623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3629), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3641), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3643), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3771), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3607), 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, + [15317] = 6, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3533), 1, + ACTIONS(3520), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148161,7 +148231,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(3384), 17, + ACTIONS(3404), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -148179,7 +148249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148201,11 +148271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15376] = 6, - ACTIONS(942), 1, - anon_sym_EQ, - ACTIONS(948), 1, + [15387] = 7, + ACTIONS(904), 1, anon_sym_EQ_GT, + ACTIONS(926), 1, + anon_sym_EQ, + ACTIONS(940), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -148225,13 +148297,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(162), 17, + ACTIONS(162), 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, @@ -148265,10 +148336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15446] = 6, - ACTIONS(928), 1, + [15459] = 6, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -148329,15 +148400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15516] = 6, - ACTIONS(811), 1, + [15529] = 5, + ACTIONS(3542), 1, anon_sym_EQ, - ACTIONS(948), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148353,12 +148422,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(162), 17, + ACTIONS(3404), 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, @@ -148371,7 +148440,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(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148393,15 +148463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15586] = 6, - ACTIONS(3494), 1, + [15597] = 6, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3533), 1, + ACTIONS(3503), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148417,12 +148487,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(3384), 17, + ACTIONS(3404), 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, @@ -148435,7 +148505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148457,75 +148527,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15656] = 4, + [15667] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3229), 1, + anon_sym_abstract, + ACTIONS(3609), 1, + anon_sym_export, + ACTIONS(3611), 1, + anon_sym_STAR, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, + anon_sym_async, + ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, + anon_sym_static, + ACTIONS(3627), 1, + anon_sym_readonly, + ACTIONS(3633), 1, + anon_sym_override, + STATE(1244), 1, + sym_decorator, + STATE(2674), 1, + sym_accessibility_modifier, + STATE(2702), 1, + sym_override_modifier, + STATE(3229), 1, + sym_formal_parameters, + STATE(4329), 1, + sym__call_signature, + STATE(4448), 1, + aux_sym_export_statement_repeat1, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3374), 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, + ACTIONS(3215), 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, - ACTIONS(3376), 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, - [15722] = 5, - ACTIONS(3540), 1, + ACTIONS(3623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3629), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3645), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3647), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3802), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3607), 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, + [15787] = 7, + ACTIONS(900), 1, + anon_sym_COLON, + ACTIONS(904), 1, + anon_sym_EQ_GT, + ACTIONS(926), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148541,13 +148642,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(3384), 18, + ACTIONS(162), 16, 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, @@ -148559,8 +148659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148582,15 +148681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15790] = 6, - ACTIONS(3548), 1, + [15859] = 6, + ACTIONS(3556), 1, anon_sym_EQ, - ACTIONS(3550), 1, + ACTIONS(3558), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148606,7 +148705,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(3384), 16, + ACTIONS(3404), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148623,7 +148722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148645,19 +148744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15859] = 8, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(811), 1, + [15928] = 8, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(861), 1, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + ACTIONS(3586), 1, anon_sym_in, - ACTIONS(3576), 1, + ACTIONS(3589), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148673,7 +148772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148689,7 +148788,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), 20, + ACTIONS(3400), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -148710,11 +148809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15932] = 6, - ACTIONS(811), 1, - anon_sym_EQ, - ACTIONS(966), 1, + [16001] = 6, + ACTIONS(904), 1, anon_sym_EQ_GT, + ACTIONS(926), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -148738,8 +148837,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -148773,11 +148872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16001] = 6, + [16070] = 6, + ACTIONS(841), 1, + anon_sym_EQ, ACTIONS(904), 1, anon_sym_EQ_GT, - ACTIONS(952), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -148836,35 +148935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16070] = 8, - ACTIONS(3494), 1, + [16139] = 6, + ACTIONS(960), 1, anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(966), 1, anon_sym_EQ_GT, - ACTIONS(3582), 1, - anon_sym_in, - ACTIONS(3585), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148880,9 +148959,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(3380), 20, + ACTIONS(162), 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, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148901,15 +148998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16143] = 6, - ACTIONS(811), 1, + [16208] = 5, + ACTIONS(3518), 1, anon_sym_EQ, - ACTIONS(904), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148925,12 +149020,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(162), 16, + ACTIONS(3404), 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, @@ -148942,7 +149038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148964,33 +149060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16212] = 7, - ACTIONS(3505), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_RBRACK, - ACTIONS(3596), 1, + [16275] = 6, + ACTIONS(841), 1, anon_sym_EQ, + ACTIONS(966), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 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(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149006,7 +149084,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(3380), 21, + ACTIONS(162), 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149028,13 +149123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16283] = 5, - ACTIONS(3517), 1, + [16344] = 5, + ACTIONS(3501), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149050,7 +149145,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(3384), 17, + ACTIONS(3404), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149068,7 +149163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149090,15 +149185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16350] = 6, - ACTIONS(3494), 1, + [16411] = 6, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3550), 1, + ACTIONS(3558), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149114,7 +149209,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(3384), 16, + ACTIONS(3404), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149131,7 +149226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149153,15 +149248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16419] = 6, - ACTIONS(3556), 1, + [16480] = 6, + ACTIONS(3560), 1, anon_sym_EQ, - ACTIONS(3558), 1, + ACTIONS(3562), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149177,7 +149272,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(3384), 16, + ACTIONS(3404), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149194,7 +149289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149216,15 +149311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16488] = 6, - ACTIONS(3494), 1, + [16549] = 6, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3558), 1, + ACTIONS(3562), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149240,7 +149335,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(3384), 16, + ACTIONS(3404), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149257,7 +149352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149279,34 +149374,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16557] = 5, - ACTIONS(3531), 1, + [16618] = 8, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(841), 1, anon_sym_EQ, + ACTIONS(861), 1, + anon_sym_in, + ACTIONS(3584), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 17, + ACTIONS(162), 15, 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, @@ -149319,36 +149402,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 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, - [16624] = 6, - ACTIONS(960), 1, - anon_sym_EQ, - ACTIONS(966), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -149365,27 +149418,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(162), 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(122), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149404,12 +149439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16693] = 7, + [16691] = 7, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(811), 1, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(817), 1, + ACTIONS(847), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, @@ -149468,34 +149503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16764] = 5, - ACTIONS(3548), 1, + [16762] = 7, + ACTIONS(3496), 1, + anon_sym_RBRACK, + ACTIONS(3514), 1, + anon_sym_COMMA, + ACTIONS(3600), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 16, + ACTIONS(3404), 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, @@ -149507,7 +149529,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149529,31 +149567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16830] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(1034), 1, + [16833] = 5, + ACTIONS(3560), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 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(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149569,7 +149589,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(3404), 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(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149591,48 +149628,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16898] = 30, + [16899] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -149640,31 +149677,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3645), 2, + ACTIONS(3649), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -149677,110 +149714,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17014] = 6, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - ACTIONS(3647), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [17082] = 30, + [17015] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -149788,31 +149763,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3649), 2, + ACTIONS(3651), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -149825,172 +149800,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17198] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(811), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 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(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, - [17266] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3544), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [17334] = 30, + [17131] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -149998,31 +149849,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3651), 2, + ACTIONS(3653), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150035,10 +149886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17450] = 6, + [17247] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(1038), 1, + ACTIONS(986), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -150097,48 +149948,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17518] = 30, + [17315] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150146,31 +149997,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3653), 2, + ACTIONS(3655), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150183,15 +150034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17634] = 6, - ACTIONS(3510), 1, + [17431] = 6, + ACTIONS(3516), 1, anon_sym_EQ_GT, - ACTIONS(3655), 1, + ACTIONS(3657), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150207,7 +150058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150223,7 +150074,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150245,48 +150096,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17702] = 30, + [17499] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150294,31 +150145,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3657), 2, + ACTIONS(3659), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150331,48 +150182,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17818] = 30, + [17615] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150380,31 +150231,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3659), 2, + ACTIONS(3661), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150417,110 +150268,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17934] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(972), 1, - anon_sym_EQ, + [17731] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3229), 1, + anon_sym_abstract, + ACTIONS(3609), 1, + anon_sym_export, + ACTIONS(3611), 1, + anon_sym_STAR, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, + anon_sym_async, + ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, + anon_sym_static, + ACTIONS(3627), 1, + anon_sym_readonly, + ACTIONS(3633), 1, + anon_sym_override, + STATE(1244), 1, + sym_decorator, + STATE(2674), 1, + sym_accessibility_modifier, + STATE(2702), 1, + sym_override_modifier, + STATE(3229), 1, + sym_formal_parameters, + STATE(4329), 1, + sym__call_signature, + STATE(4448), 1, + aux_sym_export_statement_repeat1, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 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(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + ACTIONS(3215), 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, - [18002] = 30, + ACTIONS(3623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3629), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3663), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4363), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3607), 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, + [17847] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150528,31 +150403,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3661), 2, + ACTIONS(3665), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150565,15 +150440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18118] = 6, - ACTIONS(3510), 1, + [17963] = 6, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3663), 1, + ACTIONS(974), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150589,7 +150464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150605,7 +150480,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(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150627,15 +150502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18186] = 6, - ACTIONS(229), 1, + [18031] = 6, + ACTIONS(3516), 1, anon_sym_EQ_GT, - ACTIONS(1032), 1, + ACTIONS(3667), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150651,7 +150526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150667,7 +150542,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(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150689,48 +150564,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18254] = 30, + [18099] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150738,31 +150613,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3665), 2, + ACTIONS(3669), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150775,110 +150650,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18370] = 6, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - ACTIONS(3667), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [18438] = 30, + [18215] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150886,31 +150699,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3669), 2, + ACTIONS(3671), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150923,48 +150736,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18554] = 30, + [18331] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150972,31 +150785,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 2, + ACTIONS(3673), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -151009,10 +150822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18670] = 6, + [18447] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(984), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -151071,77 +150884,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18738] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(1036), 1, - anon_sym_EQ, + [18515] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3229), 1, + anon_sym_abstract, + ACTIONS(3609), 1, + anon_sym_export, + ACTIONS(3611), 1, + anon_sym_STAR, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, + anon_sym_async, + ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, + anon_sym_static, + ACTIONS(3627), 1, + anon_sym_readonly, + ACTIONS(3633), 1, + anon_sym_override, + STATE(1244), 1, + sym_decorator, + STATE(2674), 1, + sym_accessibility_modifier, + STATE(2702), 1, + sym_override_modifier, + STATE(3229), 1, + sym_formal_parameters, + STATE(4329), 1, + sym__call_signature, + STATE(4448), 1, + aux_sym_export_statement_repeat1, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 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(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + ACTIONS(3215), 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, - [18806] = 6, - ACTIONS(3510), 1, + ACTIONS(3623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3629), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3675), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3028), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4363), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3607), 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, + [18631] = 6, + ACTIONS(3516), 1, anon_sym_EQ_GT, - ACTIONS(3673), 1, + ACTIONS(3677), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151157,7 +150994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151173,7 +151010,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151195,48 +151032,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18874] = 30, + [18699] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -151244,31 +151081,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3675), 2, + ACTIONS(3679), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -151281,15 +151118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18990] = 6, - ACTIONS(3510), 1, + [18815] = 6, + ACTIONS(3516), 1, anon_sym_EQ_GT, - ACTIONS(3677), 1, + ACTIONS(3681), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151305,7 +151142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151321,7 +151158,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151343,134 +151180,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19058] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3605), 1, - anon_sym_export, - ACTIONS(3607), 1, - anon_sym_STAR, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3615), 1, - anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, - ACTIONS(3621), 1, - anon_sym_static, - ACTIONS(3623), 1, - anon_sym_readonly, - ACTIONS(3629), 1, - anon_sym_override, - STATE(1236), 1, - sym_decorator, - STATE(2681), 1, - sym_accessibility_modifier, - STATE(2717), 1, - sym_override_modifier, - STATE(3244), 1, - sym_formal_parameters, - STATE(4269), 1, - sym__call_signature, - STATE(4505), 1, - aux_sym_export_statement_repeat1, - STATE(5406), 1, - sym_type_parameters, + [18883] = 6, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3516), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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(3619), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3625), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3679), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3072), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4314), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3603), 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, - [19174] = 30, + 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, + [18951] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -151478,31 +151291,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3681), 2, + ACTIONS(3683), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -151515,17 +151328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19290] = 7, - ACTIONS(3494), 1, + [19067] = 6, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + ACTIONS(3685), 1, anon_sym_EQ, - ACTIONS(3582), 1, - anon_sym_in, - ACTIONS(3585), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151541,7 +151352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151557,9 +151368,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(3380), 20, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151578,31 +151390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19360] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(1040), 1, + [19135] = 5, + ACTIONS(3556), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 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(168), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151618,41 +151412,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, - [19428] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(1030), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 15, + ACTIONS(3404), 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, @@ -151664,23 +151429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151702,15 +151451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19496] = 6, - ACTIONS(3510), 1, + [19201] = 6, + ACTIONS(3516), 1, anon_sym_EQ_GT, - ACTIONS(3683), 1, + ACTIONS(3687), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151726,7 +151475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151742,7 +151491,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151764,15 +151513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19564] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + [19269] = 6, + ACTIONS(229), 1, anon_sym_EQ_GT, + ACTIONS(980), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151788,7 +151537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151804,7 +151553,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(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151826,134 +151575,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19632] = 30, + [19337] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3615), 1, - anon_sym_async, ACTIONS(3617), 1, - anon_sym_new, - ACTIONS(3621), 1, - anon_sym_static, - ACTIONS(3623), 1, - anon_sym_readonly, - ACTIONS(3629), 1, - anon_sym_override, - STATE(1236), 1, - sym_decorator, - STATE(2681), 1, - sym_accessibility_modifier, - STATE(2717), 1, - sym_override_modifier, - STATE(3244), 1, - sym_formal_parameters, - STATE(4269), 1, - sym__call_signature, - STATE(4505), 1, - aux_sym_export_statement_repeat1, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3619), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3625), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3685), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3072), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4314), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3603), 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, - [19748] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3605), 1, - anon_sym_export, - ACTIONS(3607), 1, - anon_sym_STAR, - ACTIONS(3613), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -151961,31 +151624,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 2, + ACTIONS(3689), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -151998,13 +151661,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19864] = 5, - ACTIONS(3556), 1, + [19453] = 7, + ACTIONS(3475), 1, anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3391), 15, + ACTIONS(3404), 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(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152020,11 +151703,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3384), 16, + ACTIONS(3400), 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, + [19523] = 6, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(972), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152037,7 +151748,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3380), 21, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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, @@ -152059,10 +151786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19930] = 6, + [19591] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(976), 1, + ACTIONS(841), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152121,15 +151848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19998] = 6, - ACTIONS(3510), 1, + [19659] = 6, + ACTIONS(3516), 1, anon_sym_EQ_GT, - ACTIONS(3689), 1, + ACTIONS(3691), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152145,7 +151872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152161,7 +151888,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152183,48 +151910,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20066] = 30, + [19727] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152232,31 +151959,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3691), 2, + ACTIONS(3693), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152269,110 +151996,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20182] = 6, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - ACTIONS(3693), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3384), 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(3391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3380), 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, - [20250] = 30, + [19843] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152380,31 +152045,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, ACTIONS(3695), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152417,48 +152082,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20366] = 30, + [19959] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152466,31 +152131,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, ACTIONS(3697), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152503,13 +152168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20482] = 5, - ACTIONS(3667), 1, + [20075] = 6, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + ACTIONS(3699), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152525,7 +152192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152541,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152563,13 +152230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20547] = 5, - ACTIONS(3693), 1, + [20143] = 6, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(978), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152585,7 +152254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152601,7 +152270,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(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152623,13 +152292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20612] = 5, - ACTIONS(3647), 1, + [20211] = 6, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(988), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152645,7 +152316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152661,7 +152332,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(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152683,13 +152354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20677] = 5, - ACTIONS(3663), 1, + [20279] = 6, + ACTIONS(3475), 1, anon_sym_EQ, + ACTIONS(3549), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152705,7 +152378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152721,7 +152394,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152743,13 +152416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20742] = 5, - ACTIONS(3673), 1, + [20347] = 6, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(982), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152765,7 +152440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152781,7 +152456,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(3380), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152803,13 +152478,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20807] = 5, - ACTIONS(3677), 1, + [20415] = 6, + ACTIONS(3516), 1, + anon_sym_EQ_GT, + ACTIONS(3701), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [20483] = 6, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(976), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 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(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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, + [20551] = 5, + ACTIONS(3691), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [20616] = 5, + ACTIONS(3699), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [20681] = 5, + ACTIONS(3701), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [20746] = 5, + ACTIONS(3685), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [20811] = 5, + ACTIONS(3657), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3404), 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(3416), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3400), 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, + [20876] = 5, + ACTIONS(3667), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152825,7 +152924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152841,7 +152940,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152863,13 +152962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20872] = 5, - ACTIONS(3689), 1, + [20941] = 5, + ACTIONS(3681), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152885,7 +152984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152901,7 +153000,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152923,13 +153022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20937] = 5, - ACTIONS(3683), 1, + [21006] = 5, + ACTIONS(3677), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152945,7 +153044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152961,7 +153060,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152983,13 +153082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21002] = 5, - ACTIONS(3655), 1, + [21071] = 5, + ACTIONS(3687), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 15, + ACTIONS(3404), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153005,7 +153104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3391), 15, + ACTIONS(3416), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153021,7 +153120,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(3380), 21, + ACTIONS(3400), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153043,48 +153142,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21067] = 29, + [21136] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153092,28 +153191,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3871), 6, + STATE(3907), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153126,48 +153225,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21179] = 29, + [21248] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153175,28 +153274,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 6, + STATE(3831), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153209,48 +153308,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21291] = 29, + [21360] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153258,28 +153357,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3844), 6, + STATE(3804), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153292,48 +153391,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21403] = 29, + [21472] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153341,28 +153440,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3739), 6, + STATE(4363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153375,48 +153474,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21515] = 29, + [21584] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153424,28 +153523,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3729), 6, + STATE(3786), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153458,48 +153557,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21627] = 29, + [21696] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153507,28 +153606,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3878), 6, + STATE(3809), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153541,48 +153640,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21739] = 29, + [21808] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1584), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2577), 1, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, ACTIONS(3229), 1, anon_sym_abstract, - ACTIONS(3605), 1, + ACTIONS(3609), 1, anon_sym_export, - ACTIONS(3607), 1, + ACTIONS(3611), 1, anon_sym_STAR, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3619), 1, anon_sym_async, - ACTIONS(3617), 1, - anon_sym_new, ACTIONS(3621), 1, + anon_sym_new, + ACTIONS(3625), 1, anon_sym_static, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_readonly, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(2681), 1, + STATE(2674), 1, sym_accessibility_modifier, - STATE(2717), 1, + STATE(2702), 1, sym_override_modifier, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4329), 1, sym__call_signature, - STATE(4505), 1, + STATE(4448), 1, aux_sym_export_statement_repeat1, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153590,28 +153689,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3619), 2, + ACTIONS(3623), 2, sym_number, sym_private_property_identifier, - ACTIONS(3625), 2, + ACTIONS(3629), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3072), 3, + STATE(3028), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3731), 6, + STATE(3736), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3603), 12, + ACTIONS(3607), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153624,7 +153723,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21851] = 33, + [21920] = 29, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(3703), 1, + anon_sym_STAR, + ACTIONS(3705), 1, + anon_sym_RBRACE, + ACTIONS(3707), 1, + anon_sym_SEMI, + ACTIONS(3709), 1, + anon_sym_async, + ACTIONS(3713), 1, + anon_sym_AT, + ACTIONS(3715), 1, + anon_sym_static, + ACTIONS(3717), 1, + anon_sym_readonly, + ACTIONS(3721), 1, + anon_sym_declare, + ACTIONS(3723), 1, + anon_sym_abstract, + ACTIONS(3725), 1, + anon_sym_accessor, + STATE(2436), 1, + aux_sym_export_statement_repeat1, + STATE(2564), 1, + sym_method_definition, + STATE(2633), 1, + sym_accessibility_modifier, + STATE(2697), 1, + sym_decorator, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3215), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3719), 2, + anon_sym_get, + anon_sym_set, + STATE(1409), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2955), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5052), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3607), 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, + [22031] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2229), 1, @@ -153653,42 +153834,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3699), 1, + ACTIONS(3727), 1, anon_sym_STAR, - ACTIONS(3701), 1, + ACTIONS(3729), 1, anon_sym_default, - ACTIONS(3703), 1, + ACTIONS(3731), 1, anon_sym_type, - ACTIONS(3705), 1, + ACTIONS(3733), 1, anon_sym_EQ, - ACTIONS(3707), 1, + ACTIONS(3735), 1, anon_sym_as, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3712), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - ACTIONS(3717), 1, + ACTIONS(3745), 1, anon_sym_module, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(4294), 1, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4342), 1, sym_declaration, - STATE(4295), 1, + STATE(4343), 1, sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4412), 1, + STATE(4521), 1, sym_export_clause, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, - STATE(5277), 1, + STATE(5290), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -153696,7 +153877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4286), 13, + STATE(4336), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -153710,46 +153891,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [21970] = 29, - ACTIONS(1584), 1, + [22150] = 29, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3719), 1, + ACTIONS(3703), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_RBRACE, - ACTIONS(3723), 1, - anon_sym_SEMI, - ACTIONS(3725), 1, + ACTIONS(3709), 1, anon_sym_async, - ACTIONS(3729), 1, + ACTIONS(3713), 1, anon_sym_AT, - ACTIONS(3731), 1, + ACTIONS(3715), 1, anon_sym_static, - ACTIONS(3733), 1, + ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_declare, - ACTIONS(3739), 1, + ACTIONS(3723), 1, anon_sym_abstract, - ACTIONS(3741), 1, + ACTIONS(3725), 1, anon_sym_accessor, - STATE(2433), 1, + ACTIONS(3747), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, + anon_sym_SEMI, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -153757,28 +153938,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 2, + ACTIONS(3711), 2, sym_number, sym_private_property_identifier, - ACTIONS(3735), 2, + ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1409), 2, + STATE(1418), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3603), 13, + ACTIONS(3607), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -153792,46 +153973,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22081] = 29, - ACTIONS(1584), 1, + [22261] = 29, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3719), 1, + ACTIONS(3703), 1, anon_sym_STAR, - ACTIONS(3725), 1, + ACTIONS(3707), 1, + anon_sym_SEMI, + ACTIONS(3709), 1, anon_sym_async, - ACTIONS(3729), 1, + ACTIONS(3713), 1, anon_sym_AT, - ACTIONS(3731), 1, + ACTIONS(3715), 1, anon_sym_static, - ACTIONS(3733), 1, + ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_declare, - ACTIONS(3739), 1, + ACTIONS(3723), 1, anon_sym_abstract, - ACTIONS(3741), 1, + ACTIONS(3725), 1, anon_sym_accessor, - ACTIONS(3743), 1, + ACTIONS(3751), 1, anon_sym_RBRACE, - ACTIONS(3745), 1, - anon_sym_SEMI, - STATE(2433), 1, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -153839,28 +154020,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 2, + ACTIONS(3711), 2, sym_number, sym_private_property_identifier, - ACTIONS(3735), 2, + ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1405), 2, + STATE(1409), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3603), 13, + ACTIONS(3607), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -153874,46 +154055,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22192] = 29, - ACTIONS(1584), 1, + [22372] = 29, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3719), 1, + ACTIONS(3703), 1, anon_sym_STAR, - ACTIONS(3725), 1, + ACTIONS(3709), 1, anon_sym_async, - ACTIONS(3729), 1, + ACTIONS(3713), 1, anon_sym_AT, - ACTIONS(3731), 1, + ACTIONS(3715), 1, anon_sym_static, - ACTIONS(3733), 1, + ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_declare, - ACTIONS(3739), 1, + ACTIONS(3723), 1, anon_sym_abstract, - ACTIONS(3741), 1, + ACTIONS(3725), 1, anon_sym_accessor, - ACTIONS(3747), 1, + ACTIONS(3753), 1, anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3755), 1, anon_sym_SEMI, - STATE(2433), 1, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -153921,28 +154102,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 2, + ACTIONS(3711), 2, sym_number, sym_private_property_identifier, - ACTIONS(3735), 2, + ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1407), 2, + STATE(1406), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3603), 13, + ACTIONS(3607), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -153956,46 +154137,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22303] = 29, - ACTIONS(1584), 1, + [22483] = 29, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3719), 1, + ACTIONS(3703), 1, anon_sym_STAR, - ACTIONS(3725), 1, + ACTIONS(3709), 1, anon_sym_async, - ACTIONS(3729), 1, + ACTIONS(3713), 1, anon_sym_AT, - ACTIONS(3731), 1, + ACTIONS(3715), 1, anon_sym_static, - ACTIONS(3733), 1, + ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_declare, - ACTIONS(3739), 1, + ACTIONS(3723), 1, anon_sym_abstract, - ACTIONS(3741), 1, + ACTIONS(3725), 1, anon_sym_accessor, - ACTIONS(3749), 1, - anon_sym_SEMI, - ACTIONS(3751), 1, + ACTIONS(3757), 1, anon_sym_RBRACE, - STATE(2433), 1, + ACTIONS(3759), 1, + anon_sym_SEMI, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -154003,28 +154184,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 2, + ACTIONS(3711), 2, sym_number, sym_private_property_identifier, - ACTIONS(3735), 2, + ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1407), 2, + STATE(1403), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3603), 13, + ACTIONS(3607), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -154038,75 +154219,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22414] = 29, - ACTIONS(3756), 1, + [22594] = 29, + ACTIONS(3764), 1, anon_sym_STAR, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_RBRACE, - ACTIONS(3761), 1, + ACTIONS(3769), 1, anon_sym_SEMI, - ACTIONS(3764), 1, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3775), 1, anon_sym_DQUOTE, - ACTIONS(3770), 1, + ACTIONS(3778), 1, anon_sym_SQUOTE, - ACTIONS(3773), 1, + ACTIONS(3781), 1, anon_sym_async, - ACTIONS(3782), 1, + ACTIONS(3790), 1, anon_sym_AT, - ACTIONS(3785), 1, + ACTIONS(3793), 1, anon_sym_static, - ACTIONS(3788), 1, + ACTIONS(3796), 1, anon_sym_readonly, - ACTIONS(3794), 1, + ACTIONS(3802), 1, anon_sym_declare, - ACTIONS(3800), 1, + ACTIONS(3808), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3811), 1, anon_sym_abstract, - ACTIONS(3806), 1, + ACTIONS(3814), 1, anon_sym_accessor, - STATE(2433), 1, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3776), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3779), 2, + ACTIONS(3787), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 2, + ACTIONS(3799), 2, anon_sym_get, anon_sym_set, - STATE(1407), 2, + STATE(1409), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3797), 3, + ACTIONS(3805), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3753), 13, + ACTIONS(3761), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -154120,128 +154301,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22525] = 29, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3719), 1, - anon_sym_STAR, - ACTIONS(3725), 1, + [22705] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3727), 1, + anon_sym_STAR, ACTIONS(3729), 1, - anon_sym_AT, + anon_sym_default, ACTIONS(3731), 1, - anon_sym_static, + anon_sym_type, ACTIONS(3733), 1, - anon_sym_readonly, + anon_sym_EQ, + ACTIONS(3735), 1, + anon_sym_as, ACTIONS(3737), 1, - anon_sym_declare, - ACTIONS(3739), 1, - anon_sym_abstract, - ACTIONS(3741), 1, - anon_sym_accessor, - ACTIONS(3809), 1, + anon_sym_COMMA, + ACTIONS(3745), 1, + anon_sym_module, + ACTIONS(3817), 1, anon_sym_RBRACE, - ACTIONS(3811), 1, - anon_sym_SEMI, - STATE(2433), 1, - aux_sym_export_statement_repeat1, - STATE(2573), 1, - sym_method_definition, - STATE(2636), 1, - sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(1244), 1, sym_decorator, - STATE(4407), 1, - sym_method_signature, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4342), 1, + sym_declaration, + STATE(4343), 1, + sym_internal_module, + STATE(4521), 1, + sym_export_clause, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + STATE(5290), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3727), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3735), 2, - anon_sym_get, - anon_sym_set, - STATE(1406), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3603), 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, - [22636] = 29, - ACTIONS(1584), 1, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4336), 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, + [22824] = 29, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3719), 1, + ACTIONS(3703), 1, anon_sym_STAR, - ACTIONS(3725), 1, + ACTIONS(3709), 1, anon_sym_async, - ACTIONS(3729), 1, + ACTIONS(3713), 1, anon_sym_AT, - ACTIONS(3731), 1, + ACTIONS(3715), 1, anon_sym_static, - ACTIONS(3733), 1, + ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_declare, - ACTIONS(3739), 1, + ACTIONS(3723), 1, anon_sym_abstract, - ACTIONS(3741), 1, + ACTIONS(3725), 1, anon_sym_accessor, - ACTIONS(3749), 1, - anon_sym_SEMI, - ACTIONS(3813), 1, + ACTIONS(3820), 1, anon_sym_RBRACE, - STATE(2433), 1, + ACTIONS(3822), 1, + anon_sym_SEMI, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -154249,28 +154434,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 2, + ACTIONS(3711), 2, sym_number, sym_private_property_identifier, - ACTIONS(3735), 2, + ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1407), 2, + STATE(1413), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3603), 13, + ACTIONS(3607), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -154284,128 +154469,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22747] = 29, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3719), 1, - anon_sym_STAR, - ACTIONS(3725), 1, + [22935] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3727), 1, + anon_sym_STAR, ACTIONS(3729), 1, - anon_sym_AT, + anon_sym_default, ACTIONS(3731), 1, - anon_sym_static, + anon_sym_type, ACTIONS(3733), 1, - anon_sym_readonly, + anon_sym_EQ, + ACTIONS(3735), 1, + anon_sym_as, ACTIONS(3737), 1, - anon_sym_declare, - ACTIONS(3739), 1, - anon_sym_abstract, - ACTIONS(3741), 1, - anon_sym_accessor, - ACTIONS(3749), 1, - anon_sym_SEMI, - ACTIONS(3815), 1, + anon_sym_COMMA, + ACTIONS(3745), 1, + anon_sym_module, + ACTIONS(3824), 1, anon_sym_RBRACE, - STATE(2433), 1, - aux_sym_export_statement_repeat1, - STATE(2573), 1, - sym_method_definition, - STATE(2636), 1, - sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(1244), 1, sym_decorator, - STATE(4407), 1, - sym_method_signature, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4342), 1, + sym_declaration, + STATE(4343), 1, + sym_internal_module, + STATE(4521), 1, + sym_export_clause, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + STATE(5290), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3727), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3735), 2, - anon_sym_get, - anon_sym_set, - STATE(1407), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3603), 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, - [22858] = 29, - ACTIONS(1584), 1, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4336), 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, + [23054] = 29, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3719), 1, + ACTIONS(3703), 1, anon_sym_STAR, - ACTIONS(3725), 1, + ACTIONS(3707), 1, + anon_sym_SEMI, + ACTIONS(3709), 1, anon_sym_async, - ACTIONS(3729), 1, + ACTIONS(3713), 1, anon_sym_AT, - ACTIONS(3731), 1, + ACTIONS(3715), 1, anon_sym_static, - ACTIONS(3733), 1, + ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_declare, - ACTIONS(3739), 1, + ACTIONS(3723), 1, anon_sym_abstract, - ACTIONS(3741), 1, + ACTIONS(3725), 1, anon_sym_accessor, - ACTIONS(3817), 1, + ACTIONS(3827), 1, anon_sym_RBRACE, - ACTIONS(3819), 1, - anon_sym_SEMI, - STATE(2433), 1, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -154413,28 +154602,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 2, + ACTIONS(3711), 2, sym_number, sym_private_property_identifier, - ACTIONS(3735), 2, + ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1410), 2, + STATE(1409), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3603), 13, + ACTIONS(3607), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -154448,7 +154637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22969] = 33, + [23165] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2229), 1, @@ -154477,42 +154666,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3699), 1, + ACTIONS(3727), 1, anon_sym_STAR, - ACTIONS(3701), 1, + ACTIONS(3729), 1, anon_sym_default, - ACTIONS(3703), 1, + ACTIONS(3731), 1, anon_sym_type, - ACTIONS(3705), 1, + ACTIONS(3733), 1, anon_sym_EQ, - ACTIONS(3707), 1, + ACTIONS(3735), 1, anon_sym_as, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3717), 1, + ACTIONS(3745), 1, anon_sym_module, - ACTIONS(3821), 1, + ACTIONS(3829), 1, anon_sym_RBRACE, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(4294), 1, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4342), 1, sym_declaration, - STATE(4295), 1, + STATE(4343), 1, sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4412), 1, + STATE(4521), 1, sym_export_clause, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, - STATE(5277), 1, + STATE(5290), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -154520,7 +154709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4286), 13, + STATE(4336), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -154534,179 +154723,171 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23088] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3699), 1, - anon_sym_STAR, - ACTIONS(3701), 1, - anon_sym_default, + [23284] = 29, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3633), 1, + anon_sym_override, ACTIONS(3703), 1, - anon_sym_type, - ACTIONS(3705), 1, - anon_sym_EQ, + anon_sym_STAR, ACTIONS(3707), 1, - anon_sym_as, + anon_sym_SEMI, ACTIONS(3709), 1, - anon_sym_COMMA, + anon_sym_async, + ACTIONS(3713), 1, + anon_sym_AT, + ACTIONS(3715), 1, + anon_sym_static, ACTIONS(3717), 1, - anon_sym_module, - ACTIONS(3824), 1, + anon_sym_readonly, + ACTIONS(3721), 1, + anon_sym_declare, + ACTIONS(3723), 1, + anon_sym_abstract, + ACTIONS(3725), 1, + anon_sym_accessor, + ACTIONS(3832), 1, anon_sym_RBRACE, - STATE(1236), 1, - sym_decorator, - STATE(4294), 1, - sym_declaration, - STATE(4295), 1, - sym_internal_module, - STATE(4323), 1, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(4412), 1, - sym_export_clause, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - STATE(5277), 1, - sym_namespace_export, + STATE(2564), 1, + sym_method_definition, + STATE(2633), 1, + sym_accessibility_modifier, + STATE(2697), 1, + sym_decorator, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4286), 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, - [23207] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, + ACTIONS(3215), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3719), 2, + anon_sym_get, + anon_sym_set, + STATE(1409), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2955), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5052), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3607), 13, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3699), 1, - anon_sym_STAR, - ACTIONS(3701), 1, - anon_sym_default, + 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, + [23395] = 29, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(3633), 1, + anon_sym_override, ACTIONS(3703), 1, - anon_sym_type, - ACTIONS(3705), 1, - anon_sym_EQ, - ACTIONS(3707), 1, - anon_sym_as, + anon_sym_STAR, ACTIONS(3709), 1, - anon_sym_COMMA, + anon_sym_async, + ACTIONS(3713), 1, + anon_sym_AT, + ACTIONS(3715), 1, + anon_sym_static, ACTIONS(3717), 1, - anon_sym_module, - ACTIONS(3827), 1, + anon_sym_readonly, + ACTIONS(3721), 1, + anon_sym_declare, + ACTIONS(3723), 1, + anon_sym_abstract, + ACTIONS(3725), 1, + anon_sym_accessor, + ACTIONS(3834), 1, anon_sym_RBRACE, - STATE(1236), 1, - sym_decorator, - STATE(4294), 1, - sym_declaration, - STATE(4295), 1, - sym_internal_module, - STATE(4323), 1, + ACTIONS(3836), 1, + anon_sym_SEMI, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(4412), 1, - sym_export_clause, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5277), 1, - sym_namespace_export, + STATE(2564), 1, + sym_method_definition, + STATE(2633), 1, + sym_accessibility_modifier, + STATE(2697), 1, + sym_decorator, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4286), 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, - [23326] = 33, + ACTIONS(3215), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3719), 2, + anon_sym_get, + anon_sym_set, + STATE(1415), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2955), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5052), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3607), 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, + [23506] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2229), 1, @@ -154735,42 +154916,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3699), 1, + ACTIONS(3727), 1, anon_sym_STAR, - ACTIONS(3701), 1, + ACTIONS(3729), 1, anon_sym_default, - ACTIONS(3703), 1, + ACTIONS(3731), 1, anon_sym_type, - ACTIONS(3705), 1, + ACTIONS(3733), 1, anon_sym_EQ, - ACTIONS(3707), 1, + ACTIONS(3735), 1, anon_sym_as, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3717), 1, + ACTIONS(3745), 1, anon_sym_module, - ACTIONS(3830), 1, + ACTIONS(3838), 1, anon_sym_RBRACE, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(4294), 1, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4342), 1, sym_declaration, - STATE(4295), 1, + STATE(4343), 1, sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4412), 1, + STATE(4521), 1, sym_export_clause, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(4671), 1, aux_sym_object_repeat1, - STATE(5277), 1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5290), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -154778,7 +154959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4286), 13, + STATE(4336), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -154792,128 +154973,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23445] = 29, - ACTIONS(1584), 1, + [23625] = 29, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3613), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3719), 1, + ACTIONS(3703), 1, anon_sym_STAR, - ACTIONS(3725), 1, - anon_sym_async, - ACTIONS(3729), 1, - anon_sym_AT, - ACTIONS(3731), 1, - anon_sym_static, - ACTIONS(3733), 1, - anon_sym_readonly, - ACTIONS(3737), 1, - anon_sym_declare, - ACTIONS(3739), 1, - anon_sym_abstract, - ACTIONS(3741), 1, - anon_sym_accessor, - ACTIONS(3833), 1, - anon_sym_RBRACE, - ACTIONS(3835), 1, + ACTIONS(3707), 1, anon_sym_SEMI, - STATE(2433), 1, - aux_sym_export_statement_repeat1, - STATE(2573), 1, - sym_method_definition, - STATE(2636), 1, - sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, - sym_decorator, - STATE(4407), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3727), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3735), 2, - anon_sym_get, - anon_sym_set, - STATE(1417), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3603), 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, - [23556] = 29, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3719), 1, - anon_sym_STAR, - ACTIONS(3725), 1, + ACTIONS(3709), 1, anon_sym_async, - ACTIONS(3729), 1, + ACTIONS(3713), 1, anon_sym_AT, - ACTIONS(3731), 1, + ACTIONS(3715), 1, anon_sym_static, - ACTIONS(3733), 1, + ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_declare, - ACTIONS(3739), 1, + ACTIONS(3723), 1, anon_sym_abstract, - ACTIONS(3741), 1, + ACTIONS(3725), 1, anon_sym_accessor, - ACTIONS(3749), 1, - anon_sym_SEMI, - ACTIONS(3837), 1, + ACTIONS(3841), 1, anon_sym_RBRACE, - STATE(2433), 1, + STATE(2436), 1, aux_sym_export_statement_repeat1, - STATE(2573), 1, + STATE(2564), 1, sym_method_definition, - STATE(2636), 1, + STATE(2633), 1, sym_accessibility_modifier, - STATE(2699), 1, - sym_override_modifier, - STATE(2714), 1, + STATE(2697), 1, sym_decorator, - STATE(4407), 1, + STATE(2698), 1, + sym_override_modifier, + STATE(4464), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -154921,28 +155020,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 2, + ACTIONS(3711), 2, sym_number, sym_private_property_identifier, - ACTIONS(3735), 2, + ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1407), 2, + STATE(1409), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3627), 3, + ACTIONS(3631), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2980), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5075), 3, + STATE(5052), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3603), 13, + ACTIONS(3607), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -154956,7 +155055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23667] = 25, + [23736] = 25, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(241), 1, @@ -154969,56 +155068,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3841), 1, + ACTIONS(3845), 1, anon_sym_RBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3845), 1, - anon_sym_async, ACTIONS(3849), 1, + anon_sym_async, + ACTIONS(3853), 1, anon_sym_static, - ACTIONS(3851), 1, + ACTIONS(3855), 1, anon_sym_readonly, - ACTIONS(3857), 1, + ACTIONS(3861), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, - STATE(5135), 1, + STATE(4682), 1, aux_sym_object_repeat1, - STATE(5139), 1, + STATE(4759), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3853), 2, + ACTIONS(3857), 2, anon_sym_get, anon_sym_set, - ACTIONS(3855), 3, + ACTIONS(3859), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5112), 3, + STATE(4603), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5548), 3, + STATE(4861), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3839), 14, + ACTIONS(3843), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -155033,7 +155132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23769] = 25, + [23838] = 25, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(241), 1, @@ -155046,56 +155145,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3861), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, - ACTIONS(3863), 1, + ACTIONS(3867), 1, anon_sym_async, - ACTIONS(3865), 1, + ACTIONS(3869), 1, anon_sym_static, - ACTIONS(3867), 1, + ACTIONS(3871), 1, anon_sym_readonly, - ACTIONS(3873), 1, + ACTIONS(3877), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, - STATE(4781), 1, - aux_sym_object_repeat1, - STATE(5139), 1, + STATE(4759), 1, aux_sym_object_pattern_repeat1, + STATE(4839), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3869), 2, + ACTIONS(3873), 2, anon_sym_get, anon_sym_set, - ACTIONS(3871), 3, + ACTIONS(3875), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4773), 3, + STATE(4835), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5106), 3, + STATE(4861), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5548), 3, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3859), 14, + ACTIONS(3863), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -155110,7 +155209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23871] = 25, + [23940] = 25, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(241), 1, @@ -155123,56 +155222,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3877), 1, + ACTIONS(3881), 1, anon_sym_RBRACE, - ACTIONS(3879), 1, + ACTIONS(3883), 1, anon_sym_async, - ACTIONS(3881), 1, + ACTIONS(3885), 1, anon_sym_static, - ACTIONS(3883), 1, + ACTIONS(3887), 1, anon_sym_readonly, - ACTIONS(3889), 1, + ACTIONS(3893), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, - STATE(4781), 1, - aux_sym_object_repeat1, - STATE(5139), 1, + STATE(4759), 1, aux_sym_object_pattern_repeat1, + STATE(4839), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3885), 2, + ACTIONS(3889), 2, anon_sym_get, anon_sym_set, - ACTIONS(3887), 3, + ACTIONS(3891), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4773), 3, + STATE(4835), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5106), 3, + STATE(4861), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5548), 3, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3875), 14, + ACTIONS(3879), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -155187,7 +155286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23973] = 25, + [24042] = 25, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(241), 1, @@ -155200,56 +155299,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3893), 1, + ACTIONS(3897), 1, anon_sym_RBRACE, - ACTIONS(3895), 1, + ACTIONS(3899), 1, anon_sym_async, - ACTIONS(3897), 1, + ACTIONS(3901), 1, anon_sym_static, - ACTIONS(3899), 1, + ACTIONS(3903), 1, anon_sym_readonly, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, - STATE(4781), 1, - aux_sym_object_repeat1, - STATE(5139), 1, + STATE(4759), 1, aux_sym_object_pattern_repeat1, + STATE(4839), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3901), 2, + ACTIONS(3905), 2, anon_sym_get, anon_sym_set, - ACTIONS(3903), 3, + ACTIONS(3907), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4773), 3, + STATE(4835), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5106), 3, + STATE(4861), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5548), 3, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3891), 14, + ACTIONS(3895), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -155264,7 +155363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24075] = 25, + [24144] = 25, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(241), 1, @@ -155277,56 +155376,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3909), 1, + ACTIONS(3913), 1, anon_sym_RBRACE, - ACTIONS(3911), 1, + ACTIONS(3915), 1, anon_sym_async, - ACTIONS(3913), 1, + ACTIONS(3917), 1, anon_sym_static, - ACTIONS(3915), 1, + ACTIONS(3919), 1, anon_sym_readonly, - ACTIONS(3921), 1, + ACTIONS(3925), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, - STATE(4781), 1, + STATE(4682), 1, aux_sym_object_repeat1, - STATE(5139), 1, + STATE(4759), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3917), 2, + ACTIONS(3921), 2, anon_sym_get, anon_sym_set, - ACTIONS(3919), 3, + ACTIONS(3923), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4773), 3, + STATE(4603), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5106), 3, + STATE(4861), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5548), 3, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3907), 14, + ACTIONS(3911), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -155341,7 +155440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24177] = 25, + [24246] = 25, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(241), 1, @@ -155354,56 +155453,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(3929), 1, anon_sym_RBRACE, - ACTIONS(3927), 1, + ACTIONS(3931), 1, anon_sym_async, - ACTIONS(3929), 1, + ACTIONS(3933), 1, anon_sym_static, - ACTIONS(3931), 1, + ACTIONS(3935), 1, anon_sym_readonly, - ACTIONS(3937), 1, + ACTIONS(3941), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, - STATE(4781), 1, - aux_sym_object_repeat1, - STATE(5139), 1, + STATE(4759), 1, aux_sym_object_pattern_repeat1, + STATE(4839), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3933), 2, + ACTIONS(3937), 2, anon_sym_get, anon_sym_set, - ACTIONS(3935), 3, + ACTIONS(3939), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4773), 3, + STATE(4835), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5106), 3, + STATE(4861), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5548), 3, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3923), 14, + ACTIONS(3927), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -155418,7 +155517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24279] = 25, + [24348] = 25, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(241), 1, @@ -155431,56 +155530,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(3945), 1, anon_sym_RBRACE, - ACTIONS(3943), 1, + ACTIONS(3947), 1, anon_sym_async, - ACTIONS(3945), 1, + ACTIONS(3949), 1, anon_sym_static, - ACTIONS(3947), 1, + ACTIONS(3951), 1, anon_sym_readonly, - ACTIONS(3953), 1, + ACTIONS(3957), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, - STATE(5135), 1, - aux_sym_object_repeat1, - STATE(5139), 1, + STATE(4759), 1, aux_sym_object_pattern_repeat1, + STATE(4839), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3949), 2, + ACTIONS(3953), 2, anon_sym_get, anon_sym_set, - ACTIONS(3951), 3, + ACTIONS(3955), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5112), 3, + STATE(4835), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5548), 3, + STATE(4861), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3939), 14, + ACTIONS(3943), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -155495,61 +155594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24381] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1770), 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(1768), 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_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [24438] = 30, + [24450] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2229), 1, @@ -155578,37 +155623,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3699), 1, + ACTIONS(3727), 1, anon_sym_STAR, - ACTIONS(3701), 1, + ACTIONS(3729), 1, anon_sym_default, - ACTIONS(3703), 1, + ACTIONS(3731), 1, anon_sym_type, - ACTIONS(3705), 1, + ACTIONS(3733), 1, anon_sym_EQ, - ACTIONS(3707), 1, + ACTIONS(3735), 1, anon_sym_as, - ACTIONS(3717), 1, + ACTIONS(3745), 1, anon_sym_module, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(4294), 1, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4342), 1, sym_declaration, - STATE(4295), 1, + STATE(4343), 1, sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4412), 1, + STATE(4521), 1, sym_export_clause, - STATE(5277), 1, + STATE(5290), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, + ACTIONS(3959), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -155616,7 +155661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4286), 13, + STATE(4336), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -155630,7 +155675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24549] = 29, + [24561] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2229), 1, @@ -155659,34 +155704,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3699), 1, + ACTIONS(3727), 1, anon_sym_STAR, - ACTIONS(3701), 1, + ACTIONS(3729), 1, anon_sym_default, - ACTIONS(3703), 1, + ACTIONS(3731), 1, anon_sym_type, - ACTIONS(3707), 1, + ACTIONS(3735), 1, anon_sym_as, - ACTIONS(3717), 1, + ACTIONS(3745), 1, anon_sym_module, - ACTIONS(3959), 1, + ACTIONS(3963), 1, anon_sym_EQ, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(4294), 1, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4342), 1, sym_declaration, - STATE(4295), 1, + STATE(4343), 1, sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4412), 1, + STATE(4521), 1, sym_export_clause, - STATE(5277), 1, + STATE(5290), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -155696,7 +155741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4286), 13, + STATE(4336), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -155710,11 +155755,11 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24658] = 3, + [24670] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1746), 14, + ACTIONS(1919), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155729,7 +155774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1744), 34, + ACTIONS(1917), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -155764,21 +155809,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [24715] = 8, - ACTIONS(3961), 1, + [24727] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1823), 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(1821), 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, - ACTIONS(3963), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [24784] = 11, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3975), 1, + anon_sym_QMARK_DOT, + ACTIONS(3977), 1, anon_sym_LT, - STATE(1503), 1, - sym_arguments, - STATE(1504), 1, + STATE(1522), 1, sym_type_arguments, + STATE(1756), 1, + sym_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 12, + ACTIONS(3965), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155791,7 +155896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3406), 30, + ACTIONS(3967), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -155800,9 +155905,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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155820,23 +155923,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [24781] = 8, - ACTIONS(3961), 1, + [24856] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3965), 1, + ACTIONS(3977), 1, anon_sym_LT, - ACTIONS(3971), 1, + ACTIONS(3983), 1, anon_sym_DOT, - STATE(1505), 1, + STATE(1604), 1, sym_arguments, - STATE(1506), 1, + STATE(1605), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3967), 12, + ACTIONS(3979), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155849,7 +155951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3969), 30, + ACTIONS(3981), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -155880,19 +155982,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24847] = 7, - ACTIONS(3965), 1, + [24922] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3977), 1, anon_sym_LT, - ACTIONS(3975), 1, + ACTIONS(3989), 1, anon_sym_DOT, - ACTIONS(3977), 1, - anon_sym_is, - STATE(1493), 1, + STATE(1606), 1, + sym_arguments, + STATE(1607), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3973), 12, + ACTIONS(3985), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155905,13 +156009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3480), 31, + ACTIONS(3987), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -155937,27 +156040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24911] = 11, - ACTIONS(3961), 1, + [24988] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3965), 1, + ACTIONS(3977), 1, anon_sym_LT, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3991), 1, anon_sym_DOT, - ACTIONS(3987), 1, - anon_sym_QMARK_DOT, - STATE(1589), 1, - sym_type_arguments, - STATE(1650), 1, + STATE(1601), 1, sym_arguments, - STATE(5056), 1, - sym_optional_chain, + STATE(1602), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3979), 12, + ACTIONS(3418), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155970,7 +156067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3981), 27, + ACTIONS(3406), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -155979,7 +156076,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, @@ -155997,8 +156096,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [24983] = 22, + [25054] = 22, ACTIONS(235), 1, anon_sym_STAR, ACTIONS(253), 1, @@ -156009,19 +156109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3199), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3847), 1, anon_sym_LBRACK, - ACTIONS(3991), 1, + ACTIONS(3995), 1, anon_sym_async, - ACTIONS(3993), 1, + ACTIONS(3997), 1, anon_sym_static, - ACTIONS(3995), 1, + ACTIONS(3999), 1, anon_sym_readonly, - ACTIONS(4001), 1, + ACTIONS(4005), 1, anon_sym_override, - STATE(2687), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2712), 1, + STATE(2711), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -156029,33 +156129,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3349), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3847), 2, + ACTIONS(3851), 2, sym_number, sym_private_property_identifier, - ACTIONS(3997), 2, + ACTIONS(4001), 2, anon_sym_get, anon_sym_set, - ACTIONS(3999), 3, + ACTIONS(4003), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3673), 3, + STATE(3665), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5353), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5354), 3, + STATE(5214), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5548), 3, + STATE(5227), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5760), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3989), 14, + ACTIONS(3993), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -156070,21 +156170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25077] = 8, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3965), 1, + [25148] = 7, + ACTIONS(3977), 1, anon_sym_LT, - ACTIONS(4007), 1, + ACTIONS(4009), 1, anon_sym_DOT, - STATE(1507), 1, - sym_arguments, - STATE(1508), 1, + ACTIONS(4011), 1, + anon_sym_is, + STATE(1584), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 12, + ACTIONS(4007), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156097,12 +156195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4005), 30, + ACTIONS(3461), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -156128,15 +156227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25143] = 5, - ACTIONS(4009), 1, - anon_sym_LBRACE, - STATE(1760), 1, - sym_statement_block, + [25212] = 4, + ACTIONS(4011), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 13, + ACTIONS(4013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156150,18 +156247,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 31, - sym__automatic_semicolon, + ACTIONS(4015), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -156181,16 +156278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [25202] = 5, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4011), 1, - sym__automatic_semicolon, + anon_sym_extends, + anon_sym_implements, + [25269] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 13, + ACTIONS(3131), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156204,7 +156298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1700), 31, + anon_sym_QMARK, + ACTIONS(3133), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156235,12 +156330,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, - [25261] = 3, + [25324] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1746), 14, + ACTIONS(3123), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156255,7 +156351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1744), 32, + ACTIONS(3125), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156288,13 +156384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25316] = 4, - ACTIONS(3977), 1, - anon_sym_is, + [25379] = 5, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4017), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(1722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156308,7 +156406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4015), 32, + ACTIONS(1720), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156339,15 +156437,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, - [25373] = 4, - ACTIONS(3977), 1, - anon_sym_is, + [25438] = 6, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(4023), 1, + anon_sym_DOT, + STATE(1597), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 13, + ACTIONS(4019), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156361,19 +156462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4019), 32, + ACTIONS(4021), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156394,11 +156493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25430] = 3, + [25499] = 5, + ACTIONS(3977), 1, + anon_sym_LT, + STATE(1595), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3131), 14, + ACTIONS(4025), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156409,11 +156512,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, - anon_sym_QMARK, - ACTIONS(3133), 32, + ACTIONS(4027), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156446,17 +156547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25485] = 6, - ACTIONS(4009), 1, + [25558] = 6, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(4021), 1, + ACTIONS(4031), 1, anon_sym_DOT, - STATE(1760), 1, + STATE(1654), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 13, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156470,7 +156571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 30, + ACTIONS(1712), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156501,13 +156602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [25546] = 4, - ACTIONS(4027), 1, - anon_sym_is, + [25619] = 6, + ACTIONS(3977), 1, + anon_sym_LT, + ACTIONS(4009), 1, + anon_sym_DOT, + STATE(1584), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 13, + ACTIONS(4007), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156518,10 +156623,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(4025), 32, + ACTIONS(3461), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156533,7 +156637,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, @@ -156554,18 +156657,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25603] = 6, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + [25680] = 6, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(4033), 1, + anon_sym_DOT, + STATE(1654), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1714), 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(1712), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [25741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1745), 2, - sym_template_string, - sym_arguments, - ACTIONS(4029), 13, + ACTIONS(1823), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156579,12 +156730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4031), 29, + anon_sym_QMARK, + ACTIONS(1821), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -156607,19 +156760,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, - [25664] = 6, - ACTIONS(3965), 1, - anon_sym_LT, - ACTIONS(3975), 1, - anon_sym_DOT, - STATE(1493), 1, - sym_type_arguments, + [25796] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3973), 12, + ACTIONS(1652), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156630,9 +156779,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(3480), 31, + ACTIONS(1650), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156644,6 +156794,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, @@ -156664,17 +156815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25725] = 6, - ACTIONS(4009), 1, - anon_sym_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(1760), 1, - sym_statement_block, + anon_sym_is, + [25851] = 6, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 13, + STATE(1626), 2, + sym_template_string, + sym_arguments, + ACTIONS(4035), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156688,18 +156841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 30, - sym__automatic_semicolon, + ACTIONS(4037), 29, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - 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, @@ -156716,14 +156869,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_PIPE_RBRACE, - [25786] = 3, + anon_sym_implements, + [25912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1770), 14, + ACTIONS(1919), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156738,7 +156890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1768), 32, + ACTIONS(1917), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156771,11 +156923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25841] = 3, + [25967] = 4, + ACTIONS(4011), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3123), 14, + ACTIONS(4039), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156789,8 +156943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3125), 32, + ACTIONS(4041), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156823,11 +156976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25896] = 3, + [26024] = 4, + ACTIONS(4043), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4035), 13, + ACTIONS(4025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156841,7 +156996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 33, + ACTIONS(4027), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156874,12 +157029,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [25951] = 3, + [26081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1666), 13, + ACTIONS(4045), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156893,7 +157047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 33, + ACTIONS(4047), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156927,17 +157081,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, anon_sym_is, - [26006] = 6, - ACTIONS(3961), 1, + [26136] = 5, + ACTIONS(4029), 1, + anon_sym_LBRACE, + STATE(1654), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1714), 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(1712), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(4043), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - STATE(1501), 1, - sym_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_PIPE_RBRACE, + [26195] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(3127), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156951,17 +157153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 30, + anon_sym_QMARK, + ACTIONS(3129), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156982,11 +157187,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26067] = 3, + [26250] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3127), 14, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4053), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [26362] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3598), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157000,8 +157285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3129), 32, + ACTIONS(3382), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157034,15 +157318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26122] = 5, - ACTIONS(3965), 1, - anon_sym_LT, - STATE(1500), 1, - sym_type_arguments, + [26416] = 4, + ACTIONS(4101), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 12, + ACTIONS(4097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157053,9 +157335,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(4025), 32, + ACTIONS(4099), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157067,7 +157350,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, @@ -157088,13 +157370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26181] = 4, - ACTIONS(4045), 1, - sym__automatic_semicolon, + [26472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157108,7 +157388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 31, + ACTIONS(4106), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157139,26 +157419,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26237] = 3, + [26526] = 6, + ACTIONS(4108), 1, + anon_sym_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 13, + ACTIONS(4104), 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(4049), 32, + ACTIONS(4106), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157189,216 +157474,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26291] = 19, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4061), 1, - anon_sym_readonly, - STATE(2716), 1, - sym_override_modifier, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [26377] = 17, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4079), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [26586] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4114), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 19, + ACTIONS(4116), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [26459] = 23, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4118), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 3, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4120), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [26553] = 3, + anon_sym_extends, + anon_sym_implements, + [26694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4098), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157412,7 +157595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4100), 32, + ACTIONS(4124), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157445,335 +157628,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26607] = 36, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4108), 1, - anon_sym_RPAREN, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, - STATE(5793), 1, - sym_type_annotation, + [26748] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4126), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26727] = 24, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4114), 1, anon_sym_AMP, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4069), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 12, + ACTIONS(4128), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [26823] = 25, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, anon_sym_PERCENT, - ACTIONS(4077), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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_implements, + [26802] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4130), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4069), 2, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 11, + ACTIONS(4132), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [26921] = 16, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 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(4077), 1, anon_sym_STAR_STAR, - ACTIONS(4079), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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_implements, + [26856] = 4, + ACTIONS(4108), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4134), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 19, + ACTIONS(4136), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [27001] = 17, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4079), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, anon_sym_satisfies, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_extends, + anon_sym_implements, + [26912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 11, + ACTIONS(4138), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -157782,32 +157797,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(4067), 18, + ACTIONS(4140), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [27083] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26966] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4126), 13, + ACTIONS(4142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157821,7 +157851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4128), 32, + ACTIONS(4144), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157854,17 +157884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27137] = 6, - ACTIONS(4130), 1, - anon_sym_LBRACE, - ACTIONS(4132), 1, - anon_sym_DOT, - STATE(1620), 1, - sym_statement_block, + [27020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 13, + ACTIONS(2321), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157878,9 +157902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 29, + ACTIONS(2319), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -157889,6 +157914,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, @@ -157907,18 +157933,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27197] = 6, - ACTIONS(4130), 1, - anon_sym_LBRACE, - ACTIONS(4134), 1, + [27074] = 7, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, - STATE(1620), 1, - sym_statement_block, + ACTIONS(3975), 1, + anon_sym_QMARK_DOT, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 13, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157932,18 +157961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 29, + ACTIONS(1789), 28, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -157962,15 +157990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27257] = 5, - ACTIONS(4130), 1, - anon_sym_LBRACE, - STATE(1620), 1, - sym_statement_block, + [27136] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 13, + ACTIONS(4146), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157984,9 +158008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 30, + ACTIONS(4148), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -158014,14 +158039,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, - [27315] = 4, - ACTIONS(4011), 1, - sym__automatic_semicolon, + [27190] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 13, + ACTIONS(4150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158035,7 +158059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1700), 31, + ACTIONS(4152), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158066,12 +158090,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, - [27371] = 3, + [27244] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158085,7 +158110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4138), 32, + ACTIONS(4156), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158118,11 +158143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27425] = 3, + [27298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 13, + ACTIONS(4150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158136,7 +158161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4025), 32, + ACTIONS(4152), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158169,91 +158194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27479] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4140), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27591] = 3, + [27352] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158267,7 +158212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4144), 32, + ACTIONS(4156), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158300,11 +158245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27645] = 3, + [27406] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 13, + ACTIONS(4158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158318,7 +158263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4019), 32, + ACTIONS(4160), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158351,93 +158296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27699] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4146), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27811] = 4, - ACTIONS(4152), 1, - anon_sym_DOT, + [27460] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158451,7 +158314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4150), 31, + ACTIONS(4164), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158463,6 +158326,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, @@ -158483,11 +158347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27867] = 3, + [27514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158501,7 +158365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 32, + ACTIONS(4160), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158534,13 +158398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27921] = 4, - ACTIONS(4158), 1, - anon_sym_LBRACK, + [27568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158554,7 +158416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 31, + ACTIONS(4164), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158564,6 +158426,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, @@ -158586,11 +158449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27977] = 3, + [27622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158604,7 +158467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4162), 32, + ACTIONS(4168), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158637,91 +158500,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28031] = 32, - ACTIONS(829), 1, + [27676] = 13, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4174), 1, anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4164), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28143] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1760), 13, + ACTIONS(4170), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158732,24 +158537,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(1758), 32, - sym__automatic_semicolon, + ACTIONS(4172), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -158763,16 +158560,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, - [28197] = 3, + [27750] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1774), 13, + ACTIONS(4177), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158786,19 +158579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1772), 32, - sym__automatic_semicolon, + ACTIONS(4179), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158818,12 +158610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [28251] = 3, + anon_sym_extends, + anon_sym_implements, + [27804] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158837,7 +158630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2335), 32, + ACTIONS(4168), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158870,13 +158663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28305] = 4, - ACTIONS(3963), 1, - anon_sym_DOT, + [27858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 13, + ACTIONS(4177), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158890,7 +158681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3406), 31, + ACTIONS(4179), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158902,6 +158693,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, @@ -158922,173 +158714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28361] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4166), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28473] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4168), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28585] = 4, - ACTIONS(4174), 1, - anon_sym_DOT, + [27912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(4181), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159102,7 +158732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 31, + ACTIONS(4183), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159114,6 +158744,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, @@ -159134,11 +158765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28641] = 3, + [27966] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 13, + ACTIONS(4185), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159152,7 +158783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4178), 32, + ACTIONS(4187), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159185,11 +158816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28695] = 3, + [28020] = 6, + ACTIONS(4189), 1, + anon_sym_LBRACE, + ACTIONS(4191), 1, + anon_sym_DOT, + STATE(1620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 13, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159203,10 +158840,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4182), 32, + ACTIONS(1712), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -159215,7 +158851,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, @@ -159234,13 +158869,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, - [28749] = 3, + [28080] = 6, + ACTIONS(4189), 1, + anon_sym_LBRACE, + ACTIONS(4193), 1, + anon_sym_DOT, + STATE(1620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159254,10 +158894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4186), 32, + ACTIONS(1712), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -159266,7 +158905,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, @@ -159285,28 +158923,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, - [28803] = 4, - ACTIONS(4192), 1, + [28140] = 6, + ACTIONS(4108), 1, anon_sym_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 12, + ACTIONS(4195), 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(4190), 32, + ACTIONS(4197), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159337,15 +158977,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28859] = 3, + [28200] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4203), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4199), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -159354,23 +159020,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, - ACTIONS(4196), 32, + ACTIONS(4201), 19, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159384,17 +159042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [28913] = 3, + [28280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4198), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159408,7 +159060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4200), 32, + ACTIONS(4208), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159441,11 +159093,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28967] = 3, + [28334] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 13, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4210), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [28446] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4212), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159459,7 +159191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4204), 32, + ACTIONS(4214), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159492,17 +159224,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29021] = 6, - ACTIONS(4192), 1, + [28500] = 6, + ACTIONS(4108), 1, anon_sym_AMP, - ACTIONS(4210), 1, + ACTIONS(4110), 1, anon_sym_PIPE, - ACTIONS(4212), 1, + ACTIONS(4112), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 11, + ACTIONS(4212), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159514,7 +159246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4208), 31, + ACTIONS(4214), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159546,30 +159278,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29081] = 6, - ACTIONS(4156), 1, - anon_sym_extends, - ACTIONS(4158), 1, - anon_sym_LBRACK, + [28560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4214), 11, + ACTIONS(2325), 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(4216), 30, + ACTIONS(2323), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159579,6 +159306,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, @@ -159599,14 +159327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29141] = 4, - ACTIONS(4222), 1, anon_sym_extends, + anon_sym_implements, + [28614] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159620,7 +159347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 31, + ACTIONS(4218), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159651,14 +159378,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, - [29197] = 4, - ACTIONS(4158), 1, - anon_sym_LBRACK, + [28668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159672,7 +159398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 31, + ACTIONS(4222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159682,6 +159408,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, @@ -159704,91 +159431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29253] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [28722] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4228), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [29365] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4230), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159802,7 +159449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 32, + ACTIONS(4222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159835,11 +159482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29419] = 3, + [28776] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159853,7 +159500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4236), 32, + ACTIONS(4222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159886,11 +159533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29473] = 3, + [28830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159904,7 +159551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4240), 32, + ACTIONS(4226), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159937,11 +159584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29527] = 3, + [28884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 13, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159955,7 +159602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2329), 32, + ACTIONS(4226), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159988,11 +159635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29581] = 3, + [28938] = 4, + ACTIONS(4228), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160006,7 +159655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4244), 32, + ACTIONS(1871), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160037,13 +159686,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, - [29635] = 3, + [28994] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160057,7 +159705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4248), 32, + ACTIONS(4226), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160090,11 +159738,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29689] = 3, + [29048] = 12, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4234), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4230), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160105,23 +159772,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(4252), 32, + ACTIONS(4232), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160137,15 +159797,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_extends, - anon_sym_implements, - [29743] = 3, + [29120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4254), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160159,7 +159816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4256), 32, + ACTIONS(4239), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160192,11 +159849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29797] = 3, + [29174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160210,7 +159867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 32, + ACTIONS(4239), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160243,11 +159900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29851] = 3, + [29228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160261,7 +159918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4264), 32, + ACTIONS(4239), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160294,11 +159951,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29905] = 3, + [29282] = 19, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3740), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4251), 1, + anon_sym_readonly, + STATE(2701), 1, + sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, + [29368] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4255), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [29480] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4257), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [29592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 13, + ACTIONS(4259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160312,7 +160196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4268), 32, + ACTIONS(4261), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160345,11 +160229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29959] = 3, + [29646] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 13, + ACTIONS(4263), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160363,7 +160247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4272), 32, + ACTIONS(4265), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160396,64 +160280,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30013] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4274), 13, - anon_sym_STAR, + [29700] = 36, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4276), 32, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4267), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4269), 1, 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, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, + STATE(5804), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 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(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30067] = 4, - ACTIONS(4282), 1, - anon_sym_DOT, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160467,7 +160382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 31, + ACTIONS(4273), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160479,6 +160394,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, @@ -160499,19 +160415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30123] = 7, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(3987), 1, - anon_sym_QMARK_DOT, - STATE(5056), 1, - sym_optional_chain, + [29874] = 5, + ACTIONS(4189), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160525,17 +160437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 28, + ACTIONS(1712), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160554,11 +160468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30185] = 3, + [29932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3592), 13, + ACTIONS(2329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160572,7 +160486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 32, + ACTIONS(2327), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160605,11 +160519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30239] = 3, + [29986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3594), 13, + ACTIONS(4275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160623,7 +160537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3424), 32, + ACTIONS(4277), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160656,13 +160570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30293] = 4, - ACTIONS(4285), 1, - anon_sym_DOT, + [30040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160676,7 +160588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 31, + ACTIONS(4281), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160688,6 +160600,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, @@ -160708,11 +160621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30349] = 3, + [30094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160726,7 +160639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 32, + ACTIONS(4281), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160759,65 +160672,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30403] = 6, - ACTIONS(4192), 1, + [30148] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4210), 1, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_extends, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 11, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4283), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [30463] = 3, + [30260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160831,7 +160770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4294), 32, + ACTIONS(4281), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160864,11 +160803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30517] = 3, + [30314] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160882,7 +160821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 32, + ACTIONS(4287), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160915,11 +160854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30571] = 3, + [30368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160933,7 +160872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4302), 32, + ACTIONS(4287), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160966,11 +160905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30625] = 3, + [30422] = 5, + ACTIONS(3969), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(4289), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160984,13 +160927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4306), 32, + ACTIONS(4291), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -161015,13 +160957,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, - [30679] = 3, + [30480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161035,7 +160976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4310), 32, + ACTIONS(4287), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161068,18 +161009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30733] = 4, - ACTIONS(4192), 1, - anon_sym_AMP, + [30534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 12, + ACTIONS(4293), 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, @@ -161087,7 +161027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4314), 32, + ACTIONS(4295), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161120,62 +161060,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30789] = 3, + [30588] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4318), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4297), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [30843] = 3, + [30700] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 13, + ACTIONS(4293), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161189,7 +161158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2325), 32, + ACTIONS(4295), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161222,62 +161191,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30897] = 3, + [30754] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4322), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4299), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [30951] = 3, + [30866] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(4293), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161291,7 +161289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4326), 32, + ACTIONS(4295), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161324,11 +161322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31005] = 3, + [30920] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4301), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161342,7 +161340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4330), 32, + ACTIONS(4303), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161375,76 +161373,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31059] = 3, + [30974] = 19, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4049), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4334), 32, + ACTIONS(4305), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, + [31060] = 6, + ACTIONS(4108), 1, + anon_sym_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, anon_sym_extends, - anon_sym_implements, - [31113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4309), 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(4330), 32, + ACTIONS(4311), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161475,64 +161493,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31167] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4332), 13, - anon_sym_STAR, + [31120] = 36, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4334), 32, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4267), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4313), 1, 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, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, + STATE(5795), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 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(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [31221] = 3, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31240] = 4, + ACTIONS(4017), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(1722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161546,7 +161598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4338), 32, + ACTIONS(1720), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161577,13 +161629,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31275] = 3, + [31296] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4315), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161594,47 +161669,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(4342), 32, + ACTIONS(4305), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, + [31372] = 4, + ACTIONS(4027), 1, anon_sym_extends, - anon_sym_implements, - [31329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161648,7 +161712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4338), 32, + ACTIONS(4320), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161679,27 +161743,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, - [31383] = 3, + [31428] = 6, + ACTIONS(4108), 1, + anon_sym_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 13, + ACTIONS(4318), 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(4342), 32, + ACTIONS(4320), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161730,139 +161797,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31437] = 27, - ACTIONS(829), 1, + [31488] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4110), 1, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4114), 1, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - STATE(1443), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4322), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [31539] = 3, + [31600] = 26, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_BANG, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4346), 32, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [31593] = 3, + [31700] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 13, + ACTIONS(4324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161876,7 +161970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4350), 32, + ACTIONS(4326), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161909,11 +162003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31647] = 3, + [31754] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 13, + ACTIONS(4025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161927,7 +162021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4346), 32, + ACTIONS(4027), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161960,287 +162054,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31701] = 3, + [31808] = 27, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_BANG, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4354), 32, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [31910] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4059), 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(4077), 1, anon_sym_PERCENT, + ACTIONS(4079), 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_extends, - anon_sym_implements, - [31755] = 3, + ACTIONS(4315), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 13, + ACTIONS(4049), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4358), 32, + ACTIONS(4305), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [31809] = 6, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4210), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_extends, + [31992] = 23, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 11, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4362), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [31869] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4364), 13, - anon_sym_STAR, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4307), 3, 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(4366), 32, + ACTIONS(4305), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [31923] = 3, + [32086] = 24, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4370), 32, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [31977] = 6, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4210), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_extends, + [32182] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 11, + ACTIONS(4328), 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(4370), 31, + ACTIONS(4330), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162271,12 +162386,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, - [32037] = 3, + [32236] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 13, + ACTIONS(4039), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162290,7 +162406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2321), 32, + ACTIONS(4041), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162323,118 +162439,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32091] = 7, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(2335), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4372), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4375), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1704), 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(1708), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, + [32290] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4077), 1, anon_sym_PERCENT, + ACTIONS(4079), 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, - [32153] = 3, + ACTIONS(4081), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4380), 32, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [32207] = 3, + [32388] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4315), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4049), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -162443,48 +162554,100 @@ 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(4384), 32, + ACTIONS(4305), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [32261] = 3, + [32468] = 19, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4251), 1, + anon_sym_readonly, + STATE(2701), 1, + sym_override_modifier, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, + [32554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162498,7 +162661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 32, + ACTIONS(4015), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162531,13 +162694,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32315] = 3, + [32608] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4315), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -162546,83 +162738,68 @@ 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(4384), 32, + ACTIONS(4305), 18, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [32369] = 19, - ACTIONS(1584), 1, + [32690] = 19, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3821), 1, + ACTIONS(3829), 1, anon_sym_RBRACE, - ACTIONS(4051), 1, + ACTIONS(4241), 1, anon_sym_STAR, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(4247), 1, anon_sym_async, - ACTIONS(4061), 1, + ACTIONS(4251), 1, anon_sym_readonly, - STATE(2716), 1, + STATE(2701), 1, sym_override_modifier, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 2, + ACTIONS(4249), 2, sym_number, sym_private_property_identifier, - ACTIONS(4063), 2, + ACTIONS(4253), 2, anon_sym_get, anon_sym_set, - STATE(2998), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -162630,7 +162807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3603), 18, + ACTIONS(3607), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -162649,11 +162826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32455] = 3, + [32776] = 4, + ACTIONS(3475), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162667,7 +162846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4388), 32, + ACTIONS(3404), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162698,13 +162877,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, - [32509] = 3, + [32832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162718,7 +162896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4388), 32, + ACTIONS(4334), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162751,11 +162929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32563] = 3, + [32886] = 4, + ACTIONS(4340), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162769,7 +162949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4388), 32, + ACTIONS(4338), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162781,7 +162961,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, @@ -162802,11 +162981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32617] = 3, + [32942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162820,7 +162999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 32, + ACTIONS(4344), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162853,76 +163032,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32671] = 3, + [32996] = 21, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4307), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 32, + ACTIONS(4305), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_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_satisfies, + [33086] = 28, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_BANG, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_satisfies, + [33190] = 6, + ACTIONS(4108), 1, + anon_sym_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, anon_sym_extends, - anon_sym_implements, - [32725] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 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(4392), 32, + ACTIONS(4348), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162953,27 +163230,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32779] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4394), 13, - anon_sym_STAR, + [33250] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4350), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [33362] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4352), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [33474] = 36, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(4354), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, + STATE(5815), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [33594] = 6, + ACTIONS(4108), 1, anon_sym_AMP, + ACTIONS(4110), 1, anon_sym_PIPE, + ACTIONS(4112), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4356), 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(4396), 32, + ACTIONS(4358), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163004,27 +163528,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, - [32833] = 3, + [33654] = 6, + ACTIONS(4108), 1, + anon_sym_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4360), 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(4400), 32, + ACTIONS(4362), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163055,13 +163582,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, - [32887] = 3, + [33714] = 4, + ACTIONS(4364), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163075,7 +163603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4404), 32, + ACTIONS(4344), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163085,7 +163613,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, @@ -163108,11 +163635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32941] = 3, + [33770] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2319), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163126,7 +163653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 32, + ACTIONS(4368), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163159,11 +163686,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32995] = 3, + [33824] = 19, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4251), 1, + anon_sym_readonly, + STATE(2701), 1, + sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, + [33910] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163177,18 +163771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 32, + ACTIONS(1797), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163208,13 +163803,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, - [33049] = 3, + anon_sym_PIPE_RBRACE, + [33964] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(1857), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163228,18 +163822,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 32, + ACTIONS(1855), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163259,13 +163854,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, - [33103] = 3, + anon_sym_PIPE_RBRACE, + [34018] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(2333), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163279,7 +163873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 32, + ACTIONS(2331), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163312,11 +163906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33157] = 3, + [34072] = 4, + ACTIONS(3991), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(3418), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163330,7 +163926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 32, + ACTIONS(3406), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163342,7 +163938,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, @@ -163363,62 +163958,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33211] = 3, + [34128] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4370), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34240] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4372), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [34352] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4374), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34464] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33265] = 3, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4376), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34576] = 4, + ACTIONS(4382), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163432,7 +164298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 32, + ACTIONS(4380), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163444,7 +164310,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, @@ -163465,11 +164330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33319] = 3, + [34632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163483,7 +164348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 32, + ACTIONS(4386), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163516,11 +164381,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33373] = 3, + [34686] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4388), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163534,7 +164479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4420), 32, + ACTIONS(4392), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163567,11 +164512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33427] = 3, + [34852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163585,7 +164530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4420), 32, + ACTIONS(4396), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163618,17 +164563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33481] = 3, + [34906] = 4, + ACTIONS(4108), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4398), 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, @@ -163636,7 +164582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4420), 32, + ACTIONS(4400), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163669,11 +164615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33535] = 3, + [34962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163687,7 +164633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4424), 32, + ACTIONS(4404), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163720,29 +164666,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33589] = 6, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4210), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_extends, + [35016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4426), 11, + ACTIONS(4406), 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(4428), 31, + ACTIONS(4408), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163773,124 +164715,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, - [33649] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [35070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4410), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4430), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [33761] = 7, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3380), 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(3384), 27, + ACTIONS(4412), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -163908,23 +164766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [33823] = 7, - ACTIONS(4182), 1, anon_sym_extends, - ACTIONS(4434), 1, + anon_sym_implements, + [35124] = 7, + ACTIONS(1726), 1, anon_sym_EQ, + ACTIONS(2331), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 2, + ACTIONS(4414), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4441), 3, + ACTIONS(4417), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4432), 10, + ACTIONS(1724), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163935,7 +164794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 28, + ACTIONS(1728), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163964,53 +164823,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33885] = 13, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4448), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [35186] = 6, + ACTIONS(4108), 1, + anon_sym_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4420), 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(4446), 21, + ACTIONS(4422), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -164024,23 +164872,27 @@ 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, - [33959] = 5, + anon_sym_implements, + [35246] = 6, + ACTIONS(4344), 1, + anon_sym_extends, + ACTIONS(4364), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 3, - anon_sym_GT, + ACTIONS(4342), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4196), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3380), 10, + ACTIONS(4424), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -164048,10 +164900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 29, + ACTIONS(4426), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164078,15 +164931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34017] = 5, - ACTIONS(4230), 1, - anon_sym_QMARK, - ACTIONS(4232), 1, + [35306] = 4, + ACTIONS(4432), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 13, + ACTIONS(4428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164100,7 +164951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 30, + ACTIONS(4430), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164108,6 +164959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164131,105 +164983,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34075] = 19, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + [35362] = 19, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4251), 1, + anon_sym_readonly, + STATE(2701), 1, + sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, + [35448] = 4, + ACTIONS(4364), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4434), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 17, + ACTIONS(4436), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_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, - [34161] = 3, + anon_sym_extends, + anon_sym_implements, + [35504] = 7, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(3406), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3418), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4015), 32, + ACTIONS(3404), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -164247,176 +165156,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34215] = 21, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [35566] = 7, + ACTIONS(4392), 1, + anon_sym_extends, + ACTIONS(4440), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4447), 3, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4069), 5, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4438), 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(4067), 14, + ACTIONS(4442), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [34305] = 28, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4110), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [34409] = 6, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4210), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, + anon_sym_implements, + [35628] = 5, + ACTIONS(4454), 1, + anon_sym_QMARK, + ACTIONS(4456), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 11, + ACTIONS(4450), 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(4457), 31, + ACTIONS(4452), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164424,7 +165242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164448,29 +165265,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34469] = 6, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4210), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_extends, + [35686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 11, + ACTIONS(4458), 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(4461), 31, + ACTIONS(4460), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164501,41 +165314,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, - [34529] = 16, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4467), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [35740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4463), 11, + ACTIONS(4462), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -164544,15 +165331,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(4465), 19, + ACTIONS(4464), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -164566,38 +165361,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34609] = 5, - ACTIONS(3961), 1, - anon_sym_LPAREN, - STATE(1744), 1, - sym_arguments, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [35794] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 13, + ACTIONS(4402), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4404), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3400), 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(4472), 30, + ACTIONS(3404), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164619,95 +165420,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34667] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [35852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4466), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_GT_GT, + anon_sym_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(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4474), 5, + ACTIONS(4468), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [34779] = 5, - ACTIONS(4242), 1, - anon_sym_QMARK, - ACTIONS(4244), 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, anon_sym_extends, + anon_sym_implements, + [35906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 13, + ACTIONS(4470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164721,7 +165489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 30, + ACTIONS(4472), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164729,6 +165497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164751,111 +165520,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34837] = 32, - ACTIONS(829), 1, + [35960] = 36, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - STATE(1443), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(4474), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, + STATE(5564), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4476), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [34949] = 12, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4482), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [36080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 12, + ACTIONS(2337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164866,16 +165621,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(4480), 23, + ACTIONS(2335), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -164891,14 +165653,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, - [35021] = 4, - ACTIONS(3494), 1, - anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [36134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164912,7 +165675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 31, + ACTIONS(4456), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164943,265 +165706,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [35077] = 19, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4061), 1, - anon_sym_readonly, - STATE(2716), 1, - sym_override_modifier, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [35163] = 36, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4485), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, - STATE(5744), 1, - sym_type_annotation, + [36188] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4476), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35283] = 36, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4487), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, - STATE(5657), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35403] = 6, - ACTIONS(4192), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4210), 1, anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4489), 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(4491), 31, + ACTIONS(4478), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165232,507 +165757,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [35463] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [36242] = 5, + ACTIONS(4458), 1, + anon_sym_QMARK, + ACTIONS(4460), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4450), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4493), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [35575] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4495), 5, + ACTIONS(4452), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [35687] = 36, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4497), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, - STATE(5862), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35807] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4077), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4499), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [35919] = 19, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4061), 1, - anon_sym_readonly, - STATE(2716), 1, - sym_override_modifier, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [36005] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4501), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36117] = 14, - ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4079), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_implements, + [36300] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4480), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165743,36 +165827,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(4067), 20, + ACTIONS(4482), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [36193] = 4, - ACTIONS(4025), 1, anon_sym_extends, + anon_sym_implements, + [36354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(4484), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165786,7 +165881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 31, + ACTIONS(4486), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165817,177 +165912,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36249] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4507), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36361] = 19, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4061), 1, - anon_sym_readonly, - STATE(2716), 1, - sym_override_modifier, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [36447] = 6, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4210), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, anon_sym_extends, + anon_sym_implements, + [36408] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 11, + ACTIONS(4488), 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(4505), 31, + ACTIONS(4490), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166018,166 +165963,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, - [36507] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4509), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36619] = 26, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [36719] = 3, + [36462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 13, + ACTIONS(4492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166191,7 +165983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4350), 32, + ACTIONS(4494), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166224,11 +166016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36773] = 3, + [36516] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(4496), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166242,7 +166034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 31, + ACTIONS(4498), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166273,12 +166065,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, - [36826] = 3, + [36570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1764), 13, + ACTIONS(4500), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166292,7 +166085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1762), 31, + ACTIONS(4502), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166323,12 +166116,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, - [36879] = 3, + [36624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(4504), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166342,7 +166136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4430), 31, + ACTIONS(4506), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166373,93 +166167,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, - [36932] = 34, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4521), 1, - anon_sym_COMMA, - ACTIONS(4524), 1, - anon_sym_RBRACE, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, + [36678] = 4, + ACTIONS(4508), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4168), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4560), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4572), 13, + ACTIONS(4097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166473,7 +166189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4574), 31, + ACTIONS(4099), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166485,7 +166201,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, @@ -166504,12 +166219,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, - [37100] = 3, + [36734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4576), 13, + ACTIONS(3596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166523,7 +166239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4578), 31, + ACTIONS(3446), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166554,12 +166270,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, - [37153] = 3, + [36788] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4580), 13, + ACTIONS(4511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166573,7 +166290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4140), 31, + ACTIONS(4513), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166604,12 +166321,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, - [37206] = 3, + [36842] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1778), 13, + ACTIONS(4515), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166623,7 +166341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1776), 31, + ACTIONS(4370), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166655,73 +166373,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37259] = 15, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + [36895] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4586), 2, - anon_sym_get, - anon_sym_set, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(4517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 11, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [36988] = 7, + ACTIONS(4547), 1, + anon_sym_DOT, + ACTIONS(4549), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 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, - [37336] = 3, + ACTIONS(4551), 1, + anon_sym_is, + STATE(2024), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(4007), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166732,22 +166466,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(1825), 31, + ACTIONS(3461), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166766,315 +166496,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37389] = 32, + anon_sym_extends, + [37049] = 24, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4507), 4, + ACTIONS(4305), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [37500] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [37144] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4557), 1, + anon_sym_COMMA, + ACTIONS(4560), 1, + anon_sym_RBRACE, + ACTIONS(4562), 1, + anon_sym_BANG, ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, ACTIONS(4568), 1, - anon_sym_satisfies, + anon_sym_CARET, ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4452), 1, - aux_sym_sequence_expression_repeat1, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(4297), 2, + sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4590), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37615] = 15, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + [37259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4586), 2, - anon_sym_get, - anon_sym_set, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 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, - [37692] = 34, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, + ACTIONS(1849), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4544), 1, anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1851), 31, sym__ternary_qmark, - ACTIONS(4592), 1, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4595), 1, anon_sym_RBRACE, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4168), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4542), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4560), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4562), 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(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [37807] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37312] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(1781), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167088,7 +166717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 31, + ACTIONS(1779), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167120,92 +166749,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37860] = 34, + [37365] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4452), 1, - aux_sym_sequence_expression_repeat1, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4597), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37975] = 3, + ACTIONS(4388), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [37476] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167219,7 +166846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4601), 31, + ACTIONS(1871), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167251,40 +166878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38028] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4603), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + [37529] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4463), 11, + ACTIONS(1863), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -167293,14 +166893,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(4465), 18, - sym__automatic_semicolon, + ACTIONS(1865), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167314,143 +166923,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38107] = 6, - ACTIONS(4144), 1, - anon_sym_extends, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37582] = 25, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4568), 1, + anon_sym_CARET, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, 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, + ACTIONS(4307), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(4517), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4521), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 28, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [38166] = 32, + [37679] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4580), 1, + anon_sym_GT, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - STATE(1822), 1, + ACTIONS(4616), 1, + anon_sym_in, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 4, + ACTIONS(4614), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [38277] = 3, + [37792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 13, + ACTIONS(4619), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167464,7 +167098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4614), 31, + ACTIONS(4621), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167496,48 +167130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38330] = 32, + [37845] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4623), 1, anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -167545,41 +167157,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4493), 4, + ACTIONS(4305), 18, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [38441] = 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, + anon_sym_satisfies, + [37924] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4616), 13, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167593,7 +167211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 31, + ACTIONS(1740), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167625,11 +167243,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38494] = 3, + [37977] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4623), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4305), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [38058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(4626), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167643,7 +167325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 31, + ACTIONS(4628), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167675,11 +167357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38547] = 3, + [38111] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4624), 13, + ACTIONS(4630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167693,7 +167375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 31, + ACTIONS(4632), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167725,41 +167407,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38600] = 16, - ACTIONS(1584), 1, + [38164] = 15, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3712), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - ACTIONS(4051), 1, + ACTIONS(4241), 1, anon_sym_STAR, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4628), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 2, + ACTIONS(4636), 2, sym_number, sym_private_property_identifier, - ACTIONS(4063), 2, + ACTIONS(4638), 2, anon_sym_get, anon_sym_set, - STATE(2998), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -167767,11 +167447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3603), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -167788,11 +167469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38679] = 3, + [38241] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 13, + ACTIONS(4640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167806,7 +167487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4146), 31, + ACTIONS(4642), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167838,11 +167519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38732] = 3, + [38294] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167856,7 +167537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 31, + ACTIONS(1789), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167888,147 +167569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38785] = 16, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4628), 1, - anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [38864] = 26, + [38347] = 13, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4644), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4560), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 10, - 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_satisfies, - [38963] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1833), 13, + ACTIONS(4170), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168039,23 +167606,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, - ACTIONS(1831), 31, + ACTIONS(4172), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168069,18 +167628,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_satisfies, + [38420] = 16, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39016] = 3, + ACTIONS(4647), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4632), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4199), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -168089,23 +167671,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(4634), 31, + ACTIONS(4201), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168119,196 +167692,164 @@ 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, - [39069] = 27, + [38499] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4540), 1, + ACTIONS(4584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(4610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4612), 1, + sym__ternary_qmark, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 9, + ACTIONS(4210), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [39170] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + [38610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4650), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4652), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4476), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [39281] = 6, - ACTIONS(4200), 1, - anon_sym_extends, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4643), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4636), 10, + ACTIONS(4654), 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(4638), 28, + ACTIONS(4656), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168330,41 +167871,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39340] = 16, - ACTIONS(1584), 1, + [38716] = 16, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3824), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - ACTIONS(4051), 1, + ACTIONS(4241), 1, anon_sym_STAR, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4057), 1, + ACTIONS(4247), 1, anon_sym_async, - ACTIONS(4628), 1, + ACTIONS(4658), 1, anon_sym_LBRACK, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 2, + ACTIONS(4249), 2, sym_number, sym_private_property_identifier, - ACTIONS(4063), 2, + ACTIONS(4253), 2, anon_sym_get, anon_sym_set, - STATE(2998), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -168372,7 +167913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3603), 20, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168393,11 +167934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39419] = 3, + [38795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4646), 13, + ACTIONS(4660), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168411,7 +167952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4648), 31, + ACTIONS(4255), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168443,11 +167984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39472] = 3, + [38848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168461,7 +168002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 31, + ACTIONS(1797), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168493,11 +168034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39525] = 3, + [38901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(1857), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168511,7 +168052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 31, + ACTIONS(1855), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168543,11 +168084,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39578] = 3, + [38954] = 12, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4662), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4230), 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(4232), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + 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_satisfies, + [39025] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4658), 13, + ACTIONS(1889), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168561,7 +168161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4660), 31, + ACTIONS(1891), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168593,11 +168193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39631] = 3, + [39078] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1760), 13, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168611,7 +168211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1758), 31, + ACTIONS(1807), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168643,11 +168243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39684] = 3, + [39131] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 13, + ACTIONS(1759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168661,7 +168261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4664), 31, + ACTIONS(1761), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168693,90 +168293,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39737] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, + [39184] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4665), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4528), 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(4667), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4532), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4534), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4536), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4538), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_implements, + [39237] = 4, + ACTIONS(4440), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4438), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4442), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4140), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [39848] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1774), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168790,7 +168412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1772), 31, + ACTIONS(3404), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168822,154 +168444,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39901] = 32, + [39345] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4146), 4, + ACTIONS(4297), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [40012] = 17, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, + [39456] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4668), 1, - anon_sym_LBRACE, - ACTIONS(4670), 1, - anon_sym_async, - ACTIONS(4674), 1, - anon_sym_readonly, - ACTIONS(4678), 1, - sym__automatic_semicolon, - STATE(2620), 1, - sym_statement_block, - STATE(2708), 1, - sym_override_modifier, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + ACTIONS(4669), 1, + anon_sym_COMMA, + ACTIONS(4672), 1, + anon_sym_RBRACE, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4672), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + ACTIONS(4517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3603), 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, - [40093] = 3, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39571] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 13, + ACTIONS(4678), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4682), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168983,17 +168631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 31, - sym__automatic_semicolon, + ACTIONS(4680), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169014,12 +168656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [40146] = 3, + [39628] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 13, + ACTIONS(1781), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169033,18 +168674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4683), 31, + ACTIONS(1779), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -169064,53 +168705,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40199] = 16, - ACTIONS(1584), 1, + anon_sym_PIPE_RBRACE, + [39681] = 15, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(4687), 1, - anon_sym_static, - ACTIONS(4689), 1, - anon_sym_readonly, - ACTIONS(4691), 1, - anon_sym_abstract, - ACTIONS(4693), 1, - anon_sym_accessor, - STATE(2662), 1, - sym_accessibility_modifier, - STATE(2771), 1, - sym_override_modifier, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4685), 2, + ACTIONS(4636), 2, sym_number, sym_private_property_identifier, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3424), 3, + ACTIONS(4638), 2, + anon_sym_get, + anon_sym_set, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169118,9 +168754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + 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, @@ -169128,11 +168768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [40278] = 3, + [39758] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169146,18 +168786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 31, + ACTIONS(1871), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -169177,39 +168817,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40331] = 3, + anon_sym_PIPE_RBRACE, + [39811] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, + anon_sym_AMP_AMP, + ACTIONS(4584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4602), 1, + anon_sym_LT, + ACTIONS(4610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4612), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1738), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4299), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [39922] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4636), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4638), 2, + anon_sym_get, + anon_sym_set, + STATE(3770), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [39999] = 19, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4602), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4305), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [40084] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4388), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [40195] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4523), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4685), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4199), 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(4201), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -169223,16 +169167,98 @@ 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, + [40274] = 16, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4658), 1, + anon_sym_LBRACK, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, + [40353] = 14, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [40384] = 3, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4688), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169243,46 +169269,35 @@ 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(1925), 31, + ACTIONS(4305), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - anon_sym_implements, - [40437] = 3, + [40428] = 4, + ACTIONS(4678), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1784), 13, + ACTIONS(4676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169296,7 +169311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1786), 31, + ACTIONS(4680), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169304,7 +169319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -169328,35 +169342,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40490] = 3, + [40483] = 26, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4602), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1857), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [40582] = 16, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4658), 1, + anon_sym_LBRACK, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, + [40661] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4283), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [40772] = 6, + ACTIONS(4330), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4691), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4694), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3400), 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(1859), 31, + ACTIONS(3404), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169378,35 +169610,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40543] = 3, + [40831] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + ACTIONS(4669), 1, + anon_sym_COMMA, + ACTIONS(4672), 1, + anon_sym_RBRACE, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 13, + ACTIONS(4257), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4517), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40946] = 6, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4697), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4700), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3400), 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(4164), 31, + ACTIONS(3404), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169428,353 +169744,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40596] = 32, - ACTIONS(89), 1, + [41005] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4065), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4164), 4, - sym__automatic_semicolon, + ACTIONS(4703), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [40707] = 17, + anon_sym_RPAREN, + anon_sym_RBRACK, + [41116] = 27, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4552), 1, + ACTIONS(4582), 1, + anon_sym_AMP_AMP, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4701), 1, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 8, - anon_sym_BANG, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 18, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [40788] = 3, + [41217] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4688), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(1849), 31, + ACTIONS(4305), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - anon_sym_implements, - [40841] = 23, + [41298] = 23, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4540), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4552), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 3, + ACTIONS(4307), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4558), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 11, + ACTIONS(4305), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [40934] = 32, - ACTIONS(829), 1, + [41391] = 24, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4077), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, + STATE(1812), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4704), 4, + ACTIONS(4305), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [41045] = 3, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [41486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(4705), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169788,7 +170120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4708), 31, + ACTIONS(4707), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169820,21 +170152,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41098] = 8, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4710), 1, - anon_sym_DOT, - ACTIONS(4712), 1, - anon_sym_LT, - STATE(1933), 1, - sym_arguments, - STATE(1934), 1, - sym_type_arguments, + [41539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 12, + ACTIONS(4709), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169845,17 +170167,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(3406), 27, - sym__automatic_semicolon, + ACTIONS(4711), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169874,12 +170201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [41161] = 3, + anon_sym_implements, + [41592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(4713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169893,7 +170220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 31, + ACTIONS(4715), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169925,11 +170252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41214] = 3, + [41645] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(4717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169943,7 +170270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 31, + ACTIONS(4350), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169975,46 +170302,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41267] = 13, + [41698] = 25, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4578), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4446), 20, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -170023,52 +170372,43 @@ 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_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [41340] = 16, + [41795] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4725), 1, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4688), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4463), 11, - anon_sym_STAR, + ACTIONS(4307), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -170076,12 +170416,12 @@ 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(4465), 18, + ACTIONS(4305), 18, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, @@ -170090,98 +170430,68 @@ 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, - [41419] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + [41874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4719), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4476), 4, - sym__automatic_semicolon, + ACTIONS(4721), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, - [41530] = 3, + 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, + [41927] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4764), 13, + ACTIONS(4723), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170195,7 +170505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4766), 31, + ACTIONS(4725), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170227,20 +170537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41583] = 5, + [41980] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4434), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4768), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4432), 13, + ACTIONS(4727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170254,12 +170555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 24, + ACTIONS(4729), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170279,173 +170586,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41640] = 24, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_implements, + [42033] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4517), 2, + ACTIONS(4731), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 11, - sym__automatic_semicolon, + ACTIONS(4733), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [41735] = 25, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4534), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 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(4552), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 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, + [42086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4517), 2, + ACTIONS(1753), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 10, + ACTIONS(1751), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [41832] = 12, - ACTIONS(89), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4771), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [42139] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 12, + ACTIONS(1879), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170456,15 +170702,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(4480), 22, - sym__automatic_semicolon, + ACTIONS(1881), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -170480,93 +170734,45 @@ 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, - [41903] = 32, + anon_sym_implements, + [42192] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4688), 1, anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4560), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4166), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [42014] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4774), 13, + ACTIONS(4307), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -170575,46 +170781,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(4776), 31, + ACTIONS(4305), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - anon_sym_implements, - [42067] = 3, + [42273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 13, + ACTIONS(4735), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170628,7 +170819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1915), 31, + ACTIONS(4737), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170660,11 +170851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42120] = 3, + [42326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 13, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170678,7 +170869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 31, + ACTIONS(1765), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170710,11 +170901,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42173] = 3, + [42379] = 8, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4549), 1, + anon_sym_LT, + ACTIONS(4739), 1, + anon_sym_DOT, + STATE(2046), 1, + sym_arguments, + STATE(2049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 13, + ACTIONS(3418), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170725,22 +170926,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(1871), 31, + ACTIONS(3406), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170759,12 +170955,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [42226] = 3, + anon_sym_extends, + [42442] = 8, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4549), 1, + anon_sym_LT, + ACTIONS(4741), 1, + anon_sym_DOT, + STATE(2076), 1, + sym_arguments, + STATE(2078), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1752), 13, + ACTIONS(3979), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170775,22 +170981,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(1754), 31, + ACTIONS(3981), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170809,91 +171010,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [42279] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, + anon_sym_extends, + [42505] = 8, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4549), 1, anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, + ACTIONS(4743), 1, + anon_sym_DOT, + STATE(2086), 1, sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4493), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [42390] = 3, + STATE(2088), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4778), 13, + ACTIONS(3985), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170904,22 +171036,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(4780), 31, + ACTIONS(3987), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170938,12 +171065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [42443] = 3, + anon_sym_extends, + [42568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 13, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170957,18 +171084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4784), 31, + ACTIONS(1921), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170988,91 +171115,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [42496] = 32, + anon_sym_PIPE_RBRACE, + [42621] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4495), 4, + ACTIONS(4374), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [42607] = 3, + [42732] = 4, + ACTIONS(4745), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1819), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171086,18 +171215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 31, + ACTIONS(1871), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171117,12 +171245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [42660] = 3, + anon_sym_PIPE_RBRACE, + [42787] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4786), 13, + ACTIONS(1726), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4747), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1724), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171136,18 +171273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4788), 31, + ACTIONS(1728), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171167,91 +171298,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [42713] = 32, + [42844] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4636), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4638), 2, + anon_sym_get, + anon_sym_set, + STATE(3770), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [42921] = 12, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4750), 1, anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4230), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4495), 4, + ACTIONS(4232), 22, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [42824] = 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_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [42992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 13, + ACTIONS(4753), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171265,7 +171437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4638), 31, + ACTIONS(4755), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171297,11 +171469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42877] = 3, + [43045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171315,7 +171487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 31, + ACTIONS(1817), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171347,197 +171519,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42930] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + [43098] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(1753), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4228), 4, - sym__automatic_semicolon, + ACTIONS(1751), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [43041] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4534), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4734), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4507), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [43152] = 15, - ACTIONS(2275), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [43151] = 16, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3830), 1, + ACTIONS(3817), 1, anon_sym_RBRACE, - ACTIONS(4051), 1, + ACTIONS(4241), 1, anon_sym_STAR, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4658), 1, anon_sym_LBRACK, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, + ACTIONS(4249), 2, sym_number, sym_private_property_identifier, - ACTIONS(4586), 2, + ACTIONS(4253), 2, anon_sym_get, anon_sym_set, - STATE(3893), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -171545,12 +171611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -171567,11 +171632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43229] = 3, + [43230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(1899), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171585,7 +171650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1885), 31, + ACTIONS(1901), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171617,11 +171682,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43282] = 3, + [43283] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + ACTIONS(4757), 1, + anon_sym_COMMA, + STATE(1812), 1, + sym_type_arguments, + STATE(4513), 1, + aux_sym_sequence_expression_repeat1, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4759), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43398] = 4, + ACTIONS(1726), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 13, + ACTIONS(1724), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171635,7 +171783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 31, + ACTIONS(1728), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171643,7 +171791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -171667,11 +171814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43335] = 3, + [43453] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 13, + ACTIONS(4440), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4761), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171685,18 +171841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 31, + ACTIONS(4442), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171716,93 +171866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43388] = 34, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(1822), 1, - sym_type_arguments, - STATE(4452), 1, - aux_sym_sequence_expression_repeat1, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4560), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [43503] = 3, + [43510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(4764), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171816,7 +171884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 31, + ACTIONS(4766), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171848,26 +171916,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43556] = 16, + [43563] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4701), 1, + ACTIONS(4623), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -171875,24 +171943,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4566), 2, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 10, + ACTIONS(4307), 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(4067), 18, + ACTIONS(4305), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -171911,38 +171980,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [43635] = 6, - ACTIONS(4019), 1, - anon_sym_extends, + [43644] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4792), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4795), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(1927), 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(3384), 28, + ACTIONS(1925), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171964,90 +172030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43694] = 16, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4628), 1, - anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [43773] = 11, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4712), 1, - anon_sym_LT, - ACTIONS(4798), 1, - anon_sym_QMARK_DOT, - STATE(1893), 1, - sym_type_arguments, - STATE(2238), 1, - sym_arguments, - STATE(4591), 1, - sym_optional_chain, + [43697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3979), 12, + ACTIONS(4768), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172058,16 +172045,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(3981), 24, - sym__automatic_semicolon, + ACTIONS(4770), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172085,500 +172079,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43842] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, + anon_sym_implements, + [43750] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4772), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4528), 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(4372), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4532), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4534), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4734), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - ACTIONS(4760), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [43803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4774), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4168), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [43953] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4776), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4532), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4534), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4734), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - ACTIONS(4760), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [43856] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4778), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4430), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [44064] = 19, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 16, - sym__automatic_semicolon, + ACTIONS(4374), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [44149] = 26, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_implements, + [43909] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(1829), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 10, - sym__automatic_semicolon, + ACTIONS(1831), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [44248] = 27, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4532), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4534), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4732), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [44349] = 17, - ACTIONS(89), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4800), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_implements, + [43962] = 4, + ACTIONS(4780), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(1722), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 18, - sym__automatic_semicolon, + ACTIONS(1720), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [44430] = 23, + anon_sym_PIPE_RBRACE, + [44017] = 21, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4736), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4748), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4754), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 11, + ACTIONS(4307), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4305), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -172588,13 +172395,15 @@ static const uint16_t ts_small_parse_table[] = { 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_satisfies, - [44523] = 3, + [44106] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1847), 13, + ACTIONS(4782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172608,7 +172417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 31, + ACTIONS(4784), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172640,11 +172449,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44576] = 3, + [44159] = 11, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4549), 1, + anon_sym_LT, + ACTIONS(4786), 1, + anon_sym_QMARK_DOT, + STATE(1975), 1, + sym_type_arguments, + STATE(2148), 1, + sym_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4803), 13, + ACTIONS(3965), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172655,23 +172480,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(4805), 31, + ACTIONS(3967), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172689,184 +172507,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [44629] = 24, + [44228] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4736), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4748), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4537), 1, anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 11, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, anon_sym_AMP_AMP, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, anon_sym_satisfies, - [44724] = 25, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - STATE(1822), 1, + ACTIONS(4576), 1, + sym__ternary_qmark, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 10, + ACTIONS(4255), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [44821] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4800), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + [44339] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4788), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -172875,96 +172600,122 @@ 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(4067), 18, - sym__automatic_semicolon, + ACTIONS(4790), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [44900] = 17, + anon_sym_implements, + [44392] = 28, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, + ACTIONS(4307), 1, anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4750), 1, + ACTIONS(4582), 1, + anon_sym_AMP_AMP, + ACTIONS(4584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4800), 1, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 11, + ACTIONS(4578), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 17, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 8, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, 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, - [44981] = 3, + anon_sym_satisfies, + [44495] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 13, + ACTIONS(4792), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172978,7 +172729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4809), 31, + ACTIONS(4794), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173010,33 +172761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45034] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4811), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + [44548] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4796), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173047,15 +172776,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(4446), 20, - sym__automatic_semicolon, + ACTIONS(4798), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -173069,12 +172806,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, anon_sym_satisfies, - [45107] = 3, + anon_sym_implements, + [44601] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1764), 13, + ACTIONS(4800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173088,18 +172829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1762), 31, - sym__automatic_semicolon, + ACTIONS(4802), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173119,12 +172860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [45160] = 3, + anon_sym_implements, + [44654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4814), 13, + ACTIONS(4804), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173138,7 +172879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4816), 31, + ACTIONS(4806), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173170,42 +172911,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45213] = 17, + [44707] = 13, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4701), 1, + ACTIONS(4808), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 11, + ACTIONS(4170), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -173216,9 +172950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 17, + ACTIONS(4172), 20, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -173228,17 +172963,19 @@ 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, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [45294] = 3, + anon_sym_satisfies, + [44780] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4818), 13, + ACTIONS(4811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173252,7 +172989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4820), 31, + ACTIONS(4813), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173284,30 +173021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45347] = 12, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4822), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + [44833] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 12, + ACTIONS(4800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173318,15 +173036,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(4480), 22, - sym__automatic_semicolon, + ACTIONS(4802), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -173342,12 +173068,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, - [45418] = 3, + anon_sym_implements, + [44886] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4825), 13, + ACTIONS(4815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173361,7 +173089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 31, + ACTIONS(4817), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173393,11 +173121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45471] = 3, + [44939] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4827), 13, + ACTIONS(4819), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173411,7 +173139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4829), 31, + ACTIONS(4821), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173443,11 +173171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45524] = 3, + [44992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4831), 13, + ACTIONS(4823), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173461,7 +173189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 31, + ACTIONS(4825), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173493,285 +173221,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45577] = 34, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - ACTIONS(4595), 1, - anon_sym_RBRACE, - ACTIONS(4833), 1, - anon_sym_COMMA, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4560), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4836), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45692] = 21, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4069), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4067), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [45781] = 28, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [45884] = 15, - ACTIONS(2275), 1, + [45045] = 17, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(4827), 1, + anon_sym_STAR, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4831), 1, + anon_sym_async, + ACTIONS(4835), 1, + anon_sym_readonly, + ACTIONS(4839), 1, + sym__automatic_semicolon, + STATE(2625), 1, + sym_statement_block, + STATE(2700), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, + ACTIONS(4833), 2, sym_number, sym_private_property_identifier, - ACTIONS(4586), 2, + ACTIONS(4837), 2, anon_sym_get, anon_sym_set, - STATE(3893), 3, + STATE(2980), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, + ACTIONS(3743), 8, + 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(2307), 21, + ACTIONS(3607), 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, @@ -173779,20 +173285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45961] = 5, + [45126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4844), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4838), 13, + ACTIONS(4800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173806,12 +173303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4842), 24, + ACTIONS(4802), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173831,90 +173334,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46018] = 32, + anon_sym_implements, + [45179] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4499), 4, + ACTIONS(4299), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [46129] = 3, + [45290] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173928,18 +173432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 31, - sym__automatic_semicolon, + ACTIONS(1921), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173959,747 +173463,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [46182] = 32, + anon_sym_implements, + [45343] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4732), 1, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4734), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4742), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4744), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 4, + ACTIONS(4350), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [46293] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4847), 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(4849), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [46346] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4851), 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(4853), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [46399] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4855), 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(4857), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [46452] = 32, + [45454] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4732), 1, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4734), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4742), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4744), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4140), 4, + ACTIONS(4352), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [46563] = 32, + [45565] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4146), 4, + ACTIONS(4376), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [46674] = 32, + [45676] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4164), 4, + ACTIONS(4257), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [46785] = 3, + [45787] = 19, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4859), 13, + ACTIONS(4517), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4861), 31, + ACTIONS(4305), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - anon_sym_implements, - [46838] = 4, - ACTIONS(4863), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1827), 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(1825), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [46893] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1706), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4865), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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(1708), 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, - [46950] = 32, + [45872] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4166), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47061] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, anon_sym_as, - ACTIONS(4526), 1, + ACTIONS(4562), 1, anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4564), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4568), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -174707,144 +173895,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4168), 4, + ACTIONS(4053), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [47172] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, + [45983] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_GT_GT, - ACTIONS(4740), 1, - anon_sym_AMP, - ACTIONS(4742), 1, - anon_sym_CARET, - ACTIONS(4744), 1, - anon_sym_PIPE, - ACTIONS(4748), 1, - anon_sym_PERCENT, - ACTIONS(4750), 1, - anon_sym_STAR_STAR, - ACTIONS(4752), 1, - anon_sym_LT, - ACTIONS(4760), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4758), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4754), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4228), 4, + ACTIONS(4636), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4638), 2, + anon_sym_get, + anon_sym_set, + STATE(3770), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47283] = 14, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4701), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [46060] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4842), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174855,35 +174002,46 @@ 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(4067), 19, - sym__automatic_semicolon, + ACTIONS(4844), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [47358] = 4, - ACTIONS(4434), 1, - anon_sym_EQ, + anon_sym_implements, + [46113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 13, + ACTIONS(4846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174897,7 +174055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 30, + ACTIONS(4848), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174905,6 +174063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -174928,48 +174087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47413] = 32, + [46166] = 21, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -174977,78 +174116,91 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4430), 4, + ACTIONS(4307), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4305), 13, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [47524] = 32, + 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_satisfies, + [46255] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, ACTIONS(4568), 1, - anon_sym_satisfies, + anon_sym_CARET, ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1822), 1, + ACTIONS(4757), 1, + anon_sym_COMMA, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4513), 1, + aux_sym_sequence_expression_repeat1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -175056,158 +174208,295 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + ACTIONS(4850), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4474), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47635] = 3, + [46370] = 28, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4868), 13, + ACTIONS(4517), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4870), 31, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 8, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [46473] = 16, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4658), 1, + anon_sym_LBRACK, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, + [46552] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, anon_sym_AMP_AMP, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4568), 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(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4574), 1, anon_sym_satisfies, - anon_sym_implements, - [47688] = 3, + ACTIONS(4576), 1, + sym__ternary_qmark, + ACTIONS(4757), 1, + anon_sym_COMMA, + STATE(1812), 1, + sym_type_arguments, + STATE(4513), 1, + aux_sym_sequence_expression_repeat1, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1778), 13, + ACTIONS(4517), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1776), 31, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4852), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 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, - anon_sym_PIPE_RBRACE, - [47741] = 19, + [46667] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -175215,129 +174504,121 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4542), 2, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4672), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4854), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 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_satisfies, - [47826] = 32, + [46780] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4499), 4, + ACTIONS(4255), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [47937] = 4, - ACTIONS(4840), 1, - anon_sym_EQ, + [46891] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4838), 13, + ACTIONS(4856), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175351,7 +174632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4842), 30, + ACTIONS(4858), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175359,6 +174640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -175382,11 +174664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47992] = 3, + [46944] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4872), 13, + ACTIONS(4860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175400,7 +174682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4874), 31, + ACTIONS(4862), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175432,63 +174714,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48045] = 3, + [46997] = 16, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_static, + ACTIONS(4868), 1, + anon_sym_readonly, + ACTIONS(4870), 1, + anon_sym_abstract, + ACTIONS(4872), 1, + anon_sym_accessor, + STATE(2644), 1, + sym_accessibility_modifier, + STATE(2741), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4876), 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(4878), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4864), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3354), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [48098] = 4, - ACTIONS(1706), 1, - anon_sym_EQ, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3607), 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, + [47076] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(4874), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175502,7 +174795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 30, + ACTIONS(4876), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175510,6 +174803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -175533,11 +174827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48153] = 3, + [47129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4880), 13, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175551,7 +174845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4882), 31, + ACTIONS(4452), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175583,11 +174877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48206] = 3, + [47182] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4884), 13, + ACTIONS(1839), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175601,7 +174895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4886), 31, + ACTIONS(1841), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175633,114 +174927,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48259] = 32, + [47235] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4732), 1, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4734), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4742), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4744), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4730), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4738), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4474), 4, + ACTIONS(4257), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [48370] = 3, + [47346] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 13, + ACTIONS(4517), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4370), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [47457] = 6, + ACTIONS(4408), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4878), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4881), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4774), 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(1831), 31, + ACTIONS(4776), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -175762,62 +175138,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48423] = 4, - ACTIONS(4888), 1, - sym__automatic_semicolon, + [47516] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 13, + ACTIONS(4517), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1700), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [48478] = 3, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4350), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [47627] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4890), 13, + ACTIONS(1773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175831,7 +175235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4892), 31, + ACTIONS(1775), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175863,48 +175267,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48531] = 33, + [47680] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, ACTIONS(4568), 1, - anon_sym_satisfies, + anon_sym_CARET, ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -175912,167 +175316,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4595), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4894), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48644] = 15, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4584), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4586), 2, - anon_sym_get, - anon_sym_set, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(4352), 4, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 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, - [48721] = 16, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, anon_sym_COMMA, - ACTIONS(3827), 1, anon_sym_RBRACE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4628), 1, - anon_sym_LBRACK, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [48800] = 3, + [47791] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1847), 13, + ACTIONS(1927), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176086,7 +175364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 31, + ACTIONS(1925), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176118,92 +175396,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [48853] = 34, + [47844] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, ACTIONS(4568), 1, - anon_sym_satisfies, + anon_sym_CARET, ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - ACTIONS(4595), 1, - anon_sym_RBRACE, - ACTIONS(4833), 1, - anon_sym_COMMA, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - sym__automatic_semicolon, - anon_sym_SEMI, ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48968] = 3, + ACTIONS(4210), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [47955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 13, + ACTIONS(4884), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176217,7 +175493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 31, + ACTIONS(4886), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -176249,19 +175525,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49021] = 7, - ACTIONS(4712), 1, - anon_sym_LT, - ACTIONS(4896), 1, + [48008] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_is, - STATE(1922), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3973), 12, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, + anon_sym_AMP_AMP, + ACTIONS(4584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4602), 1, + anon_sym_LT, + ACTIONS(4610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4612), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4370), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48119] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4888), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176272,18 +175619,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(3480), 28, - sym__automatic_semicolon, + ACTIONS(4890), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176302,22 +175653,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [49082] = 8, - ACTIONS(4528), 1, + anon_sym_implements, + [48172] = 16, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4894), 1, + anon_sym_static, + ACTIONS(4896), 1, + anon_sym_readonly, + ACTIONS(4898), 1, + anon_sym_abstract, + ACTIONS(4900), 1, + anon_sym_accessor, + STATE(2655), 1, + sym_accessibility_modifier, + STATE(2735), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4892), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3288), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4712), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4900), 1, - anon_sym_DOT, - STATE(1935), 1, - sym_arguments, - STATE(1936), 1, - sym_type_arguments, + anon_sym_QMARK, + ACTIONS(3607), 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, + [48251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3967), 12, + ACTIONS(4902), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176328,17 +175732,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(3969), 27, - sym__automatic_semicolon, + ACTIONS(4904), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176357,102 +175766,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [49145] = 33, + anon_sym_implements, + [48304] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4730), 1, - anon_sym_GT, - ACTIONS(4732), 1, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4734), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4740), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4742), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4744), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4748), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4750), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4752), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4760), 1, + ACTIONS(4610), 1, anon_sym_QMARK_QMARK, - ACTIONS(4762), 1, + ACTIONS(4612), 1, sym__ternary_qmark, - ACTIONS(4904), 1, - anon_sym_in, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4738), 2, + ACTIONS(4580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4746), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4756), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4758), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4754), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4902), 4, + ACTIONS(4372), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [49258] = 8, - ACTIONS(4528), 1, + [48415] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4712), 1, - anon_sym_LT, - ACTIONS(4907), 1, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - STATE(1937), 1, - sym_arguments, - STATE(1938), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, + anon_sym_AMP_AMP, + ACTIONS(4584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4602), 1, + anon_sym_LT, + ACTIONS(4610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4612), 1, + sym__ternary_qmark, + STATE(1812), 1, sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4374), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 12, + ACTIONS(4906), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176463,17 +175940,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(4005), 27, - sym__automatic_semicolon, + ACTIONS(4908), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176492,12 +175974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [49321] = 3, + anon_sym_implements, + [48579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4909), 13, + ACTIONS(4910), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176511,7 +175993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 31, + ACTIONS(4912), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -176543,11 +176025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49374] = 3, + [48632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4913), 13, + ACTIONS(4914), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176561,7 +176043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 31, + ACTIONS(4916), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -176593,91 +176075,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49427] = 16, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4919), 1, - anon_sym_static, - ACTIONS(4921), 1, - anon_sym_readonly, - ACTIONS(4923), 1, - anon_sym_abstract, - ACTIONS(4925), 1, - anon_sym_accessor, - STATE(2655), 1, - sym_accessibility_modifier, - STATE(2733), 1, - sym_override_modifier, + [48685] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4917), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3295), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(1767), 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(1765), 31, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3603), 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, - [49506] = 21, + 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, + [48738] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4540), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4537), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4566), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + sym__ternary_qmark, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -176685,125 +176174,249 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4069), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4067), 13, + ACTIONS(4372), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + [48849] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, anon_sym_AMP_AMP, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, + anon_sym_STAR_STAR, + ACTIONS(4602), 1, + anon_sym_LT, + ACTIONS(4610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4612), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [49595] = 28, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4376), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48960] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4592), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(4610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4612), 1, + sym__ternary_qmark, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 8, + ACTIONS(4053), 4, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [49071] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4918), 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(4920), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [49698] = 3, + anon_sym_implements, + [49124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4927), 13, + ACTIONS(4922), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176817,7 +176430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4929), 31, + ACTIONS(4299), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -176849,35 +176462,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49751] = 14, + [49177] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4750), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4582), 1, + anon_sym_AMP_AMP, + ACTIONS(4584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4586), 1, + anon_sym_GT_GT, + ACTIONS(4590), 1, + anon_sym_AMP, + ACTIONS(4592), 1, + anon_sym_CARET, + ACTIONS(4594), 1, + anon_sym_PIPE, + ACTIONS(4598), 1, + anon_sym_PERCENT, + ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4800), 1, + ACTIONS(4602), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(4610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4612), 1, + sym__ternary_qmark, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + ACTIONS(4578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4283), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [49288] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4924), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176888,85 +176556,145 @@ 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(4067), 19, - sym__automatic_semicolon, + ACTIONS(4926), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [49826] = 19, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, + anon_sym_satisfies, + anon_sym_implements, + [49341] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4928), 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(4930), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3985), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 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(4941), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [49394] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4623), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1812), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1705), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 7, + ACTIONS(4307), 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(4067), 15, + ACTIONS(4305), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_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, @@ -176974,275 +176702,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [49910] = 32, - ACTIONS(829), 1, + [49469] = 26, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4939), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, + ACTIONS(4553), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4568), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4963), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, - sym__ternary_qmark, - STATE(1443), 1, + STATE(1812), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4166), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50020] = 32, - ACTIONS(829), 1, + ACTIONS(4305), 10, + 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_satisfies, + [49568] = 34, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4939), 1, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4947), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4564), 1, anon_sym_AMP_AMP, - ACTIONS(4949), 1, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4568), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1443), 1, + ACTIONS(4672), 1, + anon_sym_RBRACE, + ACTIONS(4932), 1, + anon_sym_COMMA, + STATE(1812), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4297), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4521), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, + ACTIONS(4541), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4543), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4539), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49683] = 27, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, + anon_sym_PERCENT, + ACTIONS(4535), 1, + anon_sym_STAR_STAR, + ACTIONS(4537), 1, + anon_sym_LT, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4564), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_CARET, + ACTIONS(4570), 1, + anon_sym_PIPE, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4228), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50130] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, + ACTIONS(4305), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3961), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [49784] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4077), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4562), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4564), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4568), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4576), 1, sym__ternary_qmark, - ACTIONS(4967), 1, - anon_sym_RPAREN, - STATE(1443), 1, + STATE(1812), 1, sym_type_arguments, - STATE(5038), 1, - aux_sym_array_repeat1, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50244] = 5, + ACTIONS(4297), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [49895] = 7, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4414), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4434), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4969), 5, + ACTIONS(2331), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4432), 13, + anon_sym_extends, + ACTIONS(4417), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1724), 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(4436), 23, + ACTIONS(1728), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, 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, @@ -177262,89 +177062,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50300] = 32, - ACTIONS(829), 1, + [49955] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, ACTIONS(4939), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(4941), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4943), 1, - anon_sym_LT, + anon_sym_GT_GT, ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4474), 3, + ACTIONS(4210), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50065] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + 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(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(2143), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 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(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50410] = 3, + ACTIONS(4971), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [50175] = 6, + ACTIONS(3499), 1, + anon_sym_QMARK, + ACTIONS(3511), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3127), 13, + ACTIONS(3514), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177358,15 +177246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3129), 30, - sym__automatic_semicolon, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177387,93 +177270,143 @@ 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, - [50462] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, + [50233] = 6, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3551), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3549), 5, anon_sym_COMMA, - ACTIONS(3961), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3400), 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(3404), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 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(4077), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [50291] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(4971), 1, - anon_sym_RBRACK, - STATE(1443), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(4973), 1, + anon_sym_RBRACE, + STATE(1447), 1, sym_type_arguments, - STATE(5029), 1, - aux_sym_array_repeat1, - STATE(5056), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50576] = 3, + [50405] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4035), 13, + ACTIONS(1652), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177487,7 +177420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 30, + ACTIONS(1650), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177518,260 +177451,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_is, - [50628] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, + [50457] = 6, + ACTIONS(4547), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4549), 1, anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4007), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4973), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(4644), 1, - aux_sym_array_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50742] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4975), 1, - anon_sym_RBRACK, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50856] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3461), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4977), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [50970] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50515] = 5, + ACTIONS(4549), 1, + anon_sym_LT, + STATE(2033), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4979), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1704), 13, + ACTIONS(4025), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177782,13 +177522,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(1708), 23, + ACTIONS(4027), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177809,155 +177553,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51026] = 13, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + anon_sym_extends, + [50571] = 6, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOT, + STATE(2034), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, - sym_number, - sym_private_property_identifier, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4019), 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(2307), 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, - [51098] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4021), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4981), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(4677), 1, - aux_sym_array_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51212] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4451), 13, + ACTIONS(3131), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177971,13 +177624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 26, + ACTIONS(3133), 30, + 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_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177998,309 +177653,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51266] = 34, - ACTIONS(829), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [50681] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(4983), 1, - anon_sym_RBRACE, - STATE(1443), 1, + ACTIONS(4977), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(4581), 1, + aux_sym_array_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51380] = 32, - ACTIONS(829), 1, + [50795] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4077), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4562), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4564), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4568), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4576), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1812), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4985), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [51490] = 34, - ACTIONS(829), 1, + [50905] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(4987), 1, - anon_sym_RPAREN, - STATE(1443), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(4979), 1, + anon_sym_RBRACK, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, + STATE(3803), 1, aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51604] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3131), 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(3133), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_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(4083), 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [51656] = 7, - ACTIONS(3404), 1, + [51019] = 7, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(4144), 1, + ACTIONS(4330), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, + ACTIONS(4691), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4609), 3, + ACTIONS(4694), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(3400), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178311,7 +177919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 26, + ACTIONS(3404), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -178338,101 +177946,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51716] = 34, - ACTIONS(829), 1, + [51079] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4614), 3, anon_sym_COMMA, - ACTIONS(4106), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + [51189] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(4989), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(4981), 1, anon_sym_RBRACE, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, + STATE(3803), 1, aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51830] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3546), 1, - anon_sym_QMARK, + [51303] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3380), 13, + ACTIONS(4045), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178446,10 +178122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4047), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -178470,13 +178151,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51888] = 4, - ACTIONS(4898), 1, + anon_sym_extends, anon_sym_is, + [51355] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(4636), 2, + sym_number, + sym_private_property_identifier, + STATE(3770), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [51427] = 4, + ACTIONS(4551), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4039), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178490,7 +178232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4015), 29, + ACTIONS(4041), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178520,176 +178262,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51942] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4991), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, + [51481] = 4, + ACTIONS(4983), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4025), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_GT_GT, + anon_sym_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(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52056] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, + ACTIONS(4027), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3961), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4993), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(4699), 1, - aux_sym_array_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52170] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51535] = 6, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4519), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4451), 13, + STATE(2222), 2, + sym_template_string, + sym_arguments, + ACTIONS(4035), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178703,13 +178337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 26, + ACTIONS(4037), 26, + 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_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -178728,36 +178363,35 @@ 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, - [52224] = 13, + [51593] = 13, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3830), 1, + ACTIONS(3817), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, + ACTIONS(4636), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -178789,259 +178423,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [52296] = 34, - ACTIONS(829), 1, + [51665] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4077), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4562), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4564), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4568), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4576), 1, sym__ternary_qmark, - ACTIONS(4995), 1, - anon_sym_RBRACK, - STATE(1443), 1, + STATE(1812), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52410] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4536), 1, - anon_sym_AMP_AMP, - ACTIONS(4538), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, - anon_sym_GT_GT, - ACTIONS(4544), 1, - anon_sym_AMP, - ACTIONS(4546), 1, - anon_sym_CARET, - ACTIONS(4548), 1, - anon_sym_PIPE, - ACTIONS(4552), 1, - anon_sym_PERCENT, - ACTIONS(4554), 1, - anon_sym_STAR_STAR, - ACTIONS(4556), 1, - anon_sym_LT, - ACTIONS(4564), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(4570), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, + ACTIONS(4614), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51775] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4460), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4450), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4530), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4550), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4509), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4558), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52520] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3961), 1, + ACTIONS(4452), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4997), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(4559), 1, - aux_sym_array_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52634] = 6, - ACTIONS(3456), 1, - anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51829] = 4, + ACTIONS(4551), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3380), 13, + ACTIONS(4013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179055,10 +178571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4015), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -179079,18 +178600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52692] = 6, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4528), 1, - anon_sym_LPAREN, + anon_sym_extends, + [51883] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2290), 2, - sym_template_string, - sym_arguments, - ACTIONS(4029), 13, + ACTIONS(4456), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179104,14 +178624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4031), 26, - sym__automatic_semicolon, + ACTIONS(4452), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -179130,22 +178649,22 @@ 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, - [52750] = 6, - ACTIONS(3502), 1, - anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_QMARK, + [51937] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 5, + ACTIONS(4440), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4985), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3380), 13, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179159,7 +178678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4442), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -179183,11 +178702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52808] = 3, + [51993] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3123), 13, + ACTIONS(4678), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4987), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179201,15 +178729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 30, - sym__automatic_semicolon, + ACTIONS(4680), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -179230,586 +178753,714 @@ 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, - [52860] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, + [52049] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1726), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4989), 5, anon_sym_COMMA, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1724), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(4999), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(4793), 1, - aux_sym_array_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(1728), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52974] = 32, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52105] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, - anon_sym_LT, - ACTIONS(4947), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4949), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4493), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53084] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4991), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [52215] = 7, + ACTIONS(3454), 1, + anon_sym_EQ, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4330), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3400), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4947), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3404), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4949), 1, anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4955), 1, - anon_sym_PIPE, - ACTIONS(4963), 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(4965), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52275] = 7, + ACTIONS(4440), 1, + anon_sym_EQ, + ACTIONS(4444), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4392), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4447), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4438), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4442), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4495), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53194] = 34, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52335] = 14, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4995), 1, + anon_sym_static, + ACTIONS(4997), 1, + anon_sym_readonly, + ACTIONS(4999), 1, + anon_sym_abstract, + ACTIONS(5001), 1, + anon_sym_accessor, + STATE(2728), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4993), 2, + sym_number, + sym_private_property_identifier, + STATE(3277), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 20, + 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, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [52409] = 33, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4533), 1, anon_sym_PERCENT, - ACTIONS(4077), 1, + ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(4537), 1, anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4553), 1, + anon_sym_AMP, + ACTIONS(4555), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4562), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4564), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4568), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4572), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4576), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_RBRACK, - STATE(1443), 1, + STATE(1812), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4521), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4541), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4539), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53308] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + [52521] = 8, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4414), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5003), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2331), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1724), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4947), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1728), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4949), 1, anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4955), 1, - anon_sym_PIPE, - ACTIONS(4963), 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(4965), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52583] = 8, + ACTIONS(4440), 1, + anon_sym_EQ, + ACTIONS(4444), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5007), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4392), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4438), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4959), 2, + 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(4961), 2, + ACTIONS(4442), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4507), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53418] = 34, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3961), 1, + anon_sym_satisfies, + [52645] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(5003), 1, - anon_sym_RBRACK, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5029), 1, - aux_sym_array_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53532] = 34, - ACTIONS(829), 1, + ACTIONS(5011), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52755] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(5005), 1, - anon_sym_RPAREN, - STATE(1443), 1, + ACTIONS(5013), 1, + anon_sym_RBRACK, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(4593), 1, + aux_sym_array_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53646] = 8, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4372), 1, - anon_sym_LBRACK, + [52869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 2, + ACTIONS(3123), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5007), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3125), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2335), 4, - sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_of, 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, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(1704), 11, + [52921] = 7, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(2331), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4414), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4417), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1724), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -179817,10 +179468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 22, + ACTIONS(1728), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -179840,428 +179495,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53708] = 34, - ACTIONS(829), 1, + [52981] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(5011), 1, + ACTIONS(5015), 1, anon_sym_RPAREN, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4612), 1, + STATE(4821), 1, aux_sym_array_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53822] = 34, - ACTIONS(829), 1, + [53095] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(5013), 1, - anon_sym_RBRACE, - STATE(1443), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5017), 1, + anon_sym_RBRACK, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, + STATE(3803), 1, aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53936] = 32, - ACTIONS(89), 1, + [53209] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4065), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - STATE(1822), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5019), 1, + anon_sym_RBRACE, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4902), 3, - sym__automatic_semicolon, + [53323] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4636), 2, + sym_number, + sym_private_property_identifier, + STATE(3770), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [54046] = 34, - ACTIONS(829), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [53395] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(5015), 1, + ACTIONS(5021), 1, anon_sym_RBRACK, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4585), 1, - aux_sym_array_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, + STATE(5170), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54160] = 34, - ACTIONS(829), 1, + [53509] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(5017), 1, - anon_sym_RPAREN, - STATE(1443), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5023), 1, + anon_sym_RBRACK, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, + STATE(3803), 1, aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54274] = 8, - ACTIONS(4434), 1, + [53623] = 7, + ACTIONS(4392), 1, + anon_sym_extends, + ACTIONS(4440), 1, anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 2, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4447), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4182), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4432), 11, + ACTIONS(4438), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -180269,10 +179980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 22, + ACTIONS(4442), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -180292,497 +180007,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54336] = 32, - ACTIONS(829), 1, + [53683] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, - anon_sym_LT, - ACTIONS(4947), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4949), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4963), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4961), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4168), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54446] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, - anon_sym_CARET, - ACTIONS(4955), 1, - anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, sym__ternary_qmark, - STATE(1443), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5025), 1, + anon_sym_RBRACK, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4430), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54556] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + [53797] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3740), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, - anon_sym_LT, - ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, - anon_sym_CARET, - ACTIONS(4955), 1, - anon_sym_PIPE, - ACTIONS(4963), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4961), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4146), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54666] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4636), 2, + sym_number, + sym_private_property_identifier, + STATE(3770), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, - anon_sym_CARET, - ACTIONS(4955), 1, - anon_sym_PIPE, - ACTIONS(4963), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [53869] = 6, + ACTIONS(3454), 1, + anon_sym_EQ, + ACTIONS(3499), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4961), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4164), 3, - anon_sym_LBRACE, + ACTIONS(3496), 5, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54776] = 26, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, - anon_sym_LT, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, - anon_sym_CARET, - ACTIONS(4955), 1, - anon_sym_PIPE, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3400), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4961), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4957), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 9, - 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_satisfies, - anon_sym_implements, - [54874] = 27, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4069), 1, anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4943), 1, - anon_sym_LT, - ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, - anon_sym_CARET, - ACTIONS(4955), 1, - anon_sym_PIPE, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4935), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4961), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4957), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [54974] = 7, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(2335), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4372), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4375), 3, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1704), 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(1708), 26, - sym__automatic_semicolon, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -180802,105 +180198,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55034] = 17, - ACTIONS(829), 1, + [53927] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4939), 1, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4081), 1, anon_sym_LT, - STATE(1443), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(5027), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4569), 1, + aux_sym_array_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 8, - anon_sym_BANG, + ACTIONS(4057), 2, 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(4067), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [55114] = 16, - ACTIONS(1584), 1, + [54041] = 13, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4061), 1, - anon_sym_readonly, - STATE(2716), 1, - sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4059), 2, + ACTIONS(4636), 2, sym_number, sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180908,18 +180313,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3603), 18, + ACTIONS(2307), 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, @@ -180927,510 +180337,686 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [55192] = 23, - ACTIONS(829), 1, + [54113] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, - ACTIONS(4939), 1, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + ACTIONS(4081), 1, anon_sym_LT, - STATE(1443), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(5029), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4623), 1, + aux_sym_array_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4957), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 10, - 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_satisfies, - anon_sym_implements, - [55284] = 34, - ACTIONS(829), 1, + [54227] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - ACTIONS(5026), 1, - anon_sym_RBRACK, - STATE(1443), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5031), 1, + anon_sym_COLON, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, + STATE(3803), 1, aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55398] = 24, - ACTIONS(829), 1, + [54341] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, - ACTIONS(4939), 1, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(4951), 1, - anon_sym_AMP, - STATE(1443), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5033), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4957), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 10, - 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_satisfies, - anon_sym_implements, - [55492] = 25, - ACTIONS(829), 1, + [54455] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, - ACTIONS(4939), 1, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(4951), 1, - anon_sym_AMP, - ACTIONS(4953), 1, - anon_sym_CARET, - STATE(1443), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(5035), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(4653), 1, + aux_sym_array_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4957), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 9, - 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_satisfies, - anon_sym_implements, - [55588] = 16, - ACTIONS(829), 1, + [54569] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4939), 1, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4081), 1, anon_sym_LT, - STATE(1443), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5037), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 10, - anon_sym_BANG, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 17, - 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, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [55666] = 17, - ACTIONS(829), 1, + [54683] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4941), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4081), 1, anon_sym_LT, - STATE(1443), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 11, + ACTIONS(4049), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 16, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54797] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(1931), 1, anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_implements, - [55746] = 7, - ACTIONS(3456), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(5041), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(4681), 1, + aux_sym_array_repeat1, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4144), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3380), 11, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54911] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(5043), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(4701), 1, + aux_sym_array_repeat1, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [55806] = 13, - ACTIONS(2275), 1, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55025] = 14, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(5047), 1, + anon_sym_static, + ACTIONS(5049), 1, + anon_sym_readonly, + ACTIONS(5051), 1, + anon_sym_abstract, + ACTIONS(5053), 1, + anon_sym_accessor, + STATE(2768), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, + ACTIONS(5045), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3389), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 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(2307), 23, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181438,15 +181024,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, @@ -181454,11 +181037,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [55878] = 3, + [55099] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5055), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55213] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1666), 13, + ACTIONS(3127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181472,7 +181135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 30, + ACTIONS(3129), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181502,35 +181165,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [55930] = 13, - ACTIONS(2275), 1, + anon_sym_PIPE_RBRACE, + [55265] = 16, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4251), 1, + anon_sym_readonly, + STATE(2701), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4249), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -181538,23 +181209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2307), 23, + ACTIONS(3607), 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, @@ -181562,756 +181228,570 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56002] = 33, - ACTIONS(89), 1, + [55343] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4495), 1, - anon_sym_COMMA, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4536), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4538), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4540), 1, + ACTIONS(4065), 1, anon_sym_GT_GT, - ACTIONS(4544), 1, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(4546), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4548), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4552), 1, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4554), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4556), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(4564), 1, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(4568), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4570), 1, + ACTIONS(4095), 1, sym__ternary_qmark, - STATE(1822), 1, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5057), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4530), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4542), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4550), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4562), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4836), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4558), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56114] = 14, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5030), 1, - anon_sym_static, - ACTIONS(5032), 1, - anon_sym_readonly, - ACTIONS(5034), 1, - anon_sym_abstract, - ACTIONS(5036), 1, - anon_sym_accessor, - STATE(2756), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5028), 2, - sym_number, - sym_private_property_identifier, - STATE(3396), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 20, - 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, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [56188] = 32, - ACTIONS(829), 1, + [55457] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4255), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5038), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [56298] = 32, - ACTIONS(829), 1, + [55567] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, ACTIONS(4939), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(4941), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4943), 1, - anon_sym_LT, + anon_sym_GT_GT, ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(2168), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4957), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5040), 3, + ACTIONS(4257), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - [56408] = 32, - ACTIONS(829), 1, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55677] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4283), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4902), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [56518] = 34, - ACTIONS(829), 1, + [55787] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5042), 1, - anon_sym_COLON, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4297), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56632] = 4, - ACTIONS(4898), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4017), 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(4019), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [55897] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 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, - [56686] = 4, - ACTIONS(5044), 1, - anon_sym_is, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4935), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4025), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4299), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56007] = 19, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4059), 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(4943), 1, + anon_sym_GT_GT, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 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_extends, - [56740] = 7, - ACTIONS(4182), 1, - anon_sym_extends, - ACTIONS(4434), 1, - anon_sym_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4441), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4432), 10, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4935), 2, 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(4436), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [56800] = 7, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2335), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4375), 3, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 7, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1704), 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(1708), 26, + ACTIONS(4305), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [56860] = 34, - ACTIONS(829), 1, + anon_sym_implements, + [56091] = 14, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, + ACTIONS(5059), 1, anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(5046), 1, - anon_sym_RPAREN, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56974] = 6, - ACTIONS(4712), 1, - anon_sym_LT, - ACTIONS(4896), 1, - anon_sym_DOT, - STATE(1922), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3973), 12, + ACTIONS(4307), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182324,434 +181804,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3480), 28, - sym__automatic_semicolon, + ACTIONS(4305), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57032] = 13, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4584), 2, - sym_number, - sym_private_property_identifier, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 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, - [57104] = 14, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5050), 1, - anon_sym_static, - ACTIONS(5052), 1, - anon_sym_readonly, - ACTIONS(5054), 1, - anon_sym_abstract, - ACTIONS(5056), 1, - anon_sym_accessor, - STATE(2727), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5048), 2, - sym_number, - sym_private_property_identifier, - STATE(3281), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 20, - 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, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57178] = 34, - ACTIONS(829), 1, + anon_sym_implements, + [56165] = 26, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4307), 1, anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(5058), 1, - anon_sym_RPAREN, - STATE(1443), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57292] = 34, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4305), 9, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4104), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(5060), 1, - anon_sym_RPAREN, - STATE(1443), 1, - sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57406] = 34, - ACTIONS(829), 1, + anon_sym_implements, + [56263] = 27, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4307), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - ACTIONS(5062), 1, - anon_sym_RPAREN, - STATE(1443), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57520] = 13, - ACTIONS(829), 1, + ACTIONS(4305), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [56363] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5064), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(5059), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4444), 12, - anon_sym_STAR, + ACTIONS(4307), 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(4446), 19, + ACTIONS(4305), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -182761,8 +182023,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, @@ -182771,214 +182031,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [57592] = 16, - ACTIONS(829), 1, + [56443] = 23, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5067), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4463), 11, + ACTIONS(4935), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 17, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 10, 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_satisfies, anon_sym_implements, - [57670] = 32, - ACTIONS(829), 1, + [56535] = 24, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, - ACTIONS(4939), 1, - anon_sym_PERCENT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, ACTIONS(4943), 1, - anon_sym_LT, + anon_sym_GT_GT, ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, anon_sym_AMP, - ACTIONS(4953), 1, - anon_sym_CARET, ACTIONS(4955), 1, - anon_sym_PIPE, - ACTIONS(4963), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, - sym__ternary_qmark, - STATE(1443), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4476), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57780] = 12, - ACTIONS(829), 1, + ACTIONS(4305), 10, + 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_satisfies, + anon_sym_implements, + [56629] = 25, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5070), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 12, - anon_sym_STAR, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4307), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4480), 21, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 9, 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, anon_sym_implements, - [57850] = 5, - ACTIONS(4712), 1, + [56725] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(5059), 1, anon_sym_LT, - STATE(1928), 1, + STATE(1447), 1, sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 12, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4935), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -182987,52 +182283,62 @@ 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(4025), 29, - sym__automatic_semicolon, + ACTIONS(4305), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [57906] = 6, - ACTIONS(4528), 1, + anon_sym_implements, + [56803] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(5073), 1, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, - STATE(1929), 1, - sym_arguments, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(5059), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -183041,92 +182347,80 @@ 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(4041), 27, - sym__automatic_semicolon, + ACTIONS(4305), 16, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [57964] = 21, - ACTIONS(829), 1, + anon_sym_implements, + [56883] = 21, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4939), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4941), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4943), 1, + ACTIONS(4959), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4957), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4069), 5, + ACTIONS(4307), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 12, + ACTIONS(4305), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -183139,73 +182433,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_satisfies, anon_sym_implements, - [58052] = 28, - ACTIONS(829), 1, + [56971] = 28, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_GT_GT, + ACTIONS(4307), 1, + anon_sym_BANG, ACTIONS(4939), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(4941), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4943), 1, - anon_sym_LT, + anon_sym_GT_GT, ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4957), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4305), 7, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -183213,517 +182507,1154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_satisfies, anon_sym_implements, - [58154] = 32, - ACTIONS(829), 1, + [57073] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, ACTIONS(4939), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(4941), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4943), 1, - anon_sym_LT, + anon_sym_GT_GT, ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4499), 3, + ACTIONS(4350), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58264] = 32, - ACTIONS(829), 1, + [57183] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, ACTIONS(4939), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(4941), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4943), 1, - anon_sym_LT, + anon_sym_GT_GT, ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4501), 3, + ACTIONS(4352), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58374] = 34, - ACTIONS(829), 1, + [57293] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5075), 1, - anon_sym_RPAREN, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(3845), 1, - aux_sym_sequence_expression_repeat1, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(4370), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58488] = 5, + [57403] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + 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(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5077), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4838), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4935), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4842), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4372), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57513] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 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(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4374), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [57623] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [58544] = 7, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(4438), 1, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + 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(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4441), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4432), 10, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4935), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4376), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57733] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 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(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4053), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4961), 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, - [58604] = 32, - ACTIONS(829), 1, + [57843] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_GT_GT, ACTIONS(4939), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(4941), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4943), 1, - anon_sym_LT, + anon_sym_GT_GT, ACTIONS(4947), 1, - anon_sym_AMP_AMP, - ACTIONS(4949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4951), 1, anon_sym_AMP, - ACTIONS(4953), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4963), 1, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4965), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4931), 2, + ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4935), 2, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4937), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4959), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4140), 3, + ACTIONS(4388), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4957), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58714] = 14, - ACTIONS(829), 1, + [57953] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4941), 1, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4081), 1, anon_sym_LT, - STATE(1443), 1, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5062), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 12, - anon_sym_STAR, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58067] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(5064), 1, + anon_sym_RBRACK, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + STATE(5170), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 18, - sym__ternary_qmark, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58181] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5066), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58295] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5068), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [58409] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, anon_sym_satisfies, - anon_sym_implements, - [58788] = 5, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, + anon_sym_COMMA, + ACTIONS(5070), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 2, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58523] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(4196), 7, - sym__automatic_semicolon, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + ACTIONS(4267), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(5072), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_type_arguments, + STATE(3803), 1, + aux_sym_sequence_expression_repeat1, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58637] = 13, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3380), 11, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4170), 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(3384), 22, + ACTIONS(4172), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - 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, @@ -183737,68 +183668,42 @@ 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, - [58843] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, + anon_sym_implements, + [58709] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5077), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 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, - [58896] = 4, - ACTIONS(3404), 1, - anon_sym_EQ, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4199), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -183807,21 +183712,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(3384), 28, + ACTIONS(4201), 17, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -183835,19 +183731,31 @@ 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_implements, + [58787] = 12, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [58949] = 5, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - STATE(2181), 1, - sym_arguments, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5080), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 13, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4230), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183858,20 +183766,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(4472), 27, - sym__automatic_semicolon, + ACTIONS(4232), 21, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - 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, @@ -183887,43 +183788,41 @@ 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, - [59004] = 7, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4798), 1, - anon_sym_QMARK_DOT, - STATE(4591), 1, - sym_optional_chain, + anon_sym_implements, + [58857] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(4402), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4404), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3400), 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(1813), 25, + ACTIONS(3404), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -183941,91 +183840,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59063] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(2715), 1, - sym_override_modifier, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [59146] = 4, - ACTIONS(4025), 1, + [58912] = 6, + ACTIONS(5083), 1, + anon_sym_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(4195), 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(4505), 28, + ACTIONS(4197), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184054,11 +183891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59199] = 3, + [58969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184072,7 +183909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4138), 29, + ACTIONS(4208), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184102,11 +183939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59250] = 3, + [59020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 13, + ACTIONS(4212), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184120,7 +183957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4025), 29, + ACTIONS(4214), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184150,17 +183987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59301] = 6, - ACTIONS(5081), 1, - anon_sym_AMP, + [59071] = 6, ACTIONS(5083), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 11, + ACTIONS(4212), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184172,7 +184009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 28, + ACTIONS(4214), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184201,7 +184038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59358] = 3, + [59128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -184249,11 +184086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59409] = 3, + [59179] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 13, + ACTIONS(2325), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184267,7 +184104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4019), 29, + ACTIONS(2323), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184297,13 +184134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59460] = 4, - ACTIONS(5087), 1, - anon_sym_DOT, + [59230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 13, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184317,7 +184152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4150), 28, + ACTIONS(4218), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184327,6 +184162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184346,11 +184182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59513] = 3, + [59281] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184364,7 +184200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 29, + ACTIONS(4222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184394,13 +184230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59564] = 4, - ACTIONS(5089), 1, - anon_sym_LBRACK, + [59332] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184414,7 +184248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 28, + ACTIONS(4222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184423,6 +184257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184443,11 +184278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59617] = 3, + [59383] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184461,7 +184296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4162), 29, + ACTIONS(4222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184491,15 +184326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59668] = 4, - ACTIONS(5095), 1, - sym_regex_flags, + [59434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5091), 16, + ACTIONS(4224), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -184512,17 +184344,16 @@ 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(5093), 25, + ACTIONS(4226), 29, + 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_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184537,41 +184368,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, - [59721] = 6, - ACTIONS(4144), 1, + anon_sym_satisfies, anon_sym_extends, + [59485] = 3, 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(3380), 10, + ACTIONS(4224), 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(3384), 26, + ACTIONS(4226), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184591,38 +184421,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59778] = 6, - ACTIONS(4019), 1, anon_sym_extends, + [59536] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4792), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4795), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(4224), 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(3384), 26, + ACTIONS(4226), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184642,39 +184469,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59835] = 7, - ACTIONS(3488), 1, - anon_sym_EQ, - ACTIONS(4144), 1, anon_sym_extends, + [59587] = 3, 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(3380), 10, + ACTIONS(4237), 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(3384), 25, + ACTIONS(4239), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184694,29 +184517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59894] = 6, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, anon_sym_extends, + [59638] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 11, + ACTIONS(4237), 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(4491), 28, + ACTIONS(4239), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184745,11 +184565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59951] = 3, + anon_sym_extends, + [59689] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184763,7 +184584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2335), 29, + ACTIONS(4239), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184793,13 +184614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60002] = 4, - ACTIONS(4710), 1, - anon_sym_DOT, + [59740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 13, + ACTIONS(4259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184813,7 +184632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3406), 28, + ACTIONS(4261), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184823,6 +184642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184842,13 +184662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60055] = 4, - ACTIONS(5097), 1, - anon_sym_DOT, + [59791] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(4263), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184862,7 +184680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 28, + ACTIONS(4265), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184872,6 +184690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184891,11 +184710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60108] = 3, + [59842] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 13, + ACTIONS(4271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184909,7 +184728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4178), 29, + ACTIONS(4273), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184939,41 +184758,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60159] = 9, - ACTIONS(4019), 1, - anon_sym_extends, - ACTIONS(4792), 1, - anon_sym_LBRACK, - ACTIONS(5104), 1, - anon_sym_RPAREN, + [59893] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5099), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5101), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3380), 11, + ACTIONS(2329), 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(3384), 22, + ACTIONS(2327), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184993,41 +184805,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60222] = 9, - ACTIONS(3456), 1, - anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, - anon_sym_LBRACK, + anon_sym_extends, + [59944] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4144), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 11, + ACTIONS(4275), 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(3384), 22, + ACTIONS(4277), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185047,11 +184853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60285] = 3, + anon_sym_extends, + [59995] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185065,7 +184872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4182), 29, + ACTIONS(4281), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185095,11 +184902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60336] = 3, + [60046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185113,7 +184920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4186), 29, + ACTIONS(4281), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185143,18 +184950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60387] = 4, - ACTIONS(5081), 1, - anon_sym_AMP, + [60097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 12, + ACTIONS(4279), 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, @@ -185162,7 +184968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4190), 29, + ACTIONS(4281), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185192,11 +184998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60440] = 3, + [60148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185210,7 +185016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4196), 29, + ACTIONS(4287), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185240,11 +185046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60491] = 3, + [60199] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4198), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185258,7 +185064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4200), 29, + ACTIONS(4287), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185288,11 +185094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60542] = 3, + [60250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185306,7 +185112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4204), 29, + ACTIONS(4287), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185336,29 +185142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60593] = 6, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, + [60301] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 11, + ACTIONS(4293), 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(4208), 28, + ACTIONS(4295), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185387,30 +185189,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60650] = 6, - ACTIONS(4156), 1, anon_sym_extends, - ACTIONS(5089), 1, - anon_sym_LBRACK, + [60352] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4214), 11, + ACTIONS(4293), 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(4216), 27, + ACTIONS(4295), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185419,6 +185217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185438,13 +185237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60707] = 4, - ACTIONS(5108), 1, anon_sym_extends, + [60403] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4293), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185458,7 +185256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 28, + ACTIONS(4295), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185487,13 +185285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60760] = 4, - ACTIONS(5089), 1, - anon_sym_LBRACK, + anon_sym_extends, + [60454] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4301), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185507,7 +185304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 28, + ACTIONS(4303), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185516,6 +185313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185536,25 +185334,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60813] = 3, + [60505] = 6, + ACTIONS(5083), 1, + anon_sym_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4230), 13, + ACTIONS(4309), 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(4232), 29, + ACTIONS(4311), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185583,12 +185385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60864] = 3, + [60562] = 5, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4780), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(1722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185602,8 +185407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4236), 29, - sym__automatic_semicolon, + ACTIONS(1720), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185631,35 +185435,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60915] = 3, + [60617] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4049), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5089), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60726] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + STATE(2719), 1, + sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [60809] = 6, + ACTIONS(4697), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4041), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4700), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3400), 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(4240), 29, - sym__automatic_semicolon, + ACTIONS(3404), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185679,12 +185627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60966] = 3, + [60866] = 4, + ACTIONS(5093), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 13, + ACTIONS(4336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185698,7 +185647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4049), 29, + ACTIONS(4338), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185708,7 +185657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185728,88 +185676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61017] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [60919] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5110), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61126] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2331), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185823,7 +185694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2329), 29, + ACTIONS(4344), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185853,82 +185724,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61177] = 3, + [60970] = 9, + ACTIONS(2331), 1, + anon_sym_extends, + ACTIONS(4414), 1, + anon_sym_LBRACK, + ACTIONS(5095), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1726), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4417), 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(4244), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4989), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [61228] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4246), 13, + anon_sym_COLON, + ACTIONS(1724), 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(4248), 29, - sym__automatic_semicolon, + ACTIONS(1728), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185948,12 +185778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61279] = 3, + [61033] = 4, + ACTIONS(5098), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185967,7 +185798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4252), 29, + ACTIONS(4344), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185976,7 +185807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185997,11 +185827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61330] = 3, + [61086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4254), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186015,7 +185845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4256), 29, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186045,82 +185875,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61381] = 3, + [61137] = 9, + ACTIONS(4392), 1, + anon_sym_extends, + ACTIONS(4444), 1, + anon_sym_LBRACK, + ACTIONS(5100), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4440), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4447), 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(4260), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4985), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [61432] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4262), 13, + anon_sym_COLON, + ACTIONS(4438), 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(4264), 29, - sym__automatic_semicolon, + ACTIONS(4442), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186140,13 +185929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61483] = 3, + [61200] = 4, + ACTIONS(5107), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 13, + ACTIONS(5103), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -186159,16 +185950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4268), 29, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5105), 25, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186183,17 +185975,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, - anon_sym_extends, - [61534] = 3, + [61253] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 13, + ACTIONS(4324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186207,7 +185996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4272), 29, + ACTIONS(4326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186237,11 +186026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61585] = 3, + [61304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 13, + ACTIONS(4025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186255,7 +186044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4276), 29, + ACTIONS(4027), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186285,13 +186074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61636] = 4, - ACTIONS(4282), 1, - anon_sym_DOT, + [61355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186305,7 +186092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 28, + ACTIONS(4015), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186315,6 +186102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186334,11 +186122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61689] = 3, + [61406] = 4, + ACTIONS(4027), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3592), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186352,7 +186142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 29, + ACTIONS(4320), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186381,26 +186171,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [61459] = 6, + ACTIONS(5083), 1, + anon_sym_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, anon_sym_extends, - [61740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3594), 13, + ACTIONS(4356), 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(3424), 29, + ACTIONS(4358), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186429,75 +186222,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61791] = 4, - ACTIONS(4285), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4278), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + [61516] = 6, + ACTIONS(5083), 1, anon_sym_AMP, + ACTIONS(5085), 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(4280), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + ACTIONS(5087), 1, anon_sym_extends, - [61844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4360), 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(4290), 29, + ACTIONS(4362), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186526,18 +186273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61895] = 6, - ACTIONS(5081), 1, - anon_sym_AMP, + [61573] = 6, ACTIONS(5083), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 11, + ACTIONS(4318), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186549,7 +186295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 28, + ACTIONS(4320), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186578,11 +186324,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61952] = 3, + [61630] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 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(1991), 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, + [61683] = 4, + ACTIONS(3402), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186596,16 +186393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4294), 29, - sym__automatic_semicolon, + ACTIONS(3404), 28, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186625,35 +186422,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62003] = 3, + [61736] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(2719), 1, + sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [61819] = 6, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4330), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4298), 29, - sym__automatic_semicolon, + ACTIONS(3404), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186673,12 +186537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62054] = 3, + [61876] = 7, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4786), 1, + anon_sym_QMARK_DOT, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186692,7 +186563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4302), 29, + ACTIONS(1789), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186701,9 +186572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, 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, @@ -186721,12 +186589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62105] = 3, + [61935] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186740,7 +186607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4306), 29, + ACTIONS(4330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186770,85 +186637,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62156] = 3, + [61986] = 14, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(3847), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(5115), 1, + anon_sym_RBRACE, + STATE(4848), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, - anon_sym_STAR, + ACTIONS(5117), 2, + sym_number, + sym_private_property_identifier, + STATE(4834), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5634), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5760), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5111), 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, + [62059] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, anon_sym_GT_GT, + ACTIONS(5133), 1, anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4310), 29, - sym__automatic_semicolon, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5123), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5131), 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(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 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, - [62207] = 4, - ACTIONS(5081), 1, - anon_sym_AMP, + [62168] = 7, + ACTIONS(3410), 1, + anon_sym_DOT, + ACTIONS(3414), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 12, + ACTIONS(3418), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3406), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3400), 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(4314), 29, - sym__automatic_semicolon, + ACTIONS(3404), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186866,35 +186825,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62227] = 6, + ACTIONS(4330), 1, anon_sym_extends, - [62260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(4691), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4318), 29, + ACTIONS(3404), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186914,35 +186876,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62311] = 3, + [62284] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4098), 13, + ACTIONS(4402), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4404), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3400), 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(4100), 29, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186962,35 +186926,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62362] = 3, + [62339] = 6, + ACTIONS(4878), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 13, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4881), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4774), 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(2325), 29, - sym__automatic_semicolon, + ACTIONS(4776), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187010,35 +186977,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62413] = 3, + [62396] = 14, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5157), 1, + anon_sym_STAR, + ACTIONS(5159), 1, + anon_sym_async, + ACTIONS(5163), 1, + anon_sym_readonly, + STATE(2705), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(5161), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5165), 2, + anon_sym_get, + anon_sym_set, + STATE(2964), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [62469] = 12, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_abstract, + ACTIONS(5157), 1, anon_sym_STAR, + ACTIONS(5159), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5161), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5165), 2, + anon_sym_get, + anon_sym_set, + STATE(2964), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3607), 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, + [62538] = 6, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4697), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4700), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3400), 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(4322), 29, + ACTIONS(3404), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187058,35 +187144,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62464] = 3, + [62595] = 14, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5167), 1, + anon_sym_STAR, + ACTIONS(5169), 1, + anon_sym_async, + ACTIONS(5173), 1, + anon_sym_readonly, + STATE(2708), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(5171), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5175), 2, + anon_sym_get, + anon_sym_set, + STATE(2986), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [62668] = 12, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5167), 1, anon_sym_STAR, + ACTIONS(5169), 1, + anon_sym_async, + ACTIONS(5179), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5175), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5177), 2, + sym_number, + sym_private_property_identifier, + STATE(2987), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3607), 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, + [62737] = 7, + ACTIONS(3448), 1, + anon_sym_EQ, + ACTIONS(4330), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4691), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4694), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3400), 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(4326), 29, + ACTIONS(3404), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187106,35 +187312,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62796] = 14, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_async, + ACTIONS(5187), 1, + anon_sym_readonly, + STATE(2712), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5185), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5189), 2, + anon_sym_get, + anon_sym_set, + STATE(3057), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [62869] = 9, + ACTIONS(4041), 1, anon_sym_extends, - [62515] = 3, + ACTIONS(4697), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4700), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5191), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5193), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3400), 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(4330), 29, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187154,35 +187425,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62566] = 3, + [62932] = 9, + ACTIONS(3499), 1, + anon_sym_QMARK, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(3514), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4330), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4334), 29, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187202,35 +187479,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62995] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(2719), 1, + sym_override_modifier, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [63078] = 9, + ACTIONS(2331), 1, anon_sym_extends, - [62617] = 3, + ACTIONS(4414), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(1726), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4417), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4747), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1724), 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(4330), 29, - sym__automatic_semicolon, + ACTIONS(1728), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187250,35 +187597,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63141] = 9, + ACTIONS(4392), 1, anon_sym_extends, - [62668] = 3, + ACTIONS(4444), 1, + anon_sym_LBRACK, + ACTIONS(5007), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4440), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4761), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4438), 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(4334), 29, - sym__automatic_semicolon, + ACTIONS(4442), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187298,12 +187651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62719] = 3, + [63204] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(4460), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187317,15 +187674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4338), 29, - sym__automatic_semicolon, + ACTIONS(4452), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -187346,12 +187700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62770] = 3, + [63257] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 13, + ACTIONS(4456), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187365,15 +187723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4342), 29, - sym__automatic_semicolon, + ACTIONS(4452), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -187394,35 +187749,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63310] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(2719), 1, + sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [63393] = 10, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(2331), 1, anon_sym_extends, - [62821] = 3, + ACTIONS(2333), 1, + anon_sym_QMARK, + ACTIONS(4414), 1, + anon_sym_LBRACK, + ACTIONS(4989), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(4417), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5003), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1724), 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(4338), 29, - sym__automatic_semicolon, + ACTIONS(1728), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187442,35 +187868,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63458] = 10, + ACTIONS(4390), 1, + anon_sym_QMARK, + ACTIONS(4392), 1, anon_sym_extends, - [62872] = 3, + ACTIONS(4440), 1, + anon_sym_EQ, + ACTIONS(4444), 1, + anon_sym_LBRACK, + ACTIONS(4985), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 13, + ACTIONS(4447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5007), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4438), 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(4342), 29, - sym__automatic_semicolon, + ACTIONS(4442), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187490,35 +187923,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62923] = 3, + [63523] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(2719), 1, + sym_override_modifier, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [63606] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 13, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4691), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4330), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3400), 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(4350), 29, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187538,35 +188038,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62974] = 3, + [63663] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 13, + ACTIONS(4881), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4878), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4408), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4774), 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(4346), 29, - sym__automatic_semicolon, + ACTIONS(4776), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187586,35 +188089,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63025] = 3, + [63720] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 13, + ACTIONS(4700), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4697), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4041), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3400), 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(4350), 29, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187634,12 +188140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63076] = 3, + [63777] = 5, + ACTIONS(4519), 1, + anon_sym_LPAREN, + STATE(2188), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 13, + ACTIONS(4289), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187653,13 +188162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4346), 29, + ACTIONS(4291), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -187682,12 +188190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63127] = 3, + [63832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 13, + ACTIONS(2333), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187701,7 +188208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4354), 29, + ACTIONS(2331), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187731,11 +188238,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63178] = 3, + [63883] = 4, + ACTIONS(4678), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 13, + ACTIONS(4676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187749,7 +188258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4358), 29, + ACTIONS(4680), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187778,30 +188287,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63229] = 6, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, + [63936] = 4, + ACTIONS(3475), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 11, + ACTIONS(3400), 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(4362), 28, + ACTIONS(3404), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187830,25 +188336,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63286] = 3, + [63989] = 14, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(3847), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(5206), 1, + anon_sym_RBRACE, + STATE(4759), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5117), 2, + sym_number, + sym_private_property_identifier, + STATE(4861), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5634), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5760), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5204), 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, + [64062] = 6, + ACTIONS(5083), 1, + anon_sym_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 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(4366), 29, + ACTIONS(4348), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187877,12 +188446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63337] = 3, + [64119] = 4, + ACTIONS(4739), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(3418), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187896,7 +188466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4370), 29, + ACTIONS(3406), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187906,7 +188476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187926,154 +188495,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63388] = 6, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4368), 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(4370), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [64172] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, anon_sym_AMP_AMP, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [63445] = 3, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4126), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4128), 29, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5208), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64281] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, anon_sym_AMP_AMP, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 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, - [63496] = 3, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 13, + ACTIONS(4255), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2321), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64390] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, anon_sym_AMP_AMP, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4257), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 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, - [63547] = 3, + [64499] = 4, + ACTIONS(5210), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -188091,7 +188746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4380), 29, + ACTIONS(4380), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188101,7 +188756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188121,59 +188775,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63598] = 3, + [64552] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4283), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 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, - [63649] = 3, + [64661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188187,7 +188870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 29, + ACTIONS(4386), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188217,130 +188900,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63700] = 3, + [64712] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4297), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64821] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, anon_sym_AMP_AMP, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4299), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [64930] = 19, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [63751] = 3, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4388), 29, + ACTIONS(4305), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, + [65013] = 9, + ACTIONS(4041), 1, anon_sym_extends, - [63802] = 3, + ACTIONS(4697), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4700), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5191), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5212), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3400), 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(4388), 29, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188360,12 +189172,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63853] = 3, + [65076] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188376,67 +189211,61 @@ 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(4388), 29, + ACTIONS(4305), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [63904] = 3, + [65149] = 9, + ACTIONS(3454), 1, + anon_sym_EQ, + ACTIONS(3499), 1, + anon_sym_QMARK, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(3496), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4330), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4392), 29, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188456,205 +189285,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63955] = 3, + [65212] = 26, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [65309] = 27, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5125), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 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, + ACTIONS(4305), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [64006] = 3, + [65408] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4392), 29, + ACTIONS(4305), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [64057] = 3, + [65487] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [64108] = 3, + [65578] = 24, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, - anon_sym_STAR, + ACTIONS(4307), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 29, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [65671] = 25, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 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, + ACTIONS(4305), 8, + 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_satisfies, - anon_sym_extends, - [64159] = 3, + [65766] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -188663,47 +189739,61 @@ 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(4404), 29, + ACTIONS(4305), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, + [65843] = 17, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_satisfies, - anon_sym_extends, - [64210] = 3, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2319), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -188712,92 +189802,168 @@ 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(2317), 29, + ACTIONS(4305), 15, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [65922] = 21, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [64261] = 3, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4307), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 29, + ACTIONS(4305), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [66009] = 28, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5125), 1, anon_sym_AMP_AMP, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 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, + ACTIONS(4305), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [64312] = 3, + [66110] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4039), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188811,7 +189977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 29, + ACTIONS(4041), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188841,59 +190007,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64363] = 3, + [66161] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4350), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66270] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, anon_sym_AMP_AMP, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4352), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 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, - [64414] = 3, + [66379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188907,7 +190179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 29, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188937,36 +190209,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64465] = 3, + [66430] = 7, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(3406), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3418), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4416), 29, + ACTIONS(3404), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -188984,26 +190261,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [64516] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4414), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + [66489] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4370), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66598] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66707] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4374), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66816] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66925] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4053), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67034] = 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, + anon_sym_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(4416), 29, + ACTIONS(4396), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189033,17 +190694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64567] = 3, + [67085] = 4, + ACTIONS(5083), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(4398), 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, @@ -189051,7 +190713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189081,11 +190743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64618] = 3, + [67138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189099,7 +190761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4420), 29, + ACTIONS(4404), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189129,11 +190791,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64669] = 3, + [67189] = 33, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + ACTIONS(5222), 1, + anon_sym_SEMI, + ACTIONS(5224), 1, + sym__automatic_semicolon, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67300] = 12, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4658), 1, + anon_sym_LBRACK, + ACTIONS(4827), 1, + anon_sym_STAR, + ACTIONS(4831), 1, + anon_sym_async, + ACTIONS(4872), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4833), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4837), 2, + anon_sym_get, + anon_sym_set, + STATE(2980), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [67369] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4185), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189147,7 +190944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4420), 29, + ACTIONS(4187), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189177,11 +190974,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64720] = 3, + [67420] = 6, + ACTIONS(4408), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4878), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4881), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4774), 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(4776), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, + [67477] = 4, + ACTIONS(4460), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189195,7 +191045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4420), 29, + ACTIONS(4452), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189224,12 +191074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [64771] = 3, + [67530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189243,7 +191092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4424), 29, + ACTIONS(4408), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189273,29 +191122,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64822] = 6, - ACTIONS(5081), 1, + [67581] = 33, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, anon_sym_AMP, - ACTIONS(5083), 1, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + ACTIONS(5226), 1, + anon_sym_SEMI, + ACTIONS(5228), 1, + sym__automatic_semicolon, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67692] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4426), 11, + ACTIONS(4410), 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(4428), 28, + ACTIONS(4412), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189324,29 +191247,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64879] = 5, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4888), 1, - sym__automatic_semicolon, + anon_sym_extends, + [67743] = 6, + ACTIONS(5083), 1, + anon_sym_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 13, + ACTIONS(4420), 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(1700), 27, + ACTIONS(4422), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -189374,146 +191299,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64934] = 14, - ACTIONS(170), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, + [67800] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(5116), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_AMP_AMP, + ACTIONS(4063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_GT_GT, + ACTIONS(4069), 1, + anon_sym_AMP, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_PERCENT, + ACTIONS(4079), 1, + anon_sym_STAR_STAR, + ACTIONS(4081), 1, + anon_sym_LT, + ACTIONS(4089), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5118), 2, - sym_number, - sym_private_property_identifier, - STATE(4771), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5548), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5112), 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, - [65007] = 19, - ACTIONS(241), 1, + ACTIONS(4049), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4067), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4672), 2, anon_sym_COMMA, - ACTIONS(725), 1, anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(2715), 1, - sym_override_modifier, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [65090] = 6, - ACTIONS(4792), 1, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4083), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67909] = 6, + ACTIONS(4344), 1, + anon_sym_extends, + ACTIONS(5098), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4795), 3, - anon_sym_GT, + ACTIONS(4342), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(4424), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -189521,14 +191399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 26, + ACTIONS(4426), 27, + 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_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189548,118 +191427,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65147] = 32, - ACTIONS(89), 1, + [67966] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, + ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(4065), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(4069), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(4073), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(4081), 1, anon_sym_LT, - ACTIONS(5154), 1, + ACTIONS(4089), 1, anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4095), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4049), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5124), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5132), 2, + ACTIONS(4067), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(4075), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(4085), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(4087), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4560), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(4083), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65256] = 9, - ACTIONS(2335), 1, + [68075] = 4, + ACTIONS(5230), 1, anon_sym_extends, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4375), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4979), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1704), 11, + ACTIONS(4428), 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(1708), 22, + ACTIONS(4430), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189679,41 +191553,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65319] = 9, - ACTIONS(4182), 1, - anon_sym_extends, - ACTIONS(4438), 1, + [68128] = 4, + ACTIONS(5098), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4434), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4441), 2, + ACTIONS(4434), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4969), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4436), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4432), 11, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, + anon_sym_extends, + [68181] = 6, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(1730), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1720), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1724), 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(4436), 22, + ACTIONS(1728), 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, @@ -189733,11 +191653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65382] = 3, + [68238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189751,7 +191671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4015), 29, + ACTIONS(4460), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189781,29 +191701,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65433] = 6, - ACTIONS(5081), 1, + [68289] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4462), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5083), 1, anon_sym_PIPE, - ACTIONS(5085), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4464), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [68340] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 11, + ACTIONS(4466), 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(4457), 28, + ACTIONS(4468), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189832,29 +191796,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65490] = 6, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, anon_sym_extends, + [68391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 11, + ACTIONS(4332), 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(4461), 28, + ACTIONS(4334), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189883,9 +191844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65547] = 19, + anon_sym_extends, + [68442] = 19, ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, @@ -189896,19 +191860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2315), 1, anon_sym_override, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5091), 1, anon_sym_STAR, - ACTIONS(5164), 1, - anon_sym_RBRACE, - STATE(2715), 1, + STATE(2719), 1, sym_override_modifier, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -189919,11 +191881,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -189947,163 +191909,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65630] = 14, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5166), 1, - anon_sym_STAR, - ACTIONS(5168), 1, - anon_sym_async, - ACTIONS(5172), 1, - anon_sym_readonly, - STATE(2697), 1, - sym_override_modifier, + [68525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5170), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5174), 2, - anon_sym_get, - anon_sym_set, - STATE(2993), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(2337), 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(2335), 29, 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_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3603), 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, - [65703] = 12, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, anon_sym_LBRACK, - ACTIONS(5056), 1, - anon_sym_abstract, - ACTIONS(5166), 1, - anon_sym_STAR, - ACTIONS(5168), 1, - anon_sym_async, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [68576] = 4, + ACTIONS(1726), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5170), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5174), 2, - anon_sym_get, - anon_sym_set, - STATE(2993), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(1724), 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(1728), 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_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3603), 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, - [65772] = 14, - ACTIONS(1584), 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, + [68629] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5176), 1, + ACTIONS(5091), 1, anon_sym_STAR, - ACTIONS(5178), 1, - anon_sym_async, - ACTIONS(5182), 1, - anon_sym_readonly, - STATE(2713), 1, + STATE(2719), 1, sym_override_modifier, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5180), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5184), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(2981), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 18, + ACTIONS(2307), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -190122,97 +192070,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65845] = 12, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, + [68712] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(5176), 1, - anon_sym_STAR, - ACTIONS(5178), 1, - anon_sym_async, - ACTIONS(5188), 1, - anon_sym_abstract, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5184), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5186), 2, - sym_number, - sym_private_property_identifier, - STATE(2982), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 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, - [65914] = 6, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4144), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4170), 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(3384), 26, + ACTIONS(4172), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -190226,104 +192127,55 @@ 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, - [65971] = 14, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_async, - ACTIONS(5196), 1, - anon_sym_readonly, - STATE(2709), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5194), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5198), 2, - anon_sym_get, - anon_sym_set, - STATE(3065), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [68783] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [66044] = 7, - ACTIONS(3442), 1, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(3444), 1, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5235), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3380), 11, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4199), 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(3384), 20, + ACTIONS(4201), 16, + 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_GT_GT_GT, @@ -190337,201 +192189,124 @@ 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, + [68860] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [66103] = 6, - ACTIONS(4640), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4200), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4643), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4636), 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(4638), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, anon_sym_AMP_AMP, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, anon_sym_PERCENT, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66160] = 4, - ACTIONS(4840), 1, - anon_sym_EQ, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4838), 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(4842), 28, + ACTIONS(4210), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66213] = 9, - ACTIONS(4019), 1, - anon_sym_extends, - ACTIONS(4792), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5099), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5200), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3380), 11, + ACTIONS(5119), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 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(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [68969] = 12, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [66276] = 9, - ACTIONS(3502), 1, - anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(5238), 1, + anon_sym_LT, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4144), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 11, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(4230), 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(3384), 22, + ACTIONS(4232), 20, + 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, @@ -190547,54 +192322,48 @@ 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, - [66339] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, + [69038] = 14, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5241), 1, anon_sym_STAR, - ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(2715), 1, + ACTIONS(5243), 1, + anon_sym_async, + ACTIONS(5247), 1, + anon_sym_readonly, + STATE(2706), 1, sym_override_modifier, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5245), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5249), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(2971), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 18, + ACTIONS(3607), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -190613,124 +192382,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66422] = 9, - ACTIONS(2335), 1, - anon_sym_extends, - ACTIONS(4372), 1, + [69111] = 12, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5007), 1, - anon_sym_RPAREN, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5243), 1, + anon_sym_async, + ACTIONS(5253), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 2, + ACTIONS(5249), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5251), 2, + sym_number, + sym_private_property_identifier, + STATE(2974), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4375), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4865), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1704), 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(1708), 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, - [66485] = 9, - ACTIONS(4182), 1, - anon_sym_extends, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4434), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4441), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4768), 2, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4432), 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(4436), 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, - [66548] = 4, + anon_sym_QMARK, + ACTIONS(3607), 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, + [69180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4451), 13, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190744,12 +192457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 25, + ACTIONS(4456), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -190770,36 +192486,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66601] = 4, + anon_sym_extends, + [69231] = 7, + ACTIONS(3450), 1, + anon_sym_EQ, + ACTIONS(4330), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4451), 13, + ACTIONS(4691), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4453), 25, + ACTIONS(3404), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190819,52 +192539,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66654] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, + [69290] = 14, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5255), 1, anon_sym_STAR, - ACTIONS(5207), 1, - anon_sym_RBRACE, + ACTIONS(5257), 1, + anon_sym_async, + ACTIONS(5261), 1, + anon_sym_readonly, STATE(2715), 1, sym_override_modifier, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5259), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5263), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3039), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -190883,42 +192598,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66737] = 10, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(2335), 1, - anon_sym_extends, - ACTIONS(2337), 1, - anon_sym_QMARK, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4979), 1, - anon_sym_COLON, + [69363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5007), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1704), 11, + ACTIONS(4476), 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(1708), 22, + ACTIONS(4478), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190938,27 +192645,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66802] = 10, - ACTIONS(4180), 1, - anon_sym_QMARK, - ACTIONS(4182), 1, anon_sym_extends, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(4438), 1, + [69414] = 9, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(4697), 1, anon_sym_LBRACK, - ACTIONS(4969), 1, - anon_sym_COLON, + ACTIONS(5269), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 2, + ACTIONS(4700), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5019), 2, + ACTIONS(5265), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5267), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4432), 11, + anon_sym_COLON, + ACTIONS(3400), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190970,7 +192677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 22, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -190993,1178 +192700,979 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66867] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(2715), 1, - sym_override_modifier, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, + [69477] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_AMP_AMP, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, + anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, + anon_sym_PERCENT, + ACTIONS(5294), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [66950] = 6, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, - anon_sym_COMMA, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4255), 2, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4144), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3380), 11, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69586] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67007] = 6, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4643), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4640), 3, - anon_sym_COMMA, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4257), 2, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4200), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4636), 11, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4638), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69695] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67064] = 6, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4792), 3, - anon_sym_COMMA, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4283), 2, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4019), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3380), 11, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69804] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67121] = 4, - ACTIONS(3494), 1, - anon_sym_EQ, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4297), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69913] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67174] = 7, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3410), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4299), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [70022] = 19, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [67233] = 5, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5292), 1, + anon_sym_PERCENT, + ACTIONS(5294), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4196), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3380), 10, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(3384), 26, - sym__automatic_semicolon, + ACTIONS(4305), 14, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - 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, - [67288] = 6, - ACTIONS(4200), 1, - anon_sym_extends, + [70105] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5294), 1, + anon_sym_STAR_STAR, + ACTIONS(5308), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4643), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4636), 10, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(4307), 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(4638), 26, - sym__automatic_semicolon, + ACTIONS(4305), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - 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, - [67345] = 4, - ACTIONS(4232), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4451), 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(4453), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [70178] = 26, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4059), 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, - [67398] = 14, - ACTIONS(170), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(5213), 1, - anon_sym_RBRACE, - STATE(5139), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5118), 2, - sym_number, - sym_private_property_identifier, - STATE(5106), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5548), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5211), 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, - [67471] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, + ACTIONS(4307), 1, anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - ACTIONS(5215), 1, - anon_sym_SEMI, - ACTIONS(5217), 1, - sym__automatic_semicolon, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67582] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4305), 8, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [70275] = 27, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5219), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67691] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4305), 7, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [70374] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5308), 1, anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67800] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, + ACTIONS(4307), 8, anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5134), 1, anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4305), 16, sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, + 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, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67909] = 32, - ACTIONS(89), 1, + anon_sym_satisfies, + [70453] = 23, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68018] = 4, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1704), 13, - anon_sym_STAR, + ACTIONS(4307), 3, 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(1708), 28, - sym__automatic_semicolon, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4305), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [68071] = 32, - ACTIONS(89), 1, + [70544] = 24, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68180] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4305), 9, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [70637] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68289] = 19, - ACTIONS(89), 1, + ACTIONS(4305), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [70732] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5142), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5308), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 7, + ACTIONS(4307), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 14, - sym__automatic_semicolon, + ACTIONS(4305), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -192173,37 +193681,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [68372] = 14, - ACTIONS(89), 1, + [70809] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5221), 1, + ACTIONS(5308), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4307), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -192214,11 +193727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 17, - sym__automatic_semicolon, + ACTIONS(4305), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192231,1645 +193743,859 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [68445] = 26, - ACTIONS(89), 1, + [70888] = 21, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5130), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 8, - sym__automatic_semicolon, + ACTIONS(4307), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4305), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + 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_satisfies, - [68542] = 27, - ACTIONS(89), 1, + [70975] = 28, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5126), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5130), 1, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, - sym__automatic_semicolon, + ACTIONS(4305), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [68641] = 17, - ACTIONS(89), 1, + [71076] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5221), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4051), 1, anon_sym_as, - anon_sym_SEMI, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 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_satisfies, - [68720] = 23, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5142), 1, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, + anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4350), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 9, - 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_satisfies, - [68811] = 24, - ACTIONS(89), 1, + [71185] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5130), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_AMP_AMP, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5142), 1, + ACTIONS(5286), 1, + anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4352), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 9, - 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_satisfies, - [68904] = 25, - ACTIONS(89), 1, + [71294] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5130), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_AMP_AMP, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5142), 1, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4370), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 8, - 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_satisfies, - [68999] = 16, - ACTIONS(89), 1, + [71403] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5221), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4067), 16, - 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [69076] = 17, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4526), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5221), 1, - anon_sym_LT, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_SEMI, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [69155] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(2715), 1, - sym_override_modifier, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [69238] = 21, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5142), 1, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, + anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4372), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2250), 2, + ACTIONS(5300), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4069), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4067), 11, - 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, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [69325] = 28, - ACTIONS(89), 1, + [71512] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5126), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - STATE(1822), 1, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4374), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [69426] = 32, - ACTIONS(89), 1, + [71621] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5126), 1, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4376), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69535] = 32, - ACTIONS(89), 1, + [71730] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5126), 1, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, + ACTIONS(4053), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69644] = 32, - ACTIONS(829), 1, + [71839] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4110), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(4112), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(4116), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(4118), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(5292), 1, + anon_sym_PERCENT, + ACTIONS(5294), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4084), 2, + ACTIONS(4388), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4094), 2, + ACTIONS(5290), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4595), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4092), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69753] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4075), 1, - anon_sym_PERCENT, - ACTIONS(4077), 1, - anon_sym_STAR_STAR, - ACTIONS(4086), 1, - anon_sym_GT_GT, - ACTIONS(4090), 1, - anon_sym_LT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4110), 1, - anon_sym_AMP_AMP, - ACTIONS(4112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4116), 1, - anon_sym_CARET, - ACTIONS(4118), 1, - anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4124), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [71948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4480), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4084), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4088), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4094), 2, + anon_sym_GT_GT, + anon_sym_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(4096), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4524), 2, + ACTIONS(4482), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4092), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69862] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4534), 1, anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4140), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69971] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4146), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70080] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4164), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70189] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4166), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [70298] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4228), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [70407] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, - anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - ACTIONS(5224), 1, - anon_sym_SEMI, - ACTIONS(5226), 1, - sym__automatic_semicolon, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4566), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70518] = 32, - ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(4568), 1, anon_sym_satisfies, - ACTIONS(5126), 1, - anon_sym_AMP_AMP, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, - anon_sym_GT_GT, - ACTIONS(5134), 1, - anon_sym_AMP, - ACTIONS(5136), 1, - anon_sym_CARET, - ACTIONS(5138), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_PERCENT, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, - sym__ternary_qmark, - STATE(1822), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5120), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5132), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5152), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70627] = 14, - ACTIONS(1584), 1, + anon_sym_extends, + [71999] = 12, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5228), 1, + ACTIONS(4241), 1, anon_sym_STAR, - ACTIONS(5230), 1, - anon_sym_async, - ACTIONS(5234), 1, - anon_sym_readonly, - STATE(2698), 1, - sym_override_modifier, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5232), 2, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4636), 2, sym_number, sym_private_property_identifier, - ACTIONS(5236), 2, + ACTIONS(4638), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, @@ -193877,43 +194603,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70700] = 12, - ACTIONS(1584), 1, + [72068] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4484), 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(4486), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [72119] = 13, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5228), 1, + ACTIONS(4241), 1, anon_sym_STAR, - ACTIONS(5230), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4247), 1, anon_sym_async, - ACTIONS(5240), 1, - anon_sym_abstract, + ACTIONS(4658), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5236), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5238), 2, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4249), 2, sym_number, sym_private_property_identifier, - STATE(2977), 3, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -193934,37 +194709,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70769] = 14, - ACTIONS(1584), 1, + [72190] = 14, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5242), 1, + ACTIONS(5311), 1, anon_sym_STAR, - ACTIONS(5244), 1, + ACTIONS(5313), 1, anon_sym_async, - ACTIONS(5248), 1, + ACTIONS(5317), 1, anon_sym_readonly, - STATE(2701), 1, + STATE(2710), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5246), 2, + ACTIONS(5315), 2, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, + ACTIONS(5319), 2, anon_sym_get, anon_sym_set, - STATE(3044), 3, + STATE(3074), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -193974,7 +194749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3603), 18, + ACTIONS(3607), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -193993,33 +194768,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70842] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, + [72263] = 4, + ACTIONS(4456), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4450), 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(4452), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72316] = 13, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5252), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5321), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4170), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194032,11 +194856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4446), 18, - sym__automatic_semicolon, + ACTIONS(4172), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194051,39 +194875,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [70913] = 16, - ACTIONS(89), 1, + [72387] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5255), 1, + ACTIONS(5324), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4463), 11, + ACTIONS(4199), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -194095,10 +194919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 16, - sym__automatic_semicolon, + ACTIONS(4201), 16, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194112,107 +194936,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70990] = 32, - ACTIONS(89), 1, + [72464] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5126), 1, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5154), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4476), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4566), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5120), 2, + ACTIONS(4210), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71099] = 12, - ACTIONS(89), 1, + [72573] = 12, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(5258), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5327), 1, anon_sym_LT, - STATE(1822), 1, + STATE(1447), 1, sym_type_arguments, - STATE(4591), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2250), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4478), 12, + ACTIONS(4230), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194225,11 +195049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4480), 20, - sym__automatic_semicolon, + ACTIONS(4232), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194246,41 +195070,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [71168] = 9, - ACTIONS(4019), 1, - anon_sym_extends, - ACTIONS(4792), 1, - anon_sym_LBRACK, - ACTIONS(5265), 1, - anon_sym_RPAREN, + [72642] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5261), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5263), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3380), 11, + ACTIONS(4488), 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(3384), 22, + ACTIONS(4490), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194300,39 +195117,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71231] = 7, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(4144), 1, anon_sym_extends, + [72693] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_satisfies, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_GT_GT, + ACTIONS(5133), 1, + anon_sym_AMP, + ACTIONS(5135), 1, + anon_sym_CARET, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5141), 1, + anon_sym_PERCENT, + ACTIONS(5143), 1, + anon_sym_STAR_STAR, + ACTIONS(5145), 1, + anon_sym_LT, + ACTIONS(5153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5155), 1, + sym__ternary_qmark, + STATE(1812), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4854), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5121), 2, + anon_sym_in, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(5131), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72802] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4492), 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(3384), 25, + ACTIONS(4494), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194352,187 +195242,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71290] = 12, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, + anon_sym_extends, + [72853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4584), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4586), 2, - anon_sym_get, - anon_sym_set, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 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, - [71359] = 13, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4051), 1, + ACTIONS(4496), 13, anon_sym_STAR, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4628), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3955), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 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, - [71430] = 14, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5268), 1, - anon_sym_STAR, - ACTIONS(5270), 1, - anon_sym_async, - ACTIONS(5274), 1, - anon_sym_readonly, - STATE(2711), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5272), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5276), 2, - anon_sym_get, - anon_sym_set, - STATE(3068), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4498), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [71503] = 4, - ACTIONS(4244), 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, + [72904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 13, + ACTIONS(4500), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194546,7 +195309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 28, + ACTIONS(4502), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194575,13 +195338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71556] = 4, - ACTIONS(4434), 1, - anon_sym_EQ, + anon_sym_extends, + [72955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 13, + ACTIONS(4504), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194595,7 +195357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 28, + ACTIONS(4506), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194624,484 +195386,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71609] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, + anon_sym_extends, + [73006] = 4, + ACTIONS(4508), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4493), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4097), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71718] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4099), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [73059] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4495), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(3596), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71827] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3446), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [73110] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4507), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(3598), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71936] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3382), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [73161] = 4, + ACTIONS(4101), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4168), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4097), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72045] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4099), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [73214] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4430), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4104), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72154] = 19, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4106), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5298), 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(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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, + [73265] = 6, + ACTIONS(5083), 1, + anon_sym_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE, + ACTIONS(5087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4104), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 14, + ACTIONS(4106), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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_satisfies, - [72237] = 14, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5314), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + [73322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195112,472 +195695,334 @@ 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(4067), 17, + ACTIONS(4116), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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_satisfies, - [72310] = 26, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [73373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4118), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 8, + ACTIONS(4120), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72407] = 27, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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, + [73424] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4122), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4124), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72506] = 17, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(5298), 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(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5314), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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, + [73475] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4126), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5296), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 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(4067), 16, + ACTIONS(4128), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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_satisfies, - [72585] = 23, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [73526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4130), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 9, + ACTIONS(4132), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72676] = 24, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5298), 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(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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, + [73577] = 4, + ACTIONS(5083), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4134), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 9, + ACTIONS(4136), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72769] = 25, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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, + [73630] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4138), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 8, + ACTIONS(4140), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [72864] = 16, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(5298), 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(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5314), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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, + [73681] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4470), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -195586,61 +196031,47 @@ 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(4067), 16, + ACTIONS(4472), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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_satisfies, - [72941] = 17, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, anon_sym_satisfies, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5314), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_extends, + [73732] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4069), 11, + ACTIONS(2321), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -195649,806 +196080,573 @@ 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(4067), 15, + ACTIONS(2319), 29, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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, - [73020] = 21, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [73783] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4511), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4069), 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(4067), 11, + ACTIONS(4513), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - 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_satisfies, - [73107] = 28, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 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, + [73834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(4146), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4067), 6, + ACTIONS(4148), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [73208] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [73885] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4499), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4150), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73317] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4152), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [73936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4501), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4154), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73426] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4156), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [73987] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4140), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4150), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73535] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4152), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [74038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4146), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4154), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73644] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4156), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [74089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4164), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4158), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73753] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4160), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [74140] = 4, + ACTIONS(4440), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4166), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4438), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73862] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4442), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4228), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4162), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(4164), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73971] = 32, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, + anon_sym_satisfies, + anon_sym_extends, + [74244] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4158), 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(4160), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [74295] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4474), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4162), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(4164), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74080] = 13, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5317), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [74346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196459,13 +196657,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(4446), 18, + ACTIONS(4168), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -196479,41 +196685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [74151] = 16, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, anon_sym_satisfies, - ACTIONS(5320), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_extends, + [74397] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4463), 11, + ACTIONS(4177), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -196522,12 +196705,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(4465), 16, + ACTIONS(4179), 29, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -196541,107 +196733,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74228] = 32, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, + anon_sym_satisfies, + anon_sym_extends, + [74448] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4166), 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(4168), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [74499] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4476), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5278), 2, + ACTIONS(4177), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(4179), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74337] = 12, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5323), 1, - anon_sym_LT, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [74550] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 12, + ACTIONS(4181), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196652,13 +196849,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(4480), 20, + ACTIONS(4183), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -196674,153 +196879,91 @@ 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, - [74406] = 32, + anon_sym_extends, + [74601] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(4519), 1, - anon_sym_as, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4568), 1, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(5126), 1, + ACTIONS(5125), 1, anon_sym_AMP_AMP, - ACTIONS(5128), 1, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5129), 1, anon_sym_GT_GT, - ACTIONS(5134), 1, + ACTIONS(5133), 1, anon_sym_AMP, - ACTIONS(5136), 1, + ACTIONS(5135), 1, anon_sym_CARET, - ACTIONS(5138), 1, + ACTIONS(5137), 1, anon_sym_PIPE, - ACTIONS(5142), 1, + ACTIONS(5141), 1, anon_sym_PERCENT, - ACTIONS(5144), 1, + ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, + ACTIONS(5145), 1, anon_sym_LT, - ACTIONS(5154), 1, + ACTIONS(5153), 1, anon_sym_QMARK_QMARK, - ACTIONS(5156), 1, + ACTIONS(5155), 1, sym__ternary_qmark, - STATE(1822), 1, + STATE(1812), 1, sym_type_arguments, - STATE(4591), 1, + STATE(4772), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4894), 2, + ACTIONS(4388), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5120), 2, + ACTIONS(4545), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5119), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5122), 2, + ACTIONS(5121), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5132), 2, + ACTIONS(5131), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, + ACTIONS(5149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 2, + ACTIONS(5151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2250), 2, + STATE(2133), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, + ACTIONS(5147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74515] = 12, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4670), 1, - anon_sym_async, - ACTIONS(4693), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4672), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 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, - [74584] = 6, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(1710), 1, - sym__automatic_semicolon, + [74710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1700), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1704), 13, + ACTIONS(4800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196834,11 +196977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 25, + ACTIONS(4802), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -196860,38 +197006,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74641] = 7, - ACTIONS(4142), 1, - anon_sym_QMARK, + [74760] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, + ACTIONS(5330), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5332), 3, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3380), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 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(3384), 22, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196911,90 +197055,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74699] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - ACTIONS(5326), 1, - anon_sym_COLON, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [74814] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(5330), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5332), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(3404), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74807] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74868] = 4, + ACTIONS(5334), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4814), 13, + ACTIONS(5103), 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, @@ -197005,14 +197126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4816), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5105), 23, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -197029,16 +197149,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, - [74857] = 3, + [74920] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4818), 13, + ACTIONS(4723), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197052,7 +197170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4820), 28, + ACTIONS(4725), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197081,34 +197199,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74907] = 3, + [74970] = 7, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4827), 13, + ACTIONS(4330), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4829), 28, + ACTIONS(3404), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197128,11 +197250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74957] = 3, + [75028] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4831), 13, + ACTIONS(5330), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5332), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197146,15 +197275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 28, - sym__automatic_semicolon, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197175,11 +197299,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75007] = 3, + [75082] = 33, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4614), 1, + anon_sym_of, + ACTIONS(5338), 1, + anon_sym_in, + ACTIONS(5341), 1, + anon_sym_GT, + ACTIONS(5343), 1, + anon_sym_AMP_AMP, + ACTIONS(5345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5347), 1, + anon_sym_GT_GT, + ACTIONS(5351), 1, + anon_sym_AMP, + ACTIONS(5353), 1, + anon_sym_CARET, + ACTIONS(5355), 1, + anon_sym_PIPE, + ACTIONS(5359), 1, + anon_sym_PERCENT, + ACTIONS(5361), 1, + anon_sym_STAR_STAR, + ACTIONS(5363), 1, + anon_sym_LT, + ACTIONS(5371), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5373), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5349), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5367), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5369), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5365), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4872), 13, + ACTIONS(4735), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197193,7 +197394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4874), 28, + ACTIONS(4737), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197222,70 +197423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75057] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5328), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5330), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5332), 2, - anon_sym_get, - anon_sym_set, - STATE(3843), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [75121] = 5, - ACTIONS(1742), 1, - sym__automatic_semicolon, + [75242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1738), 13, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197299,11 +197441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 25, + ACTIONS(4452), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -197325,16 +197470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75175] = 5, - ACTIONS(1927), 1, - sym__automatic_semicolon, + [75292] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1923), 13, + ACTIONS(5191), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5193), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197348,12 +197495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 25, + ACTIONS(3404), 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, @@ -197374,17 +197519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75229] = 4, + [75346] = 5, + ACTIONS(1833), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1807), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1811), 13, + ACTIONS(1825), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1829), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197398,10 +197542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 23, + ACTIONS(1831), 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, @@ -197422,64 +197568,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75281] = 21, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(1935), 1, - anon_sym_DOT_DOT_DOT, + [75400] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(5338), 1, - anon_sym_RBRACE, - ACTIONS(5340), 1, - anon_sym_async, - ACTIONS(5344), 1, - anon_sym_static, - ACTIONS(5346), 1, - anon_sym_readonly, - ACTIONS(5352), 1, - anon_sym_override, - STATE(2687), 1, - sym_accessibility_modifier, - STATE(2712), 1, - sym_override_modifier, - STATE(5086), 1, - aux_sym_object_repeat1, + ACTIONS(5157), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5375), 2, sym_number, sym_private_property_identifier, - ACTIONS(5348), 2, + ACTIONS(5377), 2, anon_sym_get, anon_sym_set, - ACTIONS(5350), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3622), 3, + STATE(3731), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5083), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5334), 14, + ACTIONS(3743), 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(2307), 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, @@ -197487,49 +197622,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75367] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, + [75464] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5157), 1, anon_sym_STAR, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(5159), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5161), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5165), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(2964), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 21, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -197546,50 +197677,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75441] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, + [75530] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5379), 1, anon_sym_STAR, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5381), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5383), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -197606,17 +197731,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75517] = 4, + [75594] = 5, + ACTIONS(1819), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1903), 13, + ACTIONS(1811), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197630,10 +197754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 23, + ACTIONS(1817), 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, @@ -197654,18 +197780,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75569] = 5, + [75648] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5167), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5354), 2, + ACTIONS(5385), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5387), 2, + anon_sym_get, + anon_sym_set, + STATE(3824), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5356), 3, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3380), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [75712] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197679,10 +197852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4844), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197703,17 +197881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75623] = 4, + [75762] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1738), 13, + ACTIONS(4846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197727,10 +197899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 23, + ACTIONS(4848), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197751,17 +197928,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75675] = 4, + [75812] = 7, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 5, - sym__automatic_semicolon, + STATE(1626), 2, + sym_template_string, + sym_arguments, + ACTIONS(5389), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 13, + anon_sym_implements, + ACTIONS(4035), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197775,10 +197957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 23, + ACTIONS(4037), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197797,41 +197978,89 @@ 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, - [75727] = 8, - ACTIONS(3456), 1, - anon_sym_EQ, - ACTIONS(4142), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, + [75870] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4144), 3, + ACTIONS(5391), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5393), 2, + anon_sym_get, + anon_sym_set, + STATE(3734), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3380), 11, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [75934] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4856), 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(3384), 22, + ACTIONS(4858), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197851,18 +198080,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75787] = 5, - ACTIONS(5358), 1, - sym__automatic_semicolon, + [75984] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4658), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1780), 4, + ACTIONS(5185), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5189), 2, + anon_sym_get, + anon_sym_set, + STATE(3057), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(1784), 13, + ACTIONS(3607), 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, + [76050] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197876,10 +198153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1786), 23, + ACTIONS(4862), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197900,18 +198182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75841] = 5, + [76100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5360), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5362), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + ACTIONS(4874), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197925,10 +198200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4876), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197949,18 +198229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75895] = 5, + [76150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5360), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5362), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + ACTIONS(4660), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197974,10 +198247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4255), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197998,75 +198276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75949] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5364), 1, - anon_sym_STAR, + [76200] = 6, + ACTIONS(4440), 1, + anon_sym_EQ, + ACTIONS(4985), 1, + anon_sym_of, + ACTIONS(5395), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5366), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5368), 2, - anon_sym_get, - anon_sym_set, - STATE(3906), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [76013] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5360), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5362), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + ACTIONS(4438), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -198077,10 +198299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4442), 26, + 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, @@ -198101,40 +198326,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76067] = 7, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, + [76256] = 6, + ACTIONS(4678), 1, + anon_sym_EQ, + ACTIONS(4987), 1, + anon_sym_of, + ACTIONS(5398), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3380), 11, + ACTIONS(4676), 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(3384), 22, + ACTIONS(4680), 26, + 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -198152,36 +198376,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76125] = 5, + [76312] = 6, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4989), 1, + anon_sym_of, + ACTIONS(5401), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4196), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3380), 11, + ACTIONS(1724), 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(3384), 24, + ACTIONS(1728), 26, + 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, @@ -198201,23 +198426,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76179] = 7, - ACTIONS(4198), 1, + [76368] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, + ACTIONS(2307), 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, + [76442] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 2, - anon_sym_RPAREN, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [76518] = 6, + ACTIONS(4330), 1, anon_sym_extends, - ACTIONS(4643), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4694), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4640), 3, - anon_sym_COMMA, + ACTIONS(4691), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4636), 11, + ACTIONS(3400), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198229,10 +198570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4638), 22, + ACTIONS(3404), 24, 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, @@ -198252,35 +198595,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76237] = 4, + [76574] = 6, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(4881), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4878), 3, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1857), 13, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4774), 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(1859), 23, + ACTIONS(4776), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198300,35 +198645,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76289] = 4, + [76630] = 9, + ACTIONS(3402), 1, + anon_sym_EQ, + ACTIONS(3549), 1, + anon_sym_COLON, + ACTIONS(4330), 1, + anon_sym_extends, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 5, - sym__automatic_semicolon, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5404), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1913), 13, + anon_sym_RBRACK, + ACTIONS(3400), 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(1915), 23, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198348,11 +198698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76341] = 3, + [76692] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 13, + ACTIONS(4764), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198366,7 +198716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4601), 28, + ACTIONS(4766), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198395,18 +198745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76391] = 5, - ACTIONS(5370), 1, - sym__automatic_semicolon, + [76742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1839), 13, + ACTIONS(4515), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198420,59 +198763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 23, + ACTIONS(4370), 28, + sym__automatic_semicolon, 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, - [76445] = 5, - ACTIONS(5372), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1865), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1869), 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(1871), 23, - 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, @@ -198493,17 +198792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76499] = 4, + [76792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1748), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1752), 13, + ACTIONS(4768), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198517,58 +198810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1754), 23, + ACTIONS(4770), 28, + sym__automatic_semicolon, 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, - [76551] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1815), 5, - sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1819), 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(1821), 23, - 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, @@ -198589,18 +198839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76603] = 5, - ACTIONS(5374), 1, - sym__automatic_semicolon, + [76842] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1883), 13, + ACTIONS(4772), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198614,58 +198857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1885), 23, + ACTIONS(4372), 28, + sym__automatic_semicolon, 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, - [76657] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1889), 5, - sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1893), 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(1895), 23, - 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, @@ -198686,35 +198886,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76709] = 10, + [76892] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5166), 1, + ACTIONS(5091), 1, anon_sym_STAR, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5376), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5378), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3778), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -198740,67 +198945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76773] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5166), 1, - anon_sym_STAR, - ACTIONS(5168), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5170), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5174), 2, - anon_sym_get, - anon_sym_set, - STATE(2993), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 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, - [76839] = 3, + [76966] = 4, + ACTIONS(5334), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4825), 13, + ACTIONS(5103), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -198813,14 +198966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5105), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -198837,29 +198990,29 @@ 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, - [76889] = 15, + [77018] = 16, ACTIONS(241), 1, anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5091), 1, anon_sym_STAR, - ACTIONS(5164), 1, + ACTIONS(5200), 1, anon_sym_RBRACE, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -198870,21 +199023,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(2307), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -198901,54 +199053,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76963] = 16, - ACTIONS(241), 1, + [77094] = 9, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5164), 1, + ACTIONS(3838), 1, anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4671), 1, aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1991), 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, @@ -198961,39 +199106,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77039] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5176), 1, - anon_sym_STAR, + [77156] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5382), 2, - anon_sym_get, - anon_sym_set, - STATE(3853), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199003,6 +199145,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, @@ -199015,18 +199159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77103] = 4, - ACTIONS(5384), 1, - sym_regex_flags, + [77218] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5091), 17, + ACTIONS(4778), 13, 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, @@ -199037,13 +199177,14 @@ 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(5093), 23, + ACTIONS(4374), 28, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -199060,41 +199201,39 @@ 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, - [77155] = 7, - ACTIONS(3517), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + anon_sym_satisfies, + [77268] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(4888), 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(3384), 24, + ACTIONS(4890), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199114,99 +199253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77213] = 33, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4902), 1, - anon_sym_of, - ACTIONS(5388), 1, - anon_sym_in, - ACTIONS(5391), 1, - anon_sym_GT, - ACTIONS(5393), 1, - anon_sym_AMP_AMP, - ACTIONS(5395), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, - anon_sym_GT_GT, - ACTIONS(5401), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_CARET, - ACTIONS(5405), 1, - anon_sym_PIPE, - ACTIONS(5409), 1, - anon_sym_PERCENT, - ACTIONS(5411), 1, - anon_sym_STAR_STAR, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(5421), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5399), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5407), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5417), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5419), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5415), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77323] = 7, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, + [77318] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1745), 2, - sym_template_string, - sym_arguments, - ACTIONS(5425), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4029), 13, + ACTIONS(4782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199220,9 +199271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4031), 21, + ACTIONS(4784), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199241,39 +199298,45 @@ 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, - [77381] = 10, + [77368] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5190), 1, + ACTIONS(5091), 1, anon_sym_STAR, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5427), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5429), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3870), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 21, anon_sym_export, anon_sym_type, @@ -199296,45 +199359,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77445] = 11, - ACTIONS(1584), 1, + [77442] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5190), 1, + ACTIONS(5241), 1, anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - ACTIONS(5198), 2, + ACTIONS(5410), 2, anon_sym_get, anon_sym_set, - STATE(3065), 3, + STATE(3757), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -199351,130 +199413,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77511] = 3, + [77506] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4803), 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(4805), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [77582] = 7, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4414), 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, - [77561] = 5, - ACTIONS(1788), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1780), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1784), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2331), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4417), 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(1786), 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, - [77615] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4876), 13, + ACTIONS(1724), 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(4878), 28, + ACTIONS(1728), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199494,110 +199524,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77665] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + [77640] = 7, + ACTIONS(4440), 1, + anon_sym_EQ, + ACTIONS(4444), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5435), 1, - anon_sym_RBRACK, - ACTIONS(5437), 1, - anon_sym_AMP_AMP, - ACTIONS(5439), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, - anon_sym_GT_GT, - ACTIONS(5445), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_CARET, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5453), 1, - anon_sym_PERCENT, - ACTIONS(5455), 1, - anon_sym_STAR_STAR, - ACTIONS(5457), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5433), 2, - anon_sym_in, + ACTIONS(4392), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4447), 3, anon_sym_GT, - ACTIONS(5443), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5451), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5463), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5459), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77773] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4572), 13, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4438), 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(4574), 28, + ACTIONS(4442), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199617,128 +199575,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77823] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4580), 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(4140), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [77698] = 15, + ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(702), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 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, - [77873] = 3, + ACTIONS(5091), 1, + anon_sym_STAR, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4616), 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(4618), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [77772] = 8, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4414), 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, - [77923] = 3, + ACTIONS(4989), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 13, + ACTIONS(4417), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2331), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1724), 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(4146), 28, - sym__automatic_semicolon, + ACTIONS(1728), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199758,34 +199686,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77973] = 3, + [77832] = 8, + ACTIONS(4440), 1, + anon_sym_EQ, + ACTIONS(4444), 1, + anon_sym_LBRACK, + ACTIONS(4985), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 13, + ACTIONS(4447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4392), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4438), 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(4164), 28, - sym__automatic_semicolon, + ACTIONS(4442), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199805,25 +199738,564 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78023] = 3, + [77892] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4847), 13, + ACTIONS(1993), 6, 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_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1991), 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, + [77954] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 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, + [78016] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3740), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1991), 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, + [78078] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3740), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 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, + [78140] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5379), 1, + anon_sym_STAR, + ACTIONS(5412), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5414), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5416), 2, + anon_sym_get, + anon_sym_set, + STATE(2981), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [78206] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [78282] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1991), 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, + [78344] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 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, + [78406] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1991), 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, + [78468] = 9, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 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, + [78530] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4788), 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(4849), 28, + ACTIONS(4790), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199852,11 +200324,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78073] = 3, + [78580] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4851), 13, + ACTIONS(4796), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199870,7 +200342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4853), 28, + ACTIONS(4798), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199899,11 +200371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78123] = 3, + [78630] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 13, + ACTIONS(4800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199917,7 +200389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4614), 28, + ACTIONS(4802), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199946,11 +200418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78173] = 3, + [78680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(4804), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199964,7 +200436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 28, + ACTIONS(4806), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199993,19 +200465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78223] = 6, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(4969), 1, - anon_sym_of, - ACTIONS(5469), 1, - anon_sym_in, + [78730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 12, + ACTIONS(4800), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -200016,12 +200483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 26, + ACTIONS(4802), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200043,19 +200512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78279] = 6, - ACTIONS(4840), 1, - anon_sym_EQ, - ACTIONS(5077), 1, - anon_sym_of, - ACTIONS(5472), 1, - anon_sym_in, + [78780] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4838), 12, + ACTIONS(4815), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -200066,12 +200530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4842), 26, + ACTIONS(4817), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200093,19 +200559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78335] = 6, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4979), 1, - anon_sym_of, - ACTIONS(5475), 1, - anon_sym_in, + [78830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 12, + ACTIONS(4819), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -200116,12 +200577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 26, + ACTIONS(4821), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200143,78 +200606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78391] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [78465] = 7, - ACTIONS(5478), 1, + [78880] = 7, + ACTIONS(5418), 1, anon_sym_LPAREN, - ACTIONS(5481), 1, + ACTIONS(5421), 1, anon_sym_COLON, - ACTIONS(5483), 1, + ACTIONS(5423), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5426), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4880), 12, + ACTIONS(3400), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200227,7 +200631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4882), 25, + ACTIONS(3404), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200253,71 +200657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78523] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [78599] = 3, + [78938] = 5, + ACTIONS(1763), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4624), 13, + ACTIONS(1755), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200331,14 +200680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 28, - sym__automatic_semicolon, + ACTIONS(1761), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200360,11 +200706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78649] = 3, + [78992] = 5, + ACTIONS(1853), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(1845), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1849), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200378,14 +200729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 28, - sym__automatic_semicolon, + ACTIONS(1851), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200407,11 +200755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78699] = 3, + [79046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4632), 13, + ACTIONS(4727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200425,7 +200773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4634), 28, + ACTIONS(4729), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200454,61 +200802,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78749] = 6, - ACTIONS(4144), 1, - anon_sym_extends, + [79096] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5432), 1, + anon_sym_RBRACK, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5464), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3380), 11, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5428), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 24, - 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, - anon_sym_PIPE_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(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 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, - [78805] = 3, + [79204] = 5, + ACTIONS(1867), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4646), 13, + ACTIONS(1859), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200522,14 +200901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4648), 28, - sym__automatic_semicolon, + ACTIONS(1865), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200551,11 +200927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78855] = 3, + [79258] = 5, + ACTIONS(1742), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(1734), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200569,14 +200950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 28, - sym__automatic_semicolon, + ACTIONS(1740), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200598,37 +200976,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78905] = 6, - ACTIONS(4200), 1, - anon_sym_extends, + [79312] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5466), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4643), 2, + ACTIONS(5468), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5470), 2, + anon_sym_get, + anon_sym_set, + STATE(3878), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(2307), 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, + [79376] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_AMP_AMP, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, anon_sym_AMP, + ACTIONS(5286), 1, + anon_sym_CARET, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(4640), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4636), 11, + ACTIONS(5292), 1, + anon_sym_PERCENT, + ACTIONS(5294), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + ACTIONS(5472), 1, + anon_sym_COLON, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5272), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5274), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5300), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79484] = 7, + ACTIONS(5474), 1, + anon_sym_LPAREN, + ACTIONS(5477), 1, + anon_sym_COLON, + ACTIONS(5479), 1, + anon_sym_LT, + ACTIONS(5482), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4811), 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(4638), 24, + ACTIONS(4813), 25, + 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, @@ -200648,11 +201157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78961] = 3, + [79542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 13, + ACTIONS(4902), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200666,7 +201175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4809), 28, + ACTIONS(4904), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200695,18 +201204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79011] = 5, + [79592] = 5, + ACTIONS(1883), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5101), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + ACTIONS(1875), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1879), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200720,10 +201227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(1881), 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, @@ -200744,43 +201253,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79065] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, + [79646] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5484), 1, anon_sym_STAR, - ACTIONS(5207), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5486), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5488), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 21, anon_sym_export, anon_sym_type, @@ -200803,46 +201307,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79139] = 16, - ACTIONS(241), 1, + [79710] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4811), 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(4813), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2275), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79760] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4914), 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(4916), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79810] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5484), 1, anon_sym_STAR, - ACTIONS(5207), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(5490), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5492), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5494), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3063), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -200863,47 +201456,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79215] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, + [79876] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5496), 1, + anon_sym_STAR, + ACTIONS(5498), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5500), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 7, + ACTIONS(5502), 2, + anon_sym_get, + anon_sym_set, + STATE(3009), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(1969), 23, + ACTIONS(3607), 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, @@ -200916,365 +201511,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79277] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 7, - sym__automatic_semicolon, + [79942] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1975), 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, - [79339] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [79413] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [79489] = 7, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4372), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2335), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4375), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1704), 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(1708), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79547] = 7, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_LBRACK, + ACTIONS(5464), 1, + sym__ternary_qmark, + ACTIONS(5504), 1, + anon_sym_RBRACK, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4441), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4432), 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(4436), 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, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79605] = 8, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4372), 1, - anon_sym_LBRACK, - ACTIONS(4979), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4375), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2335), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1704), 11, + ACTIONS(5428), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 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(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 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, - [79665] = 8, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4969), 1, - anon_sym_COLON, + [80050] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4182), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4432), 11, + ACTIONS(4823), 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(4436), 22, + ACTIONS(4825), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -201294,407 +201634,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79725] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_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(3715), 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, - [79787] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, + [80100] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, + ACTIONS(2277), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1975), 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, - [79849] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, + ACTIONS(4634), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 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, - [79911] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 6, + ACTIONS(4827), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1975), 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, - [79973] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5506), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 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, + ACTIONS(5508), 2, 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, - [80035] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 7, + STATE(3747), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1975), 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, - [80097] = 9, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_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(3715), 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, - [80159] = 9, - ACTIONS(3709), 1, anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 7, - sym__automatic_semicolon, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1975), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -201704,8 +201676,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, @@ -201718,11 +201688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80221] = 3, + [80164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4890), 13, + ACTIONS(4922), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201736,7 +201706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4892), 28, + ACTIONS(4299), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201765,72 +201735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80271] = 12, - ACTIONS(170), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5118), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5490), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5353), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5548), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5488), 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, - [80339] = 5, - ACTIONS(1861), 1, + [80214] = 5, + ACTIONS(1893), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 2, + ACTIONS(1885), 2, anon_sym_else, anon_sym_while, - ACTIONS(1857), 13, + ACTIONS(1889), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201844,7 +201758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1859), 25, + ACTIONS(1891), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -201870,11 +201784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80393] = 3, + [80268] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4859), 13, + ACTIONS(4753), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201888,7 +201802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4861), 28, + ACTIONS(4755), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201917,11 +201831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80443] = 3, + [80318] = 5, + ACTIONS(1903), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(1895), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1899), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201935,14 +201854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 28, - sym__automatic_semicolon, + ACTIONS(1901), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -201964,11 +201880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80493] = 3, + [80372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4658), 13, + ACTIONS(4906), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201982,7 +201898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4660), 28, + ACTIONS(4908), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202011,11 +201927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80543] = 3, + [80422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 13, + ACTIONS(4910), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202029,7 +201945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4664), 28, + ACTIONS(4912), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202058,65 +201974,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80593] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5492), 1, - anon_sym_STAR, + [80472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5496), 2, - anon_sym_get, - anon_sym_set, - STATE(3881), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(4918), 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(4920), 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_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [80657] = 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80522] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 13, + ACTIONS(4619), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202130,7 +202039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4683), 28, + ACTIONS(4621), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202159,11 +202068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80707] = 3, + [80572] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 13, + ACTIONS(4924), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202177,7 +202086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 28, + ACTIONS(4926), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202206,11 +202115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80757] = 3, + [80622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 13, + ACTIONS(4792), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202224,7 +202133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 28, + ACTIONS(4794), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202253,16 +202162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80807] = 5, - ACTIONS(1917), 1, - sym__automatic_semicolon, + [80672] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1913), 13, + ACTIONS(5191), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5212), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202276,12 +202187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1915), 25, + ACTIONS(3404), 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, @@ -202302,149 +202211,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80861] = 32, - ACTIONS(829), 1, + [80726] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5282), 1, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5290), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5292), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5294), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5298), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - ACTIONS(5498), 1, + ACTIONS(5510), 1, anon_sym_COLON, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5280), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5296), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5304), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80969] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [81043] = 4, + [80834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1807), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1811), 13, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202458,12 +202305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 26, + ACTIONS(1807), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -202485,11 +202334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81095] = 3, + [80884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4909), 13, + ACTIONS(1839), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202503,7 +202352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 28, + ACTIONS(1841), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202532,11 +202381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81145] = 3, + [80934] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4913), 13, + ACTIONS(1773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202550,7 +202399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 28, + ACTIONS(1775), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202579,40 +202428,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81195] = 9, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(3544), 1, - anon_sym_COLON, - ACTIONS(4144), 1, - anon_sym_extends, - ACTIONS(4606), 1, - anon_sym_LBRACK, + [80984] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5500), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3380), 11, + ACTIONS(1829), 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(3384), 22, + ACTIONS(1831), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -202632,18 +202475,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81257] = 5, + [81034] = 12, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(3847), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5200), 3, + ACTIONS(5117), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5514), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + anon_sym_RBRACE, + STATE(5227), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5634), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5760), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5512), 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, + [81102] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4719), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202657,10 +202549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4721), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202681,11 +202578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81311] = 3, + [81152] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4927), 13, + ACTIONS(4774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202699,7 +202596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4929), 28, + ACTIONS(4776), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202728,11 +202625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81361] = 3, + [81202] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202746,7 +202643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 28, + ACTIONS(1789), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202775,11 +202672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81411] = 3, + [81252] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(5516), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5518), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202793,15 +202697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 28, - sym__automatic_semicolon, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202822,91 +202721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81461] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5437), 1, - anon_sym_AMP_AMP, - ACTIONS(5439), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, - anon_sym_GT_GT, - ACTIONS(5445), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_CARET, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5453), 1, - anon_sym_PERCENT, - ACTIONS(5455), 1, - anon_sym_STAR_STAR, - ACTIONS(5457), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, - sym__ternary_qmark, - ACTIONS(5504), 1, - anon_sym_RBRACK, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5433), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5443), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5451), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5463), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5459), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81569] = 4, - ACTIONS(5384), 1, - sym_regex_flags, + [81306] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5091), 16, + ACTIONS(5520), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5522), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -202919,15 +202746,10 @@ 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(5093), 24, - sym__automatic_semicolon, + ACTIONS(3404), 23, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202943,14 +202765,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, - [81621] = 3, + anon_sym_satisfies, + [81360] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4868), 13, + ACTIONS(5520), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5522), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202964,15 +202795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4870), 28, - sym__automatic_semicolon, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202993,11 +202819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81671] = 3, + [81414] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(5520), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5522), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203011,15 +202844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 28, - sym__automatic_semicolon, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203040,73 +202868,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81721] = 3, + [81468] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5524), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4576), 13, + ACTIONS(5526), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5528), 2, + anon_sym_get, + anon_sym_set, + STATE(3842), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(2307), 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, + [81532] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5530), 1, anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5532), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5534), 2, + anon_sym_get, + anon_sym_set, + STATE(3798), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4578), 28, + anon_sym_QMARK, + ACTIONS(2307), 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, + [81596] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5530), 1, + anon_sym_STAR, + ACTIONS(5536), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5538), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5540), 2, + anon_sym_get, + anon_sym_set, + STATE(2966), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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_of, 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, - [81771] = 16, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3607), 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, + [81662] = 15, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_RBRACE, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5091), 1, anon_sym_STAR, - STATE(4972), 1, + STATE(4671), 1, aux_sym_object_repeat1, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -203117,20 +203059,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203147,246 +203090,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81847] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4764), 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(4766), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [81736] = 16, + ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(727), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 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, - [81897] = 3, + ACTIONS(5091), 1, + anon_sym_STAR, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1738), 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(1740), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [81812] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 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, - [81947] = 3, + ACTIONS(5542), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 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(1925), 28, + ACTIONS(5544), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5546), 2, + anon_sym_get, + anon_sym_set, + STATE(3817), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [81876] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 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, - [81997] = 3, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5243), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1784), 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(1786), 28, + ACTIONS(5249), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5548), 2, + sym_number, + sym_private_property_identifier, + STATE(2967), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3607), 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, + [81942] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4703), 1, + anon_sym_RBRACE, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82047] = 3, + ACTIONS(5306), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1857), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1859), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 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, - [82097] = 3, + [82050] = 5, + ACTIONS(1809), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 13, + ACTIONS(1801), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203400,14 +203358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 28, - sym__automatic_semicolon, + ACTIONS(1807), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -203429,116 +203384,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82147] = 5, + [82104] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5243), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5506), 2, + ACTIONS(5249), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5550), 2, + sym_number, + sym_private_property_identifier, + STATE(2977), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5508), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 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(3384), 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, - [82201] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5506), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5508), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3380), 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(3384), 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, - [82255] = 5, + anon_sym_QMARK, + ACTIONS(3607), 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, + [82170] = 5, + ACTIONS(1843), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5506), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5508), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + ACTIONS(1835), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1839), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203552,10 +203462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(1841), 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, @@ -203576,38 +203488,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82309] = 10, + [82224] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5510), 1, + ACTIONS(5255), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(5552), 2, sym_number, sym_private_property_identifier, - ACTIONS(5514), 2, + ACTIONS(5554), 2, anon_sym_get, anon_sym_set, - STATE(3852), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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, + anon_sym_PIPE_RBRACE, ACTIONS(2307), 21, anon_sym_export, anon_sym_type, @@ -203630,41 +203542,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82373] = 11, - ACTIONS(1584), 1, + [82288] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5510), 1, + ACTIONS(5255), 1, anon_sym_STAR, - ACTIONS(5516), 1, + ACTIONS(5257), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5518), 2, + ACTIONS(5259), 2, sym_number, sym_private_property_identifier, - ACTIONS(5520), 2, + ACTIONS(5263), 2, anon_sym_get, anon_sym_set, - STATE(2954), 3, + STATE(3039), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -203685,45 +203597,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82439] = 11, - ACTIONS(1584), 1, + [82354] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5228), 1, + ACTIONS(5311), 1, anon_sym_STAR, - ACTIONS(5230), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5236), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5522), 2, + ACTIONS(5556), 2, sym_number, sym_private_property_identifier, - STATE(2956), 3, + ACTIONS(5558), 2, + anon_sym_get, + anon_sym_set, + STATE(3808), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203740,45 +203651,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82505] = 11, - ACTIONS(1584), 1, + [82418] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5492), 1, + ACTIONS(5560), 1, anon_sym_STAR, - ACTIONS(5524), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, + ACTIONS(5562), 2, sym_number, sym_private_property_identifier, - ACTIONS(5528), 2, + ACTIONS(5564), 2, anon_sym_get, anon_sym_set, - STATE(2990), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203795,143 +203705,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82571] = 5, - ACTIONS(1843), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1835), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1839), 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(1841), 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, - [82625] = 5, - ACTIONS(1873), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1865), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1869), 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(1871), 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, - [82679] = 11, - ACTIONS(1584), 1, + [82482] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5228), 1, + ACTIONS(5496), 1, anon_sym_STAR, - ACTIONS(5230), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5236), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5530), 2, + ACTIONS(5566), 2, sym_number, sym_private_property_identifier, - STATE(2970), 3, + ACTIONS(5568), 2, + anon_sym_get, + anon_sym_set, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203948,29 +203759,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82745] = 10, + [82546] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5242), 1, + ACTIONS(5570), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(5572), 2, sym_number, sym_private_property_identifier, - ACTIONS(5534), 2, + ACTIONS(5574), 2, anon_sym_get, anon_sym_set, - STATE(3886), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204002,66 +203813,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82809] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, + [82610] = 8, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3549), 1, + anon_sym_COLON, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(5242), 1, - anon_sym_STAR, - ACTIONS(5244), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5246), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5250), 2, - anon_sym_get, - anon_sym_set, - STATE(3044), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4330), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3400), 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(3603), 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, - [82875] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3404), 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, + [82670] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(4884), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204075,7 +203883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4430), 28, + ACTIONS(4886), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204104,16 +203912,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82925] = 5, - ACTIONS(1756), 1, - sym__automatic_semicolon, + [82720] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_AMP_AMP, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, + anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, + anon_sym_PERCENT, + ACTIONS(5294), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + ACTIONS(5576), 1, + anon_sym_COLON, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1748), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1752), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5272), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5274), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5300), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82828] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4650), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204127,11 +204006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1754), 25, + ACTIONS(4652), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -204153,16 +204035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82979] = 5, - ACTIONS(1823), 1, - sym__automatic_semicolon, + [82878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1819), 13, + ACTIONS(4705), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204176,11 +204053,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 25, + ACTIONS(4707), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -204202,39 +204082,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83033] = 8, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3544), 1, - anon_sym_COLON, - ACTIONS(4606), 1, - anon_sym_LBRACK, + [82928] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4144), 3, + ACTIONS(1783), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3380), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1787), 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(3384), 22, + ACTIONS(1789), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204254,141 +204130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83093] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4704), 1, - anon_sym_RBRACE, - ACTIONS(5282), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83201] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5536), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5538), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5540), 2, - anon_sym_get, - anon_sym_set, - STATE(3907), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [83265] = 3, + [82980] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(4731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204402,7 +204148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4708), 28, + ACTIONS(4733), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204431,65 +204177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83315] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5268), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5542), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5544), 2, - anon_sym_get, - anon_sym_set, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [83379] = 3, + [83030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(1879), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204503,7 +204195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 28, + ACTIONS(1881), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204532,85 +204224,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83429] = 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), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [83080] = 15, + ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(725), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83479] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5546), 1, + ACTIONS(5091), 1, anon_sym_STAR, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5550), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3761), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 21, anon_sym_export, anon_sym_type, @@ -204633,145 +204283,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83543] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 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(3384), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [83154] = 16, + ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(725), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83593] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5554), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5556), 2, - anon_sym_get, - anon_sym_set, - STATE(3775), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(2309), 1, 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, - [83657] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5558), 1, + ACTIONS(5091), 1, anon_sym_STAR, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5560), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5562), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3779), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, + ACTIONS(2307), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -204788,13 +204343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83721] = 4, - ACTIONS(3488), 1, - anon_sym_EQ, + [83230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(4654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204808,13 +204361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 27, + ACTIONS(4656), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -204836,61 +204390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83773] = 6, - ACTIONS(3488), 1, - anon_sym_EQ, - ACTIONS(3582), 1, - anon_sym_in, - ACTIONS(3585), 1, - anon_sym_of, + [83280] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 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(3384), 26, + ACTIONS(1875), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83829] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4786), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(1879), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204904,15 +204414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4788), 28, - sym__automatic_semicolon, + ACTIONS(1881), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204933,29 +204438,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83879] = 10, + [83332] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, + ACTIONS(3959), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4584), 2, + ACTIONS(4636), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -204987,31 +204492,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83943] = 11, - ACTIONS(1584), 1, + [83396] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5268), 1, + ACTIONS(5311), 1, anon_sym_STAR, - ACTIONS(5270), 1, + ACTIONS(5313), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5272), 2, + ACTIONS(5315), 2, sym_number, sym_private_property_identifier, - ACTIONS(5276), 2, + ACTIONS(5319), 2, anon_sym_get, anon_sym_set, - STATE(3068), 3, + STATE(3074), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -205021,7 +204526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3603), 20, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205042,18 +204547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84009] = 5, + [83462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5261), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5263), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + ACTIONS(4630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205067,10 +204565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4632), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -205091,34 +204594,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84063] = 3, + [83512] = 7, + ACTIONS(4328), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 13, + ACTIONS(4330), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4691), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3400), 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(4776), 28, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205138,18 +204645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84113] = 5, + [83570] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5564), 2, + ACTIONS(5578), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5566), 3, + ACTIONS(5580), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205163,7 +204670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -205187,260 +204694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84167] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - ACTIONS(5568), 1, - anon_sym_COLON, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84275] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5228), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5570), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5572), 2, - anon_sym_get, - anon_sym_set, - STATE(3794), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [84339] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [84413] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [84489] = 3, + [83624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205454,7 +204712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4638), 28, + ACTIONS(1817), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205483,11 +204741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84539] = 3, + [83674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4855), 13, + ACTIONS(1759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205501,7 +204759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 28, + ACTIONS(1761), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205530,92 +204788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84589] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - ACTIONS(5574), 1, - anon_sym_COLON, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84697] = 5, - ACTIONS(1907), 1, - sym__automatic_semicolon, + [83724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1903), 13, + ACTIONS(1849), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205629,11 +204806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 25, + ACTIONS(1851), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -205655,19 +204835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84751] = 7, - ACTIONS(5576), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_COLON, - ACTIONS(5581), 1, - anon_sym_LT, - ACTIONS(5584), 1, - anon_sym_QMARK, + [83774] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 12, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205678,13 +204850,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(3384), 25, + ACTIONS(1865), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -205706,16 +204882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84809] = 5, - ACTIONS(1887), 1, - sym__automatic_semicolon, + [83824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1883), 13, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205729,11 +204900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1885), 25, + ACTIONS(1740), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -205755,1157 +204929,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84863] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 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(3808), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [84927] = 5, - ACTIONS(1897), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1889), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1893), 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(1895), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [83874] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, anon_sym_AMP_AMP, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, anon_sym_PERCENT, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84981] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5586), 1, - anon_sym_STAR, - ACTIONS(5592), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5594), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5596), 2, - anon_sym_get, - anon_sym_set, - STATE(3078), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5306), 1, + sym__ternary_qmark, + ACTIONS(5582), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3603), 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, - [85047] = 3, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5272), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1915), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5298), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83982] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4255), 1, + anon_sym_RBRACK, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85097] = 3, + ACTIONS(5464), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5428), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84090] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4257), 1, + anon_sym_RBRACK, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85147] = 3, + ACTIONS(5464), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5428), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84198] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3971), 1, anon_sym_LBRACK, + ACTIONS(3973), 1, anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4283), 1, + anon_sym_RBRACK, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85197] = 3, + ACTIONS(5464), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1752), 13, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5428), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1754), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85247] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1819), 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(1821), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85297] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4778), 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(4780), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85347] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5598), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5600), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 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(3384), 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, - [85401] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5602), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5604), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5606), 2, - anon_sym_get, - anon_sym_set, - STATE(3070), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 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, - [85467] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5608), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5610), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5612), 2, - anon_sym_get, - anon_sym_set, - STATE(3815), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [85531] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5608), 1, - anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5616), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5618), 2, - anon_sym_get, - anon_sym_set, - STATE(2986), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 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, - [85597] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - ACTIONS(5620), 1, - anon_sym_COLON, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85705] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4493), 1, - anon_sym_RBRACK, - ACTIONS(5437), 1, - anon_sym_AMP_AMP, - ACTIONS(5439), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, - anon_sym_GT_GT, - ACTIONS(5445), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_CARET, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5453), 1, - anon_sym_PERCENT, - ACTIONS(5455), 1, - anon_sym_STAR_STAR, - ACTIONS(5457), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5433), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5443), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5451), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85813] = 32, - ACTIONS(829), 1, + [84306] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4495), 1, - anon_sym_RBRACK, - ACTIONS(5437), 1, - anon_sym_AMP_AMP, - ACTIONS(5439), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, - anon_sym_GT_GT, - ACTIONS(5445), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_CARET, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5453), 1, - anon_sym_PERCENT, - ACTIONS(5455), 1, - anon_sym_STAR_STAR, - ACTIONS(5457), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5433), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5443), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5451), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5463), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5459), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85921] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4507), 1, + ACTIONS(4297), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86029] = 32, - ACTIONS(829), 1, + [84414] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4168), 1, - anon_sym_RBRACK, - ACTIONS(5437), 1, - anon_sym_AMP_AMP, - ACTIONS(5439), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, - anon_sym_GT_GT, - ACTIONS(5445), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_CARET, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5453), 1, - anon_sym_PERCENT, - ACTIONS(5455), 1, - anon_sym_STAR_STAR, - ACTIONS(5457), 1, - anon_sym_LT, - ACTIONS(5465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5433), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5443), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5451), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5463), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5459), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86137] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4430), 1, + ACTIONS(4299), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86245] = 19, - ACTIONS(829), 1, + [84522] = 19, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 7, + ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -206913,7 +205434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 13, + ACTIONS(4305), 13, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -206927,35 +205448,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [86327] = 14, - ACTIONS(829), 1, + [84604] = 14, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5622), 1, + ACTIONS(5584), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4307), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206968,7 +205489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 16, + ACTIONS(4305), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -206985,69 +205506,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [86399] = 26, - ACTIONS(829), 1, + [84676] = 26, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4305), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -207055,114 +205576,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [86495] = 27, - ACTIONS(829), 1, + [84772] = 27, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5437), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 6, + ACTIONS(4305), 6, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [86593] = 17, - ACTIONS(829), 1, + [84870] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5622), 1, + ACTIONS(5584), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 8, + ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -207171,7 +205692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 15, + ACTIONS(4305), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -207187,65 +205708,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [86671] = 23, - ACTIONS(829), 1, + [84948] = 23, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 3, + ACTIONS(4307), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 8, + ACTIONS(4305), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -207254,66 +205775,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [86761] = 24, - ACTIONS(829), 1, + [85038] = 24, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 8, + ACTIONS(4305), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -207322,68 +205843,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [86853] = 25, - ACTIONS(829), 1, + [85130] = 25, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4305), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -207391,40 +205912,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [86947] = 16, - ACTIONS(829), 1, + [85224] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5622), 1, + ACTIONS(5584), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 10, + ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -207435,7 +205956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 15, + ACTIONS(4305), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -207451,41 +205972,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [87023] = 17, - ACTIONS(829), 1, + [85300] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5622), 1, + ACTIONS(5584), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 11, + ACTIONS(4307), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -207497,7 +206018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 14, + ACTIONS(4305), 14, sym__ternary_qmark, anon_sym_RBRACK, anon_sym_AMP_AMP, @@ -207512,61 +206033,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87101] = 21, - ACTIONS(829), 1, + [85378] = 21, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4069), 5, + ACTIONS(4307), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 10, + ACTIONS(4305), 10, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -207577,768 +206098,761 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [87187] = 28, - ACTIONS(829), 1, + [85464] = 28, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5437), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 5, + ACTIONS(4305), 5, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [87287] = 32, - ACTIONS(829), 1, + [85564] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4350), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87395] = 32, - ACTIONS(829), 1, + [85672] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4501), 1, + ACTIONS(4352), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87503] = 32, - ACTIONS(829), 1, + [85780] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4140), 1, + ACTIONS(4370), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87611] = 32, - ACTIONS(829), 1, + [85888] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4146), 1, + ACTIONS(4372), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87719] = 32, - ACTIONS(829), 1, + [85996] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4164), 1, + ACTIONS(4374), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87827] = 32, - ACTIONS(829), 1, + [86104] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4166), 1, + ACTIONS(4376), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87935] = 32, - ACTIONS(829), 1, + [86212] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4053), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4228), 1, - anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88043] = 32, - ACTIONS(829), 1, + [86320] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4474), 1, + ACTIONS(4388), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88151] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5328), 1, - anon_sym_STAR, - ACTIONS(5625), 1, - anon_sym_async, + [86428] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5627), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5629), 2, - anon_sym_get, - anon_sym_set, - STATE(2989), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(1801), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_PIPE_RBRACE, + ACTIONS(1805), 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(3603), 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, - [88217] = 13, - ACTIONS(829), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1807), 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, + [86480] = 13, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5631), 1, + ACTIONS(5587), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4170), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208351,7 +206865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4446), 17, + ACTIONS(4172), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -208369,39 +206883,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [88287] = 16, - ACTIONS(829), 1, + [86550] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5634), 1, + ACTIONS(5590), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4463), 11, + ACTIONS(4199), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -208413,7 +206927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 15, + ACTIONS(4201), 15, sym__ternary_qmark, anon_sym_RBRACK, anon_sym_AMP_AMP, @@ -208429,106 +206943,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88363] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + [86626] = 6, + ACTIONS(3448), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 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(3404), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86682] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4476), 1, + ACTIONS(4210), 1, anon_sym_RBRACK, - ACTIONS(5437), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5439), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5441), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5445), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5449), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5453), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5455), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5457), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5465), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5467), 1, + ACTIONS(5464), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5431), 2, + ACTIONS(5428), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5433), 2, + ACTIONS(5430), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5443), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5451), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5461), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5463), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5459), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88471] = 12, - ACTIONS(829), 1, + [86790] = 12, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5637), 1, + ACTIONS(5593), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4478), 12, + ACTIONS(4230), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208541,7 +207105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4480), 19, + ACTIONS(4232), 19, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -208561,162 +207125,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [88539] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5328), 1, - anon_sym_STAR, - ACTIONS(5625), 1, - anon_sym_async, + [86858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5640), 2, - sym_number, - sym_private_property_identifier, - STATE(2966), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3400), 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(3404), 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_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3603), 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, - [88605] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - ACTIONS(5642), 1, - anon_sym_COLON, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86908] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(5596), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5598), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(3404), 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, - STATE(1705), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86962] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5265), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5267), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 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(3404), 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, + [87016] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_AMP_AMP, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, + anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, + anon_sym_PERCENT, + ACTIONS(5294), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, + anon_sym_LT, + ACTIONS(5304), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5306), 1, + sym__ternary_qmark, + ACTIONS(5600), 1, + anon_sym_COLON, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5272), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5274), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5282), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5290), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5300), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5302), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5304), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88713] = 11, - ACTIONS(1584), 1, + [87124] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5328), 1, + ACTIONS(5602), 1, anon_sym_STAR, - ACTIONS(5625), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5644), 2, + ACTIONS(5604), 2, sym_number, sym_private_property_identifier, - STATE(2976), 3, + ACTIONS(5606), 2, + anon_sym_get, + anon_sym_set, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208726,11 +207378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -208747,44 +207400,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88779] = 10, - ACTIONS(2275), 1, + [87188] = 4, + ACTIONS(3448), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 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(3404), 27, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87240] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5646), 1, + ACTIONS(5602), 1, anon_sym_STAR, + ACTIONS(5608), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5648), 2, + ACTIONS(5610), 2, sym_number, sym_private_property_identifier, - ACTIONS(5650), 2, + ACTIONS(5612), 2, anon_sym_get, anon_sym_set, - STATE(3726), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 21, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -208801,41 +207503,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88843] = 11, - ACTIONS(1584), 1, + [87306] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5646), 1, + ACTIONS(5542), 1, anon_sym_STAR, - ACTIONS(5652), 1, + ACTIONS(5614), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5654), 2, + ACTIONS(5616), 2, sym_number, sym_private_property_identifier, - ACTIONS(5656), 2, + ACTIONS(5618), 2, anon_sym_get, anon_sym_set, - STATE(3069), 3, + STATE(2994), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(3603), 20, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208856,87 +207558,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88909] = 32, - ACTIONS(829), 1, + [87372] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5282), 1, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5290), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5292), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5294), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5298), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - ACTIONS(5658), 1, + ACTIONS(5620), 1, anon_sym_COLON, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5280), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5296), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5304), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89017] = 3, + [87480] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5542), 1, + anon_sym_STAR, + ACTIONS(5614), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5618), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5622), 2, + sym_number, + sym_private_property_identifier, + STATE(2956), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [87546] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5542), 1, + anon_sym_STAR, + ACTIONS(5614), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5618), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5624), 2, + sym_number, + sym_private_property_identifier, + STATE(2965), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [87612] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4880), 13, + ACTIONS(1835), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1839), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208950,15 +207768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4882), 28, - sym__automatic_semicolon, + ACTIONS(1841), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208979,110 +207792,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89067] = 32, - ACTIONS(829), 1, + [87664] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5282), 1, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5284), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5290), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5292), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5294), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5298), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5300), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5302), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - ACTIONS(5660), 1, + ACTIONS(5626), 1, anon_sym_COLON, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5280), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5296), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5304), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89175] = 3, + [87772] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5628), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4884), 13, + ACTIONS(5630), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5632), 2, + anon_sym_get, + anon_sym_set, + STATE(3880), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(2307), 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, + [87836] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5628), 1, + anon_sym_STAR, + ACTIONS(5634), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5636), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5638), 2, + anon_sym_get, + anon_sym_set, + STATE(3038), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3607), 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, + [87902] = 8, + ACTIONS(3454), 1, + anon_sym_EQ, + ACTIONS(4328), 1, + anon_sym_QMARK, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4330), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3400), 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(4886), 28, - sym__automatic_semicolon, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209102,11 +208029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89225] = 3, + [87962] = 5, + ACTIONS(5640), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 13, + ACTIONS(1769), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209120,15 +208054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4784), 28, - sym__automatic_semicolon, + ACTIONS(1775), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209149,54 +208078,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89275] = 11, - ACTIONS(1584), 1, + [88016] = 21, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(1935), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5546), 1, - anon_sym_STAR, - ACTIONS(5662), 1, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(5646), 1, + anon_sym_RBRACE, + ACTIONS(5648), 1, anon_sym_async, + ACTIONS(5652), 1, + anon_sym_static, + ACTIONS(5654), 1, + anon_sym_readonly, + ACTIONS(5660), 1, + anon_sym_override, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2711), 1, + sym_override_modifier, + STATE(5089), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5664), 2, + ACTIONS(5650), 2, sym_number, sym_private_property_identifier, - ACTIONS(5666), 2, + ACTIONS(5656), 2, anon_sym_get, anon_sym_set, - STATE(2999), 3, + ACTIONS(5658), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3611), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 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(3603), 20, + STATE(5086), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5642), 14, 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, @@ -209204,29 +208143,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89341] = 10, + [88102] = 7, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3418), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3406), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3400), 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(3404), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88160] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, + ACTIONS(5662), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, + ACTIONS(5664), 2, sym_number, sym_private_property_identifier, - ACTIONS(5670), 2, + ACTIONS(5666), 2, anon_sym_get, anon_sym_set, - STATE(3754), 3, + STATE(3772), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -209258,34 +208248,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89405] = 3, + [88224] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(4402), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4404), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3400), 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(1885), 28, - sym__automatic_semicolon, + ACTIONS(3404), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - 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, + [88278] = 7, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4881), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4878), 3, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4774), 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(4776), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209305,11 +208348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89455] = 3, + [88336] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 13, + ACTIONS(1783), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209323,14 +208369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 28, + ACTIONS(1789), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -209352,37 +208396,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89505] = 7, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(4144), 1, - anon_sym_extends, + [88388] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, + ACTIONS(1825), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1829), 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(3384), 24, + ACTIONS(1831), 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, @@ -209402,23 +208444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [89563] = 7, - ACTIONS(3531), 1, + [88440] = 7, + ACTIONS(3542), 1, anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + ACTIONS(4330), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 2, + ACTIONS(4691), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, + anon_sym_LBRACK, + ACTIONS(4694), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(3400), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209429,12 +208470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 24, + ACTIONS(3404), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209454,558 +208494,988 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89621] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5282), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5286), 1, - anon_sym_GT_GT, - ACTIONS(5290), 1, - anon_sym_AMP, - ACTIONS(5292), 1, - anon_sym_CARET, - ACTIONS(5294), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_PERCENT, - ACTIONS(5300), 1, - anon_sym_STAR_STAR, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5312), 1, - sym__ternary_qmark, - ACTIONS(5672), 1, - anon_sym_COLON, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_implements, + [88498] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5278), 2, + ACTIONS(1811), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1815), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5280), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5288), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5296), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 2, + ACTIONS(1817), 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, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89729] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5674), 1, - anon_sym_STAR, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88550] = 5, + ACTIONS(5668), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5676), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5678), 2, - anon_sym_get, - anon_sym_set, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1755), 4, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_PIPE_RBRACE, + ACTIONS(1759), 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(2307), 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, - [89793] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1761), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4493), 1, - anon_sym_of, - ACTIONS(5393), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, - anon_sym_GT_GT, - ACTIONS(5401), 1, - anon_sym_AMP, - ACTIONS(5403), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5405), 1, - anon_sym_PIPE, - ACTIONS(5409), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(5421), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88604] = 5, + ACTIONS(5670), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(1845), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1849), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5407), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5415), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89901] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(1851), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4495), 1, - anon_sym_of, - ACTIONS(5393), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, - anon_sym_GT_GT, - ACTIONS(5401), 1, - anon_sym_AMP, - ACTIONS(5403), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5405), 1, - anon_sym_PIPE, - ACTIONS(5409), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(5421), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88658] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(4665), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5407), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5415), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90009] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4667), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4507), 1, - anon_sym_of, - ACTIONS(5393), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, - anon_sym_GT_GT, - ACTIONS(5401), 1, - anon_sym_AMP, - ACTIONS(5403), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5405), 1, - anon_sym_PIPE, - ACTIONS(5409), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(5421), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(4709), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5407), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5415), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90117] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4711), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4168), 1, - anon_sym_of, - ACTIONS(5393), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, - anon_sym_GT_GT, - ACTIONS(5401), 1, - anon_sym_AMP, - ACTIONS(5403), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5405), 1, - anon_sym_PIPE, - ACTIONS(5409), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(5421), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88758] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 2, + 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_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5407), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5415), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90225] = 32, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(1865), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88810] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1738), 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(1740), 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, - ACTIONS(4430), 1, + [88862] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4640), 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(4642), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - ACTIONS(5393), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5395), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 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, + [88912] = 5, + ACTIONS(5672), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1885), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1889), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5401), 1, anon_sym_AMP, - ACTIONS(5403), 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(1891), 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, + [88966] = 7, + ACTIONS(3518), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4330), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(3404), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, + [89024] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_AMP_AMP, + ACTIONS(5278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_GT_GT, + ACTIONS(5284), 1, + anon_sym_AMP, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - STATE(1443), 1, + ACTIONS(5674), 1, + anon_sym_COLON, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90333] = 19, - ACTIONS(829), 1, + [89132] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5397), 1, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4255), 1, + anon_sym_of, + ACTIONS(5343), 1, + anon_sym_AMP_AMP, + ACTIONS(5345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5409), 1, + ACTIONS(5351), 1, + anon_sym_AMP, + ACTIONS(5353), 1, + anon_sym_CARET, + ACTIONS(5355), 1, + anon_sym_PIPE, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + ACTIONS(5371), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5373), 1, + sym__ternary_qmark, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5349), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5367), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5369), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5365), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89240] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4257), 1, + anon_sym_of, + ACTIONS(5343), 1, + anon_sym_AMP_AMP, + ACTIONS(5345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5347), 1, + anon_sym_GT_GT, + ACTIONS(5351), 1, + anon_sym_AMP, + ACTIONS(5353), 1, + anon_sym_CARET, + ACTIONS(5355), 1, + anon_sym_PIPE, + ACTIONS(5359), 1, + anon_sym_PERCENT, + ACTIONS(5361), 1, + anon_sym_STAR_STAR, + ACTIONS(5363), 1, + anon_sym_LT, + ACTIONS(5371), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5373), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5349), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5367), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5369), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5365), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89348] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4283), 1, + anon_sym_of, + ACTIONS(5343), 1, + anon_sym_AMP_AMP, + ACTIONS(5345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5347), 1, + anon_sym_GT_GT, + ACTIONS(5351), 1, + anon_sym_AMP, + ACTIONS(5353), 1, + anon_sym_CARET, + ACTIONS(5355), 1, + anon_sym_PIPE, + ACTIONS(5359), 1, + anon_sym_PERCENT, + ACTIONS(5361), 1, + anon_sym_STAR_STAR, + ACTIONS(5363), 1, + anon_sym_LT, + ACTIONS(5371), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5373), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5349), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5367), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5369), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5365), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89456] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4297), 1, + anon_sym_of, + ACTIONS(5343), 1, + anon_sym_AMP_AMP, + ACTIONS(5345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5347), 1, + anon_sym_GT_GT, + ACTIONS(5351), 1, + anon_sym_AMP, + ACTIONS(5353), 1, + anon_sym_CARET, + ACTIONS(5355), 1, + anon_sym_PIPE, + ACTIONS(5359), 1, + anon_sym_PERCENT, + ACTIONS(5361), 1, + anon_sym_STAR_STAR, + ACTIONS(5363), 1, + anon_sym_LT, + ACTIONS(5371), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5373), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5349), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5367), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5369), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5365), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89564] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4299), 1, + anon_sym_of, + ACTIONS(5343), 1, + anon_sym_AMP_AMP, + ACTIONS(5345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5347), 1, + anon_sym_GT_GT, + ACTIONS(5351), 1, + anon_sym_AMP, + ACTIONS(5353), 1, + anon_sym_CARET, + ACTIONS(5355), 1, + anon_sym_PIPE, + ACTIONS(5359), 1, + anon_sym_PERCENT, + ACTIONS(5361), 1, + anon_sym_STAR_STAR, + ACTIONS(5363), 1, + anon_sym_LT, + ACTIONS(5371), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5373), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5349), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5367), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5369), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5365), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89672] = 19, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5347), 1, + anon_sym_GT_GT, + ACTIONS(5359), 1, + anon_sym_PERCENT, + ACTIONS(5361), 1, + anon_sym_STAR_STAR, + ACTIONS(5363), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 7, + ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -210013,7 +209483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 13, + ACTIONS(4305), 13, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210027,35 +209497,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [90415] = 14, - ACTIONS(829), 1, + [89754] = 14, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4307), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210068,7 +209538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 16, + ACTIONS(4305), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210085,69 +209555,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [90487] = 26, - ACTIONS(829), 1, + [89826] = 26, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5397), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4305), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210155,114 +209625,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [90583] = 27, - ACTIONS(829), 1, + [89922] = 27, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5393), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 6, + ACTIONS(4305), 6, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [90681] = 17, - ACTIONS(829), 1, + [90020] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 8, + ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -210271,7 +209741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 15, + ACTIONS(4305), 15, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210287,65 +209757,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [90759] = 23, - ACTIONS(829), 1, + [90098] = 23, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 3, + ACTIONS(4307), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 8, + ACTIONS(4305), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210354,66 +209824,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [90849] = 24, - ACTIONS(829), 1, + [90188] = 24, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 8, + ACTIONS(4305), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210422,68 +209892,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [90941] = 25, - ACTIONS(829), 1, + [90280] = 25, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4305), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210491,40 +209961,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [91035] = 16, - ACTIONS(829), 1, + [90374] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 10, + ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -210535,7 +210005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 15, + ACTIONS(4305), 15, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210551,41 +210021,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [91111] = 17, - ACTIONS(829), 1, + [90450] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 11, + ACTIONS(4307), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -210597,7 +210067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 14, + ACTIONS(4305), 14, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -210612,61 +210082,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91189] = 21, - ACTIONS(829), 1, + [90528] = 21, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4069), 5, + ACTIONS(4307), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 10, + ACTIONS(4305), 10, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -210677,713 +210147,810 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [91275] = 28, - ACTIONS(829), 1, + [90614] = 28, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5393), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 5, + ACTIONS(4305), 5, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [91375] = 32, - ACTIONS(829), 1, + [90714] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4350), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91483] = 32, - ACTIONS(829), 1, + [90822] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4501), 1, + ACTIONS(4352), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91591] = 32, - ACTIONS(829), 1, + [90930] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4140), 1, + ACTIONS(4370), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91699] = 32, - ACTIONS(829), 1, + [91038] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4146), 1, + ACTIONS(4372), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91807] = 32, - ACTIONS(829), 1, + [91146] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4164), 1, + ACTIONS(4374), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91915] = 32, - ACTIONS(829), 1, + [91254] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4166), 1, + ACTIONS(4376), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92023] = 32, - ACTIONS(829), 1, + [91362] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4053), 1, + anon_sym_of, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4228), 1, - anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92131] = 32, - ACTIONS(829), 1, + [91470] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4474), 1, + ACTIONS(4388), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91578] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5679), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5681), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3400), 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(3404), 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, - [92239] = 13, - ACTIONS(829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3961), 1, + anon_sym_satisfies, + [91632] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1895), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1899), 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(1901), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 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, + [91684] = 13, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(5683), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4170), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211396,7 +210963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4446), 17, + ACTIONS(4172), 17, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -211414,39 +210981,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [92309] = 16, - ACTIONS(829), 1, + [91754] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, ACTIONS(5686), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4463), 11, + ACTIONS(4199), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -211458,7 +211025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 15, + ACTIONS(4201), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -211474,106 +211041,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [92385] = 32, - ACTIONS(829), 1, + [91830] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4476), 1, + ACTIONS(4210), 1, anon_sym_of, - ACTIONS(5393), 1, + ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5395), 1, + ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5397), 1, + ACTIONS(5347), 1, anon_sym_GT_GT, - ACTIONS(5401), 1, + ACTIONS(5351), 1, anon_sym_AMP, - ACTIONS(5403), 1, + ACTIONS(5353), 1, anon_sym_CARET, - ACTIONS(5405), 1, + ACTIONS(5355), 1, anon_sym_PIPE, - ACTIONS(5409), 1, + ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5411), 1, + ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5413), 1, + ACTIONS(5363), 1, anon_sym_LT, - ACTIONS(5421), 1, + ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5423), 1, + ACTIONS(5373), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 2, + ACTIONS(5336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5341), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5399), 2, + ACTIONS(5349), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5407), 2, + ACTIONS(5357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5417), 2, + ACTIONS(5367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5419), 2, + ACTIONS(5369), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5415), 3, + ACTIONS(5365), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92493] = 12, - ACTIONS(829), 1, + [91938] = 12, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, ACTIONS(5689), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4478), 12, + ACTIONS(4230), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211586,7 +211153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4480), 19, + ACTIONS(4232), 19, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -211606,13 +211173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [92561] = 4, - ACTIONS(3490), 1, + [92006] = 4, + ACTIONS(3450), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211626,7 +211193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 27, + ACTIONS(3404), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -211654,18 +211221,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92613] = 5, + [92058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5694), 3, + ACTIONS(4713), 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(4715), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3380), 13, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, + [92108] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211679,10 +211286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(4350), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -211703,45 +211315,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92667] = 8, - ACTIONS(2275), 1, + [92158] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(5560), 1, + anon_sym_STAR, + ACTIONS(5692), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, + ACTIONS(5694), 2, sym_number, sym_private_property_identifier, - STATE(3843), 3, + ACTIONS(5696), 2, + anon_sym_get, + anon_sym_set, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(3607), 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, @@ -211754,268 +211370,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92726] = 31, - ACTIONS(829), 1, + [92224] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5280), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5284), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5286), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5296), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5304), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5306), 1, sym__ternary_qmark, - STATE(1443), 1, + ACTIONS(5698), 1, + anon_sym_COLON, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5282), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5290), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5302), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5298), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92831] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, + [92332] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5554), 2, - sym_number, - sym_private_property_identifier, - STATE(3775), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(1889), 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(1891), 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(2307), 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, - [92890] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5560), 2, - sym_number, - sym_private_property_identifier, - STATE(3779), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [92949] = 17, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(2715), 1, - sym_override_modifier, - STATE(5117), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [93026] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4244), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4451), 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(4453), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -212037,95 +211493,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93077] = 16, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(2715), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5734), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [93152] = 6, - ACTIONS(4606), 1, - anon_sym_LBRACK, + [92382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(1899), 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(3384), 24, + ACTIONS(1901), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -212145,110 +211540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93207] = 31, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4106), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(5700), 1, - anon_sym_AMP_AMP, - ACTIONS(5702), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, - anon_sym_GT_GT, - ACTIONS(5708), 1, - anon_sym_AMP, - ACTIONS(5710), 1, - anon_sym_CARET, - ACTIONS(5712), 1, - anon_sym_PIPE, - ACTIONS(5716), 1, - anon_sym_PERCENT, - ACTIONS(5718), 1, - anon_sym_STAR_STAR, - ACTIONS(5720), 1, - anon_sym_LT, - ACTIONS(5728), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, - sym__ternary_qmark, - STATE(1443), 1, - sym_type_arguments, - STATE(5056), 1, - sym_optional_chain, + [92432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(4626), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5698), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5714), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5724), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5726), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(5722), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93312] = 6, - ACTIONS(4640), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4200), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4643), 3, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4636), 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(4638), 24, + ACTIONS(4628), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -212268,37 +211587,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93367] = 7, - ACTIONS(4017), 1, - anon_sym_QMARK, - ACTIONS(4019), 1, - anon_sym_extends, + [92482] = 5, + ACTIONS(1777), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4792), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3380), 11, + ACTIONS(1769), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1773), 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(3384), 22, + ACTIONS(1775), 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, @@ -212318,34 +211636,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93424] = 8, - ACTIONS(1584), 1, + [92536] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5737), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212355,8 +211683,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, @@ -212369,50 +211695,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93483] = 13, + [92610] = 16, ACTIONS(241), 1, anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5205), 1, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5109), 1, anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3909), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 23, + ACTIONS(2307), 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, @@ -212425,22 +211755,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93552] = 13, - ACTIONS(241), 1, + [92686] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4928), 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(4930), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92736] = 17, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5209), 1, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(5700), 1, anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(2719), 1, + sym_override_modifier, + STATE(5124), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -212448,32 +211831,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3909), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 23, + ACTIONS(2307), 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, @@ -212481,30 +211862,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93621] = 8, + [92813] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3852), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -212532,34 +211918,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93680] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, + [92882] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5739), 2, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3880), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212583,15 +211965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93739] = 4, - ACTIONS(5095), 1, - sym_regex_flags, + [92933] = 6, + ACTIONS(4678), 1, + anon_sym_EQ, + ACTIONS(4987), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5091), 17, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4676), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -212604,13 +211990,9 @@ 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(5093), 22, + ACTIONS(4680), 23, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -212627,27 +212009,29 @@ 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, - [93790] = 8, + anon_sym_satisfies, + [92988] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(5552), 2, sym_number, sym_private_property_identifier, - STATE(3886), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -212681,200 +212065,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93849] = 4, - ACTIONS(3540), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 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(3384), 26, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [93900] = 6, - ACTIONS(4840), 1, - anon_sym_EQ, - ACTIONS(5077), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4844), 2, + [93047] = 13, + ACTIONS(241), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4838), 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(4842), 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, - [93955] = 31, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, - anon_sym_as, - ACTIONS(4122), 1, - anon_sym_satisfies, - ACTIONS(4526), 1, - anon_sym_BANG, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - anon_sym_LBRACK, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(5700), 1, - anon_sym_AMP_AMP, - ACTIONS(5702), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, - anon_sym_GT_GT, - ACTIONS(5708), 1, - anon_sym_AMP, - ACTIONS(5710), 1, - anon_sym_CARET, - ACTIONS(5712), 1, - anon_sym_PIPE, - ACTIONS(5716), 1, - anon_sym_PERCENT, - ACTIONS(5718), 1, - anon_sym_STAR_STAR, - ACTIONS(5720), 1, - anon_sym_LT, - ACTIONS(5728), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, - sym__ternary_qmark, - STATE(2553), 1, - sym_type_arguments, - STATE(4591), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5696), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5698), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5706), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5714), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5724), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5726), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2250), 2, - sym_template_string, - sym_arguments, - ACTIONS(5722), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94060] = 8, + ACTIONS(727), 1, + anon_sym_RBRACE, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5376), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3778), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -212902,24 +212121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94119] = 8, - ACTIONS(2275), 1, + [93116] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5538), 2, + ACTIONS(5702), 2, sym_number, sym_private_property_identifier, - STATE(3907), 3, + STATE(3366), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -212929,7 +212148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212953,34 +212172,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94178] = 13, + [93175] = 13, ACTIONS(241), 1, anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(5198), 1, anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(4671), 1, aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3909), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -213009,170 +212228,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94247] = 6, - ACTIONS(4792), 1, + [93244] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4795), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 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(3384), 24, + ACTIONS(5526), 2, + sym_number, + sym_private_property_identifier, + STATE(3842), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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, - [94302] = 7, - ACTIONS(3404), 1, - anon_sym_EQ, - ACTIONS(4144), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4606), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 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_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3384), 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, - [94359] = 7, - ACTIONS(1706), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 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, + [93303] = 7, + ACTIONS(1726), 1, anon_sym_EQ, - ACTIONS(2335), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4372), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4375), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1704), 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(1708), 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, - [94416] = 7, - ACTIONS(4182), 1, + ACTIONS(2331), 1, anon_sym_extends, - ACTIONS(4434), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 2, + ACTIONS(4414), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4441), 2, + ACTIONS(4417), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4432), 11, + ACTIONS(1724), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213184,7 +212305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 23, + ACTIONS(1728), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -213208,24 +212329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94473] = 8, - ACTIONS(1584), 1, + [93360] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, + ACTIONS(5506), 2, sym_number, sym_private_property_identifier, - STATE(3281), 3, + STATE(3747), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213235,7 +212356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213259,33 +212380,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94532] = 8, + [93419] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5427), 2, + ACTIONS(5375), 2, sym_number, sym_private_property_identifier, - STATE(3870), 3, + STATE(3731), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 23, anon_sym_export, anon_sym_type, @@ -213310,35 +212431,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94591] = 5, - ACTIONS(3404), 1, + [93478] = 7, + ACTIONS(4392), 1, + anon_sym_extends, + ACTIONS(4440), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 3, - anon_sym_COMMA, + ACTIONS(4444), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3380), 13, + anon_sym_LBRACK, + ACTIONS(4447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4438), 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(3384), 23, + ACTIONS(4442), 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, @@ -213358,74 +212481,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94644] = 7, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, + [93535] = 6, + ACTIONS(4697), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3406), 4, + ACTIONS(4041), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3380), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4700), 3, 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(3384), 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, - [94701] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4194), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4196), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3380), 11, + ACTIONS(3400), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -213433,10 +212505,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 22, + ACTIONS(3404), 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, @@ -213456,85 +212530,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94754] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5741), 2, - sym_number, - sym_private_property_identifier, - STATE(3873), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, + [93590] = 7, + ACTIONS(3402), 1, 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(2307), 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, - [94813] = 4, + ACTIONS(4330), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4451), 13, + ACTIONS(4691), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(4453), 25, - sym__automatic_semicolon, + ACTIONS(3404), 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, @@ -213554,30 +212580,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94864] = 8, + [93647] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5610), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3815), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -213605,33 +212636,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94923] = 13, - ACTIONS(829), 1, + [93716] = 13, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5743), 1, + ACTIONS(5704), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4444), 12, + ACTIONS(4170), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213644,7 +212675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4446), 16, + ACTIONS(4172), 16, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -213661,39 +212692,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [94992] = 16, - ACTIONS(829), 1, + [93785] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4463), 11, + ACTIONS(4199), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -213705,7 +212736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 14, + ACTIONS(4201), 14, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213720,160 +212751,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95067] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [95136] = 31, - ACTIONS(829), 1, + [93860] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95241] = 12, - ACTIONS(829), 1, + [93965] = 12, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5749), 1, + ACTIONS(5746), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4478), 12, + ACTIONS(4230), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213886,7 +212861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4480), 18, + ACTIONS(4232), 18, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -213905,24 +212880,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [95308] = 8, - ACTIONS(2275), 1, + [94032] = 7, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3418), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3406), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3400), 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(3404), 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, + [94089] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4402), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4404), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3400), 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(3404), 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, + [94142] = 31, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4562), 1, + anon_sym_BANG, + ACTIONS(5714), 1, + anon_sym_AMP_AMP, + ACTIONS(5716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5718), 1, + anon_sym_GT_GT, + ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, + anon_sym_CARET, + ACTIONS(5726), 1, + anon_sym_PIPE, + ACTIONS(5730), 1, + anon_sym_PERCENT, + ACTIONS(5732), 1, + anon_sym_STAR_STAR, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5742), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5744), 1, + sym__ternary_qmark, + STATE(2519), 1, + sym_type_arguments, + STATE(4772), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5738), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5740), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2133), 2, + sym_template_string, + sym_arguments, + ACTIONS(5736), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94247] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, + ACTIONS(5385), 2, sym_number, sym_private_property_identifier, - STATE(3754), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213956,30 +213103,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95367] = 8, + [94306] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(725), 1, + anon_sym_RBRACE, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3853), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -214007,33 +213159,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95426] = 8, + [94375] = 4, + ACTIONS(5107), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5103), 17, + 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, + anon_sym_implements, + ACTIONS(5105), 22, + sym__ternary_qmark, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, + [94426] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5714), 1, + anon_sym_AMP_AMP, + ACTIONS(5716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5718), 1, + anon_sym_GT_GT, + ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, + anon_sym_CARET, + ACTIONS(5726), 1, + anon_sym_PIPE, + ACTIONS(5730), 1, + anon_sym_PERCENT, + ACTIONS(5732), 1, + anon_sym_STAR_STAR, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5742), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5744), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5738), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5740), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5736), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94531] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4456), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4450), 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(4452), 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, + [94582] = 16, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + STATE(2719), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5749), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [94657] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5366), 2, + ACTIONS(5468), 2, sym_number, sym_private_property_identifier, - STATE(3906), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 23, anon_sym_export, anon_sym_type, @@ -214058,33 +213437,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95485] = 8, + [94716] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 2, + ACTIONS(5381), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 23, anon_sym_export, anon_sym_type, @@ -214109,65 +213488,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95544] = 23, - ACTIONS(1584), 1, + [94775] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(3729), 1, - anon_sym_AT, - ACTIONS(4055), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, - anon_sym_STAR, - ACTIONS(5754), 1, - anon_sym_async, - ACTIONS(5758), 1, - anon_sym_static, - ACTIONS(5760), 1, - anon_sym_readonly, - ACTIONS(5764), 1, - anon_sym_declare, - ACTIONS(5766), 1, - anon_sym_abstract, - ACTIONS(5768), 1, - anon_sym_accessor, - STATE(2596), 1, - sym_method_definition, - STATE(2638), 1, - sym_accessibility_modifier, - STATE(2671), 1, - aux_sym_export_statement_repeat1, - STATE(2705), 1, - sym_override_modifier, - STATE(2714), 1, - sym_decorator, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5756), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5762), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3627), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2992), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 13, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, @@ -214175,33 +213544,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95633] = 8, + [94844] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5648), 2, + ACTIONS(5604), 2, sym_number, sym_private_property_identifier, - STATE(3726), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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(2307), 23, anon_sym_export, anon_sym_type, @@ -214226,33 +213595,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95692] = 8, + [94903] = 7, + ACTIONS(4039), 1, + anon_sym_QMARK, + ACTIONS(4041), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4700), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4697), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3400), 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(3404), 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, + [94960] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5630), 2, sym_number, sym_private_property_identifier, - STATE(3881), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 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, + anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -214277,38 +213696,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95751] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, + [95019] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5207), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - STATE(3909), 3, + STATE(3734), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 23, anon_sym_export, anon_sym_type, @@ -214333,35 +213747,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95820] = 13, - ACTIONS(241), 1, + [95078] = 6, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4330), 2, anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(3404), 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, + [95133] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5532), 2, sym_number, sym_private_property_identifier, - STATE(3909), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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, @@ -214389,572 +213847,514 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95889] = 31, - ACTIONS(829), 1, + [95192] = 6, + ACTIONS(4878), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4881), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4774), 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(4776), 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, - ACTIONS(3961), 1, + anon_sym_satisfies, + [95247] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4460), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4450), 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(4452), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3985), 1, anon_sym_DOT, - ACTIONS(4071), 1, anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95298] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95994] = 31, - ACTIONS(829), 1, + [95403] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96099] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5570), 2, - sym_number, - sym_private_property_identifier, - STATE(3794), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [96158] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 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(1975), 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, - [96209] = 31, - ACTIONS(829), 1, + [95508] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96314] = 31, - ACTIONS(829), 1, + [95613] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96419] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_LBRACK, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 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, - [96488] = 31, - ACTIONS(829), 1, + [95718] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96593] = 19, - ACTIONS(829), 1, + [95823] = 19, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 7, + ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -214962,7 +214362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 12, + ACTIONS(4305), 12, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -214975,35 +214375,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [96674] = 14, - ACTIONS(829), 1, + [95904] = 14, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5770), 1, + ACTIONS(5752), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 12, + ACTIONS(4307), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215016,7 +214416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 15, + ACTIONS(4305), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -215032,182 +214432,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [96745] = 26, - ACTIONS(829), 1, + [95975] = 23, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(3713), 1, + anon_sym_AT, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_STAR, + ACTIONS(5757), 1, + anon_sym_async, + ACTIONS(5761), 1, + anon_sym_static, + ACTIONS(5763), 1, + anon_sym_readonly, + ACTIONS(5767), 1, + anon_sym_declare, + ACTIONS(5769), 1, + anon_sym_abstract, + ACTIONS(5771), 1, + anon_sym_accessor, + STATE(2575), 1, + sym_method_definition, + STATE(2638), 1, + sym_accessibility_modifier, + STATE(2671), 1, + aux_sym_export_statement_repeat1, + STATE(2697), 1, + sym_decorator, + STATE(2699), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5759), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5765), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3631), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2992), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3607), 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, + [96064] = 26, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5704), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 6, + ACTIONS(4305), 6, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [96840] = 27, - ACTIONS(829), 1, + [96159] = 27, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5700), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 5, + ACTIONS(4305), 5, sym__ternary_qmark, anon_sym_as, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [96937] = 17, - ACTIONS(829), 1, + [96256] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5770), 1, + ACTIONS(5752), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 8, + ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -215216,7 +214682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 14, + ACTIONS(4305), 14, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -215231,65 +214697,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [97014] = 23, - ACTIONS(829), 1, + [96333] = 23, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 3, + ACTIONS(4307), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4305), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -215297,66 +214763,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [97103] = 24, - ACTIONS(829), 1, + [96422] = 24, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 7, + ACTIONS(4305), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -215364,159 +214830,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [97194] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5676), 2, - sym_number, - sym_private_property_identifier, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [97253] = 25, - ACTIONS(829), 1, + [96513] = 25, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(4307), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 6, + ACTIONS(4305), 6, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [97346] = 16, - ACTIONS(829), 1, + [96606] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5770), 1, + ACTIONS(5752), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 10, + ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -215527,7 +214942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 14, + ACTIONS(4305), 14, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -215542,41 +214957,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [97421] = 17, - ACTIONS(829), 1, + [96681] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5770), 1, + ACTIONS(5752), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(4069), 11, + ACTIONS(4307), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -215588,7 +215003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 13, + ACTIONS(4305), 13, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -215602,61 +215017,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [97498] = 21, - ACTIONS(829), 1, + [96758] = 21, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4069), 5, + ACTIONS(4307), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4067), 9, + ACTIONS(4305), 9, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -215666,294 +215081,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [97583] = 28, - ACTIONS(829), 1, + [96843] = 28, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_BANG, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5700), 1, + ACTIONS(4307), 1, + anon_sym_BANG, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4067), 4, + ACTIONS(4305), 4, sym__ternary_qmark, anon_sym_as, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [97682] = 31, - ACTIONS(829), 1, + [96942] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97787] = 31, - ACTIONS(829), 1, + [97047] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97892] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5542), 2, - sym_number, - sym_private_property_identifier, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(2307), 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, - [97951] = 8, + [97152] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(5556), 2, sym_number, sym_private_property_identifier, STATE(3808), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 9, + ACTIONS(3743), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -215987,531 +215351,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98010] = 31, - ACTIONS(829), 1, + [97211] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98115] = 31, - ACTIONS(829), 1, + [97316] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98220] = 31, - ACTIONS(829), 1, + [97421] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98325] = 31, - ACTIONS(829), 1, + [97526] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98430] = 31, - ACTIONS(829), 1, + [97631] = 31, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, + ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4102), 1, + ACTIONS(4051), 1, anon_sym_as, - ACTIONS(4106), 1, + ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4122), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5700), 1, + ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5702), 1, + ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5704), 1, + ACTIONS(5718), 1, anon_sym_GT_GT, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5710), 1, + ACTIONS(5724), 1, anon_sym_CARET, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5716), 1, + ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5718), 1, + ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_QMARK_QMARK, - ACTIONS(5730), 1, + ACTIONS(5744), 1, sym__ternary_qmark, - STATE(1443), 1, + STATE(1447), 1, sym_type_arguments, - STATE(5056), 1, + STATE(5080), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 2, + ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, + ACTIONS(5710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5698), 2, + ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5706), 2, + ACTIONS(5720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5714), 2, + ACTIONS(5728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5724), 2, + ACTIONS(5738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5726), 2, + ACTIONS(5740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1705), 2, + STATE(1757), 2, sym_template_string, sym_arguments, - ACTIONS(5722), 3, + ACTIONS(5736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98535] = 7, - ACTIONS(3548), 1, - anon_sym_EQ, - ACTIONS(4606), 1, + [97736] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 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(3384), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - [98592] = 7, - ACTIONS(3556), 1, + ACTIONS(5664), 2, + sym_number, + sym_private_property_identifier, + STATE(3772), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4144), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 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(3384), 23, - 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, - [98649] = 19, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(1935), 1, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [97795] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5777), 1, - anon_sym_async, - ACTIONS(5779), 1, - anon_sym_static, - ACTIONS(5781), 1, - anon_sym_readonly, - ACTIONS(5787), 1, - anon_sym_override, - STATE(2687), 1, - sym_accessibility_modifier, - STATE(2712), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5562), 2, sym_number, sym_private_property_identifier, - ACTIONS(5775), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5783), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5785), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3622), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5354), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5773), 14, + ACTIONS(3743), 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(2307), 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, @@ -216519,38 +215823,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98730] = 11, - ACTIONS(1584), 1, + [97854] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_as, + ACTIONS(4055), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_satisfies, + ACTIONS(5714), 1, + anon_sym_AMP_AMP, + ACTIONS(5716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5718), 1, + anon_sym_GT_GT, + ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, + anon_sym_CARET, + ACTIONS(5726), 1, + anon_sym_PIPE, + ACTIONS(5730), 1, + anon_sym_PERCENT, + ACTIONS(5732), 1, + anon_sym_STAR_STAR, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5742), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5744), 1, + sym__ternary_qmark, + STATE(1447), 1, + sym_type_arguments, + STATE(5080), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5738), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5740), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1757), 2, + sym_template_string, + sym_arguments, + ACTIONS(5736), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97959] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5791), 1, - anon_sym_readonly, - STATE(2749), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5789), 2, + ACTIONS(5566), 2, sym_number, sym_private_property_identifier, - STATE(3382), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 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(3603), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216559,12 +215933,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, @@ -216572,38 +215948,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98794] = 11, - ACTIONS(1584), 1, + [98018] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5793), 1, - anon_sym_readonly, - STATE(2746), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5737), 2, + ACTIONS(5572), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 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(3603), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216612,12 +215984,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, @@ -216625,34 +215999,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98858] = 9, - ACTIONS(1584), 1, + [98077] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5737), 2, + ACTIONS(4993), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3277), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 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(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216676,34 +216050,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98918] = 9, - ACTIONS(1584), 1, + [98136] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5797), 2, + ACTIONS(5773), 2, sym_number, sym_private_property_identifier, - STATE(3384), 3, + STATE(3897), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 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(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216727,113 +216101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98978] = 6, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4144), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3380), 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(3384), 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, - [99032] = 6, - ACTIONS(4640), 1, - anon_sym_LBRACK, + [98195] = 5, + ACTIONS(3402), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4643), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4200), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4636), 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(4638), 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, - [99086] = 6, - ACTIONS(3505), 1, + ACTIONS(3593), 3, anon_sym_COMMA, - ACTIONS(3514), 1, + anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3596), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216847,7 +216125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -216871,39 +216149,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99140] = 12, + [98248] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5486), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5734), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3909), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 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(2307), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216913,6 +216186,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, @@ -216925,31 +216200,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99206] = 6, - ACTIONS(4053), 1, + [98307] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4243), 1, anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 7, - sym__automatic_semicolon, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216973,31 +216256,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99260] = 6, - ACTIONS(4053), 1, - anon_sym_EQ, + [98376] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 7, + STATE(3757), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(1975), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217021,54 +216307,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99314] = 13, + [98435] = 19, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(1935), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, + ACTIONS(5779), 1, + anon_sym_async, + ACTIONS(5781), 1, + anon_sym_static, + ACTIONS(5783), 1, + anon_sym_readonly, + ACTIONS(5789), 1, + anon_sym_override, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2711), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5650), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5734), 2, + ACTIONS(5777), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3909), 3, + ACTIONS(5785), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5787), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3611), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 20, + STATE(5214), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5775), 14, 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, @@ -217076,22 +216369,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99382] = 7, - ACTIONS(3494), 1, + [98516] = 7, + ACTIONS(3556), 1, anon_sym_EQ, - ACTIONS(4606), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 2, + ACTIONS(4330), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4609), 3, + ACTIONS(4694), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3380), 10, + ACTIONS(3400), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217102,10 +216395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 22, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217125,132 +216419,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99438] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5801), 1, - anon_sym_readonly, - STATE(2727), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5048), 2, - sym_number, - sym_private_property_identifier, - STATE(3281), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, + [98573] = 7, + ACTIONS(3560), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3603), 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, - [99502] = 4, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1754), 3, + ACTIONS(4330), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5803), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_extends, + ACTIONS(4694), 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(5806), 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, - [99552] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1821), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5809), 13, + ACTIONS(3400), 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(5812), 23, + ACTIONS(3404), 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, @@ -217270,15 +216469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99602] = 4, + [98630] = 4, + ACTIONS(3542), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4776), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5815), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217292,9 +216489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5818), 23, + ACTIONS(3404), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -217316,34 +216515,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99652] = 9, - ACTIONS(1584), 1, + anon_sym_implements, + [98681] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5056), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, + ACTIONS(5791), 2, sym_number, sym_private_property_identifier, - STATE(3281), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 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(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217367,87 +216567,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99712] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5823), 1, - anon_sym_readonly, - STATE(2719), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5821), 2, - sym_number, - sym_private_property_identifier, - STATE(3440), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3603), 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, - [99776] = 9, - ACTIONS(1584), 1, + [98740] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5827), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5825), 2, + ACTIONS(5544), 2, sym_number, sym_private_property_identifier, - STATE(3443), 3, + STATE(3817), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 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(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217471,30 +216618,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99836] = 11, - ACTIONS(1584), 1, + [98799] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5831), 1, + ACTIONS(5795), 1, anon_sym_readonly, - STATE(2773), 1, + STATE(2754), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5829), 2, + ACTIONS(5793), 2, sym_number, sym_private_property_identifier, - STATE(3404), 3, + STATE(3358), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217502,7 +216649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 21, + ACTIONS(3607), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217524,35 +216671,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99900] = 6, - ACTIONS(4019), 1, - anon_sym_extends, + [98863] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4792), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4795), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3380), 11, + ACTIONS(4794), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5797), 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(3384), 23, + ACTIONS(5800), 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, @@ -217572,33 +216717,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99954] = 4, - ACTIONS(3517), 1, + [98913] = 7, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(5), 2, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(4330), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(3384), 25, - sym__automatic_semicolon, + ACTIONS(3404), 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, @@ -217618,15 +216766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100004] = 4, + [98969] = 6, + ACTIONS(4440), 1, + anon_sym_EQ, + ACTIONS(4761), 1, + anon_sym_RBRACK, + ACTIONS(4985), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4874), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5833), 13, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217640,7 +216790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5836), 23, + ACTIONS(4442), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217664,17 +216814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100054] = 6, - ACTIONS(4434), 1, + [99023] = 6, + ACTIONS(4678), 1, anon_sym_EQ, - ACTIONS(4768), 1, + ACTIONS(4682), 1, anon_sym_RBRACK, - ACTIONS(4969), 1, + ACTIONS(4987), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 13, + ACTIONS(4676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217688,7 +216838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 23, + ACTIONS(4680), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217712,17 +216862,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100108] = 6, - ACTIONS(4840), 1, + [99077] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5749), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [99143] = 6, + ACTIONS(1726), 1, anon_sym_EQ, - ACTIONS(4844), 1, + ACTIONS(4747), 1, anon_sym_RBRACK, - ACTIONS(5077), 1, + ACTIONS(4989), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4838), 13, + ACTIONS(1724), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217736,7 +216940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4842), 23, + ACTIONS(1728), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217760,35 +216964,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100162] = 6, - ACTIONS(1706), 1, + [99197] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4865), 1, - anon_sym_RBRACK, - ACTIONS(4979), 1, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5749), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [99265] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5803), 1, + anon_sym_readonly, + STATE(2728), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4993), 2, + sym_number, + sym_private_property_identifier, + STATE(3277), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 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, + [99329] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_readonly, + STATE(2758), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5805), 2, + sym_number, + sym_private_property_identifier, + STATE(3371), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 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, + [99393] = 9, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4993), 2, + sym_number, + sym_private_property_identifier, + STATE(3277), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 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, + [99453] = 9, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5811), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5809), 2, + sym_number, + sym_private_property_identifier, + STATE(3372), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 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, + [99513] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3133), 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(3131), 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, + [99561] = 6, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4330), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3400), 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(1708), 23, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217808,33 +217320,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100216] = 4, + [99615] = 6, + ACTIONS(4697), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 3, + ACTIONS(4700), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4041), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5839), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3400), 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(5842), 23, + ACTIONS(3404), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217854,11 +217368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100266] = 3, + [99669] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3129), 12, + ACTIONS(3125), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_LBRACK, @@ -217871,7 +217385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, anon_sym_QMARK, - ACTIONS(3127), 27, + ACTIONS(3123), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217899,35 +217413,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_accessor, anon_sym_extends, - [100314] = 6, - ACTIONS(4792), 1, - anon_sym_LBRACK, + [99717] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4795), 2, + ACTIONS(4460), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4450), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4019), 3, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4452), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3380), 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, + [99767] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1865), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5813), 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(3384), 22, + ACTIONS(5816), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217947,29 +217505,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100368] = 3, + [99817] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 12, + ACTIONS(1740), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5819), 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(5822), 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, + [99867] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4930), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5825), 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(5828), 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, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99917] = 9, + ACTIONS(1594), 1, anon_sym_DQUOTE, + ACTIONS(1596), 1, anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5831), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5702), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3366), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3131), 27, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -217989,17 +217648,14 @@ 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, - [100416] = 4, + [99977] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 2, + ACTIONS(4456), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4451), 13, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218013,7 +217669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 24, + ACTIONS(4452), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -218038,29 +217694,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100466] = 3, + [100027] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3125), 12, - anon_sym_STAR, + ACTIONS(1901), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5833), 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(5836), 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, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100077] = 9, + ACTIONS(1594), 1, anon_sym_DQUOTE, + ACTIONS(1596), 1, anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5841), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5839), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3255), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3123), 27, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -218080,17 +217791,13 @@ 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, - [100514] = 4, + [100137] = 4, + ACTIONS(3501), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4451), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218104,12 +217811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 24, + ACTIONS(3404), 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, @@ -218129,52 +217837,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100564] = 15, - ACTIONS(2275), 1, + [100187] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - STATE(2715), 1, + ACTIONS(5845), 1, + anon_sym_readonly, + STATE(2776), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5843), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5845), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3909), 3, + STATE(3413), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, + ACTIONS(3743), 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(2307), 18, + ACTIONS(3607), 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, @@ -218186,40 +217890,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100636] = 13, - ACTIONS(2275), 1, + [100251] = 9, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(5117), 1, - aux_sym_object_repeat1, + ACTIONS(5849), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5847), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, + STATE(3443), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, + ACTIONS(3743), 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(2307), 21, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218229,6 +217927,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, @@ -218241,50 +217941,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100704] = 14, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, - ACTIONS(5336), 1, + [100311] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4725), 3, anon_sym_COMMA, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(5117), 1, - aux_sym_object_repeat1, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5851), 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(5854), 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, + [100361] = 6, + ACTIONS(4243), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1991), 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, @@ -218297,15 +218035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100774] = 4, + [100415] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 3, + ACTIONS(1831), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5847), 13, + ACTIONS(5857), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218319,7 +218057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5850), 23, + ACTIONS(5860), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -218343,33 +218081,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100824] = 4, + [100465] = 6, + ACTIONS(4878), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 3, + ACTIONS(4881), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4408), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5853), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4774), 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(5856), 23, + ACTIONS(4776), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218389,15 +218129,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100874] = 4, + [100519] = 6, + ACTIONS(4243), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4697), 3, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 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, + [100573] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4926), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5859), 13, + ACTIONS(5863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218411,7 +218199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5862), 23, + ACTIONS(5866), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -218435,33 +218223,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100924] = 4, - ACTIONS(3531), 1, - anon_sym_EQ, + [100623] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + STATE(2719), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5869), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [100695] = 6, + ACTIONS(4041), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(4697), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4700), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3400), 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(3384), 25, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218481,34 +218328,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100974] = 9, - ACTIONS(1584), 1, + [100749] = 13, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5867), 1, - anon_sym_abstract, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(5700), 1, + anon_sym_RBRACE, + STATE(5124), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5865), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3427), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218518,8 +218371,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, @@ -218532,43 +218383,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101034] = 8, - ACTIONS(1584), 1, + [100817] = 14, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(5700), 1, + anon_sym_RBRACE, + STATE(5124), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5869), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3429), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(2307), 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, @@ -218581,24 +218439,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101091] = 8, - ACTIONS(1584), 1, + [100887] = 4, + ACTIONS(3518), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 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(3404), 25, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100937] = 6, + ACTIONS(3496), 1, + anon_sym_RBRACK, + ACTIONS(3514), 1, + anon_sym_COMMA, + ACTIONS(3600), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 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(3404), 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, + [100991] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(5871), 1, + anon_sym_readonly, + STATE(2755), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5871), 2, + ACTIONS(5702), 2, sym_number, sym_private_property_identifier, - STATE(3391), 3, + STATE(3366), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -218606,7 +218564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218615,14 +218573,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, @@ -218630,36 +218586,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101148] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, + [101055] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5873), 2, + ACTIONS(3129), 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, - STATE(3418), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 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(3603), 23, + ACTIONS(3127), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -218679,32 +218628,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101205] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [101103] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5875), 2, - sym_number, - sym_private_property_identifier, - STATE(3337), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218728,32 +218681,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101262] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, + [101162] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5877), 2, - sym_number, - sym_private_property_identifier, - STATE(3342), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218777,33 +218731,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101319] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, + [101221] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 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, + ACTIONS(5873), 2, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + STATE(3365), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218827,33 +218780,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101378] = 9, + [101278] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(5205), 1, + ACTIONS(5198), 1, anon_sym_RBRACE, - STATE(4972), 1, + STATE(4671), 1, aux_sym_object_repeat1, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218877,24 +218830,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101437] = 8, - ACTIONS(1584), 1, + [101337] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5879), 2, + ACTIONS(5875), 2, sym_number, sym_private_property_identifier, - STATE(3359), 3, + STATE(3305), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -218902,7 +218855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218926,63 +218879,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101494] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, + [101394] = 6, + ACTIONS(4440), 1, anon_sym_EQ, - ACTIONS(5164), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(4985), 1, + anon_sym_of, + ACTIONS(5395), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4438), 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_QMARK, - ACTIONS(1971), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4442), 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, + [101447] = 6, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2222), 2, + sym_template_string, + sym_arguments, + 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), 21, + sym__ternary_qmark, + anon_sym_as, 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, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101553] = 4, - ACTIONS(5095), 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_satisfies, + [101500] = 4, + ACTIONS(5107), 1, sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5091), 17, + ACTIONS(5103), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -219000,7 +218997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(5093), 20, + ACTIONS(5105), 20, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -219021,123 +219018,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [101602] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5881), 2, - sym_number, - sym_private_property_identifier, - STATE(3296), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3603), 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, - [101659] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, + [101549] = 6, + ACTIONS(4678), 1, anon_sym_EQ, - ACTIONS(5164), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(4987), 1, + anon_sym_of, + ACTIONS(5398), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(4676), 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(4680), 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, + [101602] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, + ACTIONS(1596), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1975), 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, - [101718] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5883), 2, + ACTIONS(5877), 2, sym_number, sym_private_property_identifier, - STATE(3310), 3, + STATE(3309), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219145,7 +219090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219169,24 +219114,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101775] = 8, - ACTIONS(1584), 1, + [101659] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5885), 2, + ACTIONS(5879), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3383), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219194,7 +219139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219218,24 +219163,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101832] = 8, - ACTIONS(1584), 1, + [101716] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5887), 2, + ACTIONS(5881), 2, sym_number, sym_private_property_identifier, - STATE(3434), 3, + STATE(3388), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219243,7 +219188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219267,24 +219212,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101889] = 8, - ACTIONS(1584), 1, + [101773] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5889), 2, + ACTIONS(5883), 2, sym_number, sym_private_property_identifier, - STATE(3439), 3, + STATE(3326), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219292,7 +219237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219316,24 +219261,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101946] = 8, - ACTIONS(1584), 1, + [101830] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5891), 2, + ACTIONS(5885), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + STATE(3402), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219341,7 +219286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219365,24 +219310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102003] = 8, - ACTIONS(1584), 1, + [101887] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5893), 2, + ACTIONS(5887), 2, sym_number, sym_private_property_identifier, - STATE(3320), 3, + STATE(3407), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219390,7 +219335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219414,33 +219359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102060] = 9, + [101944] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(4972), 1, + STATE(4671), 1, aux_sym_object_repeat1, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(1993), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219464,33 +219409,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102119] = 9, + [102003] = 9, ACTIONS(241), 1, anon_sym_COMMA, ACTIONS(702), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(1993), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219514,24 +219459,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102178] = 8, - ACTIONS(1584), 1, + [102062] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5895), 2, + ACTIONS(5889), 2, sym_number, sym_private_property_identifier, - STATE(3435), 3, + STATE(3339), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219539,7 +219484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219563,33 +219508,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102235] = 9, + [102119] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(5209), 1, + ACTIONS(5202), 1, anon_sym_RBRACE, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219613,82 +219558,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102294] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, + [102178] = 6, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4989), 1, + anon_sym_of, + ACTIONS(5401), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5897), 2, - sym_number, - sym_private_property_identifier, - STATE(3417), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(1724), 12, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3603), 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, - [102351] = 9, + 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(1728), 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, + [102231] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5209), 1, + ACTIONS(725), 1, anon_sym_RBRACE, - STATE(4973), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219712,32 +219655,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102410] = 8, - ACTIONS(1584), 1, + [102290] = 11, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5899), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3419), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5869), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3603), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219747,8 +219695,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, @@ -219761,64 +219707,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102467] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + [102353] = 6, + ACTIONS(3475), 1, anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(3586), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(3400), 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(3404), 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(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, - [102526] = 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, + [102406] = 12, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5091), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, @@ -219829,24 +219774,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - ACTIONS(5845), 2, + ACTIONS(5869), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3909), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(2307), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -219863,33 +219807,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102589] = 9, + [102471] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(4973), 1, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(1993), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219913,175 +219857,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102648] = 6, - ACTIONS(4434), 1, + [102530] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4969), 1, - anon_sym_of, - ACTIONS(5469), 1, - anon_sym_in, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 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(4436), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3743), 4, 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, - [102701] = 6, - ACTIONS(4840), 1, - anon_sym_EQ, - ACTIONS(5077), 1, - anon_sym_of, - ACTIONS(5472), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4838), 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_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4842), 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, - [102754] = 6, - ACTIONS(1706), 1, - anon_sym_EQ, - ACTIONS(4979), 1, - anon_sym_of, - ACTIONS(5475), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1704), 12, + anon_sym_QMARK, + ACTIONS(2003), 6, 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(1708), 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, - [102807] = 10, - ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(4582), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(2001), 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, + [102589] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5891), 2, sym_number, sym_private_property_identifier, - ACTIONS(5734), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3909), 3, + STATE(3262), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, + ACTIONS(3743), 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(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220105,35 +219956,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102868] = 11, - ACTIONS(2275), 1, + [102646] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(5117), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5893), 2, sym_number, sym_private_property_identifier, - STATE(3909), 3, + STATE(3412), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, + ACTIONS(3743), 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(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220157,33 +220005,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102931] = 9, + [102703] = 9, ACTIONS(241), 1, anon_sym_COMMA, ACTIONS(727), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(4671), 1, aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220207,33 +220055,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102990] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + [102762] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5895), 2, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + STATE(3314), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220257,33 +220104,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103049] = 9, - ACTIONS(241), 1, + [102819] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5644), 1, anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5207), 1, + ACTIONS(5700), 1, anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5124), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(1969), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220307,33 +220156,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103108] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5207), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + [102882] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1977), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5897), 2, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + STATE(3420), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220357,184 +220205,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103167] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3582), 1, - anon_sym_in, - ACTIONS(3585), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 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(3384), 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, - [103220] = 4, - ACTIONS(3548), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 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(3384), 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, - [103269] = 4, - ACTIONS(3556), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 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(3384), 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, - [103318] = 12, + [102939] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4582), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5845), 2, + ACTIONS(5749), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3909), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 20, + ACTIONS(2307), 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, @@ -220547,18 +220256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103383] = 6, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4528), 1, - anon_sym_LPAREN, + [103000] = 4, + ACTIONS(3556), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2290), 2, - sym_template_string, - sym_arguments, - ACTIONS(4029), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220572,10 +220276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4031), 21, + ACTIONS(3404), 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, @@ -220593,25 +220299,35 @@ 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, - [103436] = 3, + [103049] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 12, - sym__automatic_semicolon, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1993), 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(5901), 25, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220635,15 +220351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103482] = 4, - ACTIONS(3677), 1, + [103108] = 4, + ACTIONS(3560), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220657,10 +220371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(3404), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -220681,24 +220396,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103530] = 3, + [103157] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 12, - sym__automatic_semicolon, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1993), 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(5905), 25, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220722,26 +220446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103576] = 3, + [103216] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5911), 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(5899), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5909), 25, + STATE(3316), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220765,26 +220495,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103622] = 3, + [103273] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 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(5901), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5913), 25, + STATE(3297), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220808,26 +220544,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103668] = 3, + [103330] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 12, - sym__automatic_semicolon, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1993), 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(5901), 25, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220851,26 +220594,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103714] = 3, + [103389] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 12, - sym__automatic_semicolon, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 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(5917), 25, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220894,102 +220644,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103760] = 4, - ACTIONS(3655), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3380), 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(3384), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + [103448] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 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, - [103808] = 4, - ACTIONS(3689), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, - anon_sym_STAR, + ACTIONS(5903), 2, + sym_number, + sym_private_property_identifier, + STATE(3321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 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(3384), 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, - [103856] = 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3607), 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, + [103505] = 4, + ACTIONS(5905), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, - sym__automatic_semicolon, + ACTIONS(1871), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -221001,7 +220711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(1873), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221027,11 +220737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103902] = 3, + [103553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 12, + ACTIONS(5909), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221044,7 +220754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5905), 25, + ACTIONS(5907), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221070,12 +220780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103948] = 3, + [103599] = 4, + ACTIONS(5911), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 12, - sym__automatic_semicolon, + ACTIONS(1720), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -221087,7 +220798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5917), 25, + ACTIONS(1722), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221113,55 +220824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103994] = 4, - ACTIONS(3647), 1, - anon_sym_EQ, + [103647] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 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(3384), 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, - [104042] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5923), 12, + ACTIONS(5915), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221174,7 +220841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(5913), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221200,11 +220867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104088] = 3, + [103693] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 12, + ACTIONS(5919), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221217,7 +220884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1847), 25, + ACTIONS(5917), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221243,11 +220910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104134] = 3, + [103739] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 12, + ACTIONS(1871), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221260,7 +220927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5917), 25, + ACTIONS(1873), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221286,11 +220953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104180] = 3, + [103785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 12, + ACTIONS(5909), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221303,7 +220970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5901), 25, + ACTIONS(5907), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221329,11 +220996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104226] = 3, + [103831] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 12, + ACTIONS(5909), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221346,7 +221013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5917), 25, + ACTIONS(5907), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221372,11 +221039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104272] = 3, + [103877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 12, + ACTIONS(5923), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221389,7 +221056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5901), 25, + ACTIONS(5921), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221415,7 +221082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104318] = 5, + [103923] = 5, ACTIONS(5929), 1, anon_sym_SEMI, ACTIONS(5932), 1, @@ -221460,11 +221127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104368] = 3, + [103973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 12, + ACTIONS(5909), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221477,7 +221144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5934), 25, + ACTIONS(5907), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221503,7 +221170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104414] = 3, + [104019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -221546,11 +221213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104460] = 3, + [104065] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 12, + ACTIONS(5936), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221563,7 +221230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5905), 25, + ACTIONS(5934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221589,11 +221256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104506] = 3, + [104111] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 12, + ACTIONS(5923), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221606,7 +221273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5938), 25, + ACTIONS(5921), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221632,7 +221299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104552] = 3, + [104157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -221675,13 +221342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104598] = 4, - ACTIONS(3673), 1, + [104203] = 4, + ACTIONS(3687), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221695,7 +221362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221719,55 +221386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104646] = 4, - ACTIONS(5942), 1, - sym__automatic_semicolon, + [104251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1700), 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, - anon_sym_AT, - ACTIONS(1702), 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, - [104694] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5946), 12, + ACTIONS(5940), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221780,7 +221403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5944), 25, + ACTIONS(5938), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221806,11 +221429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104740] = 3, + [104297] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 12, + ACTIONS(5909), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221823,7 +221446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5948), 25, + ACTIONS(5907), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221849,11 +221472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104786] = 3, + [104343] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(5944), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221866,7 +221489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(5942), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221892,11 +221515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104832] = 3, + [104389] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5954), 12, + ACTIONS(5948), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221909,7 +221532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5952), 25, + ACTIONS(5946), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221935,15 +221558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104878] = 3, + [104435] = 5, + ACTIONS(5954), 1, + anon_sym_SEMI, + ACTIONS(5957), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 12, - sym__automatic_semicolon, + ACTIONS(5952), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -221952,7 +221577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5901), 25, + ACTIONS(5950), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221978,13 +221603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104924] = 4, - ACTIONS(3693), 1, + [104485] = 4, + ACTIONS(3681), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221998,7 +221623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222022,11 +221647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104972] = 3, + [104533] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(5915), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222039,7 +221664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(5913), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222065,11 +221690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105018] = 3, + [104579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 12, + ACTIONS(5948), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222082,7 +221707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5905), 25, + ACTIONS(5946), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222108,11 +221733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105064] = 3, + [104625] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, + ACTIONS(5936), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222125,7 +221750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(5934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222151,11 +221776,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105110] = 3, + [104671] = 4, + ACTIONS(3657), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 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(3404), 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, + [104719] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 12, + ACTIONS(5923), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222168,7 +221837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5948), 25, + ACTIONS(5921), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222194,11 +221863,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105156] = 3, + [104765] = 4, + ACTIONS(3667), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, + ACTIONS(3400), 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(3404), 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, + [104813] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5961), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222211,7 +221924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(5959), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222237,11 +221950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105202] = 3, + [104859] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(5965), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222254,7 +221967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(5963), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222280,11 +221993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105248] = 3, + [104905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 12, + ACTIONS(5936), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222297,7 +222010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5905), 25, + ACTIONS(5934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222323,11 +222036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105294] = 3, + [104951] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 12, + ACTIONS(5969), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222340,7 +222053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1827), 25, + ACTIONS(5967), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222366,29 +222079,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105340] = 8, - ACTIONS(5960), 1, - anon_sym_LPAREN, - ACTIONS(5962), 1, - anon_sym_DOT, - ACTIONS(5964), 1, - anon_sym_LT, - STATE(2695), 1, - sym_arguments, - STATE(5461), 1, - sym_type_arguments, + [104997] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3450), 7, + ACTIONS(5973), 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(3448), 25, + ACTIONS(5971), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222414,17 +222122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105396] = 5, - ACTIONS(5970), 1, - anon_sym_SEMI, - ACTIONS(5973), 1, - sym__automatic_semicolon, + [105043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5968), 10, + ACTIONS(5944), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -222433,7 +222139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5966), 25, + ACTIONS(5942), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222459,7 +222165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105446] = 3, + [105089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -222502,29 +222208,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105492] = 4, - ACTIONS(5979), 1, - sym__automatic_semicolon, + [105135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 11, + ACTIONS(3566), 10, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1827), 25, + ACTIONS(3564), 27, 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, @@ -222546,32 +222251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105540] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, + [105181] = 4, + ACTIONS(5979), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(1871), 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(5845), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(1873), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222595,11 +222293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105598] = 3, + anon_sym_abstract, + anon_sym_accessor, + [105229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 12, + ACTIONS(5923), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222612,7 +222312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5948), 25, + ACTIONS(5921), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222638,55 +222338,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105644] = 4, - ACTIONS(3663), 1, - anon_sym_EQ, + [105275] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 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(3384), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5869), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3743), 4, 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, - [105692] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 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, + [105333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 12, + ACTIONS(5915), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222699,7 +222404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5905), 25, + ACTIONS(5913), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222725,11 +222430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105738] = 3, + [105379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5915), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222742,7 +222447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5913), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222768,11 +222473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105784] = 3, + [105425] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5911), 12, + ACTIONS(5983), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222785,7 +222490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5909), 25, + ACTIONS(5981), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222811,11 +222516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105830] = 3, + [105471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(5923), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222828,7 +222533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(5921), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222854,12 +222559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105876] = 3, + [105517] = 4, + ACTIONS(5985), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, - sym__automatic_semicolon, + ACTIONS(1720), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -222871,7 +222577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(1722), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222897,13 +222603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105922] = 4, - ACTIONS(3683), 1, + [105565] = 4, + ACTIONS(3699), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222917,7 +222623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222941,13 +222647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105970] = 4, - ACTIONS(5985), 1, - sym__automatic_semicolon, + [105613] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1700), 11, + ACTIONS(5944), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -222959,7 +222664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1702), 25, + ACTIONS(5942), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222985,24 +222690,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106018] = 3, + [105659] = 8, + ACTIONS(5987), 1, + anon_sym_LPAREN, + ACTIONS(5989), 1, + anon_sym_DOT, + ACTIONS(5991), 1, + anon_sym_LT, + STATE(2714), 1, + sym_arguments, + STATE(5408), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 12, - sym__automatic_semicolon, + ACTIONS(3490), 7, 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(5948), 25, + ACTIONS(3488), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223028,11 +222738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106064] = 3, + [105715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 12, + ACTIONS(5948), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223045,7 +222755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5948), 25, + ACTIONS(5946), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223071,13 +222781,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106110] = 4, - ACTIONS(3667), 1, + [105761] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5936), 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(5934), 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, + [105807] = 4, + ACTIONS(3701), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223091,7 +222844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 23, + ACTIONS(3404), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223115,11 +222868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106158] = 3, + [105855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 12, + ACTIONS(5915), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223132,7 +222885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5905), 25, + ACTIONS(5913), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223158,11 +222911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106204] = 3, + [105901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(5936), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223175,7 +222928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(5934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223201,13 +222954,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106250] = 4, - ACTIONS(5987), 1, - sym__automatic_semicolon, + [105947] = 4, + ACTIONS(3677), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 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(3404), 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, + [105995] = 4, + ACTIONS(3685), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 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(3404), 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, + [106043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 11, + ACTIONS(5944), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223219,7 +223059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1827), 25, + ACTIONS(5942), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223245,11 +223085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106298] = 3, + [106089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 12, + ACTIONS(5944), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223262,7 +223102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5901), 25, + ACTIONS(5942), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223288,11 +223128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106344] = 3, + [106135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 12, + ACTIONS(5923), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223305,7 +223145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5901), 25, + ACTIONS(5921), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223331,11 +223171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106390] = 3, + [106181] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 11, + ACTIONS(1751), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223347,7 +223188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(1753), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223373,28 +223214,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106435] = 6, - ACTIONS(4053), 1, - anon_sym_EQ, + [106227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5734), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(5948), 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, - ACTIONS(1975), 23, + anon_sym_AT, + ACTIONS(5946), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223418,64 +223255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106486] = 14, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, - ACTIONS(5995), 1, - anon_sym_async, - ACTIONS(5999), 1, - anon_sym_readonly, - STATE(2694), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5997), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3767), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 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, - [106553] = 3, + anon_sym_abstract, + anon_sym_accessor, + [106273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 11, + ACTIONS(5915), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223487,7 +223274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6003), 25, + ACTIONS(5913), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223513,11 +223300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106598] = 3, + [106319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 11, + ACTIONS(5961), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223529,7 +223317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1827), 25, + ACTIONS(5959), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223555,11 +223343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106643] = 3, + [106365] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 11, + ACTIONS(5923), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223571,7 +223360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(5921), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223597,11 +223386,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106688] = 3, + [106411] = 4, + ACTIONS(3691), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 11, + ACTIONS(3400), 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(3404), 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, + [106459] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5948), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223613,7 +223447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(5946), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223639,29 +223473,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106733] = 7, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(5117), 1, - aux_sym_object_repeat1, + [106505] = 6, + ACTIONS(4243), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(5749), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223685,28 +223518,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106786] = 6, - ACTIONS(4053), 1, - anon_sym_EQ, + [106556] = 14, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5993), 1, + anon_sym_STAR, + ACTIONS(5995), 1, + anon_sym_async, + ACTIONS(5999), 1, + anon_sym_readonly, + STATE(2696), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5734), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3715), 4, + ACTIONS(5997), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6001), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3743), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + STATE(3850), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 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, + [106623] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1751), 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(1969), 23, + anon_sym_AT, + ACTIONS(1753), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223730,29 +223611,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106837] = 7, - ACTIONS(5336), 1, + anon_sym_abstract, + anon_sym_accessor, + [106668] = 7, + ACTIONS(5644), 1, anon_sym_COMMA, - ACTIONS(5732), 1, + ACTIONS(5700), 1, anon_sym_RBRACE, - STATE(5117), 1, + STATE(5124), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(1993), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223776,23 +223659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106890] = 3, + [106721] = 7, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(5700), 1, + anon_sym_RBRACE, + STATE(5124), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 11, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 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(1847), 25, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223816,29 +223705,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106935] = 3, + [106774] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3554), 9, + ACTIONS(6005), 11, anon_sym_STAR, - anon_sym_LPAREN, + 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(3552), 27, + ACTIONS(6003), 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, @@ -223860,11 +223747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106980] = 3, + [106819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 11, + ACTIONS(6009), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223876,7 +223763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(6007), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223902,33 +223789,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107025] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, + [106864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6013), 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(6001), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3767), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223938,6 +223815,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, @@ -223950,33 +223829,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107083] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(6015), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [106909] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6017), 2, + ACTIONS(1871), 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(6019), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3792), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(1873), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223986,6 +223857,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, @@ -223998,30 +223871,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107141] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(6021), 1, - anon_sym_EQ_GT, + anon_sym_abstract, + anon_sym_accessor, + [106954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6005), 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(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3767), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6003), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224045,26 +223913,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107197] = 5, + anon_sym_abstract, + anon_sym_accessor, + [106999] = 6, + ACTIONS(4243), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5845), 2, + ACTIONS(5749), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(1993), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224088,43 +223960,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107245] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, - ACTIONS(5995), 1, - anon_sym_async, + [107050] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6017), 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(6001), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3767), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 20, + anon_sym_AT, + ACTIONS(6015), 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, @@ -224137,29 +224000,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107305] = 10, + anon_sym_abstract, + anon_sym_accessor, + [107095] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6023), 1, + ACTIONS(5993), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6025), 2, + ACTIONS(5997), 2, sym_number, sym_private_property_identifier, - ACTIONS(6027), 2, + ACTIONS(6001), 2, anon_sym_get, anon_sym_set, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3723), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224185,81 +224050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107363] = 17, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4670), 1, - anon_sym_async, - ACTIONS(4693), 1, - anon_sym_accessor, - ACTIONS(6029), 1, - anon_sym_static, - ACTIONS(6031), 1, - anon_sym_readonly, - ACTIONS(6033), 1, - anon_sym_declare, - ACTIONS(6035), 1, - anon_sym_abstract, - STATE(2708), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4672), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 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_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [107435] = 5, + [107153] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5845), 2, + ACTIONS(5869), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224283,45 +224093,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107483] = 17, - ACTIONS(1584), 1, + [107201] = 17, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5176), 1, + ACTIONS(4827), 1, anon_sym_STAR, - ACTIONS(5178), 1, + ACTIONS(4831), 1, anon_sym_async, - ACTIONS(6039), 1, + ACTIONS(4872), 1, + anon_sym_accessor, + ACTIONS(6019), 1, anon_sym_static, - ACTIONS(6041), 1, + ACTIONS(6021), 1, anon_sym_readonly, - ACTIONS(6043), 1, + ACTIONS(6023), 1, anon_sym_declare, - ACTIONS(6045), 1, + ACTIONS(6025), 1, anon_sym_abstract, - ACTIONS(6047), 1, - anon_sym_accessor, - STATE(2707), 1, + STATE(2700), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5184), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6037), 2, + ACTIONS(4833), 2, sym_number, sym_private_property_identifier, - STATE(2971), 3, + ACTIONS(4837), 2, + anon_sym_get, + anon_sym_set, + STATE(2980), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 16, + ACTIONS(3607), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224338,31 +224148,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107555] = 11, + [107273] = 11, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6023), 1, + ACTIONS(5993), 1, anon_sym_STAR, - ACTIONS(6049), 1, + ACTIONS(5995), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6025), 2, + ACTIONS(5997), 2, sym_number, sym_private_property_identifier, - ACTIONS(6027), 2, + ACTIONS(6001), 2, anon_sym_get, anon_sym_set, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3723), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224387,29 +224197,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107615] = 10, + [107333] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6051), 1, + ACTIONS(6027), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6053), 2, + ACTIONS(6029), 2, sym_number, sym_private_property_identifier, - ACTIONS(6055), 2, + ACTIONS(6031), 2, anon_sym_get, anon_sym_set, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3763), 3, + STATE(3725), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224435,31 +224245,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107673] = 11, + [107391] = 11, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6051), 1, + ACTIONS(6027), 1, anon_sym_STAR, - ACTIONS(6057), 1, + ACTIONS(6033), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6053), 2, + ACTIONS(6029), 2, sym_number, sym_private_property_identifier, - ACTIONS(6055), 2, + ACTIONS(6031), 2, anon_sym_get, anon_sym_set, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3763), 3, + STATE(3725), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224484,24 +224294,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107733] = 8, + [107451] = 9, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(6035), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5554), 2, + ACTIONS(5997), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3775), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224529,44 +224341,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107786] = 8, - ACTIONS(2275), 1, + [107507] = 17, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(5167), 1, + anon_sym_STAR, + ACTIONS(5169), 1, + anon_sym_async, + ACTIONS(6039), 1, + anon_sym_static, + ACTIONS(6041), 1, + anon_sym_readonly, + ACTIONS(6043), 1, + anon_sym_declare, + ACTIONS(6045), 1, + anon_sym_abstract, + ACTIONS(6047), 1, + anon_sym_accessor, + STATE(2695), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, + ACTIONS(5175), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6037), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3843), 3, + STATE(2989), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 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, @@ -224574,28 +224396,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107839] = 8, + [107579] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(6049), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 2, + ACTIONS(6051), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(6053), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3881), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224605,8 +224432,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, @@ -224619,28 +224444,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107892] = 8, + [107637] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(6055), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6025), 2, + ACTIONS(6057), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(6059), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3723), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224650,8 +224480,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, @@ -224664,39 +224492,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107945] = 8, + [107695] = 11, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, + ACTIONS(6055), 1, + anon_sym_STAR, + ACTIONS(6061), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5538), 2, + ACTIONS(6057), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(6059), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3907), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(2307), 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, @@ -224709,28 +224541,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107998] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, + [107755] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6059), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(5869), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3743), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3828), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(1993), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1991), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224754,24 +224584,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108051] = 8, + [107803] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6063), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3767), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224799,28 +224629,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108104] = 8, - ACTIONS(2275), 1, + [107856] = 13, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(4995), 1, + anon_sym_static, + ACTIONS(4997), 1, + anon_sym_readonly, + ACTIONS(4999), 1, + anon_sym_abstract, + ACTIONS(5001), 1, + anon_sym_accessor, + STATE(2728), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(4993), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3800), 3, + STATE(3277), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224828,15 +224666,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, @@ -224844,24 +224679,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108157] = 8, + [107919] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6063), 2, + ACTIONS(5486), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3774), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224889,12 +224724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108210] = 8, + [107972] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -224902,11 +224737,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6065), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3780), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224934,24 +224769,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108263] = 8, + [108025] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5610), 2, + ACTIONS(5526), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3815), 3, + STATE(3842), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -224979,24 +224814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108316] = 8, + [108078] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5676), 2, + ACTIONS(5664), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3770), 3, + STATE(3772), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225024,24 +224859,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108369] = 8, + [108131] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5366), 2, + ACTIONS(6057), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3906), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225069,36 +224904,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108422] = 13, - ACTIONS(1584), 1, + [108184] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6069), 1, - anon_sym_static, - ACTIONS(6071), 1, - anon_sym_readonly, - ACTIONS(6073), 1, - anon_sym_abstract, - ACTIONS(6075), 1, - anon_sym_accessor, - STATE(2718), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6067), 2, + ACTIONS(6029), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3725), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 20, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225106,12 +224933,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, @@ -225119,24 +224949,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108485] = 8, + [108237] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, + ACTIONS(5997), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3858), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225164,24 +224994,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108538] = 8, + [108290] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5648), 2, + ACTIONS(5532), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3726), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225209,24 +225039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108591] = 8, + [108343] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5542), 2, + ACTIONS(5375), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3737), 3, + STATE(3731), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225254,24 +225084,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108644] = 8, + [108396] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, + ACTIONS(5791), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3785), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225299,28 +225129,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108697] = 8, - ACTIONS(2275), 1, + [108449] = 13, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6069), 1, + anon_sym_static, + ACTIONS(6071), 1, + anon_sym_readonly, + ACTIONS(6073), 1, + anon_sym_abstract, + ACTIONS(6075), 1, + anon_sym_accessor, + STATE(2762), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 2, + ACTIONS(6067), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3761), 3, + STATE(3381), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225328,15 +225166,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, @@ -225344,24 +225179,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108750] = 8, + [108512] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(5552), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3886), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225389,36 +225224,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108803] = 13, - ACTIONS(1584), 1, + [108565] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5050), 1, - anon_sym_static, - ACTIONS(5052), 1, - anon_sym_readonly, - ACTIONS(5054), 1, - anon_sym_abstract, - ACTIONS(5056), 1, - anon_sym_accessor, - STATE(2727), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, + ACTIONS(5556), 2, sym_number, sym_private_property_identifier, - STATE(3281), 3, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3808), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 20, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225426,12 +225253,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, @@ -225439,24 +225269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108866] = 8, + [108618] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5739), 2, + ACTIONS(5562), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3880), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225484,24 +225314,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108919] = 8, + [108671] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6017), 2, + ACTIONS(5566), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3792), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225529,24 +225359,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108972] = 8, + [108724] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5560), 2, + ACTIONS(5572), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3779), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225574,24 +225404,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109025] = 8, + [108777] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5376), 2, + ACTIONS(6077), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3778), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225619,24 +225449,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109078] = 8, + [108830] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6053), 2, + ACTIONS(6051), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3763), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225664,24 +225494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109131] = 8, + [108883] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(5604), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3808), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225709,24 +225539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109184] = 8, + [108936] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5570), 2, + ACTIONS(6079), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3794), 3, + STATE(3905), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225754,24 +225584,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109237] = 8, + [108989] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - ACTIONS(3715), 3, + ACTIONS(3743), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3852), 3, + STATE(3757), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225799,24 +225629,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109290] = 6, - ACTIONS(6081), 1, - anon_sym_AT, - STATE(2671), 1, - aux_sym_export_statement_repeat1, - STATE(2714), 1, - sym_decorator, + [109042] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3523), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5544), 2, sym_number, sym_private_property_identifier, - ACTIONS(3521), 25, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3817), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225840,26 +225674,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109339] = 9, - ACTIONS(1552), 1, + [109095] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6084), 1, - anon_sym_RBRACE, - STATE(5408), 1, - sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(5381), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225887,82 +225719,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109393] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2227), 1, + [109148] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5468), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3878), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2251), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2253), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(2255), 1, - anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(6088), 1, - anon_sym_default, - STATE(769), 1, - sym_declaration, - STATE(779), 1, - sym_internal_module, - STATE(1236), 1, - sym_decorator, - STATE(4171), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(814), 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, - [109473] = 9, - ACTIONS(1552), 1, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109201] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6090), 1, - anon_sym_RBRACE, - STATE(5408), 1, - sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6081), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -225990,93 +225809,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109527] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2339), 1, + [109254] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5630), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3880), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, anon_sym_type, - ACTIONS(2341), 1, anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2359), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2363), 1, - anon_sym_global, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - STATE(1236), 1, - sym_decorator, - STATE(4295), 1, - sym_internal_module, - STATE(4323), 1, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109307] = 6, + ACTIONS(6083), 1, + anon_sym_AT, + STATE(2671), 1, aux_sym_export_statement_repeat1, - STATE(4327), 1, - sym_declaration, + STATE(2697), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4286), 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, - [109607] = 12, - ACTIONS(1584), 1, + ACTIONS(3533), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5801), 1, - anon_sym_readonly, - ACTIONS(6092), 1, - anon_sym_STAR, - STATE(2706), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6094), 2, sym_number, sym_private_property_identifier, - ACTIONS(6096), 2, - anon_sym_get, - anon_sym_set, - STATE(2979), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3531), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226085,10 +225880,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, @@ -226096,49 +225895,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109667] = 14, - ACTIONS(1584), 1, + anon_sym_abstract, + anon_sym_accessor, + [109356] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - anon_sym_async, - ACTIONS(4061), 1, - anon_sym_readonly, - ACTIONS(6098), 1, - anon_sym_static, - STATE(2716), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(4063), 2, - anon_sym_get, - anon_sym_set, - STATE(2998), 3, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3773), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 17, + ACTIONS(2307), 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, @@ -226146,24 +225942,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109731] = 9, - ACTIONS(1552), 1, + [109409] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6100), 1, + ACTIONS(6088), 1, anon_sym_RBRACE, - STATE(5408), 1, + STATE(5481), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226191,161 +225987,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109785] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2227), 1, - anon_sym_namespace, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, - anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, + [109463] = 14, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_STAR, + ACTIONS(5183), 1, anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2251), 1, - anon_sym_declare, - ACTIONS(2253), 1, - anon_sym_module, - ACTIONS(2255), 1, - anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(6102), 1, - anon_sym_default, - STATE(769), 1, - sym_declaration, - STATE(779), 1, - sym_internal_module, - STATE(1236), 1, - sym_decorator, - STATE(4171), 1, - aux_sym_export_statement_repeat1, + ACTIONS(5187), 1, + anon_sym_readonly, + ACTIONS(6092), 1, + anon_sym_static, + STATE(2712), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(814), 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, - [109865] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2227), 1, + ACTIONS(5185), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5189), 2, + anon_sym_get, + anon_sym_set, + STATE(3057), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3607), 17, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, - anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2251), 1, + anon_sym_new, + sym_identifier, anon_sym_declare, - ACTIONS(2255), 1, - anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(2291), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, - ACTIONS(2293), 1, - anon_sym_global, - STATE(779), 1, - sym_internal_module, - STATE(865), 1, - sym_declaration, - STATE(1236), 1, - sym_decorator, - STATE(4171), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(814), 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, - [109945] = 14, - ACTIONS(1584), 1, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109527] = 12, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, + ACTIONS(3633), 1, anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5190), 1, + ACTIONS(6094), 1, anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_async, - ACTIONS(5196), 1, + ACTIONS(6098), 1, anon_sym_readonly, - ACTIONS(6104), 1, - anon_sym_static, - STATE(2709), 1, + STATE(2713), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(6096), 2, sym_number, sym_private_property_identifier, - ACTIONS(5198), 2, + ACTIONS(6100), 2, anon_sym_get, anon_sym_set, - STATE(3065), 3, + STATE(2969), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 17, + ACTIONS(3607), 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, @@ -226357,24 +226085,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110009] = 9, - ACTIONS(1552), 1, + [109587] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6106), 1, + ACTIONS(6102), 1, anon_sym_RBRACE, - STATE(5408), 1, + STATE(4566), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6104), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + STATE(3980), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226402,28 +226130,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110063] = 9, - ACTIONS(1552), 1, + [109641] = 12, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(6108), 1, - anon_sym_RBRACE, - STATE(4804), 1, - sym_enum_assignment, + ACTIONS(5803), 1, + anon_sym_readonly, + ACTIONS(6106), 1, + anon_sym_STAR, + STATE(2707), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6108), 2, sym_number, sym_private_property_identifier, - STATE(4403), 3, + ACTIONS(6110), 2, + anon_sym_get, + anon_sym_set, + STATE(2985), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226432,14 +226167,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, @@ -226447,35 +226178,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110117] = 12, - ACTIONS(1584), 1, + [109701] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(3629), 1, - anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(6112), 1, - anon_sym_STAR, - ACTIONS(6116), 1, - anon_sym_readonly, - STATE(2704), 1, - sym_override_modifier, + anon_sym_RBRACE, + STATE(5481), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6114), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6118), 2, - anon_sym_get, - anon_sym_set, - STATE(2988), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226484,10 +226208,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, @@ -226495,24 +226223,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110177] = 9, - ACTIONS(1552), 1, + [109755] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6120), 1, + ACTIONS(6114), 1, anon_sym_RBRACE, - STATE(4792), 1, + STATE(5481), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6122), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - STATE(4029), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226540,7 +226268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110231] = 22, + [109809] = 22, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2339), 1, @@ -226569,22 +226297,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3717), 1, + ACTIONS(3745), 1, anon_sym_module, - ACTIONS(6124), 1, + ACTIONS(6116), 1, anon_sym_default, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(3919), 1, + STATE(3937), 1, sym_declaration, - STATE(4295), 1, + STATE(4333), 1, + aux_sym_export_statement_repeat1, + STATE(4343), 1, sym_internal_module, - STATE(4323), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4336), 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, + [109889] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2339), 1, + anon_sym_type, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2359), 1, + anon_sym_module, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2363), 1, + anon_sym_global, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + STATE(1244), 1, + sym_decorator, + STATE(4333), 1, aux_sym_export_statement_repeat1, + STATE(4343), 1, + sym_internal_module, + STATE(4369), 1, + sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4286), 13, + STATE(4336), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -226598,7 +226384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110311] = 14, + [109969] = 14, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, @@ -226609,13 +226395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2315), 1, anon_sym_override, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(5091), 1, anon_sym_STAR, - ACTIONS(6126), 1, + ACTIONS(6118), 1, anon_sym_static, - STATE(2715), 1, + STATE(2719), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -226626,7 +226412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226648,24 +226434,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110375] = 9, - ACTIONS(1552), 1, + [110033] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(2293), 1, + anon_sym_global, + ACTIONS(2301), 1, + anon_sym_namespace, + ACTIONS(2303), 1, + anon_sym_declare, + ACTIONS(2317), 1, + anon_sym_module, + STATE(819), 1, + sym_declaration, + STATE(860), 1, + sym_internal_module, + STATE(1244), 1, + sym_decorator, + STATE(4270), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(861), 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, + [110113] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2227), 1, + anon_sym_namespace, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2251), 1, + anon_sym_declare, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(2291), 1, + anon_sym_module, + ACTIONS(2293), 1, + anon_sym_global, + STATE(819), 1, + sym_declaration, + STATE(860), 1, + sym_internal_module, + STATE(1244), 1, + sym_decorator, + STATE(4270), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(861), 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, + [110193] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(2301), 1, + anon_sym_namespace, + ACTIONS(2303), 1, + anon_sym_declare, + ACTIONS(2305), 1, + anon_sym_module, + ACTIONS(6120), 1, + anon_sym_default, + STATE(860), 1, + sym_internal_module, + STATE(863), 1, + sym_declaration, + STATE(1244), 1, + sym_decorator, + STATE(4270), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(861), 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, + [110273] = 9, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(6122), 1, + anon_sym_RBRACE, + STATE(4820), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6124), 2, + sym_number, + sym_private_property_identifier, + STATE(4023), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 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, + [110327] = 14, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(3633), 1, + anon_sym_override, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_async, + ACTIONS(4251), 1, + anon_sym_readonly, + ACTIONS(6126), 1, + anon_sym_static, + STATE(2701), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4253), 2, + anon_sym_get, + anon_sym_set, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3607), 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, + [110391] = 9, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(6128), 1, anon_sym_RBRACE, - STATE(5408), 1, + STATE(5481), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226693,9 +226748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110429] = 22, + [110445] = 22, ACTIONS(99), 1, anon_sym_AT, + ACTIONS(2227), 1, + anon_sym_namespace, ACTIONS(2231), 1, anon_sym_import, ACTIONS(2233), 1, @@ -226710,6 +226767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2246), 1, anon_sym_function, + ACTIONS(2251), 1, + anon_sym_declare, + ACTIONS(2253), 1, + anon_sym_module, ACTIONS(2255), 1, anon_sym_abstract, ACTIONS(2257), 1, @@ -226718,26 +226779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2289), 1, anon_sym_type, - ACTIONS(2293), 1, - anon_sym_global, - ACTIONS(2301), 1, - anon_sym_namespace, - ACTIONS(2303), 1, - anon_sym_declare, - ACTIONS(2333), 1, - anon_sym_module, - STATE(779), 1, + ACTIONS(6130), 1, + anon_sym_default, + STATE(860), 1, sym_internal_module, - STATE(865), 1, + STATE(863), 1, sym_declaration, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(4171), 1, + STATE(4270), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(814), 13, + STATE(861), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -226751,24 +226806,24 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110509] = 9, - ACTIONS(1552), 1, + [110525] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6130), 1, + ACTIONS(6132), 1, anon_sym_RBRACE, - STATE(5408), 1, + STATE(5481), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226796,9 +226851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110563] = 22, + [110579] = 22, ACTIONS(99), 1, anon_sym_AT, + ACTIONS(2227), 1, + anon_sym_namespace, ACTIONS(2231), 1, anon_sym_import, ACTIONS(2233), 1, @@ -226813,6 +226870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2246), 1, anon_sym_function, + ACTIONS(2251), 1, + anon_sym_declare, + ACTIONS(2253), 1, + anon_sym_module, ACTIONS(2255), 1, anon_sym_abstract, ACTIONS(2257), 1, @@ -226821,26 +226882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2289), 1, anon_sym_type, - ACTIONS(2301), 1, - anon_sym_namespace, - ACTIONS(2303), 1, - anon_sym_declare, - ACTIONS(2305), 1, - anon_sym_module, - ACTIONS(6132), 1, + ACTIONS(6134), 1, anon_sym_default, - STATE(769), 1, - sym_declaration, - STATE(779), 1, + STATE(860), 1, sym_internal_module, - STATE(1236), 1, + STATE(863), 1, + sym_declaration, + STATE(1244), 1, sym_decorator, - STATE(4171), 1, + STATE(4270), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(814), 13, + STATE(861), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -226854,24 +226909,24 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110643] = 9, - ACTIONS(1552), 1, + [110659] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6134), 1, + ACTIONS(6136), 1, anon_sym_RBRACE, - STATE(5408), 1, + STATE(5481), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226899,24 +226954,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110697] = 9, - ACTIONS(1552), 1, + [110713] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6136), 1, + ACTIONS(6138), 1, anon_sym_RBRACE, - STATE(5408), 1, + STATE(5481), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - STATE(4473), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226944,40 +226999,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110751] = 11, - ACTIONS(2275), 1, + [110767] = 9, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6023), 1, - anon_sym_STAR, - ACTIONS(6049), 1, - anon_sym_async, - ACTIONS(6138), 1, - anon_sym_readonly, + ACTIONS(6140), 1, + anon_sym_RBRACE, + STATE(5481), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6025), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6027), 2, - anon_sym_get, - anon_sym_set, - STATE(3723), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 19, + ACTIONS(2307), 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, @@ -226990,30 +227044,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110808] = 3, + [110821] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5241), 1, + anon_sym_STAR, + ACTIONS(5243), 1, + anon_sym_async, + ACTIONS(6144), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3574), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5249), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6142), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3572), 25, + STATE(2976), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3607), 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, + [110878] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(6055), 1, + anon_sym_STAR, + ACTIONS(6061), 1, + anon_sym_async, + ACTIONS(6146), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6057), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6059), 2, anon_sym_get, anon_sym_set, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 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, @@ -227026,24 +227136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110849] = 4, + [110935] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1977), 6, + ACTIONS(3578), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1975), 23, + anon_sym_AT, + ACTIONS(3576), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227067,33 +227172,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110892] = 11, - ACTIONS(1584), 1, + anon_sym_abstract, + anon_sym_accessor, + [110976] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5510), 1, + ACTIONS(4827), 1, anon_sym_STAR, - ACTIONS(5516), 1, + ACTIONS(4831), 1, anon_sym_async, - ACTIONS(6140), 1, + ACTIONS(4835), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5518), 2, + ACTIONS(4833), 2, sym_number, sym_private_property_identifier, - ACTIONS(5520), 2, + ACTIONS(4837), 2, anon_sym_get, anon_sym_set, - STATE(2954), 3, + STATE(2980), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227113,33 +227220,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110949] = 11, - ACTIONS(1584), 1, + [111033] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5328), 1, + ACTIONS(5167), 1, anon_sym_STAR, - ACTIONS(5625), 1, + ACTIONS(5169), 1, anon_sym_async, - ACTIONS(6144), 1, + ACTIONS(6150), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5629), 2, + ACTIONS(5175), 2, anon_sym_get, anon_sym_set, - ACTIONS(6142), 2, + ACTIONS(6148), 2, sym_number, sym_private_property_identifier, - STATE(2963), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227159,33 +227266,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111006] = 11, - ACTIONS(1584), 1, + [111090] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, + ACTIONS(5157), 1, anon_sym_STAR, - ACTIONS(4670), 1, + ACTIONS(5159), 1, anon_sym_async, - ACTIONS(4674), 1, + ACTIONS(5163), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4672), 2, + ACTIONS(5161), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 2, + ACTIONS(5165), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(2964), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227205,33 +227312,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111063] = 11, - ACTIONS(1584), 1, + [111147] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4051), 1, - anon_sym_STAR, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(5311), 1, + anon_sym_STAR, + ACTIONS(5313), 1, anon_sym_async, - ACTIONS(4061), 1, + ACTIONS(5317), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 2, + ACTIONS(5315), 2, sym_number, sym_private_property_identifier, - ACTIONS(4063), 2, + ACTIONS(5319), 2, anon_sym_get, anon_sym_set, - STATE(2998), 3, + STATE(3074), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227251,33 +227358,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111120] = 11, - ACTIONS(1584), 1, + [111204] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5646), 1, + ACTIONS(5181), 1, anon_sym_STAR, - ACTIONS(5652), 1, + ACTIONS(5183), 1, anon_sym_async, - ACTIONS(6146), 1, + ACTIONS(5187), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5654), 2, + ACTIONS(5185), 2, sym_number, sym_private_property_identifier, - ACTIONS(5656), 2, + ACTIONS(5189), 2, anon_sym_get, anon_sym_set, - STATE(3069), 3, + STATE(3057), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227297,11 +227404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111177] = 3, + [111261] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3450), 7, + ACTIONS(3570), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -227309,7 +227416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3448), 25, + ACTIONS(3568), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227335,26 +227442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [111218] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(4582), 1, - anon_sym_LBRACK, - STATE(5408), 1, - sym_enum_assignment, + [111302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(3490), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(4473), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(3488), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227378,38 +227478,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111269] = 9, - ACTIONS(2275), 1, + anon_sym_abstract, + anon_sym_accessor, + [111343] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(6092), 1, + ACTIONS(5530), 1, anon_sym_STAR, + ACTIONS(5536), 1, + anon_sym_async, + ACTIONS(6152), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5741), 2, + ACTIONS(5538), 2, sym_number, sym_private_property_identifier, - ACTIONS(6148), 2, + ACTIONS(5540), 2, anon_sym_get, anon_sym_set, - STATE(3873), 3, + STATE(2966), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 21, + ACTIONS(3607), 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, @@ -227422,33 +227526,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111322] = 11, - ACTIONS(1584), 1, + [111400] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5176), 1, + ACTIONS(5542), 1, anon_sym_STAR, - ACTIONS(5178), 1, + ACTIONS(5614), 1, anon_sym_async, - ACTIONS(6152), 1, + ACTIONS(6156), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5184), 2, + ACTIONS(5618), 2, anon_sym_get, anon_sym_set, - ACTIONS(6150), 2, + ACTIONS(6154), 2, sym_number, sym_private_property_identifier, - STATE(2952), 3, + STATE(2959), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227468,25 +227572,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111379] = 9, + [111457] = 9, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6154), 1, + ACTIONS(6158), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5739), 2, + ACTIONS(5791), 2, sym_number, sym_private_property_identifier, - ACTIONS(6156), 2, + ACTIONS(6160), 2, anon_sym_get, anon_sym_set, - STATE(3880), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -227512,33 +227616,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111432] = 11, - ACTIONS(1584), 1, + [111510] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5228), 1, + ACTIONS(5241), 1, anon_sym_STAR, - ACTIONS(5230), 1, + ACTIONS(5243), 1, anon_sym_async, - ACTIONS(6160), 1, + ACTIONS(6164), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5236), 2, + ACTIONS(5249), 2, anon_sym_get, anon_sym_set, - ACTIONS(6158), 2, + ACTIONS(6162), 2, sym_number, sym_private_property_identifier, - STATE(2991), 3, + STATE(2968), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227558,40 +227662,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111489] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5166), 1, - anon_sym_STAR, - ACTIONS(5168), 1, - anon_sym_async, - ACTIONS(5172), 1, - anon_sym_readonly, + [111567] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5170), 2, + ACTIONS(3540), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5174), 2, - anon_sym_get, - anon_sym_set, - STATE(2993), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 19, + anon_sym_AT, + ACTIONS(3538), 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, @@ -227604,33 +227698,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111546] = 11, - ACTIONS(1584), 1, + anon_sym_abstract, + anon_sym_accessor, + [111608] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5242), 1, + ACTIONS(5560), 1, anon_sym_STAR, - ACTIONS(5244), 1, + ACTIONS(5692), 1, anon_sym_async, - ACTIONS(5248), 1, + ACTIONS(6166), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5246), 2, + ACTIONS(5694), 2, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, + ACTIONS(5696), 2, anon_sym_get, anon_sym_set, - STATE(3044), 3, + STATE(3029), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227650,30 +227746,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111603] = 3, + [111665] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3566), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3564), 25, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(3788), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 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, @@ -227686,35 +227792,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [111644] = 11, - ACTIONS(1584), 1, + [111722] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5546), 1, + ACTIONS(5255), 1, anon_sym_STAR, - ACTIONS(5662), 1, + ACTIONS(5257), 1, anon_sym_async, - ACTIONS(6162), 1, + ACTIONS(5261), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5664), 2, + ACTIONS(5259), 2, sym_number, sym_private_property_identifier, - ACTIONS(5666), 2, + ACTIONS(5263), 2, anon_sym_get, anon_sym_set, - STATE(2999), 3, + STATE(3039), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227734,40 +227838,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111701] = 11, + [111779] = 9, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(6106), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5773), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(6168), 2, anon_sym_get, anon_sym_set, - STATE(3909), 3, + STATE(3897), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 19, + ACTIONS(2307), 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, @@ -227780,40 +227882,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111758] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5228), 1, - anon_sym_STAR, - ACTIONS(5230), 1, - anon_sym_async, - ACTIONS(6166), 1, - anon_sym_readonly, + [111832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5236), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6164), 2, + ACTIONS(3524), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(2962), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 19, + anon_sym_AT, + ACTIONS(3522), 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, @@ -227826,30 +227918,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111815] = 3, + anon_sym_abstract, + anon_sym_accessor, + [111873] = 11, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5628), 1, + anon_sym_STAR, + ACTIONS(5634), 1, + anon_sym_async, + ACTIONS(6170), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3570), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5636), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3568), 25, + ACTIONS(5638), 2, + anon_sym_get, + anon_sym_set, + STATE(3038), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3607), 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, @@ -227862,42 +227966,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [111856] = 11, - ACTIONS(2275), 1, + [111930] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, - ACTIONS(5995), 1, - anon_sym_async, - ACTIONS(5999), 1, - anon_sym_readonly, + STATE(5481), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - STATE(3767), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 19, + ACTIONS(2307), 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, @@ -227910,33 +228009,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111913] = 11, - ACTIONS(1584), 1, + [111981] = 11, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5268), 1, + ACTIONS(4241), 1, anon_sym_STAR, - ACTIONS(5270), 1, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, anon_sym_async, - ACTIONS(5274), 1, + ACTIONS(4251), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5272), 2, + ACTIONS(4249), 2, sym_number, sym_private_property_identifier, - ACTIONS(5276), 2, + ACTIONS(4253), 2, anon_sym_get, anon_sym_set, - STATE(3068), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(3607), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227956,40 +228055,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111970] = 11, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_async, - ACTIONS(5196), 1, - anon_sym_readonly, + [112038] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5198), 2, - anon_sym_get, - anon_sym_set, - STATE(3065), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 19, + ACTIONS(2001), 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, @@ -228002,36 +228094,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112027] = 8, - ACTIONS(1584), 1, + [112081] = 11, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, + ACTIONS(5993), 1, + anon_sym_STAR, + ACTIONS(5995), 1, + anon_sym_async, + ACTIONS(5999), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6168), 2, + ACTIONS(5997), 2, sym_number, sym_private_property_identifier, - STATE(3389), 3, + ACTIONS(6001), 2, + anon_sym_get, + anon_sym_set, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(2307), 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_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228044,26 +228140,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112077] = 8, - ACTIONS(1584), 1, + [112138] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6174), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6172), 2, + ACTIONS(5630), 2, sym_number, sym_private_property_identifier, - STATE(3270), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228072,6 +228166,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, @@ -228086,20 +228181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112127] = 7, + [112186] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6029), 2, sym_number, sym_private_property_identifier, - STATE(3767), 3, + STATE(3725), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228127,20 +228222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112175] = 7, + [112234] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6025), 2, + ACTIONS(5773), 2, sym_number, sym_private_property_identifier, - STATE(3723), 3, + STATE(3897), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228168,24 +228263,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112223] = 7, - ACTIONS(2275), 1, + [112282] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6174), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5366), 2, + ACTIONS(6172), 2, sym_number, sym_private_property_identifier, - STATE(3906), 3, + STATE(3291), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228194,7 +228291,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, @@ -228209,24 +228305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112271] = 7, - ACTIONS(2275), 1, + [112332] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, + ACTIONS(6176), 2, sym_number, sym_private_property_identifier, - STATE(3785), 3, + STATE(3324), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228250,24 +228346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112319] = 7, - ACTIONS(2275), 1, + [112380] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6053), 2, + ACTIONS(6178), 2, sym_number, sym_private_property_identifier, - STATE(3763), 3, + STATE(3293), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228291,20 +228387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112367] = 7, + [112428] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(5532), 2, sym_number, sym_private_property_identifier, - STATE(3808), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228332,20 +228428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112415] = 7, + [112476] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - STATE(3852), 3, + STATE(3773), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228373,26 +228469,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112463] = 8, - ACTIONS(1584), 1, + [112524] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(5793), 1, + ACTIONS(5871), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5737), 2, + ACTIONS(5702), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3366), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228415,24 +228511,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112513] = 7, - ACTIONS(1584), 1, + [112574] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5737), 2, + ACTIONS(5702), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3366), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228456,20 +228552,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112561] = 7, + [112622] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5739), 2, + ACTIONS(5791), 2, sym_number, sym_private_property_identifier, - STATE(3880), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228497,24 +228593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112609] = 7, - ACTIONS(1584), 1, + [112670] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6176), 2, + ACTIONS(5506), 2, sym_number, sym_private_property_identifier, - STATE(3377), 3, + STATE(3747), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228538,26 +228634,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112657] = 8, - ACTIONS(1584), 1, + [112718] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(6180), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(6180), 2, sym_number, sym_private_property_identifier, - STATE(3386), 3, + STATE(3370), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228566,6 +228660,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, @@ -228580,24 +228675,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112707] = 7, - ACTIONS(1584), 1, + [112766] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6184), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(6182), 2, sym_number, sym_private_property_identifier, - STATE(3387), 3, + STATE(3374), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228606,7 +228703,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, @@ -228621,26 +228717,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112755] = 8, - ACTIONS(1584), 1, + [112816] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(6186), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6186), 2, sym_number, sym_private_property_identifier, - STATE(3390), 3, + STATE(3375), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228649,6 +228743,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, @@ -228663,12 +228758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112805] = 8, - ACTIONS(1584), 1, + [112864] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(6190), 1, anon_sym_readonly, @@ -228678,11 +228773,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6188), 2, sym_number, sym_private_property_identifier, - STATE(3397), 3, + STATE(3382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228705,24 +228800,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112855] = 7, - ACTIONS(1584), 1, + [112914] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(4636), 2, sym_number, sym_private_property_identifier, - STATE(3398), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228746,24 +228841,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112903] = 7, - ACTIONS(2275), 1, + [112962] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6194), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - STATE(3886), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228772,7 +228869,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, @@ -228787,24 +228883,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112951] = 7, - ACTIONS(2275), 1, + [113012] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 2, + ACTIONS(6196), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3392), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228828,20 +228924,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112999] = 7, + [113060] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5542), 2, + ACTIONS(6065), 2, sym_number, sym_private_property_identifier, - STATE(3737), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228869,20 +228965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113047] = 7, + [113108] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 2, + ACTIONS(5552), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228910,24 +229006,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113095] = 7, - ACTIONS(2275), 1, + [113156] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(5803), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5554), 2, + ACTIONS(4993), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3277), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228936,7 +229034,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, @@ -228951,20 +229048,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113143] = 7, + [113206] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5560), 2, + ACTIONS(5556), 2, sym_number, sym_private_property_identifier, - STATE(3779), 3, + STATE(3808), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228992,20 +229089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113191] = 7, + [113254] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6065), 2, + ACTIONS(5562), 2, sym_number, sym_private_property_identifier, - STATE(3780), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229033,20 +229130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113239] = 7, + [113302] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5566), 2, sym_number, sym_private_property_identifier, - STATE(3909), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229074,20 +229171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113287] = 7, + [113350] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5427), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - STATE(3870), 3, + STATE(3734), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229115,20 +229212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113335] = 7, + [113398] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5610), 2, + ACTIONS(5572), 2, sym_number, sym_private_property_identifier, - STATE(3815), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229156,26 +229253,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113383] = 8, - ACTIONS(1584), 1, + [113446] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6194), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5873), 2, + ACTIONS(6077), 2, sym_number, sym_private_property_identifier, - STATE(3418), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229184,6 +229279,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, @@ -229198,24 +229294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113433] = 7, - ACTIONS(1584), 1, + [113494] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5873), 2, + ACTIONS(4864), 2, sym_number, sym_private_property_identifier, - STATE(3418), 3, + STATE(3354), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229239,20 +229335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113481] = 7, + [113542] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, + ACTIONS(5664), 2, sym_number, sym_private_property_identifier, - STATE(3858), 3, + STATE(3772), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229280,66 +229376,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113529] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(6198), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6196), 2, - sym_number, - sym_private_property_identifier, - STATE(3436), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 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, - [113579] = 7, - ACTIONS(1584), 1, + [113590] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6200), 2, + ACTIONS(5486), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229363,26 +229417,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113627] = 8, - ACTIONS(1584), 1, + [113638] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(6204), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6202), 2, + ACTIONS(4993), 2, sym_number, sym_private_property_identifier, - STATE(3444), 3, + STATE(3277), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229391,6 +229443,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, @@ -229405,24 +229458,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113677] = 7, - ACTIONS(1584), 1, + [113686] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6206), 2, + ACTIONS(5997), 2, sym_number, sym_private_property_identifier, - STATE(3445), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229446,24 +229499,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113725] = 7, - ACTIONS(1584), 1, + [113734] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6208), 2, + ACTIONS(6051), 2, sym_number, sym_private_property_identifier, - STATE(3414), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229487,26 +229540,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113773] = 8, - ACTIONS(1584), 1, + [113782] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(6212), 1, + ACTIONS(6200), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6210), 2, + ACTIONS(6198), 2, sym_number, sym_private_property_identifier, - STATE(3312), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229529,24 +229582,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113823] = 7, - ACTIONS(1584), 1, + [113832] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6202), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6214), 2, + ACTIONS(5893), 2, sym_number, sym_private_property_identifier, - STATE(3336), 3, + STATE(3412), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229555,7 +229610,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, @@ -229570,26 +229624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113871] = 8, - ACTIONS(1584), 1, + [113882] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(6218), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6216), 2, + ACTIONS(5893), 2, sym_number, sym_private_property_identifier, - STATE(3318), 3, + STATE(3412), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229598,6 +229650,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, @@ -229612,20 +229665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113921] = 7, + [113930] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5648), 2, + ACTIONS(6079), 2, sym_number, sym_private_property_identifier, - STATE(3726), 3, + STATE(3905), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229653,24 +229706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113969] = 7, - ACTIONS(2275), 1, + [113978] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6206), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(6204), 2, sym_number, sym_private_property_identifier, - STATE(3853), 3, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229679,7 +229734,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, @@ -229694,24 +229748,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114017] = 7, - ACTIONS(2275), 1, + [114028] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5570), 2, + ACTIONS(6208), 2, sym_number, sym_private_property_identifier, - STATE(3794), 3, + STATE(3390), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229735,24 +229789,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114065] = 7, - ACTIONS(1584), 1, + [114076] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6212), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6220), 2, + ACTIONS(6210), 2, sym_number, sym_private_property_identifier, - STATE(3392), 3, + STATE(3258), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229761,7 +229817,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, @@ -229776,24 +229831,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114113] = 7, - ACTIONS(2275), 1, + [114126] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, + ACTIONS(6214), 2, sym_number, sym_private_property_identifier, - STATE(3843), 3, + STATE(3274), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229817,24 +229872,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114161] = 7, - ACTIONS(2275), 1, + [114174] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6218), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 2, + ACTIONS(6216), 2, sym_number, sym_private_property_identifier, - STATE(3881), 3, + STATE(3296), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229843,7 +229900,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, @@ -229858,20 +229914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114209] = 7, + [114224] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5538), 2, + ACTIONS(5526), 2, sym_number, sym_private_property_identifier, - STATE(3907), 3, + STATE(3842), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229899,24 +229955,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114257] = 7, - ACTIONS(2275), 1, + [114272] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6059), 2, + ACTIONS(6220), 2, sym_number, sym_private_property_identifier, - STATE(3828), 3, + STATE(3340), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229940,20 +229996,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114305] = 7, + [114320] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, + ACTIONS(5385), 2, sym_number, sym_private_property_identifier, - STATE(3754), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229981,24 +230037,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114353] = 7, - ACTIONS(2275), 1, + [114368] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6224), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5376), 2, + ACTIONS(6222), 2, sym_number, sym_private_property_identifier, - STATE(3778), 3, + STATE(3446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230007,7 +230065,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, @@ -230022,24 +230079,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114401] = 7, - ACTIONS(2275), 1, + [114418] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(6226), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3447), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230063,24 +230120,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114449] = 7, - ACTIONS(1584), 1, + [114466] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6230), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4685), 2, + ACTIONS(6228), 2, sym_number, sym_private_property_identifier, - STATE(3424), 3, + STATE(3302), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(3607), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230089,7 +230148,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, @@ -230104,20 +230162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114497] = 7, + [114516] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5676), 2, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - STATE(3770), 3, + STATE(3757), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230145,24 +230203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114545] = 7, - ACTIONS(1584), 1, + [114564] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, + ACTIONS(5544), 2, sym_number, sym_private_property_identifier, - STATE(3281), 3, + STATE(3817), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230186,62 +230244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114593] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(5801), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5048), 2, - sym_number, - sym_private_property_identifier, - STATE(3281), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 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, - [114643] = 7, + [114612] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6063), 2, + ACTIONS(5381), 2, sym_number, sym_private_property_identifier, - STATE(3774), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230269,62 +230285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114691] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6222), 2, - sym_number, - sym_private_property_identifier, - STATE(3425), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3603), 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, - [114741] = 7, + [114660] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5741), 2, + ACTIONS(5468), 2, sym_number, sym_private_property_identifier, - STATE(3873), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230352,24 +230326,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114789] = 7, - ACTIONS(1584), 1, + [114708] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6226), 2, + ACTIONS(6081), 2, sym_number, sym_private_property_identifier, - STATE(3290), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230393,26 +230367,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114837] = 8, - ACTIONS(1584), 1, + [114756] = 7, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, - ACTIONS(6230), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5375), 2, + sym_number, + sym_private_property_identifier, + STATE(3731), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 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, + [114804] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6228), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3297), 3, + STATE(3788), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 22, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230421,6 +230434,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, @@ -230435,24 +230449,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114887] = 7, - ACTIONS(1584), 1, + [114852] = 8, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4245), 1, anon_sym_LBRACK, + ACTIONS(6234), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(6232), 2, sym_number, sym_private_property_identifier, - STATE(3298), 3, + STATE(3393), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3607), 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, + [114902] = 7, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6236), 2, + sym_number, + sym_private_property_identifier, + STATE(3396), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3603), 23, + ACTIONS(3607), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230476,20 +230532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114935] = 7, + [114950] = 7, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4582), 1, + ACTIONS(4634), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6017), 2, + ACTIONS(6057), 2, sym_number, sym_private_property_identifier, - STATE(3792), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230517,21 +230573,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114983] = 4, - ACTIONS(6234), 1, + [114998] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6063), 2, + sym_number, + sym_private_property_identifier, + STATE(3904), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, sym_identifier, - STATE(5786), 1, - sym_mapped_type_clause, + 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, + [115046] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4634), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6236), 22, + ACTIONS(5604), 2, + sym_number, + sym_private_property_identifier, + STATE(3822), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 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, @@ -230548,58 +230655,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115018] = 9, - ACTIONS(3408), 1, - anon_sym_LPAREN, + [115094] = 4, ACTIONS(6238), 1, - anon_sym_DOT, - ACTIONS(6240), 1, - anon_sym_QMARK_DOT, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2832), 1, - sym_arguments, - STATE(2875), 1, - sym_type_arguments, + sym_identifier, + STATE(5746), 1, + sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4005), 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, - [115059] = 9, - ACTIONS(3408), 1, + ACTIONS(6240), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + 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, + [115129] = 9, + ACTIONS(3438), 1, anon_sym_LPAREN, - ACTIONS(3412), 1, + ACTIONS(6242), 1, anon_sym_DOT, - ACTIONS(3416), 1, + ACTIONS(6244), 1, anon_sym_QMARK_DOT, - ACTIONS(6242), 1, + ACTIONS(6246), 1, anon_sym_LT, - STATE(2822), 1, + STATE(2841), 1, sym_arguments, - STATE(2872), 1, + STATE(2865), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3979), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3406), 12, + ACTIONS(3981), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -230612,26 +230718,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115100] = 9, - ACTIONS(3408), 1, + [115170] = 9, + ACTIONS(3438), 1, anon_sym_LPAREN, - ACTIONS(6242), 1, + ACTIONS(6246), 1, anon_sym_LT, - ACTIONS(6244), 1, + ACTIONS(6248), 1, anon_sym_DOT, - ACTIONS(6246), 1, + ACTIONS(6250), 1, anon_sym_QMARK_DOT, - STATE(2831), 1, + STATE(2843), 1, sym_arguments, - STATE(2874), 1, + STATE(2866), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3967), 2, + ACTIONS(3985), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3969), 12, + ACTIONS(3987), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -230644,89 +230750,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [115141] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4386), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4388), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [115211] = 9, + ACTIONS(3438), 1, 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, - [115169] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4414), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4416), 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, + ACTIONS(3440), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(3442), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6246), 1, anon_sym_LT, - anon_sym_extends, - [115197] = 3, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 2, + ACTIONS(3418), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4322), 17, - anon_sym_as, + ACTIONS(3406), 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, - [115225] = 3, + [115252] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 2, + ACTIONS(4166), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4326), 17, + ACTIONS(4168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230744,14 +230807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115253] = 3, + [115280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 2, + ACTIONS(4216), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4330), 17, + ACTIONS(4218), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230769,14 +230832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115281] = 3, + [115308] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 2, + ACTIONS(4237), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4334), 17, + ACTIONS(4239), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230794,14 +230857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115309] = 3, + [115336] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 2, + ACTIONS(4220), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4330), 17, + ACTIONS(4222), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230819,14 +230882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115337] = 3, + [115364] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 2, + ACTIONS(4220), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4334), 17, + ACTIONS(4222), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230844,14 +230907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115365] = 3, + [115392] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 2, + ACTIONS(4237), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4338), 17, + ACTIONS(4239), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230869,14 +230932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115393] = 3, + [115420] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 2, + ACTIONS(4220), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4342), 17, + ACTIONS(4222), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230894,14 +230957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115421] = 3, + [115448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 2, + ACTIONS(4224), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4338), 17, + ACTIONS(4226), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230919,14 +230982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115449] = 3, + [115476] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 2, + ACTIONS(4275), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4342), 17, + ACTIONS(4277), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230944,14 +231007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115477] = 3, + [115504] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 2, + ACTIONS(4279), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4350), 17, + ACTIONS(4281), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230969,14 +231032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115505] = 3, + [115532] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 2, + ACTIONS(4279), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4346), 17, + ACTIONS(4281), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -230994,14 +231057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115533] = 3, + [115560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 2, + ACTIONS(4279), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4420), 17, + ACTIONS(4281), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231019,14 +231082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115561] = 3, + [115588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 2, + ACTIONS(4285), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4350), 17, + ACTIONS(4287), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231044,14 +231107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115589] = 3, + [115616] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 2, + ACTIONS(4285), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4412), 17, + ACTIONS(4287), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231069,14 +231132,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115617] = 3, + [115644] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 2, + ACTIONS(4293), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4420), 17, + ACTIONS(4295), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231094,14 +231157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115645] = 3, + [115672] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 2, + ACTIONS(4511), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4420), 17, + ACTIONS(4513), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231119,14 +231182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115673] = 3, + [115700] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 2, + ACTIONS(4146), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4412), 17, + ACTIONS(4148), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231144,14 +231207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115701] = 3, + [115728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 2, + ACTIONS(4150), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4380), 17, + ACTIONS(4152), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231169,14 +231232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115729] = 3, + [115756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 2, + ACTIONS(4154), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4384), 17, + ACTIONS(4156), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231194,14 +231257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115757] = 3, + [115784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 2, + ACTIONS(4150), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4384), 17, + ACTIONS(4152), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231219,14 +231282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115785] = 3, + [115812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 2, + ACTIONS(4154), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4384), 17, + ACTIONS(4156), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231244,14 +231307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115813] = 3, + [115840] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 2, + ACTIONS(4158), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4388), 17, + ACTIONS(4160), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231269,14 +231332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115841] = 3, + [115868] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 2, + ACTIONS(4162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4412), 17, + ACTIONS(4164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231294,14 +231357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115869] = 3, + [115896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 2, + ACTIONS(4158), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4416), 17, + ACTIONS(4160), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231319,14 +231382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115897] = 3, + [115924] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 2, + ACTIONS(4162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4388), 17, + ACTIONS(4164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231344,14 +231407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115925] = 3, + [115952] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4166), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231369,14 +231432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115953] = 3, + [115980] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4177), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4179), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231394,14 +231457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [115981] = 3, + [116008] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4177), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4179), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231419,14 +231482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116009] = 3, + [116036] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 2, + ACTIONS(4224), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4416), 17, + ACTIONS(4226), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231444,14 +231507,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116037] = 3, + [116064] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 2, + ACTIONS(4293), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4408), 17, + ACTIONS(4295), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231469,14 +231532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116065] = 3, + [116092] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 2, + ACTIONS(4293), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4346), 17, + ACTIONS(4295), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231494,183 +231557,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116093] = 18, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6250), 1, + [116120] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4224), 2, anon_sym_EQ, - ACTIONS(6252), 1, + anon_sym_QMARK, + ACTIONS(4226), 17, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(6254), 1, anon_sym_COMMA, - ACTIONS(6256), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6258), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6263), 1, anon_sym_DOT, - ACTIONS(6265), 1, - anon_sym_SLASH_GT, - ACTIONS(6267), 1, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - STATE(3300), 1, - sym_type_arguments, - STATE(3302), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - STATE(4444), 1, - sym_constraint, - STATE(5377), 1, - sym_default_type, + [116148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [116150] = 6, - ACTIONS(3973), 1, + ACTIONS(4237), 2, anon_sym_EQ, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6269), 1, + 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_GT, anon_sym_DOT, - STATE(2855), 1, - sym_type_arguments, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 14, + ACTIONS(4285), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4287), 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, - [116183] = 14, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(6271), 1, + [116204] = 18, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6252), 1, sym_identifier, - ACTIONS(6273), 1, - anon_sym_STAR, - ACTIONS(6275), 1, - anon_sym_type, - ACTIONS(6277), 1, + ACTIONS(6254), 1, + anon_sym_EQ, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6279), 1, - anon_sym_typeof, - STATE(4495), 1, - sym_import_require_clause, - STATE(4522), 1, - sym_string, - STATE(5370), 1, - sym__import_identifier, - STATE(5411), 1, - sym_import_clause, + ACTIONS(6258), 1, + anon_sym_COMMA, + ACTIONS(6260), 1, + anon_sym_COLON, + ACTIONS(6262), 1, + anon_sym_GT, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6267), 1, + anon_sym_DOT, + ACTIONS(6269), 1, + anon_sym_SLASH_GT, + ACTIONS(6271), 1, + anon_sym_extends, + STATE(3376), 1, + sym_type_arguments, + STATE(3377), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + STATE(4540), 1, + sym_constraint, + STATE(5495), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5661), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6281), 5, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [116261] = 3, + ACTIONS(1919), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1917), 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_LT, - anon_sym_BQUOTE, - [116232] = 18, - ACTIONS(5964), 1, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [116288] = 18, + ACTIONS(5991), 1, anon_sym_LT, - ACTIONS(6248), 1, + ACTIONS(6252), 1, sym_identifier, - ACTIONS(6250), 1, + ACTIONS(6254), 1, anon_sym_EQ, - ACTIONS(6252), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6254), 1, + ACTIONS(6258), 1, anon_sym_COMMA, - ACTIONS(6256), 1, + ACTIONS(6260), 1, anon_sym_COLON, - ACTIONS(6258), 1, + ACTIONS(6262), 1, anon_sym_GT, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6263), 1, - anon_sym_DOT, ACTIONS(6267), 1, + anon_sym_DOT, + ACTIONS(6271), 1, anon_sym_extends, - ACTIONS(6283), 1, + ACTIONS(6273), 1, anon_sym_SLASH_GT, - STATE(3376), 1, + STATE(3310), 1, sym_type_arguments, - STATE(3378), 1, + STATE(3448), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, - STATE(4444), 1, + STATE(4540), 1, sym_constraint, - STATE(5377), 1, + STATE(5495), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [116289] = 9, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3967), 1, + [116345] = 3, + ACTIONS(1823), 1, anon_sym_PIPE, - ACTIONS(6285), 1, - anon_sym_DOT, - ACTIONS(6287), 1, - anon_sym_QMARK_DOT, - ACTIONS(6289), 1, - anon_sym_LT, - STATE(3015), 1, - sym_arguments, - STATE(3201), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3969), 10, + ACTIONS(1821), 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, - [116327] = 3, + [116372] = 14, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(6275), 1, + sym_identifier, + ACTIONS(6277), 1, + anon_sym_STAR, + ACTIONS(6279), 1, + anon_sym_type, + ACTIONS(6281), 1, + anon_sym_LBRACE, + ACTIONS(6283), 1, + anon_sym_typeof, + STATE(4257), 1, + sym_string, + STATE(4285), 1, + sym_import_require_clause, + STATE(5220), 1, + sym_import_clause, + STATE(5247), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 2, + STATE(5580), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(6285), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [116421] = 6, + ACTIONS(4007), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4244), 15, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6287), 1, + anon_sym_DOT, + STATE(2856), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231680,19 +231815,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, - [116353] = 3, - ACTIONS(4126), 1, + [116454] = 3, + ACTIONS(4122), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4128), 16, + ACTIONS(4124), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231703,53 +231837,25 @@ 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_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [116379] = 9, - ACTIONS(3410), 1, - anon_sym_PIPE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, + [116480] = 4, + ACTIONS(1855), 1, anon_sym_DOT, - ACTIONS(3444), 1, - anon_sym_QMARK_DOT, - ACTIONS(6289), 1, - anon_sym_LT, - STATE(2994), 1, - sym_arguments, - STATE(3188), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3406), 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, - [116417] = 3, - ACTIONS(4047), 1, + ACTIONS(4097), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 16, + ACTIONS(4099), 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, @@ -231758,28 +231864,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [116443] = 9, - ACTIONS(3440), 1, + [116508] = 9, + ACTIONS(3408), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(3410), 1, + anon_sym_DOT, + ACTIONS(3414), 1, + anon_sym_QMARK_DOT, + ACTIONS(3418), 1, anon_sym_PIPE, ACTIONS(6289), 1, anon_sym_LT, - ACTIONS(6291), 1, - anon_sym_DOT, - ACTIONS(6293), 1, - anon_sym_QMARK_DOT, - STATE(3019), 1, + STATE(3020), 1, sym_arguments, - STATE(3145), 1, + STATE(3189), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4005), 10, + ACTIONS(3406), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -231790,18 +231896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116481] = 5, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, + [116546] = 5, + ACTIONS(4025), 1, + anon_sym_EQ, + ACTIONS(6246), 1, + anon_sym_LT, + STATE(2861), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3410), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3406), 13, + ACTIONS(4027), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231814,37 +231919,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [116511] = 3, - ACTIONS(1770), 1, - anon_sym_PIPE, + [116576] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1768), 16, - sym__automatic_semicolon, + ACTIONS(4454), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4456), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + 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_LT, - anon_sym_QMARK, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116537] = 3, - ACTIONS(4098), 1, + [116602] = 3, + ACTIONS(3598), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 16, + ACTIONS(3382), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231855,24 +231961,24 @@ 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_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [116563] = 5, - ACTIONS(6295), 1, + [116628] = 5, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(6297), 1, + ACTIONS(3442), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 2, + ACTIONS(3418), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4172), 13, + ACTIONS(3406), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231886,37 +231992,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116593] = 3, + [116658] = 9, + ACTIONS(3408), 1, + anon_sym_LPAREN, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_LT, + ACTIONS(6291), 1, + anon_sym_DOT, + ACTIONS(6293), 1, + anon_sym_QMARK_DOT, + STATE(3021), 1, + sym_arguments, + STATE(3196), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 2, + ACTIONS(3981), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4252), 15, - anon_sym_as, 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_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [116619] = 3, + anon_sym_PIPE_RBRACE, + [116696] = 5, + ACTIONS(6295), 1, + anon_sym_DOT, + ACTIONS(6297), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4378), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4260), 15, + ACTIONS(4380), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231926,46 +232042,42 @@ 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_extends, - [116645] = 5, - ACTIONS(4023), 1, + [116726] = 3, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2865), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 14, + ACTIONS(3446), 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, - [116675] = 4, - ACTIONS(1758), 1, + [116752] = 4, + ACTIONS(1797), 1, anon_sym_DOT, - ACTIONS(4278), 1, + ACTIONS(4097), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 15, + ACTIONS(4099), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -231981,13 +232093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [116703] = 3, - ACTIONS(3592), 1, + [116780] = 3, + ACTIONS(4118), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 16, + ACTIONS(4120), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232004,13 +232116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [116729] = 3, - ACTIONS(3594), 1, + [116806] = 3, + ACTIONS(4114), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 16, + ACTIONS(4116), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232027,88 +232139,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [116755] = 4, - ACTIONS(1772), 1, - anon_sym_DOT, - ACTIONS(4278), 1, + [116832] = 3, + ACTIONS(4126), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 15, + ACTIONS(4128), 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, - [116783] = 3, - ACTIONS(4292), 1, - anon_sym_EQ, + [116858] = 9, + ACTIONS(3408), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_LT, + ACTIONS(6299), 1, + anon_sym_DOT, + ACTIONS(6301), 1, + anon_sym_QMARK_DOT, + STATE(3023), 1, + sym_arguments, + STATE(3206), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 16, - anon_sym_as, + ACTIONS(3987), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, 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, - [116809] = 3, - ACTIONS(4296), 1, + anon_sym_PIPE_RBRACE, + [116896] = 7, + ACTIONS(4007), 1, anon_sym_EQ, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6287), 1, + anon_sym_DOT, + ACTIONS(6303), 1, + anon_sym_is, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 16, - anon_sym_as, + ACTIONS(3461), 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_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [116835] = 3, - ACTIONS(4300), 1, - anon_sym_EQ, + [116930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 16, + ACTIONS(4480), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4482), 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, @@ -232116,17 +232237,17 @@ 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, - [116861] = 3, - ACTIONS(4304), 1, + [116956] = 3, + ACTIONS(4142), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 16, + ACTIONS(4144), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232137,27 +232258,21 @@ 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_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [116887] = 7, - ACTIONS(3973), 1, - anon_sym_EQ, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6269), 1, - anon_sym_DOT, - ACTIONS(6299), 1, - anon_sym_is, - STATE(2855), 1, - sym_type_arguments, + [116982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 12, + ACTIONS(4488), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4490), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -232166,44 +232281,24 @@ 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_extends, - [116921] = 3, - ACTIONS(1746), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1744), 16, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - 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, - [116947] = 3, - ACTIONS(1666), 1, + [117008] = 3, + ACTIONS(4332), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 15, + ACTIONS(4334), 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, @@ -232212,39 +232307,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [116972] = 3, - ACTIONS(4230), 1, + [117034] = 3, + ACTIONS(4470), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 15, + ACTIONS(4472), 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_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [116997] = 3, - ACTIONS(4238), 1, + [117060] = 6, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, anon_sym_EQ, + ACTIONS(6305), 1, + anon_sym_DOT, + STATE(2847), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 15, - anon_sym_as, + ACTIONS(4021), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -232253,19 +232354,17 @@ 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_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [117022] = 3, - ACTIONS(4035), 1, + [117091] = 3, + ACTIONS(4466), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 15, + ACTIONS(4468), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232275,25 +232374,20 @@ 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_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [117047] = 6, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + [117116] = 3, + ACTIONS(4458), 1, anon_sym_EQ, - ACTIONS(6301), 1, - anon_sym_DOT, - STATE(2846), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 12, + ACTIONS(4460), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -232302,19 +232396,19 @@ 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_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117078] = 4, - ACTIONS(4148), 1, + [117141] = 3, + ACTIONS(4045), 1, anon_sym_EQ, - ACTIONS(6303), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 14, + ACTIONS(4047), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232329,34 +232423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117105] = 3, - ACTIONS(4386), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4388), 14, - sym__automatic_semicolon, + anon_sym_is, + [117166] = 4, + ACTIONS(4336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(6307), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117129] = 3, - ACTIONS(4180), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 14, + ACTIONS(4338), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232371,13 +232447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117153] = 3, - ACTIONS(4184), 1, + [117193] = 3, + ACTIONS(1652), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 14, + ACTIONS(1650), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232392,13 +232468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117177] = 3, - ACTIONS(4194), 1, + anon_sym_is, + [117218] = 3, + ACTIONS(4476), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4196), 14, + ACTIONS(4478), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232413,13 +232490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117201] = 3, - ACTIONS(4198), 1, + [117242] = 3, + ACTIONS(4259), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 14, + ACTIONS(4261), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232434,13 +232511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117225] = 3, - ACTIONS(4202), 1, + [117266] = 3, + ACTIONS(4263), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 14, + ACTIONS(4265), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232455,13 +232532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117249] = 3, - ACTIONS(4422), 1, + [117290] = 3, + ACTIONS(4013), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 14, + ACTIONS(4015), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232476,13 +232553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117273] = 3, - ACTIONS(4017), 1, + [117314] = 3, + ACTIONS(4410), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 14, + ACTIONS(4412), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232497,33 +232574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117297] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6305), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [117319] = 3, - ACTIONS(4013), 1, + [117338] = 3, + ACTIONS(4301), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 14, + ACTIONS(4303), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232538,38 +232595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117343] = 5, - ACTIONS(4214), 1, + [117362] = 5, + ACTIONS(4424), 1, anon_sym_EQ, - ACTIONS(6307), 1, + ACTIONS(6309), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, + ACTIONS(4344), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(4216), 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, - [117371] = 4, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(6307), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4226), 13, + ACTIONS(4426), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232579,17 +232617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [117397] = 3, - ACTIONS(4154), 1, + [117390] = 3, + ACTIONS(4271), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 14, + ACTIONS(4273), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232604,15 +232639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117421] = 4, - ACTIONS(4154), 1, + [117414] = 4, + ACTIONS(4434), 1, anon_sym_EQ, - ACTIONS(6307), 1, + ACTIONS(6309), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 13, + ACTIONS(4436), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232626,13 +232661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117447] = 3, - ACTIONS(4160), 1, + [117440] = 3, + ACTIONS(4462), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 14, + ACTIONS(4464), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232647,76 +232682,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117471] = 3, - ACTIONS(4234), 1, - anon_sym_EQ, + [117464] = 8, + ACTIONS(6311), 1, + anon_sym_LPAREN, + ACTIONS(6313), 1, + anon_sym_DOT, + ACTIONS(6315), 1, + anon_sym_QMARK_DOT, + ACTIONS(6317), 1, + anon_sym_LT, + STATE(3185), 1, + sym_arguments, + STATE(3394), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 14, - anon_sym_as, + ACTIONS(3406), 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, - [117495] = 3, - ACTIONS(4394), 1, - anon_sym_EQ, + [117498] = 8, + ACTIONS(6311), 1, + anon_sym_LPAREN, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6319), 1, + anon_sym_DOT, + ACTIONS(6321), 1, + anon_sym_QMARK_DOT, + STATE(3200), 1, + sym_arguments, + STATE(3399), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 14, - anon_sym_as, + ACTIONS(3981), 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, - [117519] = 3, - ACTIONS(4398), 1, - anon_sym_EQ, + [117532] = 8, + ACTIONS(6311), 1, + anon_sym_LPAREN, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6323), 1, + anon_sym_DOT, + ACTIONS(6325), 1, + anon_sym_QMARK_DOT, + STATE(3202), 1, + sym_arguments, + STATE(3404), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 14, - anon_sym_as, + ACTIONS(3987), 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, - [117543] = 3, - ACTIONS(4402), 1, + [117566] = 3, + ACTIONS(4484), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 14, + ACTIONS(4486), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232731,13 +232781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117567] = 3, - ACTIONS(4136), 1, + [117590] = 3, + ACTIONS(4492), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 14, + ACTIONS(4494), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232752,112 +232802,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117591] = 8, - ACTIONS(6309), 1, - anon_sym_LPAREN, - ACTIONS(6311), 1, - anon_sym_DOT, - ACTIONS(6313), 1, - anon_sym_QMARK_DOT, - ACTIONS(6315), 1, - anon_sym_LT, - STATE(3203), 1, - sym_arguments, - STATE(3343), 1, - sym_type_arguments, + [117614] = 7, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6329), 1, + sym_number, + ACTIONS(6331), 1, + anon_sym_unique, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 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, - [117625] = 8, - ACTIONS(6309), 1, - anon_sym_LPAREN, - ACTIONS(6315), 1, - anon_sym_LT, - ACTIONS(6317), 1, - anon_sym_DOT, - ACTIONS(6319), 1, - anon_sym_QMARK_DOT, - STATE(3205), 1, - sym_arguments, - STATE(3346), 1, - sym_type_arguments, + STATE(5710), 2, + sym_string, + sym_predefined_type, + ACTIONS(6327), 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, + [117646] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6333), 1, + sym_number, + STATE(5713), 1, + sym_string, + STATE(5716), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3969), 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, - [117659] = 3, - ACTIONS(4246), 1, - anon_sym_EQ, + ACTIONS(6327), 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, + [117680] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6335), 1, + sym_number, + STATE(5724), 1, + sym_string, + STATE(5727), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 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, - [117683] = 8, - ACTIONS(6309), 1, - anon_sym_LPAREN, - ACTIONS(6315), 1, - anon_sym_LT, - ACTIONS(6321), 1, - anon_sym_DOT, - ACTIONS(6323), 1, - anon_sym_QMARK_DOT, - STATE(3209), 1, - sym_arguments, - STATE(3352), 1, - sym_type_arguments, + ACTIONS(6327), 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, + [117714] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6337), 1, + sym_number, + STATE(5731), 1, + sym_string, + STATE(5732), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4005), 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, - [117717] = 3, - ACTIONS(4254), 1, + ACTIONS(6327), 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, + [117748] = 3, + ACTIONS(4496), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 14, + ACTIONS(4498), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232872,13 +232926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117741] = 3, - ACTIONS(4262), 1, + [117772] = 3, + ACTIONS(4500), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 14, + ACTIONS(4502), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232893,13 +232947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117765] = 3, - ACTIONS(4266), 1, + [117796] = 3, + ACTIONS(4504), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 14, + ACTIONS(4506), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232914,13 +232968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117789] = 3, - ACTIONS(4270), 1, + [117820] = 3, + ACTIONS(4104), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 14, + ACTIONS(4106), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232935,34 +232989,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117813] = 3, - ACTIONS(4274), 1, - anon_sym_EQ, + [117844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 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, - [117837] = 3, - ACTIONS(4288), 1, + ACTIONS(6339), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [117866] = 3, + ACTIONS(4130), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 14, + ACTIONS(4132), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232977,13 +233030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117861] = 3, - ACTIONS(4308), 1, + [117890] = 3, + ACTIONS(4138), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 14, + ACTIONS(4140), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232998,43 +233051,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117885] = 3, - ACTIONS(4316), 1, - anon_sym_EQ, + [117914] = 2, 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_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [117909] = 7, - ACTIONS(1552), 1, + ACTIONS(6341), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [117936] = 7, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6327), 1, - sym_number, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, + ACTIONS(6343), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5709), 2, + STATE(5766), 2, sym_string, sym_predefined_type, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233044,23 +233096,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [117941] = 8, - ACTIONS(1552), 1, + [117968] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6345), 1, sym_number, - STATE(5719), 1, + STATE(5833), 1, sym_string, - STATE(5724), 1, + STATE(5917), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233070,23 +233122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [117975] = 8, - ACTIONS(1552), 1, + [118002] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6333), 1, + ACTIONS(6347), 1, sym_number, - STATE(5755), 1, + STATE(5570), 1, sym_string, - STATE(5758), 1, + STATE(5665), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233096,23 +233148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118009] = 8, - ACTIONS(1552), 1, + [118036] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6335), 1, + ACTIONS(6349), 1, sym_number, - STATE(5763), 1, + STATE(5748), 1, sym_string, - STATE(5771), 1, + STATE(5755), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233122,11 +233174,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118043] = 2, + [118070] = 3, + ACTIONS(4324), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 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, + [118094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6337), 15, + ACTIONS(6351), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233142,13 +233215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [118065] = 3, - ACTIONS(4023), 1, + [118116] = 3, + ACTIONS(4025), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 14, + ACTIONS(4027), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -233163,48 +233236,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118089] = 7, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6339), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5742), 2, - sym_string, - sym_predefined_type, - ACTIONS(6325), 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, - [118121] = 8, - ACTIONS(1552), 1, + [118140] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6341), 1, + ACTIONS(6353), 1, sym_number, - STATE(5534), 1, + STATE(5864), 1, sym_string, - STATE(5550), 1, + STATE(5868), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233214,23 +233262,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118155] = 8, - ACTIONS(1552), 1, + [118174] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6343), 1, + ACTIONS(6355), 1, sym_number, - STATE(5603), 1, + STATE(5878), 1, sym_string, - STATE(5873), 1, + STATE(5881), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233240,23 +233288,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118189] = 8, - ACTIONS(1552), 1, + [118208] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6345), 1, + ACTIONS(6357), 1, sym_number, - STATE(5889), 1, - sym_string, - STATE(5913), 1, + STATE(5543), 1, sym_predefined_type, + STATE(5901), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233266,33 +233314,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118223] = 2, + [118242] = 3, + ACTIONS(4328), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6347), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118245] = 3, - ACTIONS(4142), 1, + ACTIONS(4330), 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, + [118266] = 3, + ACTIONS(4039), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 14, + ACTIONS(4041), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -233307,22 +233356,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118269] = 7, - ACTIONS(1552), 1, + [118290] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6359), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [118312] = 7, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6349), 1, + ACTIONS(6361), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5708), 2, + STATE(5918), 2, sym_string, sym_predefined_type, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233332,23 +233401,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118301] = 8, - ACTIONS(1552), 1, + [118344] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6351), 1, + ACTIONS(6363), 1, sym_number, - STATE(5757), 1, - sym_string, - STATE(5802), 1, + STATE(5749), 1, sym_predefined_type, + STATE(5921), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233358,23 +233427,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118335] = 8, - ACTIONS(1552), 1, + [118378] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6353), 1, + ACTIONS(6365), 1, sym_number, - STATE(5837), 1, + STATE(5807), 1, sym_string, - STATE(5840), 1, + STATE(5838), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233384,118 +233453,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118369] = 3, - ACTIONS(4320), 1, - anon_sym_PIPE, + [118412] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6367), 1, + sym_number, + STATE(5534), 1, + sym_string, + STATE(5924), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 14, - sym__automatic_semicolon, + ACTIONS(6327), 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, + [118446] = 3, + ACTIONS(4342), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4344), 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, - [118393] = 3, - ACTIONS(4324), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118470] = 4, + ACTIONS(4342), 1, + anon_sym_EQ, + ACTIONS(6309), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4344), 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, - [118417] = 3, - ACTIONS(4328), 1, + [118496] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6369), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [118518] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6371), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [118540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6373), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [118562] = 7, + ACTIONS(4007), 1, anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_LT, + ACTIONS(6375), 1, + anon_sym_DOT, + ACTIONS(6377), 1, + anon_sym_is, + STATE(3194), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 14, + ACTIONS(3461), 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, - [118441] = 3, - ACTIONS(4332), 1, - anon_sym_PIPE, + [118594] = 7, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6379), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 14, - sym__automatic_semicolon, + STATE(5822), 2, + sym_string, + sym_predefined_type, + ACTIONS(6327), 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, + [118626] = 3, + ACTIONS(4366), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4368), 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, - [118465] = 3, - ACTIONS(4328), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118650] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6381), 1, + sym_number, + STATE(5843), 1, + sym_string, + STATE(5851), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 14, - sym__automatic_semicolon, + ACTIONS(6327), 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, + [118684] = 3, + ACTIONS(4384), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 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, - [118489] = 3, - ACTIONS(4332), 1, + [118708] = 3, + ACTIONS(4511), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 14, + ACTIONS(4513), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233510,54 +233721,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118513] = 3, - ACTIONS(4336), 1, - anon_sym_PIPE, + [118732] = 3, + ACTIONS(4390), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4392), 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, - [118537] = 2, + [118756] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6383), 1, + sym_number, + STATE(5581), 1, + sym_string, + STATE(5583), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6355), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118559] = 3, - ACTIONS(4340), 1, + ACTIONS(6327), 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, + [118790] = 3, + ACTIONS(4146), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 14, + ACTIONS(4148), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233572,13 +233789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118583] = 3, - ACTIONS(4336), 1, + [118814] = 3, + ACTIONS(4150), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 14, + ACTIONS(4152), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233593,13 +233810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118607] = 3, - ACTIONS(4340), 1, + [118838] = 3, + ACTIONS(4154), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 14, + ACTIONS(4156), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233614,13 +233831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118631] = 3, - ACTIONS(4348), 1, + [118862] = 3, + ACTIONS(4150), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 14, + ACTIONS(4152), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233635,13 +233852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118655] = 3, - ACTIONS(4344), 1, + [118886] = 3, + ACTIONS(4154), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 14, + ACTIONS(4156), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233656,13 +233873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118679] = 3, - ACTIONS(4348), 1, + [118910] = 3, + ACTIONS(4158), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 14, + ACTIONS(4160), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233677,116 +233894,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118703] = 7, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6357), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5874), 2, - sym_string, - sym_predefined_type, - ACTIONS(6325), 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, - [118735] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6359), 1, - sym_number, - STATE(5890), 1, - sym_string, - STATE(5895), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6325), 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, - [118769] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6361), 1, - sym_number, - STATE(5898), 1, - sym_string, - STATE(5899), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6325), 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, - [118803] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6363), 1, - sym_number, - STATE(5567), 1, - sym_predefined_type, - STATE(5915), 1, - sym_string, + [118934] = 3, + ACTIONS(4394), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 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, - [118837] = 3, - ACTIONS(4344), 1, + ACTIONS(4396), 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, + [118958] = 3, + ACTIONS(4162), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 14, + ACTIONS(4164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -233801,68 +233936,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118861] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6365), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118883] = 7, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6367), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5571), 2, - sym_string, - sym_predefined_type, - ACTIONS(6325), 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, - [118915] = 8, - ACTIONS(1552), 1, + [118982] = 8, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6331), 1, anon_sym_unique, - ACTIONS(6369), 1, + ACTIONS(6385), 1, sym_number, - STATE(5604), 1, + STATE(5641), 1, sym_string, - STATE(5606), 1, + STATE(5657), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 9, + ACTIONS(6327), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -233872,37 +233962,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118949] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6371), 1, - sym_number, - STATE(5668), 1, - sym_string, - STATE(5672), 1, - sym_predefined_type, + [119016] = 3, + ACTIONS(4402), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 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, - [118983] = 2, + 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, + [119040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6373), 15, + ACTIONS(6387), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233918,60 +234003,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [119005] = 3, - ACTIONS(4378), 1, - anon_sym_PIPE, + [119062] = 3, + ACTIONS(4181), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4183), 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, - [119029] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6375), 1, - sym_number, - STATE(5768), 1, - sym_string, - STATE(5770), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6325), 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, - [119063] = 3, - ACTIONS(4352), 1, + [119086] = 3, + ACTIONS(4185), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 14, + ACTIONS(4187), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -233986,13 +234045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119087] = 3, - ACTIONS(4382), 1, + [119110] = 3, + ACTIONS(4158), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 14, + ACTIONS(4160), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234007,13 +234066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119111] = 3, - ACTIONS(4356), 1, + [119134] = 3, + ACTIONS(4406), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 14, + ACTIONS(4408), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234028,13 +234087,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119135] = 3, - ACTIONS(4382), 1, + [119158] = 3, + ACTIONS(4162), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 14, + ACTIONS(4164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234049,13 +234108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119159] = 3, - ACTIONS(4364), 1, + [119182] = 3, + ACTIONS(4206), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 14, + ACTIONS(4208), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234070,13 +234129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119183] = 3, - ACTIONS(4368), 1, + [119206] = 3, + ACTIONS(4212), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 14, + ACTIONS(4214), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234091,13 +234150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119207] = 3, - ACTIONS(4382), 1, + [119230] = 3, + ACTIONS(4166), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 14, + ACTIONS(4168), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234112,13 +234171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119231] = 3, - ACTIONS(4386), 1, + [119254] = 3, + ACTIONS(4177), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 14, + ACTIONS(4179), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234133,13 +234192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119255] = 3, - ACTIONS(4386), 1, + [119278] = 3, + ACTIONS(4166), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 14, + ACTIONS(4168), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234154,13 +234213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119279] = 3, - ACTIONS(4390), 1, + [119302] = 3, + ACTIONS(4177), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, + ACTIONS(4179), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234175,13 +234234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119303] = 3, - ACTIONS(4390), 1, + [119326] = 3, + ACTIONS(4216), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, + ACTIONS(4218), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234196,13 +234255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119327] = 3, - ACTIONS(4390), 1, + [119350] = 3, + ACTIONS(4220), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, + ACTIONS(4222), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234217,13 +234276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119351] = 3, - ACTIONS(4406), 1, + [119374] = 3, + ACTIONS(4220), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 14, + ACTIONS(4222), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234238,13 +234297,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119375] = 3, - ACTIONS(4410), 1, + [119398] = 3, + ACTIONS(4220), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 14, + ACTIONS(4222), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234259,13 +234318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119399] = 3, - ACTIONS(4410), 1, + [119422] = 3, + ACTIONS(4224), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 14, + ACTIONS(4226), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234280,13 +234339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119423] = 3, - ACTIONS(4410), 1, + [119446] = 3, + ACTIONS(4224), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 14, + ACTIONS(4226), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234301,13 +234360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119447] = 3, - ACTIONS(4414), 1, + [119470] = 3, + ACTIONS(4224), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 14, + ACTIONS(4226), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234322,13 +234381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119471] = 3, - ACTIONS(4414), 1, + [119494] = 3, + ACTIONS(4237), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 14, + ACTIONS(4239), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234343,13 +234402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119495] = 3, - ACTIONS(4414), 1, + [119518] = 3, + ACTIONS(4237), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 14, + ACTIONS(4239), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234364,13 +234423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119519] = 3, - ACTIONS(4418), 1, + [119542] = 3, + ACTIONS(4237), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 14, + ACTIONS(4239), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234385,13 +234444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119543] = 3, - ACTIONS(4418), 1, + [119566] = 3, + ACTIONS(4275), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 14, + ACTIONS(4277), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234406,13 +234465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119567] = 3, - ACTIONS(4418), 1, + [119590] = 3, + ACTIONS(4279), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 14, + ACTIONS(4281), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -234427,11 +234486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119591] = 2, + [119614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6377), 15, + ACTIONS(6389), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234447,299 +234506,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [119613] = 2, + [119636] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6379), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119635] = 3, - ACTIONS(4176), 1, + ACTIONS(4281), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4178), 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, - [119659] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6381), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119681] = 7, - ACTIONS(3973), 1, + anon_sym_PIPE_RBRACE, + [119660] = 3, + ACTIONS(4279), 1, anon_sym_PIPE, - ACTIONS(6289), 1, - anon_sym_LT, - ACTIONS(6383), 1, - anon_sym_DOT, - ACTIONS(6385), 1, - anon_sym_is, - STATE(3208), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 10, + ACTIONS(4281), 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, - [119713] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - anon_sym_unique, - ACTIONS(6387), 1, - sym_number, - STATE(5858), 1, - sym_string, - STATE(5869), 1, - sym_predefined_type, + [119684] = 3, + ACTIONS(4285), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6325), 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, - [119747] = 14, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(6273), 1, - anon_sym_STAR, - ACTIONS(6277), 1, + ACTIONS(4287), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(6389), 1, - sym_identifier, - ACTIONS(6391), 1, - anon_sym_type, - ACTIONS(6393), 1, anon_sym_COMMA, - ACTIONS(6395), 1, - anon_sym_from, - STATE(4453), 1, - sym_string, - STATE(4460), 1, - sym_import_require_clause, - STATE(5370), 1, - sym__import_identifier, - STATE(5428), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5661), 2, - sym_namespace_import, - sym_named_imports, - [119792] = 13, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6401), 1, - anon_sym_BANG, - ACTIONS(6403), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6407), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_formal_parameters, - STATE(4305), 1, - sym_type_annotation, - STATE(4991), 1, - sym__initializer, - STATE(5331), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + 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, + [119708] = 3, + ACTIONS(4285), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(4287), 14, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [119835] = 4, - ACTIONS(4017), 1, - anon_sym_EQ, - ACTIONS(6299), 1, - anon_sym_is, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119732] = 3, + ACTIONS(4285), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 12, + ACTIONS(4287), 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_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119756] = 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_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119780] = 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_AMP, + anon_sym_LT, anon_sym_extends, - [119860] = 13, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [119804] = 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_AMP, anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119828] = 7, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(6331), 1, + anon_sym_unique, + ACTIONS(6391), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5857), 2, + sym_string, + sym_predefined_type, + ACTIONS(6327), 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, + [119860] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(2855), 1, + sym_type_predicate, + STATE(5590), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6393), 2, + sym_identifier, + sym_this, + ACTIONS(220), 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, + [119889] = 14, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(6277), 1, + anon_sym_STAR, + ACTIONS(6281), 1, + anon_sym_LBRACE, + ACTIONS(6395), 1, + sym_identifier, ACTIONS(6397), 1, + anon_sym_type, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6401), 1, + anon_sym_from, + STATE(4230), 1, + sym_string, + STATE(4231), 1, + sym_import_require_clause, + STATE(5247), 1, + sym__import_identifier, + STATE(5503), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5580), 2, + sym_namespace_import, + sym_named_imports, + [119934] = 13, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6411), 1, + ACTIONS(6407), 1, anon_sym_BANG, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(6415), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6413), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(3825), 1, + STATE(3871), 1, sym__call_signature, - STATE(4367), 1, + STATE(4314), 1, sym_type_annotation, - STATE(5098), 1, + STATE(4988), 1, sym__initializer, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6409), 3, + ACTIONS(6405), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119903] = 11, - ACTIONS(2577), 1, + [119977] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(3540), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6417), 1, + anon_sym_BANG, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6421), 1, + anon_sym_QMARK, + STATE(3742), 1, sym_formal_parameters, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5260), 1, + STATE(3932), 1, + sym_type_annotation, + STATE(4927), 1, + sym__initializer, + STATE(5233), 1, + sym__call_signature, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 5, + ACTIONS(6415), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [119942] = 13, - ACTIONS(2577), 1, + [120020] = 6, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6375), 1, + anon_sym_DOT, + STATE(3194), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6403), 1, + 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, + [120049] = 6, + ACTIONS(3408), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(4019), 1, + anon_sym_PIPE, + ACTIONS(6423), 1, + anon_sym_DOT, + STATE(3087), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 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, + [120078] = 13, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6425), 1, anon_sym_BANG, - ACTIONS(6421), 1, + ACTIONS(6427), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4381), 1, + STATE(3951), 1, sym_type_annotation, - STATE(5122), 1, + STATE(4634), 1, sym__initializer, - STATE(5474), 1, + STATE(5313), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119985] = 6, + [120121] = 6, ACTIONS(218), 1, anon_sym_unique, - STATE(3321), 1, + STATE(3161), 1, sym_type_predicate, - STATE(5803), 1, + STATE(5609), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6423), 2, + ACTIONS(6429), 2, sym_identifier, sym_this, ACTIONS(220), 9, @@ -234752,88 +234912,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120014] = 5, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1745), 2, - sym_template_string, - sym_arguments, - ACTIONS(4248), 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, - [120041] = 4, - ACTIONS(4023), 1, - anon_sym_EQ, - ACTIONS(6425), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4025), 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, - [120066] = 11, - ACTIONS(2577), 1, + [120150] = 11, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3824), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(3540), 1, + STATE(3575), 1, sym_formal_parameters, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, - STATE(5260), 1, + STATE(5374), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 5, + ACTIONS(3743), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [120105] = 6, + [120189] = 6, ACTIONS(218), 1, anon_sym_unique, - STATE(2859), 1, + STATE(1550), 1, sym_type_predicate, - STATE(5805), 1, + STATE(5774), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6427), 2, + ACTIONS(6431), 2, sym_identifier, sym_this, ACTIONS(220), 9, @@ -234846,58 +234963,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120134] = 13, - ACTIONS(2577), 1, + [120218] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6429), 1, - anon_sym_BANG, - ACTIONS(6431), 1, - anon_sym_QMARK, - STATE(3900), 1, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(3575), 1, sym_formal_parameters, - STATE(4385), 1, - sym_type_annotation, - STATE(5132), 1, - sym__initializer, - STATE(5488), 1, - sym__call_signature, - STATE(5525), 1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + STATE(5374), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(3743), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [120177] = 13, - ACTIONS(2577), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [120257] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, ACTIONS(6435), 1, anon_sym_BANG, ACTIONS(6437), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4376), 1, + STATE(3805), 1, + sym__call_signature, + STATE(4305), 1, sym_type_annotation, - STATE(5114), 1, + STATE(4972), 1, sym__initializer, - STATE(5462), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -234906,230 +235021,218 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120220] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(2012), 1, - sym_type_predicate, - STATE(5562), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6439), 2, - sym_identifier, - sym_this, - ACTIONS(220), 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, - [120249] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(2859), 1, - sym_type_predicate, - STATE(5641), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6441), 2, - sym_identifier, - sym_this, - ACTIONS(220), 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, - [120278] = 13, - ACTIONS(2577), 1, + [120300] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6443), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6439), 1, anon_sym_BANG, - ACTIONS(6445), 1, + ACTIONS(6441), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4369), 1, + STATE(4010), 1, sym_type_annotation, - STATE(5100), 1, + STATE(4737), 1, sym__initializer, - STATE(5445), 1, + STATE(5302), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120321] = 6, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, + [120343] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6383), 1, - anon_sym_DOT, - STATE(3208), 1, - sym_type_arguments, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6409), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6445), 1, + anon_sym_BANG, + ACTIONS(6447), 1, + anon_sym_QMARK, + STATE(3320), 1, + sym_formal_parameters, + STATE(3864), 1, + sym__call_signature, + STATE(4080), 1, + sym_type_annotation, + STATE(5010), 1, + sym__initializer, + STATE(5342), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 10, + ACTIONS(6443), 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, - [120350] = 11, - ACTIONS(2577), 1, + [120386] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(3540), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6451), 1, + anon_sym_BANG, + ACTIONS(6453), 1, + anon_sym_QMARK, + STATE(3742), 1, sym_formal_parameters, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - STATE(5260), 1, + STATE(4043), 1, + sym_type_annotation, + STATE(4862), 1, + sym__initializer, + STATE(5349), 1, sym_type_parameters, + STATE(5472), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 5, + ACTIONS(6449), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [120429] = 13, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_BANG, + ACTIONS(6457), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120389] = 9, - ACTIONS(3973), 1, - anon_sym_extends, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6269), 1, - anon_sym_DOT, - ACTIONS(6447), 1, - sym_identifier, - ACTIONS(6451), 1, - anon_sym_GT, - STATE(2855), 1, - sym_type_arguments, + STATE(3742), 1, + sym_formal_parameters, + STATE(4092), 1, + sym_type_annotation, + STATE(5057), 1, + sym__initializer, + STATE(5349), 1, + sym_type_parameters, + STATE(5372), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(6449), 3, - anon_sym_LBRACE, - sym_jsx_identifier, - anon_sym_SLASH_GT, - ACTIONS(3480), 5, - anon_sym_EQ, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [120424] = 13, - ACTIONS(2577), 1, + anon_sym_SEMI, + [120472] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6454), 1, + ACTIONS(6461), 1, anon_sym_BANG, - ACTIONS(6456), 1, + ACTIONS(6463), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3980), 1, + STATE(4163), 1, sym_type_annotation, - STATE(5028), 1, - sym__initializer, - STATE(5359), 1, + STATE(4732), 1, sym__call_signature, - STATE(5525), 1, + STATE(4733), 1, + sym__initializer, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120467] = 13, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, + [120515] = 4, + ACTIONS(4039), 1, anon_sym_EQ, + ACTIONS(6303), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4041), 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, + [120540] = 13, + ACTIONS(2581), 1, + anon_sym_LT, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6458), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6465), 1, anon_sym_BANG, - ACTIONS(6460), 1, + ACTIONS(6467), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4304), 1, + STATE(4340), 1, sym_type_annotation, - STATE(4989), 1, + STATE(5051), 1, sym__initializer, - STATE(5328), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5378), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120510] = 6, + [120583] = 6, ACTIONS(218), 1, anon_sym_unique, - STATE(2859), 1, + STATE(1937), 1, sym_type_predicate, - STATE(5721), 1, + STATE(5813), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6462), 2, + ACTIONS(6469), 2, sym_identifier, sym_this, ACTIONS(220), 9, @@ -235142,153 +235245,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120539] = 6, - ACTIONS(3440), 1, + [120612] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(4039), 1, - anon_sym_PIPE, - ACTIONS(6464), 1, - anon_sym_DOT, - STATE(3104), 1, - sym_arguments, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(3575), 1, + sym_formal_parameters, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + STATE(5374), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 10, + ACTIONS(3743), 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_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [120568] = 13, - ACTIONS(2577), 1, + [120651] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6466), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6471), 1, anon_sym_BANG, - ACTIONS(6468), 1, + ACTIONS(6473), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4326), 1, + STATE(4380), 1, sym_type_annotation, - STATE(5022), 1, + STATE(5104), 1, sym__initializer, - STATE(5364), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5439), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120611] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(3184), 1, - sym_type_predicate, - STATE(5824), 1, - sym_predefined_type, + [120694] = 9, + ACTIONS(4007), 1, + anon_sym_extends, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6287), 1, + anon_sym_DOT, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6479), 1, + anon_sym_GT, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6470), 2, - sym_identifier, - sym_this, - ACTIONS(220), 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, - [120640] = 13, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6477), 3, + anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + ACTIONS(3461), 5, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [120729] = 13, + ACTIONS(2581), 1, + anon_sym_LT, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6472), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6482), 1, anon_sym_BANG, - ACTIONS(6474), 1, + ACTIONS(6484), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3941), 1, + STATE(3962), 1, sym_type_annotation, - STATE(4906), 1, + STATE(4804), 1, sym__initializer, - STATE(5241), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5414), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120683] = 13, - ACTIONS(2577), 1, + [120772] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6476), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, anon_sym_BANG, - ACTIONS(6478), 1, + ACTIONS(6488), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3969), 1, + STATE(3965), 1, sym_type_annotation, - STATE(5065), 1, + STATE(4852), 1, sym__initializer, - STATE(5365), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5515), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120726] = 6, + [120815] = 6, ACTIONS(218), 1, anon_sym_unique, - STATE(1583), 1, + STATE(2855), 1, sym_type_predicate, - STATE(5767), 1, + STATE(5649), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6480), 2, + ACTIONS(6490), 2, sym_identifier, sym_this, ACTIONS(220), 9, @@ -235301,148 +235412,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120755] = 13, - ACTIONS(2577), 1, + [120844] = 11, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6397), 1, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6484), 1, - anon_sym_BANG, - ACTIONS(6486), 1, - anon_sym_QMARK, - STATE(3244), 1, + STATE(3575), 1, sym_formal_parameters, - STATE(4259), 1, - sym_type_annotation, - STATE(4937), 1, - sym__call_signature, - STATE(4938), 1, - sym__initializer, - STATE(5406), 1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + STATE(5374), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6482), 3, + ACTIONS(3743), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [120798] = 13, - ACTIONS(2577), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [120883] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6461), 1, anon_sym_BANG, ACTIONS(6492), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(3851), 1, + STATE(3799), 1, sym__call_signature, - STATE(4254), 1, + STATE(4163), 1, sym_type_annotation, - STATE(4912), 1, + STATE(4713), 1, sym__initializer, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6488), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120841] = 13, - ACTIONS(2577), 1, + [120926] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6494), 1, - anon_sym_BANG, + ACTIONS(6419), 1, + anon_sym_LPAREN, ACTIONS(6496), 1, + anon_sym_BANG, + ACTIONS(6498), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4271), 1, + STATE(4165), 1, sym_type_annotation, - STATE(4956), 1, + STATE(4716), 1, sym__initializer, - STATE(5288), 1, + STATE(5279), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(6494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120884] = 13, - ACTIONS(2577), 1, + [120969] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6498), 1, - anon_sym_BANG, - ACTIONS(6500), 1, - anon_sym_QMARK, - STATE(3900), 1, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(3575), 1, sym_formal_parameters, - STATE(4280), 1, - sym_type_annotation, - STATE(4964), 1, - sym__initializer, - STATE(5295), 1, - sym__call_signature, - STATE(5525), 1, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5374), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(3743), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [120927] = 13, - ACTIONS(2577), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121008] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(3364), 1, + sym_type_predicate, + STATE(5825), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6500), 2, + sym_identifier, + sym_this, + ACTIONS(220), 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, + [121037] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, ACTIONS(6504), 1, anon_sym_BANG, ACTIONS(6506), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(3854), 1, + STATE(3912), 1, sym__call_signature, - STATE(4122), 1, + STATE(4338), 1, sym_type_annotation, - STATE(4598), 1, + STATE(5059), 1, sym__initializer, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -235451,321 +235581,291 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120970] = 11, - ACTIONS(2577), 1, + [121080] = 13, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(3540), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6435), 1, + anon_sym_BANG, + ACTIONS(6508), 1, + anon_sym_QMARK, + STATE(3229), 1, sym_formal_parameters, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - STATE(5260), 1, + STATE(4305), 1, + sym_type_annotation, + STATE(4994), 1, + sym__call_signature, + STATE(4995), 1, + sym__initializer, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 5, + ACTIONS(6433), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121009] = 11, - ACTIONS(2577), 1, + [121123] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(3540), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6512), 1, + anon_sym_BANG, + ACTIONS(6514), 1, + anon_sym_QMARK, + STATE(3742), 1, sym_formal_parameters, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - STATE(5260), 1, + STATE(4316), 1, + sym_type_annotation, + STATE(5001), 1, + sym__initializer, + STATE(5336), 1, + sym__call_signature, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 5, + ACTIONS(6510), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121048] = 13, - ACTIONS(2577), 1, + [121166] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(6510), 1, + ACTIONS(6516), 1, anon_sym_BANG, - ACTIONS(6512), 1, + ACTIONS(6518), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3839), 1, - sym__call_signature, - STATE(4009), 1, + STATE(4318), 1, sym_type_annotation, - STATE(5005), 1, + STATE(5007), 1, sym__initializer, - STATE(5493), 1, + STATE(5340), 1, + sym__call_signature, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6508), 3, + ACTIONS(6510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121091] = 4, - ACTIONS(4013), 1, - anon_sym_EQ, - ACTIONS(6299), 1, - anon_sym_is, + [121209] = 5, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 12, - anon_sym_LBRACE, + STATE(1626), 2, + sym_template_string, + sym_arguments, + ACTIONS(4478), 10, 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, - [121116] = 13, - ACTIONS(2577), 1, + [121236] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6504), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6520), 1, anon_sym_BANG, - ACTIONS(6514), 1, + ACTIONS(6522), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4122), 1, + STATE(4339), 1, sym_type_annotation, - STATE(4626), 1, - sym__call_signature, - STATE(4627), 1, + STATE(5048), 1, sym__initializer, - STATE(5406), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5373), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6502), 3, + ACTIONS(6510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121159] = 13, - ACTIONS(2577), 1, + [121279] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6516), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6524), 1, anon_sym_BANG, - ACTIONS(6518), 1, + ACTIONS(6526), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4128), 1, + STATE(4341), 1, sym_type_annotation, - STATE(4603), 1, + STATE(5054), 1, sym__initializer, - STATE(5486), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5382), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121202] = 13, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6522), 1, - anon_sym_BANG, - ACTIONS(6524), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_formal_parameters, - STATE(4119), 1, - sym_type_annotation, - STATE(4593), 1, - sym__initializer, - STATE(5503), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + [121322] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(2855), 1, + sym_type_predicate, + STATE(5730), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121245] = 13, - ACTIONS(2577), 1, + ACTIONS(6528), 2, + sym_identifier, + sym_this, + ACTIONS(220), 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, + [121351] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6526), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(6532), 1, anon_sym_BANG, - ACTIONS(6528), 1, + ACTIONS(6534), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3944), 1, + STATE(4184), 1, sym_type_annotation, - STATE(4830), 1, + STATE(4760), 1, sym__initializer, - STATE(5439), 1, + STATE(5184), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121288] = 13, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, + [121394] = 4, + ACTIONS(4013), 1, anon_sym_EQ, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6532), 1, - anon_sym_BANG, - ACTIONS(6534), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_formal_parameters, - STATE(4148), 1, - sym_type_annotation, - STATE(4687), 1, - sym__initializer, - STATE(5479), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + ACTIONS(6303), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, - sym__automatic_semicolon, + ACTIONS(4015), 12, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [121331] = 13, - ACTIONS(2577), 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, + [121419] = 13, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(6484), 1, - anon_sym_BANG, ACTIONS(6536), 1, + anon_sym_BANG, + ACTIONS(6538), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3859), 1, - sym__call_signature, - STATE(4259), 1, + STATE(4367), 1, sym_type_annotation, - STATE(4920), 1, + STATE(5084), 1, sym__initializer, - STATE(5493), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5422), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121374] = 3, - ACTIONS(4242), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4244), 12, + ACTIONS(6415), 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_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121396] = 4, - ACTIONS(4312), 1, + [121462] = 4, + ACTIONS(4025), 1, anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_AMP, + ACTIONS(6540), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 11, + ACTIONS(4027), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -235775,120 +235875,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [121420] = 5, - ACTIONS(4023), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, - anon_sym_LT, - STATE(3154), 1, - sym_type_arguments, + [121487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 10, + ACTIONS(4222), 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, - [121446] = 10, - ACTIONS(2577), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, + anon_sym_extends, + [121507] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(6542), 1, - anon_sym_COLON, - ACTIONS(6544), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(3662), 1, - sym__call_signature, - STATE(4159), 1, - sym_type_annotation, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6540), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121482] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(6546), 1, + sym_html_character_reference, ACTIONS(6548), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(3499), 1, - sym__call_signature, - STATE(4312), 1, - sym_type_annotation, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, + anon_sym_LT_SLASH, + ACTIONS(6550), 1, + anon_sym_LT, + STATE(3070), 1, + sym_jsx_opening_element, + STATE(4260), 1, + sym_jsx_closing_element, + ACTIONS(6544), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(2998), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [121543] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(6546), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121518] = 10, - ACTIONS(2577), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6542), 1, + anon_sym_LBRACE, + ACTIONS(6548), 1, + anon_sym_LT_SLASH, + ACTIONS(6550), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, ACTIONS(6552), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(3635), 1, - sym__call_signature, - STATE(3973), 1, - sym_type_annotation, - STATE(5406), 1, - sym_type_parameters, + sym_html_character_reference, + STATE(3070), 1, + sym_jsx_opening_element, + STATE(4280), 1, + sym_jsx_closing_element, + ACTIONS(6544), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3134), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [121579] = 3, + ACTIONS(4470), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6550), 5, + ACTIONS(4472), 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_AMP, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [121554] = 6, - ACTIONS(4455), 1, + [121601] = 6, + ACTIONS(4356), 1, anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_AMP, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 9, + ACTIONS(4358), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -235898,19 +235989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [121582] = 6, - ACTIONS(4459), 1, + [121629] = 6, + ACTIONS(4360), 1, anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_AMP, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4461), 9, + ACTIONS(4362), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -235920,13 +236011,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [121610] = 5, - ACTIONS(3410), 1, + [121657] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 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, - ACTIONS(3442), 1, + anon_sym_LT, + anon_sym_extends, + [121677] = 5, + ACTIONS(3410), 1, anon_sym_DOT, - ACTIONS(3444), 1, + ACTIONS(3414), 1, anon_sym_QMARK_DOT, + ACTIONS(3418), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -235941,53 +236050,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121636] = 2, + [121703] = 6, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6560), 1, + anon_sym_DOT, + ACTIONS(6562), 1, + anon_sym_is, + STATE(3300), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(3461), 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_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [121656] = 2, + [121731] = 5, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(6564), 1, + anon_sym_DOT, + ACTIONS(6566), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4380), 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, - [121676] = 5, - ACTIONS(4170), 1, + anon_sym_PIPE_RBRACE, + [121757] = 6, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, anon_sym_PIPE, ACTIONS(6558), 1, - anon_sym_DOT, - ACTIONS(6560), 1, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 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, + [121785] = 3, + ACTIONS(3127), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 10, + ACTIONS(3129), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -235995,14 +236129,16 @@ 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, - [121702] = 2, + [121807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4239), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236016,49 +236152,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [121722] = 3, - ACTIONS(3123), 1, - anon_sym_PIPE, + [121827] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6570), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(3639), 1, + sym__call_signature, + STATE(4220), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3125), 12, + ACTIONS(6568), 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, - [121744] = 3, - ACTIONS(4126), 1, - anon_sym_PIPE, + [121863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4128), 12, + ACTIONS(4277), 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_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121766] = 2, + [121883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 13, + ACTIONS(4281), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236072,59 +236214,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [121786] = 6, - ACTIONS(6315), 1, - anon_sym_LT, - ACTIONS(6562), 1, - anon_sym_DOT, - ACTIONS(6564), 1, - anon_sym_is, - STATE(3306), 1, - sym_type_arguments, + [121903] = 3, + ACTIONS(3131), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 9, + ACTIONS(3133), 12, 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, - [121814] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6566), 1, - anon_sym_LBRACE, - ACTIONS(6570), 1, - sym_html_character_reference, - ACTIONS(6572), 1, - anon_sym_LT_SLASH, - ACTIONS(6574), 1, - anon_sym_LT, - STATE(3011), 1, - sym_jsx_opening_element, - STATE(3834), 1, - sym_jsx_closing_element, - ACTIONS(6568), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3028), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [121850] = 2, + anon_sym_PIPE_RBRACE, + [121925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4222), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236138,33 +236251,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [121870] = 2, + [121945] = 6, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4422), 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, + [121973] = 3, + ACTIONS(4332), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 13, + ACTIONS(4334), 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_BQUOTE, anon_sym_extends, - [121890] = 4, - ACTIONS(4188), 1, + anon_sym_PIPE_RBRACE, + [121995] = 13, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6267), 1, + anon_sym_DOT, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(6574), 1, + anon_sym_GT, + ACTIONS(6576), 1, + anon_sym_SLASH_GT, + STATE(3273), 1, + sym_type_arguments, + STATE(3279), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [122037] = 4, + ACTIONS(4134), 1, anon_sym_EQ, - ACTIONS(6538), 1, + ACTIONS(6554), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 11, + ACTIONS(4136), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236176,13 +236341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_extends, - [121914] = 3, - ACTIONS(4250), 1, + [122061] = 3, + ACTIONS(3123), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 12, + ACTIONS(3125), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236195,47 +236360,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121936] = 2, + [122083] = 6, + ACTIONS(4309), 1, + anon_sym_EQ, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 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, + [122111] = 3, + ACTIONS(4454), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 13, + ACTIONS(4456), 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, - [121956] = 2, + anon_sym_PIPE_RBRACE, + [122133] = 3, + ACTIONS(4480), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4482), 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, - [121976] = 2, + anon_sym_PIPE_RBRACE, + [122155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 13, + ACTIONS(4226), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236249,13 +236438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [121996] = 3, - ACTIONS(4258), 1, + [122175] = 3, + ACTIONS(4488), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 12, + ACTIONS(4490), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236268,73 +236457,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122018] = 4, - ACTIONS(1758), 1, + [122197] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4281), 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, - ACTIONS(4278), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 11, + ACTIONS(4281), 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, - [122042] = 3, - ACTIONS(3592), 1, - anon_sym_PIPE, + [122237] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6542), 1, + anon_sym_LBRACE, + ACTIONS(6550), 1, + anon_sym_LT, + ACTIONS(6578), 1, + sym_html_character_reference, + ACTIONS(6580), 1, + anon_sym_LT_SLASH, + STATE(1633), 1, + sym_jsx_closing_element, + STATE(3070), 1, + sym_jsx_opening_element, + ACTIONS(6544), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3037), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [122273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 12, + ACTIONS(4226), 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, + [122293] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6584), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4204), 1, + sym__call_signature, + STATE(4205), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6582), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122064] = 3, - ACTIONS(3594), 1, - anon_sym_PIPE, + [122329] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6588), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(3520), 1, + sym__call_signature, + STATE(4041), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 12, + ACTIONS(6586), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [122365] = 2, + 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, - anon_sym_PIPE_RBRACE, - [122086] = 4, - ACTIONS(1772), 1, + [122385] = 4, + ACTIONS(1797), 1, anon_sym_DOT, - ACTIONS(4278), 1, + ACTIONS(4097), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 11, + ACTIONS(4099), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236346,13 +236627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122110] = 3, - ACTIONS(4292), 1, + [122409] = 3, + ACTIONS(3596), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 12, + ACTIONS(3446), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236365,32 +236646,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122132] = 3, - ACTIONS(4296), 1, - anon_sym_PIPE, + [122431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 12, + ACTIONS(4287), 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, - [122154] = 3, - ACTIONS(4300), 1, + [122451] = 3, + ACTIONS(4142), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 12, + ACTIONS(4144), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236399,17 +236679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122176] = 3, - ACTIONS(4304), 1, + [122473] = 3, + ACTIONS(3598), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 12, + ACTIONS(3382), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236422,122 +236702,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122198] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6566), 1, - anon_sym_LBRACE, - ACTIONS(6572), 1, - anon_sym_LT_SLASH, - ACTIONS(6574), 1, - anon_sym_LT, - ACTIONS(6576), 1, - sym_html_character_reference, - STATE(3011), 1, - sym_jsx_opening_element, - STATE(3895), 1, - sym_jsx_closing_element, - ACTIONS(6568), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3127), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [122234] = 3, - ACTIONS(4098), 1, + [122495] = 4, + ACTIONS(1855), 1, + anon_sym_DOT, + ACTIONS(4097), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 12, + ACTIONS(4099), 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_BQUOTE, + anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122256] = 10, + [122519] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6566), 1, + ACTIONS(6542), 1, anon_sym_LBRACE, - ACTIONS(6574), 1, + ACTIONS(6550), 1, anon_sym_LT, - ACTIONS(6578), 1, + ACTIONS(6552), 1, sym_html_character_reference, ACTIONS(6580), 1, anon_sym_LT_SLASH, - STATE(3011), 1, - sym_jsx_opening_element, - STATE(4236), 1, + STATE(1678), 1, sym_jsx_closing_element, - ACTIONS(6568), 2, + STATE(3070), 1, + sym_jsx_opening_element, + ACTIONS(6544), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(3037), 5, + STATE(3134), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [122292] = 6, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, + [122555] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(4246), 1, - anon_sym_PIPE, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6590), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4040), 1, + sym__call_signature, + STATE(4041), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1745), 2, - sym_template_string, - sym_arguments, - ACTIONS(4248), 8, + ACTIONS(6586), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [122320] = 2, + [122591] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6594), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4026), 1, + sym__call_signature, + STATE(4032), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(6592), 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_LT, - anon_sym_extends, - [122340] = 2, + anon_sym_PIPE_RBRACE, + [122627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4295), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236551,37 +236818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122360] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6566), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, - anon_sym_LT, - ACTIONS(6576), 1, - sym_html_character_reference, - ACTIONS(6582), 1, - anon_sym_LT_SLASH, - STATE(1733), 1, - sym_jsx_closing_element, - STATE(3011), 1, - sym_jsx_opening_element, - ACTIONS(6568), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3127), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [122396] = 2, + [122647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 13, + ACTIONS(4226), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236595,57 +236836,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122416] = 2, + [122667] = 3, + ACTIONS(4114), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4116), 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, - [122436] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6566), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, - anon_sym_LT, - ACTIONS(6576), 1, - sym_html_character_reference, - ACTIONS(6580), 1, - anon_sym_LT_SLASH, - STATE(3011), 1, - sym_jsx_opening_element, - STATE(4265), 1, - sym_jsx_closing_element, - ACTIONS(6568), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3127), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [122472] = 3, - ACTIONS(4047), 1, + anon_sym_PIPE_RBRACE, + [122689] = 3, + ACTIONS(4118), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 12, + ACTIONS(4120), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236654,98 +236870,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122494] = 2, + [122711] = 3, + ACTIONS(4122), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 13, + ACTIONS(4124), 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, - [122514] = 2, + anon_sym_PIPE_RBRACE, + [122733] = 13, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6267), 1, + anon_sym_DOT, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(6574), 1, + anon_sym_GT, + ACTIONS(6596), 1, + anon_sym_SLASH_GT, + STATE(3362), 1, + sym_type_arguments, + STATE(3368), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [122775] = 3, + ACTIONS(4126), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 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_extends, + anon_sym_PIPE_RBRACE, + [122797] = 5, + ACTIONS(4025), 1, anon_sym_PIPE, + ACTIONS(6289), 1, anon_sym_LT, - anon_sym_extends, - [122534] = 2, + STATE(3180), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4027), 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, - [122554] = 13, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6263), 1, - anon_sym_DOT, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(6586), 1, - anon_sym_GT, - ACTIONS(6588), 1, - anon_sym_SLASH_GT, - STATE(3272), 1, - sym_type_arguments, - STATE(3273), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [122596] = 2, + anon_sym_PIPE_RBRACE, + [122823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4239), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236759,63 +236980,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122616] = 10, - ACTIONS(2577), 1, + [122843] = 10, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6598), 1, anon_sym_COLON, - ACTIONS(6592), 1, + ACTIONS(6600), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4205), 1, + STATE(3642), 1, sym__call_signature, - STATE(4220), 1, + STATE(4205), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6590), 5, + ACTIONS(6582), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122652] = 10, + [122879] = 4, + ACTIONS(4398), 1, + anon_sym_EQ, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4400), 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, + [122903] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6566), 1, + ACTIONS(6542), 1, anon_sym_LBRACE, - ACTIONS(6574), 1, + ACTIONS(6550), 1, anon_sym_LT, - ACTIONS(6594), 1, + ACTIONS(6602), 1, sym_html_character_reference, - ACTIONS(6596), 1, + ACTIONS(6604), 1, anon_sym_LT_SLASH, - STATE(2197), 1, + STATE(2342), 1, sym_jsx_closing_element, - STATE(3011), 1, + STATE(3070), 1, sym_jsx_opening_element, - ACTIONS(6568), 2, + ACTIONS(6544), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(3073), 5, + STATE(3062), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [122688] = 2, + [122939] = 6, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(4476), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 13, + STATE(1626), 2, + sym_template_string, + sym_arguments, + ACTIONS(4478), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122967] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4513), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236829,11 +237092,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122708] = 2, + [122987] = 6, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4197), 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, + [123015] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 13, + ACTIONS(4148), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236847,11 +237132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122728] = 2, + [123035] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 13, + ACTIONS(4287), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236865,11 +237150,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122748] = 2, + [123055] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6608), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4360), 1, + sym__call_signature, + STATE(4361), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6606), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4152), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236883,11 +237194,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122768] = 2, + [123111] = 6, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4214), 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, + [123139] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4156), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236901,11 +237234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122788] = 2, + [123159] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4152), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236919,11 +237252,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122808] = 2, + [123179] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6542), 1, + anon_sym_LBRACE, + ACTIONS(6550), 1, + anon_sym_LT, + ACTIONS(6552), 1, + sym_html_character_reference, + ACTIONS(6604), 1, + anon_sym_LT_SLASH, + STATE(2378), 1, + sym_jsx_closing_element, + STATE(3070), 1, + sym_jsx_opening_element, + ACTIONS(6544), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3134), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [123215] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6610), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4218), 1, + sym__call_signature, + STATE(4220), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6568), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 13, + ACTIONS(4156), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236937,11 +237322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122828] = 2, + [123271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 13, + ACTIONS(4160), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236955,11 +237340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122848] = 2, + [123291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 13, + ACTIONS(4164), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236973,11 +237358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122868] = 2, + [123311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 13, + ACTIONS(4160), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236991,11 +237376,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122888] = 2, + [123331] = 4, + ACTIONS(4428), 1, + anon_sym_EQ, + ACTIONS(6612), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4430), 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_AMP, + anon_sym_PIPE, + [123355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4164), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -237009,11 +237414,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122908] = 2, + [123375] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6542), 1, + anon_sym_LBRACE, + ACTIONS(6550), 1, + anon_sym_LT, + ACTIONS(6614), 1, + sym_html_character_reference, + ACTIONS(6616), 1, + anon_sym_LT_SLASH, + STATE(3070), 1, + sym_jsx_opening_element, + STATE(3726), 1, + sym_jsx_closing_element, + ACTIONS(6544), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3075), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [123411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4168), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -237027,11 +237458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122928] = 2, + [123431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4179), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -237045,11 +237476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122948] = 2, + [123451] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 13, + ACTIONS(4295), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -237063,11 +237494,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122968] = 2, + [123471] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6618), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(3681), 1, + sym__call_signature, + STATE(4032), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6592), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123507] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6542), 1, + anon_sym_LBRACE, + ACTIONS(6550), 1, + anon_sym_LT, + ACTIONS(6552), 1, + sym_html_character_reference, + ACTIONS(6616), 1, + anon_sym_LT_SLASH, + STATE(3070), 1, + sym_jsx_opening_element, + STATE(3887), 1, + sym_jsx_closing_element, + ACTIONS(6544), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3134), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [123543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 13, + ACTIONS(4168), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -237081,55 +237564,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122988] = 6, - ACTIONS(4206), 1, - anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, + [123563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 9, + ACTIONS(4179), 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, - [123016] = 6, - ACTIONS(4360), 1, - anon_sym_EQ, - ACTIONS(6538), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6554), 1, anon_sym_PIPE, - ACTIONS(6556), 1, + anon_sym_LT, anon_sym_extends, + [123583] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 9, + ACTIONS(4218), 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, - [123044] = 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 13, + ACTIONS(4222), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -237143,288 +237618,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123064] = 6, - ACTIONS(4368), 1, - anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, + [123623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 9, + ACTIONS(4239), 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, - [123092] = 10, - ACTIONS(2577), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123643] = 10, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6620), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4311), 1, + STATE(3572), 1, sym__call_signature, - STATE(4312), 1, + STATE(4361), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6546), 5, + ACTIONS(6606), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123128] = 6, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4428), 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, - [123156] = 13, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6263), 1, - anon_sym_DOT, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(6586), 1, - anon_sym_GT, - ACTIONS(6600), 1, - anon_sym_SLASH_GT, - STATE(3252), 1, - sym_type_arguments, - STATE(3253), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123198] = 10, - ACTIONS(2577), 1, + [123679] = 9, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6602), 1, - anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3577), 1, + STATE(4037), 1, sym__call_signature, - STATE(4220), 1, + STATE(4038), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6590), 5, + ACTIONS(6622), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123234] = 10, - ACTIONS(2577), 1, + [123712] = 9, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6604), 1, - anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3972), 1, + STATE(3500), 1, sym__call_signature, - STATE(3973), 1, + STATE(4311), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6550), 5, + ACTIONS(6624), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123270] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6608), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(3659), 1, - sym__call_signature, - STATE(4175), 1, - sym_type_annotation, - STATE(5406), 1, - sym_type_parameters, + [123745] = 3, + ACTIONS(4045), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6606), 5, + ACTIONS(4047), 11, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123306] = 4, - ACTIONS(4218), 1, anon_sym_EQ, - ACTIONS(6610), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4220), 11, 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, - [123330] = 10, - ACTIONS(2577), 1, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [123766] = 11, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6612), 1, - anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4158), 1, - sym__call_signature, - STATE(4159), 1, + STATE(4306), 1, sym_type_annotation, - STATE(5406), 1, + STATE(4990), 1, + sym__call_signature, + STATE(4991), 1, + sym__initializer, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6540), 5, + ACTIONS(6626), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123366] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6566), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, - anon_sym_LT, - ACTIONS(6576), 1, - sym_html_character_reference, - ACTIONS(6596), 1, - anon_sym_LT_SLASH, - STATE(2127), 1, - sym_jsx_closing_element, - STATE(3011), 1, - sym_jsx_opening_element, - ACTIONS(6568), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3127), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [123402] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6566), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, - anon_sym_LT, - ACTIONS(6582), 1, - anon_sym_LT_SLASH, - ACTIONS(6614), 1, - sym_html_character_reference, - STATE(1725), 1, - sym_jsx_closing_element, - STATE(3011), 1, - sym_jsx_opening_element, - ACTIONS(6568), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3034), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [123438] = 3, - ACTIONS(3127), 1, + [123803] = 3, + ACTIONS(4458), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3129), 12, + ACTIONS(4460), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237433,39 +237769,16 @@ 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_extends, anon_sym_PIPE_RBRACE, - [123460] = 6, - ACTIONS(4288), 1, - anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4290), 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, - [123488] = 3, - ACTIONS(3131), 1, + [123824] = 3, + ACTIONS(4466), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 12, + ACTIONS(4468), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237474,471 +237787,467 @@ 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_extends, anon_sym_PIPE_RBRACE, - [123510] = 10, - ACTIONS(2577), 1, + [123845] = 12, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(6277), 1, + anon_sym_STAR, + ACTIONS(6281), 1, + anon_sym_LBRACE, + ACTIONS(6395), 1, + sym_identifier, + ACTIONS(6397), 1, + anon_sym_type, + STATE(4230), 1, + sym_string, + STATE(4231), 1, + sym_import_require_clause, + STATE(5247), 1, + sym__import_identifier, + STATE(5503), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5580), 2, + sym_namespace_import, + sym_named_imports, + [123884] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6616), 1, - anon_sym_QMARK, - STATE(3244), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4172), 1, - sym__call_signature, - STATE(4175), 1, + STATE(4265), 1, sym_type_annotation, - STATE(5406), 1, + STATE(4914), 1, + sym__initializer, + STATE(5242), 1, + sym__call_signature, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6606), 5, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123546] = 2, + [123921] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(3948), 1, + sym_type_annotation, + STATE(4891), 1, + sym__initializer, + STATE(5200), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 13, + ACTIONS(6630), 3, 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, - [123566] = 11, - ACTIONS(2577), 1, + [123958] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3415), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(3320), 1, sym_formal_parameters, - STATE(3777), 1, + STATE(3743), 1, sym__call_signature, - STATE(3982), 1, + STATE(4171), 1, sym_type_annotation, - STATE(4596), 1, + STATE(4739), 1, sym__initializer, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6632), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123603] = 9, - ACTIONS(2577), 1, + [123995] = 9, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3501), 1, + STATE(3641), 1, sym__call_signature, - STATE(4317), 1, + STATE(4035), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6620), 5, + ACTIONS(6634), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123636] = 7, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + [124028] = 9, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(3229), 1, + sym_formal_parameters, + STATE(3607), 1, + sym__call_signature, + STATE(4216), 1, + sym_type_annotation, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(6636), 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, - [123665] = 11, - ACTIONS(2577), 1, + [124061] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4383), 1, + STATE(3970), 1, sym_type_annotation, - STATE(5127), 1, + STATE(5182), 1, sym__initializer, - STATE(5481), 1, + STATE(5208), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123702] = 12, - ACTIONS(5964), 1, + [124098] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6624), 1, - anon_sym_GT, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(6628), 1, - anon_sym_SLASH_GT, - STATE(3254), 1, - sym_type_arguments, - STATE(3255), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(3960), 1, + sym_type_annotation, + STATE(4784), 1, + sym__initializer, + STATE(5349), 1, + sym_type_parameters, + STATE(5367), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123741] = 8, - ACTIONS(3412), 1, - anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_QMARK_DOT, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, + ACTIONS(6638), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124135] = 4, + ACTIONS(4013), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 6, - anon_sym_as, + ACTIONS(4015), 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, - [123772] = 12, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6624), 1, - anon_sym_GT, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(6632), 1, - anon_sym_SLASH_GT, - STATE(3379), 1, - sym_type_arguments, - STATE(3380), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123811] = 8, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6244), 1, - anon_sym_DOT, - ACTIONS(6246), 1, - anon_sym_QMARK_DOT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - STATE(2831), 1, - sym_arguments, - STATE(2874), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [124158] = 3, + ACTIONS(1652), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3969), 6, - anon_sym_as, + ACTIONS(1650), 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, - [123842] = 11, - ACTIONS(2577), 1, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [124179] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4388), 1, + STATE(4018), 1, sym_type_annotation, - STATE(5144), 1, + STATE(4783), 1, sym__initializer, - STATE(5494), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5397), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123879] = 8, - ACTIONS(6238), 1, - anon_sym_DOT, - ACTIONS(6240), 1, - anon_sym_QMARK_DOT, - ACTIONS(6242), 1, + [124216] = 12, + ACTIONS(5991), 1, anon_sym_LT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - STATE(2832), 1, - sym_arguments, - STATE(2875), 1, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6640), 1, + anon_sym_GT, + ACTIONS(6642), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_SLASH_GT, + STATE(3378), 1, sym_type_arguments, + STATE(3379), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4005), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123910] = 12, - ACTIONS(5964), 1, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [124255] = 12, + ACTIONS(5991), 1, anon_sym_LT, - ACTIONS(6248), 1, - sym_identifier, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6624), 1, + ACTIONS(6640), 1, anon_sym_GT, - ACTIONS(6626), 1, + ACTIONS(6642), 1, anon_sym_DOT, - ACTIONS(6634), 1, + ACTIONS(6646), 1, anon_sym_SLASH_GT, - STATE(3274), 1, + STATE(3386), 1, sym_type_arguments, - STATE(3275), 1, + STATE(3424), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [123949] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(3860), 1, - sym__call_signature, - STATE(4260), 1, - sym_type_annotation, - STATE(4922), 1, - sym__initializer, - STATE(5493), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6636), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123986] = 5, - ACTIONS(6315), 1, - anon_sym_LT, - ACTIONS(6562), 1, - anon_sym_DOT, - STATE(3306), 1, - sym_type_arguments, + [124294] = 4, + ACTIONS(4039), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 9, + ACTIONS(4041), 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, - [124011] = 11, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [124317] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4260), 1, + STATE(4160), 1, sym_type_annotation, - STATE(4930), 1, - sym__call_signature, - STATE(4931), 1, + STATE(4706), 1, sym__initializer, - STATE(5406), 1, + STATE(5245), 1, + sym__call_signature, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6636), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124048] = 11, - ACTIONS(2577), 1, + [124354] = 9, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3943), 1, - sym_type_annotation, - STATE(4995), 1, - sym__initializer, - STATE(5319), 1, + STATE(4034), 1, sym__call_signature, - STATE(5525), 1, + STATE(4035), 1, + sym_type_annotation, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6634), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124085] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [124387] = 7, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(6403), 1, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_SEMI, anon_sym_COLON, - STATE(3900), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [124416] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4224), 1, + STATE(4167), 1, sym_type_annotation, - STATE(4844), 1, + STATE(4722), 1, sym__initializer, - STATE(5525), 1, - sym_type_parameters, - STATE(5526), 1, + STATE(5287), 1, sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124122] = 11, - ACTIONS(2577), 1, + [124453] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(3946), 1, + STATE(4371), 1, sym_type_annotation, - STATE(5051), 1, + STATE(5088), 1, sym__initializer, - STATE(5396), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5428), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -237946,109 +238255,135 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124159] = 11, - ACTIONS(2577), 1, + [124490] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4398), 1, + STATE(3901), 1, + sym__call_signature, + STATE(4197), 1, sym_type_annotation, - STATE(5138), 1, + STATE(4649), 1, sym__initializer, - STATE(5491), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6650), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124196] = 5, - ACTIONS(6309), 1, - anon_sym_LPAREN, + [124527] = 12, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6640), 1, + anon_sym_GT, ACTIONS(6642), 1, anon_sym_DOT, - STATE(3222), 1, - sym_arguments, + ACTIONS(6652), 1, + anon_sym_SLASH_GT, + STATE(3406), 1, + sym_type_arguments, + STATE(3418), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [124566] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1821), 12, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [124221] = 11, - ACTIONS(2577), 1, + [124585] = 9, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4003), 1, - sym_type_annotation, - STATE(4633), 1, - sym__initializer, - STATE(5270), 1, + STATE(3574), 1, sym__call_signature, - STATE(5525), 1, + STATE(4365), 1, + sym_type_annotation, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6654), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124258] = 9, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [124618] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4225), 1, + STATE(3759), 1, sym__call_signature, - STATE(4246), 1, + STATE(4083), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5061), 1, + sym__initializer, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6644), 5, + ACTIONS(6656), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124291] = 3, - ACTIONS(4035), 1, + [124655] = 4, + ACTIONS(4025), 1, anon_sym_PIPE, + ACTIONS(6658), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 11, + ACTIONS(4027), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238058,15 +238393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [124312] = 3, - ACTIONS(4230), 1, + [124678] = 4, + ACTIONS(4336), 1, anon_sym_PIPE, + ACTIONS(6660), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 11, + ACTIONS(4338), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238074,194 +238410,132 @@ 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, - [124333] = 11, - ACTIONS(2577), 1, + [124701] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4115), 1, + STATE(3777), 1, + sym__call_signature, + STATE(4277), 1, sym_type_annotation, - STATE(4584), 1, + STATE(4970), 1, sym__initializer, - STATE(5425), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124370] = 3, - ACTIONS(4238), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4240), 11, + ACTIONS(6662), 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, - [124391] = 11, - ACTIONS(2577), 1, + [124738] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4384), 1, + STATE(4209), 1, sym_type_annotation, - STATE(5129), 1, + STATE(4808), 1, sym__initializer, - STATE(5473), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5452), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124428] = 11, - ACTIONS(2577), 1, + [124775] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4293), 1, + STATE(4328), 1, sym_type_annotation, - STATE(4980), 1, + STATE(5031), 1, sym__initializer, - STATE(5321), 1, + STATE(5337), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124465] = 4, - ACTIONS(4148), 1, - anon_sym_PIPE, - ACTIONS(6650), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4150), 10, + ACTIONS(6664), 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, - [124488] = 8, - ACTIONS(2577), 1, + [124812] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(4053), 1, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(3540), 1, + ACTIONS(6409), 1, + anon_sym_LPAREN, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(3320), 1, sym_formal_parameters, - STATE(5260), 1, + STATE(3807), 1, + sym__call_signature, + STATE(4306), 1, + sym_type_annotation, + STATE(4975), 1, + sym__initializer, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3715), 5, + ACTIONS(6626), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124519] = 12, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(6273), 1, - anon_sym_STAR, - ACTIONS(6277), 1, - anon_sym_LBRACE, - ACTIONS(6389), 1, - sym_identifier, - ACTIONS(6391), 1, - anon_sym_type, - STATE(4453), 1, - sym_string, - STATE(4460), 1, - sym_import_require_clause, - STATE(5370), 1, - sym__import_identifier, - STATE(5428), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5661), 2, - sym_namespace_import, - sym_named_imports, - [124558] = 11, - ACTIONS(2577), 1, + [124849] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3900), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4372), 1, + STATE(3938), 1, sym_type_annotation, - STATE(5108), 1, + STATE(5100), 1, sym__initializer, - STATE(5457), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5423), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -238269,86 +238543,83 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124595] = 12, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6624), 1, - anon_sym_GT, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(6652), 1, - anon_sym_SLASH_GT, - STATE(3304), 1, - sym_type_arguments, - STATE(3309), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124634] = 9, - ACTIONS(2577), 1, + [124886] = 9, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3631), 1, + STATE(4310), 1, sym__call_signature, - STATE(3962), 1, + STATE(4311), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6654), 5, + ACTIONS(6624), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124667] = 9, - ACTIONS(2577), 1, + [124919] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, sym_formal_parameters, - STATE(4252), 1, - sym__call_signature, - STATE(4255), 1, + STATE(4091), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5097), 1, + sym__initializer, + STATE(5349), 1, sym_type_parameters, + STATE(5420), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6656), 5, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [124956] = 7, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124700] = 2, + [124985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1744), 12, + ACTIONS(1917), 12, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -238361,45 +238632,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [124719] = 9, - ACTIONS(2577), 1, + [125004] = 11, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4315), 1, - sym__call_signature, - STATE(4317), 1, + STATE(4197), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5178), 1, + sym__call_signature, + STATE(5179), 1, + sym__initializer, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6620), 5, + ACTIONS(6650), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124752] = 7, - ACTIONS(3709), 1, + [125041] = 7, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3827), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -238407,265 +238680,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124781] = 7, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + [125070] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(4057), 1, + sym_type_annotation, + STATE(4928), 1, + sym__initializer, + STATE(5225), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(6630), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [125107] = 8, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_QMARK_DOT, + ACTIONS(6246), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124810] = 2, + ACTIONS(6666), 1, + anon_sym_LPAREN, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1768), 12, + ACTIONS(3406), 6, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - [124829] = 9, - ACTIONS(2577), 1, + [125138] = 8, + ACTIONS(6242), 1, + anon_sym_DOT, + ACTIONS(6244), 1, + anon_sym_QMARK_DOT, + ACTIONS(6246), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6666), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3244), 1, - sym_formal_parameters, - STATE(3697), 1, - sym__call_signature, - STATE(4255), 1, - sym_type_annotation, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6656), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124862] = 4, - ACTIONS(4013), 1, - anon_sym_PIPE, - ACTIONS(6385), 1, - anon_sym_is, + STATE(2841), 1, + sym_arguments, + STATE(2865), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3981), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124885] = 11, - ACTIONS(2577), 1, + [125169] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3816), 1, - sym__call_signature, - STATE(4363), 1, + STATE(4022), 1, sym_type_annotation, - STATE(5090), 1, + STATE(4797), 1, sym__initializer, - STATE(5493), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5425), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6658), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124922] = 9, - ACTIONS(2577), 1, + [125206] = 9, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3580), 1, + STATE(4215), 1, sym__call_signature, - STATE(4246), 1, + STATE(4216), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6644), 5, + ACTIONS(6636), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124955] = 7, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + [125239] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3715), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6411), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124984] = 9, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3244), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3961), 1, - sym__call_signature, - STATE(3962), 1, + STATE(4362), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5079), 1, + sym__initializer, + STATE(5349), 1, sym_type_parameters, + STATE(5391), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6654), 5, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125017] = 3, - ACTIONS(1666), 1, - anon_sym_PIPE, + [125276] = 8, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6248), 1, + anon_sym_DOT, + ACTIONS(6250), 1, + anon_sym_QMARK_DOT, + ACTIONS(6666), 1, + anon_sym_LPAREN, + STATE(2843), 1, + sym_arguments, + STATE(2866), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3987), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [125038] = 9, - ACTIONS(2577), 1, + [125307] = 9, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3658), 1, + STATE(4364), 1, sym__call_signature, - STATE(4168), 1, + STATE(4365), 1, sym_type_annotation, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6660), 5, + ACTIONS(6654), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125071] = 9, + [125340] = 7, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125369] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6662), 1, - anon_sym_LBRACE, ACTIONS(6668), 1, + anon_sym_LBRACE, + ACTIONS(6674), 1, sym_html_character_reference, - ACTIONS(6671), 1, + ACTIONS(6677), 1, anon_sym_LT_SLASH, - ACTIONS(6673), 1, + ACTIONS(6679), 1, anon_sym_LT, - STATE(3011), 1, + STATE(3070), 1, sym_jsx_opening_element, - ACTIONS(6665), 2, + ACTIONS(6671), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(3127), 5, + STATE(3134), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [125104] = 7, - ACTIONS(3709), 1, + [125402] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(4359), 1, + sym_type_annotation, + STATE(5067), 1, + sym__initializer, + STATE(5349), 1, + sym_type_parameters, + STATE(5406), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6638), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125439] = 7, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3830), 1, + ACTIONS(3829), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(4973), 1, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -238673,306 +238969,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125133] = 11, - ACTIONS(2577), 1, + [125468] = 12, + ACTIONS(5991), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3900), 1, - sym_formal_parameters, - STATE(4123), 1, - sym_type_annotation, - STATE(4601), 1, - sym__initializer, - STATE(5197), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6640), 1, + anon_sym_GT, + ACTIONS(6642), 1, + anon_sym_DOT, + ACTIONS(6682), 1, + anon_sym_SLASH_GT, + STATE(3286), 1, + sym_type_arguments, + STATE(3287), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125170] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [125507] = 5, + ACTIONS(6311), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3900), 1, - sym_formal_parameters, - STATE(4161), 1, - sym_type_annotation, - STATE(4724), 1, - sym__initializer, - STATE(5284), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + ACTIONS(6684), 1, + anon_sym_DOT, + STATE(3241), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(4021), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [125207] = 11, - ACTIONS(2577), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125532] = 9, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3415), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(3229), 1, sym_formal_parameters, - STATE(3782), 1, + STATE(3682), 1, sym__call_signature, - STATE(4007), 1, + STATE(4038), 1, sym_type_annotation, - STATE(4675), 1, - sym__initializer, - STATE(5493), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 3, + ACTIONS(6622), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125244] = 11, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [125565] = 8, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3900), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(3575), 1, sym_formal_parameters, - STATE(4015), 1, - sym_type_annotation, - STATE(4693), 1, - sym__initializer, - STATE(5221), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5374), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, + ACTIONS(3959), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3743), 5, + sym__automatic_semicolon, anon_sym_SEMI, - [125281] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, anon_sym_COLON, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(3759), 1, - sym__call_signature, - STATE(4130), 1, - sym_type_annotation, - STATE(4635), 1, - sym__initializer, - STATE(5493), 1, - sym_type_parameters, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125596] = 5, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6560), 1, + anon_sym_DOT, + STATE(3300), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(3461), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [125318] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125621] = 8, + ACTIONS(3477), 1, anon_sym_COLON, - STATE(3900), 1, - sym_formal_parameters, - STATE(4086), 1, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6287), 1, + anon_sym_DOT, + ACTIONS(6686), 1, + anon_sym_QMARK, + STATE(2856), 1, + sym_type_arguments, + STATE(5509), 1, sym_type_annotation, - STATE(5061), 1, - sym__initializer, - STATE(5374), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, + ACTIONS(3461), 6, anon_sym_COMMA, - anon_sym_SEMI, - [125355] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3900), 1, - sym_formal_parameters, - STATE(4136), 1, - sym_type_annotation, - STATE(4647), 1, - sym__initializer, - STATE(5459), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125652] = 3, + ACTIONS(4138), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(4140), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125392] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3244), 1, - sym_formal_parameters, - STATE(4363), 1, - sym_type_annotation, - STATE(5118), 1, - sym__call_signature, - STATE(5119), 1, - sym__initializer, - STATE(5406), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6658), 3, + ACTIONS(4116), 11, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [125429] = 4, - ACTIONS(4017), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6385), 1, - anon_sym_is, + anon_sym_extends, + [125690] = 3, + ACTIONS(1797), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 10, + ACTIONS(4099), 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, - [125452] = 4, - ACTIONS(4023), 1, + [125710] = 4, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(6680), 1, - anon_sym_is, + ACTIONS(6689), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 10, + ACTIONS(4436), 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, - [125475] = 9, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3244), 1, - sym_formal_parameters, - STATE(4166), 1, - sym__call_signature, - STATE(4168), 1, - sym_type_annotation, - STATE(5406), 1, - sym_type_parameters, + [125732] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6660), 5, + ACTIONS(4120), 11, 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, - [125508] = 8, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6269), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6682), 1, - anon_sym_QMARK, - STATE(2855), 1, - sym_type_arguments, - STATE(5310), 1, - sym_type_annotation, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 6, + ACTIONS(4124), 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_RBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [125539] = 3, - ACTIONS(4160), 1, + [125768] = 3, + ACTIONS(4324), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 10, + ACTIONS(4326), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238983,34 +239223,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125559] = 3, - ACTIONS(4356), 1, + [125788] = 4, + ACTIONS(4342), 1, anon_sym_PIPE, + ACTIONS(6689), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 10, + ACTIONS(4344), 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, - [125579] = 5, - ACTIONS(6685), 1, + [125810] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 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, - ACTIONS(6687), 1, anon_sym_PIPE, - ACTIONS(6689), 1, + anon_sym_extends, + [125828] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6693), 1, + anon_sym_PIPE, + ACTIONS(6695), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 8, + ACTIONS(4106), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239019,17 +239276,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [125603] = 5, - ACTIONS(6685), 1, + [125852] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3129), 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, - ACTIONS(6687), 1, anon_sym_PIPE, - ACTIONS(6689), 1, anon_sym_extends, + [125870] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 8, + ACTIONS(4368), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239037,14 +239306,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, - [125627] = 3, - ACTIONS(4262), 1, + [125890] = 3, + ACTIONS(4384), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 10, + ACTIONS(4386), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239055,49 +239326,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125647] = 5, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(6691), 1, - anon_sym_LBRACK, + [125910] = 4, + ACTIONS(6697), 1, + anon_sym_DOT, + ACTIONS(6699), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4216), 7, + ACTIONS(4380), 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, - [125671] = 3, - ACTIONS(4274), 1, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [125932] = 3, + ACTIONS(1855), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 10, + ACTIONS(4099), 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, - [125691] = 3, - ACTIONS(4368), 1, + [125952] = 3, + ACTIONS(4500), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 10, + ACTIONS(4502), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239108,17 +239378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125711] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6687), 1, + [125972] = 3, + ACTIONS(4039), 1, anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 8, + ACTIONS(4041), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239126,16 +239392,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, - [125735] = 4, - ACTIONS(4218), 1, + [125992] = 3, + ACTIONS(4328), 1, anon_sym_PIPE, - ACTIONS(6693), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 9, + ACTIONS(4330), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239144,38 +239410,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [125757] = 4, - ACTIONS(4224), 1, + [126012] = 3, + ACTIONS(4013), 1, anon_sym_PIPE, - ACTIONS(6691), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 9, + ACTIONS(4015), 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, - [125779] = 6, - ACTIONS(2577), 1, + [126032] = 6, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3540), 1, + STATE(3575), 1, sym_formal_parameters, - STATE(5260), 1, + STATE(5374), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -239183,29 +239449,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125805] = 2, + [126058] = 3, + ACTIONS(4504), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3129), 11, + ACTIONS(4506), 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, - [125823] = 3, - ACTIONS(4234), 1, + anon_sym_PIPE_RBRACE, + [126078] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 10, + ACTIONS(4392), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239216,29 +239483,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125843] = 2, + [126098] = 3, + ACTIONS(4394), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 11, + ACTIONS(4396), 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, - [125861] = 3, - ACTIONS(2327), 1, + anon_sym_PIPE_RBRACE, + [126118] = 3, + ACTIONS(2333), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2325), 10, + ACTIONS(2331), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239249,45 +239517,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125881] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3715), 11, - sym__automatic_semicolon, - anon_sym_EQ, + [126138] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(6701), 1, + sym_identifier, + ACTIONS(6703), 1, + anon_sym_type, + ACTIONS(6705), 1, anon_sym_COMMA, + ACTIONS(6707), 1, 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, - [125899] = 2, + ACTIONS(6709), 1, + anon_sym_typeof, + STATE(4858), 1, + sym_import_specifier, + STATE(5188), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 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, + STATE(5579), 2, + sym__module_export_name, + sym_string, + [126174] = 5, + ACTIONS(6691), 1, anon_sym_AMP, + ACTIONS(6693), 1, anon_sym_PIPE, + ACTIONS(6695), 1, anon_sym_extends, - [125917] = 3, - ACTIONS(2323), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 10, + ACTIONS(4362), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239295,16 +239560,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, - [125937] = 3, - ACTIONS(4154), 1, + [126198] = 3, + ACTIONS(4181), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 10, + ACTIONS(4183), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239315,13 +239578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125957] = 3, - ACTIONS(4266), 1, + [126218] = 3, + ACTIONS(4185), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 10, + ACTIONS(4187), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239332,31 +239595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125977] = 4, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(6691), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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, - [125999] = 3, - ACTIONS(4017), 1, + [126238] = 3, + ACTIONS(4130), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 10, + ACTIONS(4132), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239367,17 +239612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126019] = 5, - ACTIONS(6685), 1, + [126258] = 5, + ACTIONS(6691), 1, anon_sym_AMP, - ACTIONS(6687), 1, + ACTIONS(6693), 1, anon_sym_PIPE, - ACTIONS(6689), 1, + ACTIONS(6695), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 8, + ACTIONS(4197), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239386,67 +239631,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [126043] = 4, - ACTIONS(6311), 1, - anon_sym_DOT, - ACTIONS(6313), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3406), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [126282] = 3, + ACTIONS(4206), 1, anon_sym_PIPE, - anon_sym_extends, - [126065] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 11, + ACTIONS(4208), 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, - [126083] = 6, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6269), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_is, - STATE(2855), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3480), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [126109] = 3, - ACTIONS(4176), 1, + anon_sym_PIPE_RBRACE, + [126302] = 3, + ACTIONS(4212), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 10, + ACTIONS(4214), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239457,13 +239665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126129] = 3, - ACTIONS(4288), 1, + [126322] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6693), 1, anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 10, + ACTIONS(4214), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239471,16 +239683,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, - [126149] = 3, - ACTIONS(4180), 1, + [126346] = 4, + ACTIONS(4134), 1, anon_sym_PIPE, + ACTIONS(6691), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 10, + ACTIONS(4136), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239488,16 +239700,17 @@ 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, - [126169] = 3, - ACTIONS(4136), 1, + [126368] = 4, + ACTIONS(4398), 1, anon_sym_PIPE, + ACTIONS(6691), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 10, + ACTIONS(4400), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239505,54 +239718,47 @@ 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, - [126189] = 3, - ACTIONS(2331), 1, - anon_sym_PIPE, + [126390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2329), 10, + ACTIONS(3446), 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_extends, - anon_sym_PIPE_RBRACE, - [126209] = 3, - ACTIONS(4023), 1, anon_sym_PIPE, + anon_sym_extends, + [126408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 10, + ACTIONS(3382), 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_extends, - anon_sym_PIPE_RBRACE, - [126229] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6687), 1, anon_sym_PIPE, - ACTIONS(6689), 1, anon_sym_extends, + [126426] = 3, + ACTIONS(4462), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 8, + ACTIONS(4464), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239560,99 +239766,100 @@ 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, - [126253] = 3, - ACTIONS(4394), 1, - anon_sym_PIPE, + [126446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 10, + ACTIONS(5477), 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_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126273] = 3, - ACTIONS(4398), 1, - anon_sym_PIPE, + [126464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 10, + ACTIONS(3125), 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, - [126293] = 3, - ACTIONS(4402), 1, anon_sym_PIPE, + anon_sym_extends, + [126482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 10, + ACTIONS(3743), 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_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126313] = 3, - ACTIONS(1758), 1, + [126500] = 6, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6287), 1, anon_sym_DOT, + ACTIONS(6711), 1, + anon_sym_is, + STATE(2856), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3461), 7, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [126333] = 3, - ACTIONS(1772), 1, - anon_sym_DOT, + [126526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 10, + ACTIONS(4456), 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_LT, anon_sym_extends, - [126353] = 3, - ACTIONS(2319), 1, + [126544] = 3, + ACTIONS(2337), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2317), 10, + ACTIONS(2335), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239663,17 +239870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126373] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6687), 1, + [126564] = 3, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4461), 8, + ACTIONS(4404), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239681,57 +239884,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, - [126397] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6699), 1, - anon_sym_type, - ACTIONS(6701), 1, - anon_sym_COMMA, - ACTIONS(6703), 1, - anon_sym_RBRACE, - ACTIONS(6705), 1, - anon_sym_typeof, - STATE(4581), 1, - sym_import_specifier, - STATE(5423), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5687), 2, - sym__module_export_name, - sym_string, - [126433] = 4, - ACTIONS(6707), 1, - anon_sym_DOT, - ACTIONS(6709), 1, - anon_sym_QMARK_DOT, + [126584] = 3, + ACTIONS(4406), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 9, + ACTIONS(4408), 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, - [126455] = 3, - ACTIONS(4013), 1, + anon_sym_PIPE_RBRACE, + [126604] = 3, + ACTIONS(4476), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 10, + ACTIONS(4478), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239742,13 +239921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126475] = 3, - ACTIONS(4184), 1, + [126624] = 3, + ACTIONS(4259), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 10, + ACTIONS(4261), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239759,13 +239938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126495] = 3, - ACTIONS(2337), 1, + [126644] = 3, + ACTIONS(4263), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 10, + ACTIONS(4265), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239776,13 +239955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126515] = 3, - ACTIONS(4142), 1, + [126664] = 3, + ACTIONS(4271), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 10, + ACTIONS(4273), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239793,13 +239972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126535] = 3, - ACTIONS(4246), 1, + [126684] = 3, + ACTIONS(2329), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 10, + ACTIONS(2327), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239810,13 +239989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126555] = 3, - ACTIONS(4422), 1, + [126704] = 3, + ACTIONS(4410), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 10, + ACTIONS(4412), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239827,17 +240006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126575] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6687), 1, + [126724] = 3, + ACTIONS(4025), 1, anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 8, + ACTIONS(4027), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239845,78 +240020,84 @@ 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, - [126599] = 4, - ACTIONS(6315), 1, - anon_sym_LT, - STATE(3308), 1, - sym_type_arguments, + [126744] = 3, + ACTIONS(4484), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 9, + ACTIONS(4486), 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, - [126621] = 2, + anon_sym_PIPE_RBRACE, + [126764] = 3, + ACTIONS(2321), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 11, + ACTIONS(2319), 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, - [126639] = 2, + anon_sym_PIPE_RBRACE, + [126784] = 4, + ACTIONS(6317), 1, + anon_sym_LT, + STATE(3301), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3125), 11, + ACTIONS(4027), 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_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [126657] = 2, + [126806] = 4, + ACTIONS(6313), 1, + anon_sym_DOT, + ACTIONS(6315), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 11, + ACTIONS(3406), 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, - [126675] = 2, + [126828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 11, + ACTIONS(4482), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239928,15 +240109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [126693] = 4, - ACTIONS(4188), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, + [126846] = 5, + ACTIONS(6691), 1, anon_sym_AMP, + ACTIONS(6693), 1, + anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 9, + ACTIONS(4358), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239944,47 +240127,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126715] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5481), 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, - [126733] = 2, + [126870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 11, + ACTIONS(4490), 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, - [126751] = 3, - ACTIONS(4194), 1, + [126888] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6693), 1, anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4196), 10, + ACTIONS(4422), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239992,33 +240162,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, - [126771] = 3, - ACTIONS(4198), 1, + [126912] = 5, + ACTIONS(4342), 1, anon_sym_PIPE, + ACTIONS(6689), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 10, + ACTIONS(4344), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4426), 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, - [126791] = 3, - ACTIONS(4254), 1, + [126936] = 3, + ACTIONS(4342), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 10, + ACTIONS(4344), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240029,13 +240199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126811] = 3, - ACTIONS(4308), 1, + [126956] = 3, + ACTIONS(4492), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 10, + ACTIONS(4494), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240046,31 +240216,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126831] = 2, + [126976] = 4, + ACTIONS(4428), 1, + anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 11, + ACTIONS(4430), 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_RBRACE, + [126998] = 3, + ACTIONS(4104), 1, anon_sym_PIPE, - anon_sym_extends, - [126849] = 4, - ACTIONS(4312), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 9, + ACTIONS(4106), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240078,13 +240248,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, - [126871] = 2, + [127018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 11, + ACTIONS(3133), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240096,13 +240267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [126889] = 3, - ACTIONS(4352), 1, + [127036] = 3, + ACTIONS(4301), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 10, + ACTIONS(4303), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240113,30 +240284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126909] = 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, + [127056] = 5, + ACTIONS(6691), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126929] = 3, - ACTIONS(4202), 1, + ACTIONS(6693), 1, anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 10, + ACTIONS(4311), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240144,32 +240302,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, - [126949] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4260), 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, - [126967] = 3, - ACTIONS(4270), 1, + [127080] = 3, + ACTIONS(4496), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 10, + ACTIONS(4498), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240180,13 +240320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126987] = 3, - ACTIONS(4364), 1, + [127100] = 3, + ACTIONS(2325), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 10, + ACTIONS(2323), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240197,322 +240337,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127007] = 8, - ACTIONS(6397), 1, + [127120] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6713), 1, + ACTIONS(6717), 1, anon_sym_BANG, - STATE(4180), 1, + STATE(4267), 1, sym_type_annotation, - STATE(4742), 1, + STATE(4918), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 2, + ACTIONS(6719), 2, anon_sym_in, anon_sym_of, - ACTIONS(6711), 3, + ACTIONS(6715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127036] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6717), 1, + [127149] = 10, + ACTIONS(6252), 1, sym_identifier, - ACTIONS(6719), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(6723), 1, - anon_sym_implements, - STATE(2348), 1, - sym_class_body, - STATE(3651), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5379), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(6574), 1, + anon_sym_GT, + ACTIONS(6576), 1, + anon_sym_SLASH_GT, + STATE(3270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127071] = 11, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6719), 1, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [127182] = 10, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(6723), 1, - anon_sym_implements, - ACTIONS(6725), 1, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6273), 1, + anon_sym_SLASH_GT, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(6574), 1, + anon_sym_GT, + STATE(3430), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [127215] = 10, + ACTIONS(6252), 1, sym_identifier, - STATE(2129), 1, - sym_class_body, - STATE(3652), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5313), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(6574), 1, + anon_sym_GT, + ACTIONS(6596), 1, + anon_sym_SLASH_GT, + STATE(3357), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127106] = 10, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [127248] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(6697), 1, + ACTIONS(6701), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6703), 1, anon_sym_type, - ACTIONS(6705), 1, + ACTIONS(6709), 1, anon_sym_typeof, - ACTIONS(6727), 1, + ACTIONS(6721), 1, anon_sym_RBRACE, - STATE(5386), 1, + STATE(5185), 1, sym_import_specifier, - STATE(5423), 1, + STATE(5188), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5687), 2, + STATE(5579), 2, sym__module_export_name, sym_string, - [127139] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4037), 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, - [127156] = 11, - ACTIONS(2577), 1, + [127281] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6719), 1, + ACTIONS(6723), 1, + sym_identifier, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, - anon_sym_implements, ACTIONS(6729), 1, - sym_identifier, - STATE(2348), 1, + anon_sym_implements, + STATE(2338), 1, sym_class_body, - STATE(3651), 1, + STATE(3525), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5396), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127191] = 10, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, + [127316] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(6586), 1, - anon_sym_GT, - ACTIONS(6600), 1, - anon_sym_SLASH_GT, - STATE(3251), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [127224] = 5, - ACTIONS(5960), 1, - anon_sym_LPAREN, - ACTIONS(6301), 1, - anon_sym_DOT, - STATE(2846), 1, - sym_arguments, - 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, - [127247] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(2290), 2, - sym_template_string, - sym_arguments, - ACTIONS(4248), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6727), 1, anon_sym_extends, - [127270] = 2, + ACTIONS(6729), 1, + anon_sym_implements, + ACTIONS(6731), 1, + sym_identifier, + STATE(2128), 1, + sym_class_body, + STATE(3512), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5205), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 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, - [127287] = 2, + [127351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 10, + ACTIONS(1650), 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, - [127304] = 11, - ACTIONS(2577), 1, + anon_sym_is, + [127368] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6721), 1, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, - ACTIONS(6731), 1, - sym_identifier, ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2493), 1, + sym_identifier, + STATE(2338), 1, sym_class_body, - STATE(3518), 1, + STATE(3525), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5305), 1, + STATE(5396), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127339] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6697), 1, - sym_identifier, + [127403] = 3, ACTIONS(6735), 1, - anon_sym_type, - ACTIONS(6737), 1, - anon_sym_as, - STATE(5271), 1, - sym__import_identifier, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6393), 2, + ACTIONS(4338), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5885), 2, - sym__module_export_name, - sym_string, - [127370] = 11, - ACTIONS(2577), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127422] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6719), 1, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, - ACTIONS(6739), 1, + ACTIONS(6737), 1, sym_identifier, - STATE(2129), 1, + STATE(2128), 1, sym_class_body, - STATE(3652), 1, + STATE(3512), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5313), 1, + STATE(5205), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127405] = 6, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6269), 1, - anon_sym_DOT, - ACTIONS(6741), 1, + [127457] = 3, + ACTIONS(6562), 1, anon_sym_is, - STATE(2855), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 6, - anon_sym_as, + ACTIONS(4041), 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, - [127430] = 3, - ACTIONS(6743), 1, + [127476] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6693), 1, + anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6739), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [127499] = 3, + ACTIONS(6741), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 9, + ACTIONS(4027), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240522,56 +240627,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127449] = 10, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6265), 1, - anon_sym_SLASH_GT, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(6586), 1, - anon_sym_GT, - STATE(3291), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + [127518] = 5, + ACTIONS(5987), 1, + anon_sym_LPAREN, + ACTIONS(6305), 1, + anon_sym_DOT, + STATE(2847), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [127482] = 4, - ACTIONS(6747), 1, + ACTIONS(4021), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [127541] = 4, + ACTIONS(6745), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 3, + STATE(3730), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6745), 6, + ACTIONS(6743), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127503] = 4, - ACTIONS(4053), 1, + [127562] = 4, + ACTIONS(4243), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 2, + ACTIONS(3959), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3715), 7, + ACTIONS(3743), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -240579,232 +240679,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127524] = 11, - ACTIONS(2577), 1, + [127583] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6719), 1, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, - ACTIONS(6749), 1, + ACTIONS(6747), 1, sym_identifier, - STATE(2129), 1, + STATE(2128), 1, sym_class_body, - STATE(3652), 1, + STATE(3512), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5313), 1, + STATE(5205), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127559] = 9, + [127618] = 9, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(6751), 1, + ACTIONS(6701), 1, sym_identifier, - ACTIONS(6755), 1, - anon_sym_COMMA, - ACTIONS(6757), 1, - anon_sym_RBRACE, - STATE(4765), 1, - sym_export_specifier, + ACTIONS(6749), 1, + anon_sym_type, + ACTIONS(6751), 1, + anon_sym_as, + STATE(5330), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6753), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4783), 2, + ACTIONS(6399), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5830), 2, sym__module_export_name, sym_string, - [127590] = 8, - ACTIONS(6405), 1, + [127649] = 4, + ACTIONS(6745), 1, anon_sym_COLON, - ACTIONS(6713), 1, - anon_sym_BANG, - ACTIONS(6759), 1, - anon_sym_EQ, - STATE(4088), 1, - sym__initializer, - STATE(4180), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6715), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127619] = 3, - ACTIONS(6564), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 9, + STATE(3729), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6753), 6, 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, - [127638] = 11, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [127670] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6721), 1, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6761), 1, + ACTIONS(6755), 1, sym_identifier, - STATE(1764), 1, + STATE(2338), 1, sym_class_body, - STATE(3720), 1, + STATE(3525), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5281), 1, + STATE(5396), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127673] = 11, - ACTIONS(2577), 1, + [127705] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6719), 1, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, - ACTIONS(6763), 1, + ACTIONS(6757), 1, sym_identifier, - STATE(2129), 1, + STATE(2128), 1, sym_class_body, - STATE(3652), 1, + STATE(3512), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5313), 1, + STATE(5205), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127708] = 10, + [127740] = 5, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2222), 2, + sym_template_string, + sym_arguments, + ACTIONS(4478), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127763] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(6697), 1, + ACTIONS(6701), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6703), 1, anon_sym_type, - ACTIONS(6705), 1, + ACTIONS(6709), 1, anon_sym_typeof, - ACTIONS(6765), 1, + ACTIONS(6759), 1, anon_sym_RBRACE, - STATE(5386), 1, + STATE(5185), 1, sym_import_specifier, - STATE(5423), 1, + STATE(5188), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5687), 2, + STATE(5579), 2, sym__module_export_name, sym_string, - [127741] = 5, - ACTIONS(6685), 1, + [127796] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4047), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6687), 1, anon_sym_PIPE, - ACTIONS(6689), 1, anon_sym_extends, + anon_sym_is, + [127813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6767), 7, + ACTIONS(4460), 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_PIPE_RBRACE, - [127764] = 11, - ACTIONS(2577), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127830] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, - ACTIONS(6769), 1, + ACTIONS(6761), 1, sym_identifier, - STATE(2348), 1, + ACTIONS(6763), 1, + anon_sym_LBRACE, + STATE(1648), 1, sym_class_body, - STATE(3651), 1, + STATE(3515), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5280), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127799] = 10, - ACTIONS(6248), 1, - sym_identifier, + [127865] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4468), 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, + [127882] = 10, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6283), 1, + ACTIONS(6269), 1, anon_sym_SLASH_GT, - ACTIONS(6584), 1, + ACTIONS(6572), 1, anon_sym_COLON, - ACTIONS(6586), 1, + ACTIONS(6574), 1, anon_sym_GT, - STATE(3375), 1, + STATE(3373), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [127832] = 3, - ACTIONS(6771), 1, - anon_sym_DOT, + [127915] = 3, + ACTIONS(6562), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 9, + ACTIONS(4015), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240814,149 +240939,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127851] = 11, - ACTIONS(2577), 1, + [127934] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6721), 1, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, - ACTIONS(6733), 1, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6773), 1, + ACTIONS(6765), 1, sym_identifier, - STATE(1693), 1, + STATE(1683), 1, sym_class_body, - STATE(3534), 1, + STATE(3617), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5249), 1, + STATE(5292), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127886] = 10, - ACTIONS(6248), 1, + [127969] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(6767), 1, sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(6586), 1, - anon_sym_GT, - ACTIONS(6588), 1, - anon_sym_SLASH_GT, - STATE(3271), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [127919] = 4, - ACTIONS(6747), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3866), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6775), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6771), 1, anon_sym_COMMA, + ACTIONS(6773), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127940] = 2, + STATE(5020), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1664), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6769), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5022), 2, + sym__module_export_name, + sym_string, + [128000] = 11, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6725), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6727), 1, anon_sym_extends, - anon_sym_is, - [127957] = 11, - ACTIONS(2577), 1, + ACTIONS(6729), 1, + anon_sym_implements, + ACTIONS(6775), 1, + sym_identifier, + STATE(2338), 1, + sym_class_body, + STATE(3525), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5396), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128035] = 11, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6727), 1, anon_sym_extends, - ACTIONS(6723), 1, + ACTIONS(6729), 1, anon_sym_implements, + ACTIONS(6763), 1, + anon_sym_LBRACE, ACTIONS(6777), 1, sym_identifier, - STATE(2348), 1, + STATE(2499), 1, sym_class_body, - STATE(3651), 1, + STATE(3703), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5265), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127992] = 3, - ACTIONS(6564), 1, - anon_sym_is, + [128070] = 8, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6717), 1, + anon_sym_BANG, + ACTIONS(6779), 1, + anon_sym_EQ, + STATE(4141), 1, + sym__initializer, + STATE(4267), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 9, + ACTIONS(6719), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6715), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [128099] = 6, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6287), 1, + anon_sym_DOT, + ACTIONS(6781), 1, + anon_sym_is, + STATE(2856), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128011] = 7, - ACTIONS(6252), 1, + [128124] = 7, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6779), 1, + ACTIONS(6783), 1, anon_sym_DQUOTE, - ACTIONS(6781), 1, + ACTIONS(6785), 1, anon_sym_SQUOTE, - ACTIONS(6783), 1, + ACTIONS(6787), 1, anon_sym_LT, - STATE(3030), 1, + STATE(2997), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4198), 4, + STATE(4239), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, sym__jsx_string, - [128037] = 2, + [128150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 9, + ACTIONS(4187), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240966,266 +241106,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128053] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6586), 1, - anon_sym_GT, - ACTIONS(6600), 1, - anon_sym_SLASH_GT, - STATE(3256), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128083] = 9, - ACTIONS(6248), 1, - sym_identifier, + [128166] = 9, ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6785), 1, - anon_sym_GT, - ACTIONS(6787), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128113] = 9, - ACTIONS(6248), 1, sym_identifier, - ACTIONS(6252), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, ACTIONS(6789), 1, anon_sym_GT, ACTIONS(6791), 1, anon_sym_SLASH_GT, - STATE(3259), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [128143] = 9, - ACTIONS(6248), 1, - sym_identifier, + [128196] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, ACTIONS(6793), 1, anon_sym_GT, ACTIONS(6795), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [128173] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, + [128226] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(6246), 1, + anon_sym_LT, + STATE(2133), 1, + sym_template_string, + STATE(2416), 1, + sym_arguments, + STATE(3236), 1, + sym_type_arguments, + STATE(5183), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128258] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, ACTIONS(6797), 1, - anon_sym_GT, + anon_sym_BANG, ACTIONS(6799), 1, - anon_sym_SLASH_GT, - STATE(3260), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_QMARK, + STATE(4416), 1, + sym_type_annotation, + STATE(5175), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128203] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, + ACTIONS(6415), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128286] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6801), 1, - anon_sym_GT, - ACTIONS(6803), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128233] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, + ACTIONS(4027), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6805), 1, - anon_sym_GT, - ACTIONS(6807), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128318] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6801), 1, + anon_sym_BANG, + ACTIONS(6803), 1, + anon_sym_QMARK, + STATE(4417), 1, + sym_type_annotation, + STATE(5181), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128263] = 10, - ACTIONS(829), 1, + ACTIONS(6415), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128346] = 10, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5964), 1, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, anon_sym_LT, - ACTIONS(6809), 1, + ACTIONS(6805), 1, anon_sym_DOT, - STATE(1705), 1, + STATE(2133), 1, sym_template_string, - STATE(1805), 1, + STATE(2428), 1, sym_arguments, - STATE(4410), 1, + STATE(4470), 1, sym_type_arguments, - STATE(5395), 1, + STATE(5183), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128295] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6719), 1, - anon_sym_LBRACE, + [128378] = 5, + ACTIONS(6807), 1, + anon_sym_AMP, + ACTIONS(6809), 1, + anon_sym_PIPE, ACTIONS(6811), 1, anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2150), 1, - sym_class_body, - STATE(3500), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5373), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128327] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, + ACTIONS(4197), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [128400] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(6246), 1, + anon_sym_LT, + STATE(1757), 1, + sym_template_string, + STATE(2493), 1, + sym_arguments, + STATE(2988), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128432] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, ACTIONS(6815), 1, - anon_sym_GT, + anon_sym_BANG, ACTIONS(6817), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_QMARK, + STATE(4278), 1, + sym_type_annotation, + STATE(4936), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128357] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, + ACTIONS(6813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128460] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5991), 1, + anon_sym_LT, ACTIONS(6819), 1, - anon_sym_GT, - ACTIONS(6821), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_DOT, + STATE(1757), 1, + sym_template_string, + STATE(2488), 1, + sym_arguments, + STATE(4436), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128387] = 10, - ACTIONS(829), 1, + [128492] = 10, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(6242), 1, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(6289), 1, anon_sym_LT, - STATE(1705), 1, + STATE(1757), 1, sym_template_string, - STATE(1816), 1, + STATE(1967), 1, sym_arguments, - STATE(2958), 1, + STATE(3052), 1, sym_type_arguments, - STATE(5395), 1, + STATE(5393), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128419] = 2, + [128524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 9, + ACTIONS(4261), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241235,45 +241377,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128435] = 2, + [128540] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6821), 1, + anon_sym_DOT, + STATE(1757), 1, + sym_template_string, + STATE(1966), 1, + sym_arguments, + STATE(4436), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [128572] = 7, + ACTIONS(241), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128451] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6751), 1, - sym_identifier, - ACTIONS(6823), 1, + ACTIONS(727), 1, anon_sym_RBRACE, - STATE(5191), 1, - sym_export_specifier, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6753), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4783), 2, - sym__module_export_name, - sym_string, - [128479] = 2, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [128598] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 9, + ACTIONS(4265), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241283,11 +241432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128495] = 2, + [128614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 9, + ACTIONS(4273), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241297,11 +241446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128511] = 2, + [128630] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6823), 1, + anon_sym_GT, + ACTIONS(6825), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 9, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128660] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2327), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241311,11 +241481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128527] = 2, + [128676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2317), 9, + ACTIONS(4330), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241325,283 +241495,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128543] = 9, - ACTIONS(6248), 1, - sym_identifier, + [128692] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6586), 1, + ACTIONS(6827), 1, anon_sym_GT, - ACTIONS(6588), 1, + ACTIONS(6829), 1, anon_sym_SLASH_GT, - STATE(3276), 1, + STATE(3304), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [128573] = 8, - ACTIONS(6397), 1, + [128722] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6825), 1, + ACTIONS(6831), 1, anon_sym_BANG, - ACTIONS(6827), 1, + ACTIONS(6833), 1, anon_sym_QMARK, - STATE(4070), 1, + STATE(3916), 1, sym_type_annotation, - STATE(5024), 1, + STATE(4944), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128601] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, + [128750] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6785), 1, - anon_sym_GT, - ACTIONS(6829), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2501), 1, + sym_class_body, + STATE(3589), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5192), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128631] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6789), 1, - anon_sym_GT, - ACTIONS(6831), 1, - anon_sym_SLASH_GT, - STATE(3278), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + [128782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128661] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, + ACTIONS(4041), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6793), 1, - anon_sym_GT, - ACTIONS(6833), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128798] = 7, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4305), 1, + sym_type_annotation, + STATE(4985), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128691] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6797), 1, - anon_sym_GT, - ACTIONS(6835), 1, - anon_sym_SLASH_GT, - STATE(3279), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + ACTIONS(6435), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128721] = 9, - ACTIONS(6248), 1, - sym_identifier, + ACTIONS(6839), 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, + [128840] = 9, ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6801), 1, - anon_sym_GT, - ACTIONS(6837), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128751] = 9, - ACTIONS(6248), 1, sym_identifier, - ACTIONS(6252), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6805), 1, - anon_sym_GT, - ACTIONS(6839), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128781] = 10, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5964), 1, - anon_sym_LT, ACTIONS(6841), 1, - anon_sym_DOT, - STATE(1705), 1, - sym_template_string, - STATE(1805), 1, - sym_arguments, - STATE(4410), 1, - sym_type_arguments, - STATE(5395), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [128813] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6815), 1, anon_sym_GT, ACTIONS(6843), 1, anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128843] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6819), 1, - anon_sym_GT, - ACTIONS(6845), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [128873] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2250), 1, - sym_template_string, - STATE(2393), 1, - sym_arguments, - STATE(3220), 1, - sym_type_arguments, - STATE(5487), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [128905] = 7, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4259), 1, - sym_type_annotation, - STATE(4926), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6484), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128931] = 2, + [128870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 9, + ACTIONS(4344), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241611,13 +241640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128947] = 3, - ACTIONS(6847), 1, + [128886] = 3, + ACTIONS(6845), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 8, + ACTIONS(4344), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241626,43 +241655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128965] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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, - [128981] = 6, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(6849), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6767), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [129005] = 2, + [128904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 9, + ACTIONS(4303), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241672,398 +241669,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129021] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + [128920] = 7, + ACTIONS(3438), 1, anon_sym_LPAREN, - ACTIONS(5964), 1, + ACTIONS(5991), 1, anon_sym_LT, - ACTIONS(6851), 1, + ACTIONS(6847), 1, anon_sym_DOT, - STATE(2250), 1, - sym_template_string, - STATE(2422), 1, + STATE(1194), 1, sym_arguments, - STATE(4519), 1, + STATE(5478), 1, sym_type_arguments, - STATE(5487), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129053] = 5, - ACTIONS(6853), 1, + ACTIONS(3490), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [128946] = 5, + ACTIONS(6807), 1, anon_sym_AMP, - ACTIONS(6855), 1, + ACTIONS(6809), 1, anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(6811), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 6, + ACTIONS(4311), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [129075] = 10, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(1705), 1, - sym_template_string, - STATE(2503), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, - STATE(5395), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129107] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6859), 1, - anon_sym_BANG, - ACTIONS(6861), 1, - anon_sym_QMARK, - STATE(4139), 1, - sym_type_annotation, - STATE(4656), 1, - sym__initializer, + [128968] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4368), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129135] = 9, - ACTIONS(6248), 1, - sym_identifier, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128984] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6785), 1, + ACTIONS(6849), 1, anon_sym_GT, - ACTIONS(6863), 1, + ACTIONS(6851), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3312), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [129165] = 9, - ACTIONS(6248), 1, - sym_identifier, + [129014] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6819), 1, + ACTIONS(6853), 1, anon_sym_GT, - ACTIONS(6865), 1, + ACTIONS(6855), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [129195] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_class_body, - STATE(3591), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5179), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + [129044] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6857), 1, + anon_sym_BANG, + ACTIONS(6859), 1, + anon_sym_QMARK, + STATE(4323), 1, + sym_type_annotation, + STATE(5015), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129227] = 7, - ACTIONS(241), 1, + ACTIONS(6510), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [129072] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(6863), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129102] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5991), 1, anon_sym_LT, - anon_sym_QMARK, - [129253] = 8, - ACTIONS(6397), 1, + ACTIONS(6865), 1, + anon_sym_DOT, + STATE(1757), 1, + sym_template_string, + STATE(1815), 1, + sym_arguments, + STATE(4436), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [129134] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6869), 1, + ACTIONS(6867), 1, anon_sym_BANG, - ACTIONS(6871), 1, + ACTIONS(6869), 1, anon_sym_QMARK, - STATE(4287), 1, + STATE(4325), 1, sym_type_annotation, - STATE(4970), 1, + STATE(5024), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(6510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129281] = 8, - ACTIONS(6397), 1, + [129162] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4208), 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, + [129178] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6873), 1, + ACTIONS(6871), 1, anon_sym_BANG, - ACTIONS(6875), 1, + ACTIONS(6873), 1, anon_sym_QMARK, - STATE(4143), 1, + STATE(4326), 1, sym_type_annotation, - STATE(4669), 1, + STATE(5028), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129309] = 8, - ACTIONS(6397), 1, + [129206] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2333), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5229), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [129238] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6875), 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, + [129254] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, ACTIONS(6877), 1, anon_sym_BANG, ACTIONS(6879), 1, anon_sym_QMARK, - STATE(4290), 1, + STATE(3924), 1, sym_type_annotation, - STATE(4976), 1, + STATE(4592), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129337] = 8, - ACTIONS(6397), 1, + [129282] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, ACTIONS(6881), 1, anon_sym_BANG, ACTIONS(6883), 1, anon_sym_QMARK, - STATE(4291), 1, + STATE(3926), 1, sym_type_annotation, - STATE(4977), 1, + STATE(4627), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129365] = 10, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5964), 1, + [129310] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6885), 1, - anon_sym_DOT, - STATE(1705), 1, - sym_template_string, - STATE(2501), 1, - sym_arguments, - STATE(4410), 1, - sym_type_arguments, - STATE(5395), 1, - sym_optional_chain, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2263), 1, + sym_class_body, + STATE(3710), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5209), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129397] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, + [129342] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4214), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6789), 1, - anon_sym_GT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129358] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4412), 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, + [129374] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 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, + [129390] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6885), 1, + anon_sym_BANG, ACTIONS(6887), 1, - anon_sym_SLASH_GT, - STATE(3441), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_QMARK, + STATE(3981), 1, + sym_type_annotation, + STATE(5131), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129427] = 10, - ACTIONS(829), 1, + ACTIONS(6415), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129418] = 10, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(6289), 1, + ACTIONS(5991), 1, anon_sym_LT, - STATE(1705), 1, - sym_template_string, - STATE(2031), 1, + ACTIONS(6889), 1, + anon_sym_DOT, + STATE(2021), 1, sym_arguments, - STATE(3031), 1, + STATE(2133), 1, + sym_template_string, + STATE(4470), 1, sym_type_arguments, - STATE(5395), 1, + STATE(5183), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129459] = 9, - ACTIONS(6248), 1, - sym_identifier, + [129450] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6793), 1, + ACTIONS(6789), 1, anon_sym_GT, - ACTIONS(6889), 1, + ACTIONS(6891), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [129489] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6891), 9, + [129480] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6411), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [129505] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6797), 1, - anon_sym_GT, ACTIONS(6893), 1, - anon_sym_SLASH_GT, - STATE(3292), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + anon_sym_BANG, + ACTIONS(6895), 1, + anon_sym_QMARK, + STATE(3984), 1, + sym_type_annotation, + STATE(4574), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129535] = 10, - ACTIONS(829), 1, + ACTIONS(6415), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129508] = 9, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6895), 1, + ACTIONS(4525), 1, anon_sym_DOT, - STATE(1705), 1, - sym_template_string, - STATE(2030), 1, - sym_arguments, - STATE(4410), 1, + ACTIONS(5991), 1, + anon_sym_LT, + STATE(4470), 1, sym_type_arguments, - STATE(5395), 1, + STATE(5183), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129567] = 2, + STATE(2133), 2, + sym_template_string, + sym_arguments, + [129538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 9, + ACTIONS(1917), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242073,30 +242136,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129583] = 7, - ACTIONS(6405), 1, + [129554] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6759), 1, + anon_sym_LT, + anon_sym_QMARK, + [129580] = 7, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4089), 1, - sym__initializer, - STATE(4180), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4084), 1, sym_type_annotation, + STATE(5058), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6711), 3, + ACTIONS(6899), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6897), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129609] = 2, + [129606] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6827), 1, + anon_sym_GT, + ACTIONS(6901), 1, + anon_sym_SLASH_GT, + STATE(3349), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 9, + ACTIONS(1821), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242106,228 +242209,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129625] = 9, - ACTIONS(6248), 1, - sym_identifier, + [129652] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6801), 1, + ACTIONS(6793), 1, anon_sym_GT, - ACTIONS(6897), 1, + ACTIONS(6903), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [129655] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_BANG, - ACTIONS(6901), 1, - anon_sym_QMARK, - STATE(4150), 1, - sym_type_annotation, - STATE(4691), 1, - sym__initializer, + [129682] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(2331), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129683] = 7, - ACTIONS(6397), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129698] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4180), 1, + ACTIONS(6905), 1, + anon_sym_BANG, + ACTIONS(6907), 1, + anon_sym_QMARK, + STATE(4382), 1, sym_type_annotation, - STATE(4762), 1, + STATE(5107), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6711), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129709] = 8, - ACTIONS(6397), 1, + [129726] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [129752] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6903), 1, + ACTIONS(6909), 1, anon_sym_BANG, - ACTIONS(6905), 1, + ACTIONS(6911), 1, anon_sym_QMARK, - STATE(4379), 1, + STATE(4112), 1, sym_type_annotation, - STATE(5174), 1, + STATE(5177), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129737] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6907), 1, - anon_sym_LBRACE, - STATE(237), 1, - sym_class_body, - STATE(3546), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5392), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129769] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2335), 9, + ACTIONS(6494), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [129780] = 5, + ACTIONS(6807), 1, anon_sym_AMP, + ACTIONS(6809), 1, anon_sym_PIPE, + ACTIONS(6811), 1, anon_sym_extends, - [129785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1744), 9, + ACTIONS(4214), 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, - [129801] = 2, + [129802] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6913), 1, + anon_sym_DOT, + STATE(1603), 1, + sym_arguments, + STATE(1757), 1, + sym_template_string, + STATE(4436), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6909), 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, - [129817] = 7, + [129834] = 7, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5207), 1, + ACTIONS(725), 1, anon_sym_RBRACE, - STATE(4973), 1, + ACTIONS(4243), 1, + anon_sym_EQ, + STATE(4672), 1, aux_sym_object_pattern_repeat1, - STATE(5160), 1, + STATE(5156), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, + ACTIONS(3743), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [129843] = 8, - ACTIONS(6397), 1, + [129860] = 4, + ACTIONS(6915), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4379), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6743), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [129880] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6911), 1, + ACTIONS(6917), 1, anon_sym_BANG, - ACTIONS(6913), 1, + ACTIONS(6919), 1, anon_sym_QMARK, - STATE(3929), 1, + STATE(4128), 1, sym_type_annotation, - STATE(4662), 1, + STATE(4609), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129871] = 2, + [129908] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2230), 1, + sym_class_body, + STATE(3505), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5359), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [129940] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6921), 1, + anon_sym_BANG, + ACTIONS(6923), 1, + anon_sym_QMARK, + STATE(4133), 1, + sym_type_annotation, + STATE(4626), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1768), 9, + ACTIONS(6494), 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, - [129887] = 8, - ACTIONS(6397), 1, + [129968] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6915), 1, + ACTIONS(6925), 1, anon_sym_BANG, - ACTIONS(6917), 1, + ACTIONS(6927), 1, anon_sym_QMARK, - STATE(3930), 1, + STATE(4134), 1, sym_type_annotation, - STATE(4575), 1, + STATE(4629), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129915] = 2, + [129996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 9, + ACTIONS(4386), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242337,25 +242473,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129931] = 2, + [130012] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6929), 1, + anon_sym_BANG, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(4137), 1, + sym_type_annotation, + STATE(4640), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 9, + ACTIONS(6494), 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, - [129947] = 2, + [130040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 9, + ACTIONS(4392), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242365,30 +242507,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129963] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + [130056] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(6246), 1, + anon_sym_LT, + STATE(1757), 1, + sym_template_string, + STATE(1817), 1, + sym_arguments, + STATE(2988), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129989] = 2, + [130088] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 9, + ACTIONS(4396), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242398,34 +242543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130005] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6805), 1, - anon_sym_GT, - ACTIONS(6919), 1, - anon_sym_SLASH_GT, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130035] = 3, - ACTIONS(6853), 1, + [130104] = 3, + ACTIONS(6807), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 8, + ACTIONS(4400), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242434,11 +242558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [130053] = 2, + [130122] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4196), 9, + ACTIONS(4144), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242448,76 +242572,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130069] = 2, + [130138] = 5, + ACTIONS(6305), 1, + anon_sym_DOT, + ACTIONS(6666), 1, + anon_sym_LPAREN, + STATE(2847), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4021), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130085] = 5, - ACTIONS(6853), 1, + [130160] = 6, + ACTIONS(6554), 1, anon_sym_AMP, - ACTIONS(6855), 1, + ACTIONS(6556), 1, anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(6558), 1, anon_sym_extends, + ACTIONS(6933), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6739), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130107] = 4, - ACTIONS(6921), 1, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [130184] = 9, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5991), 1, + anon_sym_LT, + STATE(4436), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3918), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6745), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [130127] = 4, - ACTIONS(6847), 1, - anon_sym_LBRACK, + STATE(1757), 2, + sym_template_string, + sym_arguments, + [130214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4216), 5, + ACTIONS(4404), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130147] = 3, - ACTIONS(6923), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, + [130230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 8, + ACTIONS(4408), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242526,145 +242655,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [130165] = 3, - ACTIONS(6847), 1, - anon_sym_LBRACK, + anon_sym_extends, + [130246] = 5, + ACTIONS(6807), 1, + anon_sym_AMP, + ACTIONS(6809), 1, + anon_sym_PIPE, + ACTIONS(6811), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 8, + ACTIONS(4422), 6, 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, - [130183] = 2, + anon_sym_LBRACK, + [130268] = 4, + ACTIONS(6845), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 9, + ACTIONS(4344), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4426), 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, - [130199] = 8, - ACTIONS(6397), 1, + [130288] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6925), 1, + ACTIONS(6935), 1, anon_sym_BANG, - ACTIONS(6927), 1, + ACTIONS(6937), 1, anon_sym_QMARK, - STATE(3912), 1, + STATE(4243), 1, sym_type_annotation, - STATE(4866), 1, + STATE(4870), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130227] = 8, - ACTIONS(6397), 1, + [130316] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6929), 1, + ACTIONS(6939), 1, anon_sym_BANG, - ACTIONS(6931), 1, + ACTIONS(6941), 1, anon_sym_QMARK, - STATE(4132), 1, + STATE(3958), 1, sym_type_annotation, - STATE(4634), 1, + STATE(4717), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130255] = 10, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6933), 1, - anon_sym_DOT, - STATE(1581), 1, - sym_arguments, - STATE(1705), 1, - sym_template_string, - STATE(4410), 1, - sym_type_arguments, - STATE(5395), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130287] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6733), 1, + [130344] = 7, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2507), 1, - sym_class_body, - STATE(3568), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5505), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + ACTIONS(6783), 1, + anon_sym_DQUOTE, + ACTIONS(6785), 1, + anon_sym_SQUOTE, + ACTIONS(6787), 1, + anon_sym_LT, + STATE(2997), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130319] = 9, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, - anon_sym_DOT, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5964), 1, - anon_sym_LT, - STATE(4410), 1, - sym_type_arguments, - STATE(5395), 1, - sym_optional_chain, + STATE(4238), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [130370] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(6767), 1, + sym_identifier, + ACTIONS(6943), 1, + anon_sym_RBRACE, + STATE(5415), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1705), 2, - sym_template_string, - sym_arguments, - [130349] = 2, + ACTIONS(6769), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5022), 2, + sym__module_export_name, + sym_string, + [130398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2329), 9, + ACTIONS(2323), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242674,31 +242782,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130365] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6935), 1, - anon_sym_BANG, - ACTIONS(6937), 1, - anon_sym_QMARK, - STATE(4087), 1, - sym_type_annotation, - STATE(5066), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130393] = 2, + [130414] = 3, + ACTIONS(6945), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 9, + ACTIONS(4430), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242707,321 +242797,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [130409] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2089), 1, - sym_arguments, - STATE(2250), 1, - sym_template_string, - STATE(3220), 1, - sym_type_arguments, - STATE(5487), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130441] = 2, + [130432] = 8, + ACTIONS(6947), 1, + sym_identifier, + ACTIONS(6950), 1, + anon_sym_LBRACE, + ACTIONS(6955), 1, + sym_jsx_identifier, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6939), 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, - [130457] = 2, + ACTIONS(6953), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130460] = 3, + ACTIONS(6845), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 9, + ACTIONS(4436), 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, anon_sym_extends, - [130473] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6941), 1, - anon_sym_LBRACE, - STATE(830), 1, - sym_class_body, - STATE(3541), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5450), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130505] = 9, + [130478] = 9, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(6697), 1, + ACTIONS(6701), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6703), 1, anon_sym_type, - ACTIONS(6705), 1, + ACTIONS(6709), 1, anon_sym_typeof, - STATE(5386), 1, + STATE(5185), 1, sym_import_specifier, - STATE(5423), 1, + STATE(5188), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5687), 2, + STATE(5579), 2, sym__module_export_name, sym_string, - [130535] = 7, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6779), 1, - anon_sym_DQUOTE, - ACTIONS(6781), 1, - anon_sym_SQUOTE, - ACTIONS(6783), 1, + [130508] = 10, + ACTIONS(2581), 1, anon_sym_LT, - STATE(3030), 1, - sym_jsx_opening_element, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2267), 1, + sym_class_body, + STATE(3523), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5476), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4197), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [130561] = 9, - ACTIONS(6248), 1, - sym_identifier, + [130540] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, ACTIONS(6265), 1, - anon_sym_SLASH_GT, - ACTIONS(6586), 1, + sym_jsx_identifier, + ACTIONS(6789), 1, anon_sym_GT, - STATE(3326), 1, + ACTIONS(6958), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [130591] = 5, - ACTIONS(6301), 1, - anon_sym_DOT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - STATE(2846), 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, - [130613] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4264), 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, - [130629] = 10, - ACTIONS(2577), 1, + [130570] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6907), 1, + ACTIONS(6960), 1, anon_sym_LBRACE, - STATE(244), 1, + STATE(233), 1, sym_class_body, - STATE(3509), 1, + STATE(3698), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5355), 1, + STATE(5387), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130661] = 2, + [130602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6962), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130677] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6719), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [130618] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2249), 1, - sym_class_body, - STATE(3639), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5293), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130709] = 2, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6574), 1, + anon_sym_GT, + ACTIONS(6576), 1, + anon_sym_SLASH_GT, + STATE(3289), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130648] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130725] = 2, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6793), 1, + anon_sym_GT, + ACTIONS(6964), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 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, - [130741] = 7, - ACTIONS(6397), 1, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130678] = 7, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4367), 1, + STATE(4163), 1, sym_type_annotation, - STATE(5099), 1, + STATE(4725), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6411), 2, + ACTIONS(6461), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6409), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130767] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6945), 1, - anon_sym_BANG, - ACTIONS(6947), 1, - anon_sym_QMARK, - STATE(4206), 1, - sym_type_annotation, - STATE(4803), 1, - sym__initializer, + [130704] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2206), 1, + sym_class_body, + STATE(3549), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5413), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6943), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130795] = 8, - ACTIONS(6397), 1, + [130736] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6574), 1, + anon_sym_GT, + ACTIONS(6596), 1, + anon_sym_SLASH_GT, + STATE(3432), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130766] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6823), 1, + anon_sym_GT, + ACTIONS(6966), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130796] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6949), 1, + ACTIONS(6968), 1, anon_sym_BANG, - ACTIONS(6951), 1, + ACTIONS(6970), 1, anon_sym_QMARK, - STATE(4352), 1, + STATE(4413), 1, sym_type_annotation, - STATE(5064), 1, + STATE(5167), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130823] = 2, + [130824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 9, + ACTIONS(4334), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243031,667 +243091,695 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130839] = 9, - ACTIONS(6248), 1, - sym_identifier, + [130840] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6283), 1, + ACTIONS(6269), 1, anon_sym_SLASH_GT, - ACTIONS(6586), 1, + ACTIONS(6574), 1, anon_sym_GT, - STATE(3381), 1, + STATE(3380), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [130869] = 2, + [130870] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(6767), 1, + sym_identifier, + ACTIONS(6972), 1, + anon_sym_RBRACE, + STATE(5415), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6769), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5022), 2, + sym__module_export_name, + sym_string, + [130898] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130885] = 5, - ACTIONS(6853), 1, - anon_sym_AMP, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_extends, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6827), 1, + anon_sym_GT, + ACTIONS(6974), 1, + anon_sym_SLASH_GT, + STATE(3252), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130907] = 10, - ACTIONS(2577), 1, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130928] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6941), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(817), 1, - sym_class_body, - STATE(3508), 1, + STATE(3621), 1, sym_type_parameters, - STATE(5063), 1, + STATE(3943), 1, + sym_class_body, + STATE(5071), 1, sym_extends_clause, - STATE(5182), 1, + STATE(5316), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130939] = 5, - ACTIONS(6853), 1, - anon_sym_AMP, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_extends, + [130960] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4461), 6, + ACTIONS(4015), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [130961] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6811), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(3602), 1, - sym_type_parameters, - STATE(3924), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5294), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + [130976] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6978), 1, + anon_sym_BANG, + ACTIONS(6980), 1, + anon_sym_QMARK, + STATE(4148), 1, + sym_type_annotation, + STATE(4678), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6494), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131004] = 7, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4080), 1, + sym_type_annotation, + STATE(5117), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130993] = 10, - ACTIONS(2577), 1, + ACTIONS(6445), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6443), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131030] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(1778), 1, + STATE(1687), 1, sym_class_body, - STATE(3606), 1, + STATE(3624), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5323), 1, + STATE(5339), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131025] = 5, - ACTIONS(6853), 1, - anon_sym_AMP, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4290), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [131047] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6751), 1, + [131062] = 9, + ACTIONS(6252), 1, sym_identifier, - ACTIONS(6953), 1, - anon_sym_RBRACE, - STATE(5191), 1, - sym_export_specifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6841), 1, + anon_sym_GT, + ACTIONS(6982), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6753), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4783), 2, - sym__module_export_name, - sym_string, - [131075] = 2, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131092] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6273), 1, + anon_sym_SLASH_GT, + ACTIONS(6574), 1, + anon_sym_GT, + STATE(3435), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6955), 9, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131122] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6411), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6984), 1, + anon_sym_BANG, + ACTIONS(6986), 1, anon_sym_QMARK, - [131091] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + STATE(4335), 1, + sym_type_annotation, + STATE(5043), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131150] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(6988), 1, + anon_sym_BANG, + ACTIONS(6990), 1, anon_sym_QMARK, - [131117] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_class_body, - STATE(3619), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5248), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + STATE(4397), 1, + sym_type_annotation, + STATE(5122), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131149] = 7, - ACTIONS(241), 1, + ACTIONS(6449), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + anon_sym_SEMI, + [131178] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6992), 1, + anon_sym_BANG, + ACTIONS(6994), 1, + anon_sym_QMARK, + STATE(4415), 1, + sym_type_annotation, + STATE(5174), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131175] = 9, - ACTIONS(6248), 1, - sym_identifier, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131206] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6785), 1, + ACTIONS(6823), 1, anon_sym_GT, - ACTIONS(6957), 1, + ACTIONS(6996), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [131205] = 9, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6252), 1, - anon_sym_LBRACE, - ACTIONS(6261), 1, - sym_jsx_identifier, - ACTIONS(6789), 1, - anon_sym_GT, - ACTIONS(6959), 1, - anon_sym_SLASH_GT, - STATE(3405), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + [131236] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(6998), 1, + anon_sym_BANG, + ACTIONS(7000), 1, + anon_sym_QMARK, + STATE(3949), 1, + sym_type_annotation, + STATE(5137), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131235] = 8, - ACTIONS(6397), 1, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131264] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6961), 1, + ACTIONS(7002), 1, anon_sym_BANG, - ACTIONS(6963), 1, + ACTIONS(7004), 1, anon_sym_QMARK, - STATE(4386), 1, + STATE(3963), 1, sym_type_annotation, - STATE(5140), 1, + STATE(4715), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131263] = 9, - ACTIONS(6248), 1, - sym_identifier, + [131292] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6793), 1, + ACTIONS(6827), 1, anon_sym_GT, - ACTIONS(6965), 1, + ACTIONS(7006), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3408), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [131293] = 9, - ACTIONS(6248), 1, - sym_identifier, + [131322] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6797), 1, + ACTIONS(6841), 1, anon_sym_GT, - ACTIONS(6967), 1, + ACTIONS(7008), 1, anon_sym_SLASH_GT, - STATE(3406), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [131323] = 9, - ACTIONS(6248), 1, - sym_identifier, + [131352] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6801), 1, + ACTIONS(6849), 1, anon_sym_GT, - ACTIONS(6969), 1, + ACTIONS(7010), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3409), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [131353] = 9, - ACTIONS(6248), 1, + [131382] = 9, + ACTIONS(6252), 1, sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7012), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131412] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6805), 1, + ACTIONS(6861), 1, anon_sym_GT, - ACTIONS(6971), 1, + ACTIONS(7014), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [131383] = 8, - ACTIONS(6397), 1, + [131442] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6973), 1, + ACTIONS(7016), 1, anon_sym_BANG, - ACTIONS(6975), 1, + ACTIONS(7018), 1, anon_sym_QMARK, - STATE(4392), 1, + STATE(4070), 1, sym_type_annotation, - STATE(5151), 1, + STATE(5002), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131411] = 8, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6980), 1, - anon_sym_LBRACE, - ACTIONS(6985), 1, - sym_jsx_identifier, - STATE(3383), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, - sym_jsx_namespace_name, + [131470] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7020), 1, + anon_sym_BANG, + ACTIONS(7022), 1, + anon_sym_QMARK, + STATE(4127), 1, + sym_type_annotation, + STATE(5172), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6983), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(4325), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131439] = 8, - ACTIONS(6397), 1, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131498] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6988), 1, + ACTIONS(7024), 1, anon_sym_BANG, - ACTIONS(6990), 1, + ACTIONS(7026), 1, anon_sym_QMARK, - STATE(4397), 1, + STATE(4161), 1, sym_type_annotation, - STATE(5158), 1, + STATE(4707), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131467] = 10, - ACTIONS(2577), 1, + [131526] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6867), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(3616), 1, + STATE(3640), 1, sym_type_parameters, - STATE(3965), 1, + STATE(3986), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5427), 1, + STATE(5454), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131499] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6992), 1, - anon_sym_BANG, - ACTIONS(6994), 1, - anon_sym_QMARK, - STATE(4399), 1, - sym_type_annotation, - STATE(5159), 1, - sym__initializer, + [131558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(2335), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131527] = 8, - ACTIONS(6397), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131574] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(7028), 1, + anon_sym_SLASH_GT, + STATE(3353), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131604] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(6996), 1, + ACTIONS(7030), 1, anon_sym_BANG, - ACTIONS(6998), 1, + ACTIONS(7032), 1, anon_sym_QMARK, - STATE(4400), 1, + STATE(4388), 1, sym_type_annotation, - STATE(5162), 1, + STATE(5120), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131555] = 8, - ACTIONS(6397), 1, + [131632] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7000), 1, + ACTIONS(7034), 1, anon_sym_BANG, - ACTIONS(7002), 1, + ACTIONS(7036), 1, anon_sym_QMARK, - STATE(4405), 1, + STATE(4172), 1, sym_type_annotation, - STATE(5175), 1, + STATE(4741), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131583] = 8, - ACTIONS(6397), 1, + [131660] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7004), 1, + ACTIONS(7038), 1, anon_sym_BANG, - ACTIONS(7006), 1, + ACTIONS(7040), 1, anon_sym_QMARK, - STATE(4351), 1, + STATE(4414), 1, sym_type_annotation, - STATE(5060), 1, + STATE(5168), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131611] = 8, - ACTIONS(6397), 1, + [131688] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7008), 1, + ACTIONS(7042), 1, anon_sym_BANG, - ACTIONS(7010), 1, + ACTIONS(7044), 1, anon_sym_QMARK, - STATE(4299), 1, + STATE(4389), 1, sym_type_annotation, - STATE(4908), 1, + STATE(5123), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131639] = 8, - ACTIONS(6397), 1, + [131716] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7012), 1, + ACTIONS(7046), 1, anon_sym_BANG, - ACTIONS(7014), 1, + ACTIONS(7048), 1, anon_sym_QMARK, - STATE(4335), 1, + STATE(4418), 1, sym_type_annotation, - STATE(5017), 1, + STATE(5180), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131667] = 8, - ACTIONS(6397), 1, + [131744] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7016), 1, + ACTIONS(7050), 1, anon_sym_BANG, - ACTIONS(7018), 1, + ACTIONS(7052), 1, anon_sym_QMARK, - STATE(4079), 1, + STATE(3923), 1, sym_type_annotation, - STATE(5041), 1, + STATE(4568), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131695] = 8, - ACTIONS(6397), 1, + [131772] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7020), 1, + ACTIONS(7054), 1, anon_sym_BANG, - ACTIONS(7022), 1, + ACTIONS(7056), 1, anon_sym_QMARK, - STATE(4229), 1, + STATE(4179), 1, sym_type_annotation, - STATE(4861), 1, + STATE(4750), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6943), 3, + ACTIONS(6494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131723] = 10, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(6809), 1, - anon_sym_DOT, - STATE(1581), 1, - sym_arguments, - STATE(1705), 1, - sym_template_string, - STATE(4410), 1, - sym_type_arguments, - STATE(5395), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131755] = 2, + [131800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 9, + ACTIONS(4478), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243701,152 +243789,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131771] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7024), 1, - anon_sym_BANG, - ACTIONS(7026), 1, - anon_sym_QMARK, - STATE(4321), 1, - sym_type_annotation, - STATE(5013), 1, - sym__initializer, + [131816] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6865), 1, + anon_sym_DOT, + STATE(1603), 1, + sym_arguments, + STATE(1757), 1, + sym_template_string, + STATE(4436), 1, + sym_type_arguments, + STATE(5393), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131799] = 8, - ACTIONS(6397), 1, + [131848] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7058), 1, anon_sym_BANG, - ACTIONS(7030), 1, + ACTIONS(7060), 1, anon_sym_QMARK, - STATE(4349), 1, + STATE(4181), 1, sym_type_annotation, - STATE(5039), 1, + STATE(4755), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, + ACTIONS(6494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131827] = 8, - ACTIONS(6397), 1, + [131876] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(6405), 1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7032), 1, - anon_sym_BANG, - ACTIONS(7034), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4374), 1, - sym_type_annotation, - STATE(5097), 1, - sym__initializer, + [131902] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(717), 1, + sym_class_body, + STATE(3709), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5432), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131855] = 3, - ACTIONS(6853), 1, - anon_sym_AMP, + [131934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 8, + ACTIONS(4486), 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, - [131873] = 10, - ACTIONS(2577), 1, + [131950] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6719), 1, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(2219), 1, + STATE(2135), 1, sym_class_body, - STATE(3621), 1, + STATE(3650), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5490), 1, + STATE(5497), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131905] = 10, - ACTIONS(2577), 1, + [131982] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6867), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(3623), 1, + STATE(3653), 1, sym_type_parameters, - STATE(3993), 1, + STATE(4007), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5498), 1, + STATE(5513), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131937] = 10, - ACTIONS(2577), 1, + [132014] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7062), 1, + anon_sym_BANG, + ACTIONS(7064), 1, + anon_sym_QMARK, + STATE(4187), 1, + sym_type_annotation, + STATE(4765), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6494), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132042] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(1666), 1, + STATE(1715), 1, sym_class_body, - STATE(3624), 1, + STATE(3654), 1, sym_type_parameters, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5189), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131969] = 2, + [132074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 9, + ACTIONS(4494), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243856,145 +243986,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131985] = 8, - ACTIONS(6397), 1, + [132090] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4498), 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, + [132106] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(7066), 1, + anon_sym_SLASH_GT, + STATE(3253), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132136] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7036), 1, + ACTIONS(7068), 1, anon_sym_BANG, - ACTIONS(7038), 1, + ACTIONS(7070), 1, anon_sym_QMARK, - STATE(4389), 1, + STATE(4194), 1, sym_type_annotation, - STATE(5148), 1, + STATE(4782), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132013] = 9, - ACTIONS(6248), 1, - sym_identifier, + [132164] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6815), 1, + ACTIONS(6789), 1, anon_sym_GT, - ACTIONS(7040), 1, + ACTIONS(7072), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [132043] = 9, - ACTIONS(6248), 1, - sym_identifier, + [132194] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6819), 1, + ACTIONS(6793), 1, anon_sym_GT, - ACTIONS(7042), 1, + ACTIONS(7074), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [132073] = 10, - ACTIONS(829), 1, + [132224] = 10, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3961), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4071), 1, + ACTIONS(6246), 1, + anon_sym_LT, + STATE(2081), 1, + sym_arguments, + STATE(2133), 1, + sym_template_string, + STATE(3236), 1, + sym_type_arguments, + STATE(5183), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132256] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_DOT, + ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(6242), 1, + ACTIONS(6246), 1, anon_sym_LT, - STATE(1591), 1, + STATE(1593), 1, sym_arguments, - STATE(1705), 1, + STATE(1757), 1, sym_template_string, - STATE(2958), 1, + STATE(2988), 1, sym_type_arguments, - STATE(5395), 1, + STATE(5393), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132105] = 2, + [132288] = 7, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4338), 1, + sym_type_annotation, + STATE(5046), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6504), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132314] = 8, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7076), 1, + anon_sym_BANG, + ACTIONS(7078), 1, + anon_sym_QMARK, + STATE(3964), 1, + sym_type_annotation, + STATE(4827), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 9, + ACTIONS(6415), 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, - [132121] = 10, - ACTIONS(2577), 1, + [132342] = 10, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6867), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(3634), 1, + STATE(3662), 1, sym_type_parameters, - STATE(4045), 1, + STATE(4073), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5246), 1, + STATE(5231), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132153] = 2, + [132374] = 4, + ACTIONS(6915), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7044), 9, - anon_sym_EQ, + STATE(3936), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6753), 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, - [132169] = 2, + anon_sym_SEMI, + [132394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2325), 9, + ACTIONS(4502), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244004,309 +244218,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132185] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2227), 1, - sym_class_body, - STATE(3515), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5372), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + [132410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132217] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4534), 1, - anon_sym_DOT, - ACTIONS(5964), 1, - anon_sym_LT, - STATE(4519), 1, - sym_type_arguments, - STATE(5487), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(2250), 2, - sym_template_string, - sym_arguments, - [132247] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7046), 1, - anon_sym_BANG, - ACTIONS(7048), 1, - anon_sym_QMARK, - STATE(4378), 1, - sym_type_annotation, - STATE(5116), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6433), 3, + ACTIONS(4506), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132275] = 4, - ACTIONS(6921), 1, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132426] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7080), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4343), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6775), 5, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132456] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132295] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [132321] = 8, - ACTIONS(6397), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132472] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7050), 1, + ACTIONS(7082), 1, anon_sym_BANG, - ACTIONS(7052), 1, + ACTIONS(7084), 1, anon_sym_QMARK, - STATE(4103), 1, + STATE(4400), 1, sym_type_annotation, - STATE(5166), 1, + STATE(5138), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132349] = 7, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4009), 1, - sym_type_annotation, - STATE(4672), 1, - sym__initializer, + [132500] = 5, + ACTIONS(6807), 1, + anon_sym_AMP, + ACTIONS(6809), 1, + anon_sym_PIPE, + ACTIONS(6811), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6508), 3, + ACTIONS(4106), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132375] = 7, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4008), 1, - sym_type_annotation, - STATE(4667), 1, - sym__initializer, + anon_sym_LBRACK, + [132522] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_class_body, + STATE(3545), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5194), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7056), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7054), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132401] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5164), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, - STATE(5160), 1, - aux_sym_object_repeat1, + [132554] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, + ACTIONS(7086), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [132427] = 2, + [132570] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7088), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132600] = 5, + ACTIONS(6807), 1, anon_sym_AMP, + ACTIONS(6809), 1, anon_sym_PIPE, + ACTIONS(6811), 1, anon_sym_extends, - [132443] = 7, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(5964), 1, - anon_sym_LT, - ACTIONS(7058), 1, - anon_sym_DOT, - STATE(1243), 1, - sym_arguments, - STATE(5413), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3450), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [132469] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 9, + ACTIONS(4358), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + [132622] = 5, + ACTIONS(6807), 1, anon_sym_AMP, + ACTIONS(6809), 1, anon_sym_PIPE, + ACTIONS(6811), 1, anon_sym_extends, - [132485] = 7, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4122), 1, - sym_type_annotation, - STATE(4621), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6504), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6502), 3, + ACTIONS(4362), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132511] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7060), 1, - anon_sym_BANG, - ACTIONS(7062), 1, - anon_sym_QMARK, - STATE(4137), 1, - sym_type_annotation, - STATE(4652), 1, - sym__initializer, + anon_sym_LBRACK, + [132644] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4132), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132539] = 5, - ACTIONS(6853), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6855), 1, anon_sym_PIPE, - ACTIONS(6857), 1, anon_sym_extends, + [132660] = 3, + ACTIONS(6807), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 6, + ACTIONS(4136), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [132561] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7064), 1, - anon_sym_BANG, - ACTIONS(7066), 1, - anon_sym_QMARK, - STATE(4404), 1, - sym_type_annotation, - STATE(5163), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132589] = 2, + anon_sym_PIPE, + anon_sym_extends, + [132678] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 9, + ACTIONS(4140), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244316,31 +244438,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132605] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7068), 1, - anon_sym_BANG, - ACTIONS(7070), 1, - anon_sym_QMARK, - STATE(3911), 1, - sym_type_annotation, - STATE(4819), 1, - sym__initializer, + [132694] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6823), 1, + anon_sym_GT, + ACTIONS(7090), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132633] = 2, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 9, + ACTIONS(4472), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244350,28 +244473,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132649] = 5, - ACTIONS(6853), 1, - anon_sym_AMP, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_extends, + [132740] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(7092), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132770] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6960), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132671] = 2, + STATE(240), 1, + sym_class_body, + STATE(3671), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5400), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4128), 9, + [132802] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2319), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244381,11 +244530,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132687] = 2, + [132818] = 9, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(7094), 1, + anon_sym_SLASH_GT, + STATE(3345), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3826), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4391), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132848] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(7096), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_class_body, + STATE(3531), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5343), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132880] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_repeat1, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [132906] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7098), 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, + [132922] = 10, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(7096), 1, + anon_sym_LBRACE, + STATE(824), 1, + sym_class_body, + STATE(3720), 1, + sym_type_parameters, + STATE(5071), 1, + sym_extends_clause, + STATE(5258), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132954] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 9, + ACTIONS(4183), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244395,805 +244642,640 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132703] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, + [132970] = 7, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7072), 1, - anon_sym_BANG, - ACTIONS(7074), 1, - anon_sym_QMARK, - STATE(4176), 1, - sym_type_annotation, - STATE(4745), 1, + ACTIONS(6779), 1, + anon_sym_EQ, + STATE(4144), 1, sym__initializer, + STATE(4267), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6719), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132731] = 8, - ACTIONS(6397), 1, + [132996] = 7, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7076), 1, - anon_sym_BANG, - ACTIONS(7078), 1, - anon_sym_QMARK, - STATE(4066), 1, + STATE(4267), 1, sym_type_annotation, - STATE(5006), 1, + STATE(4926), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6719), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132759] = 8, - ACTIONS(6397), 1, + [133022] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7080), 1, + ACTIONS(7100), 1, anon_sym_BANG, - ACTIONS(7082), 1, + ACTIONS(7102), 1, anon_sym_QMARK, - STATE(4228), 1, + STATE(3966), 1, sym_type_annotation, STATE(4860), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132787] = 8, - ACTIONS(6397), 1, + [133050] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7084), 1, - anon_sym_BANG, - ACTIONS(7086), 1, - anon_sym_QMARK, - STATE(4284), 1, - sym_type_annotation, - STATE(4915), 1, - sym__initializer, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132815] = 10, - ACTIONS(89), 1, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [133076] = 10, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4071), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(5964), 1, + ACTIONS(4059), 1, + anon_sym_QMARK_DOT, + ACTIONS(5991), 1, anon_sym_LT, - ACTIONS(7088), 1, + ACTIONS(7104), 1, anon_sym_DOT, - STATE(2043), 1, - sym_arguments, - STATE(2250), 1, + STATE(1757), 1, sym_template_string, - STATE(4519), 1, + STATE(1815), 1, + sym_arguments, + STATE(4436), 1, sym_type_arguments, - STATE(5487), 1, + STATE(5393), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132847] = 8, - ACTIONS(6397), 1, + [133108] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7106), 1, anon_sym_BANG, - ACTIONS(7092), 1, + ACTIONS(7108), 1, anon_sym_QMARK, - STATE(4301), 1, + STATE(3969), 1, sym_type_annotation, - STATE(4985), 1, + STATE(4902), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132875] = 8, - ACTIONS(6397), 1, + [133136] = 8, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7094), 1, + ACTIONS(7110), 1, anon_sym_BANG, - ACTIONS(7096), 1, + ACTIONS(7112), 1, anon_sym_QMARK, - STATE(4322), 1, + STATE(3972), 1, sym_type_annotation, - STATE(5015), 1, + STATE(4974), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, + ACTIONS(6415), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132903] = 9, - ACTIONS(6248), 1, - sym_identifier, + [133164] = 9, ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6265), 1, sym_jsx_identifier, - ACTIONS(6815), 1, + ACTIONS(6841), 1, anon_sym_GT, - ACTIONS(7098), 1, + ACTIONS(7114), 1, anon_sym_SLASH_GT, - STATE(3383), 1, + STATE(3345), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3883), 1, + STATE(3826), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 2, + STATE(4391), 2, sym_jsx_expression, sym_jsx_attribute, - [132933] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2137), 1, - sym_class_body, - STATE(3637), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5485), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132965] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_BANG, - ACTIONS(7102), 1, - anon_sym_QMARK, - STATE(4330), 1, - sym_type_annotation, - STATE(5027), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132993] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7104), 1, - anon_sym_BANG, - ACTIONS(7106), 1, - anon_sym_QMARK, - STATE(4332), 1, - sym_type_annotation, - STATE(5032), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133021] = 8, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7108), 1, - anon_sym_BANG, - ACTIONS(7110), 1, - anon_sym_QMARK, - STATE(4339), 1, - sym_type_annotation, - STATE(5044), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133049] = 10, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2292), 1, - sym_class_body, - STATE(3560), 1, - sym_type_parameters, - STATE(5063), 1, - sym_extends_clause, - STATE(5468), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133081] = 6, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, - anon_sym_PLUS_QMARK_COLON, + [133194] = 9, ACTIONS(7116), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4182), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133104] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3125), 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, - [133119] = 9, - ACTIONS(7118), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(7118), 1, anon_sym_const, - ACTIONS(7122), 1, + ACTIONS(7120), 1, anon_sym_GT, - ACTIONS(7124), 1, + ACTIONS(7122), 1, sym_jsx_identifier, - ACTIONS(7126), 1, + ACTIONS(7124), 1, anon_sym_SLASH_GT, - STATE(3086), 1, + STATE(3100), 1, sym_nested_identifier, - STATE(3362), 1, + STATE(3369), 1, sym_jsx_namespace_name, - STATE(5076), 1, + STATE(4744), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133148] = 9, - ACTIONS(133), 1, - anon_sym_import, + [133223] = 7, + ACTIONS(7126), 1, + sym_escape_sequence, ACTIONS(7128), 1, - sym_identifier, + anon_sym_BQUOTE, ACTIONS(7130), 1, - sym_this, - STATE(2821), 1, - sym__type_query_member_expression, - STATE(2826), 1, - sym__type_query_subscript_expression, - STATE(3005), 1, - sym__type_query_call_expression, - STATE(3168), 1, - sym__type_query_instantiation_expression, - STATE(4539), 1, - sym_import, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7132), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133177] = 6, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, - anon_sym_QMARK_COLON, + STATE(3783), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4347), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133248] = 7, + ACTIONS(3335), 1, + sym_identifier, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7134), 1, + anon_sym_enum, + STATE(4442), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3975), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133200] = 6, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, - anon_sym_QMARK_COLON, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [133273] = 9, + ACTIONS(7118), 1, + anon_sym_const, + ACTIONS(7120), 1, + anon_sym_GT, + ACTIONS(7136), 1, + sym_identifier, + ACTIONS(7138), 1, + sym_jsx_identifier, + ACTIONS(7140), 1, + anon_sym_SLASH_GT, + STATE(3099), 1, + sym_nested_identifier, + STATE(3360), 1, + sym_jsx_namespace_name, + STATE(4744), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4004), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133223] = 6, - ACTIONS(6405), 1, + [133302] = 7, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3976), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + ACTIONS(6717), 1, + anon_sym_BANG, + STATE(4267), 1, sym_type_annotation, - [133246] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6687), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_extends, + STATE(4918), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7132), 5, + ACTIONS(6715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133267] = 5, - ACTIONS(6685), 1, + [133327] = 5, + ACTIONS(6807), 1, anon_sym_AMP, - ACTIONS(6687), 1, + ACTIONS(6809), 1, anon_sym_PIPE, - ACTIONS(6689), 1, + ACTIONS(6811), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7134), 5, + ACTIONS(6739), 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, - [133288] = 5, - ACTIONS(6685), 1, + [133348] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(6767), 1, + sym_identifier, + STATE(5415), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6769), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5022), 2, + sym__module_export_name, + sym_string, + [133373] = 5, + ACTIONS(6691), 1, anon_sym_AMP, - ACTIONS(6687), 1, + ACTIONS(6693), 1, anon_sym_PIPE, - ACTIONS(6689), 1, + ACTIONS(6695), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7136), 5, + ACTIONS(7142), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133309] = 6, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3978), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133332] = 6, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4005), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133355] = 3, - ACTIONS(6695), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4015), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [133372] = 6, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, - anon_sym_QMARK_COLON, + [133394] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7144), 1, + sym_identifier, + ACTIONS(7146), 1, + sym_this, + STATE(2782), 1, + sym__type_query_member_expression, + STATE(2783), 1, + sym__type_query_subscript_expression, + STATE(2833), 1, + sym__type_query_call_expression, + STATE(2905), 1, + sym__type_query_instantiation_expression, + STATE(4450), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4256), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133395] = 7, - ACTIONS(7138), 1, - sym_escape_sequence, - ACTIONS(7140), 1, - anon_sym_BQUOTE, - ACTIONS(7142), 1, + [133423] = 7, + ACTIONS(7130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, + ACTIONS(7132), 1, sym__template_chars, + ACTIONS(7148), 1, + sym_escape_sequence, + ACTIONS(7150), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3891), 2, + STATE(3858), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4296), 2, + STATE(4347), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [133420] = 9, - ACTIONS(7120), 1, - anon_sym_const, - ACTIONS(7122), 1, - anon_sym_GT, - ACTIONS(7146), 1, - sym_identifier, - ACTIONS(7148), 1, - sym_jsx_identifier, - ACTIONS(7150), 1, - anon_sym_SLASH_GT, - STATE(3111), 1, - sym_nested_identifier, - STATE(3350), 1, - sym_jsx_namespace_name, - STATE(5076), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133449] = 5, + [133448] = 9, + ACTIONS(133), 1, + anon_sym_import, ACTIONS(7152), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(7154), 1, - anon_sym_DOT, - STATE(4331), 1, - sym_statement_block, + sym_this, + STATE(2863), 1, + sym__type_query_member_expression, + STATE(2864), 1, + sym__type_query_subscript_expression, + STATE(3156), 1, + sym__type_query_call_expression, + STATE(3325), 1, + sym__type_query_instantiation_expression, + STATE(4524), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133470] = 7, - ACTIONS(7138), 1, + [133477] = 7, + ACTIONS(7126), 1, sym_escape_sequence, - ACTIONS(7142), 1, + ACTIONS(7130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, + ACTIONS(7132), 1, sym__template_chars, ACTIONS(7156), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3891), 2, + STATE(3783), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4296), 2, + STATE(4347), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [133495] = 7, - ACTIONS(7138), 1, - sym_escape_sequence, - ACTIONS(7142), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, - sym__template_chars, + [133502] = 9, + ACTIONS(133), 1, + anon_sym_import, ACTIONS(7158), 1, - anon_sym_BQUOTE, + sym_identifier, + ACTIONS(7160), 1, + sym_this, + STATE(2832), 1, + sym__type_query_member_expression, + STATE(2839), 1, + sym__type_query_subscript_expression, + STATE(3005), 1, + sym__type_query_call_expression, + STATE(3155), 1, + sym__type_query_instantiation_expression, + STATE(4543), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3891), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133520] = 6, - ACTIONS(6405), 1, + [133531] = 6, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7112), 1, + ACTIONS(7162), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, + ACTIONS(7164), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, + ACTIONS(7166), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4368), 4, + STATE(4372), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133543] = 9, + [133554] = 9, ACTIONS(133), 1, anon_sym_import, - ACTIONS(7160), 1, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(7162), 1, + ACTIONS(7170), 1, sym_this, - STATE(1430), 1, + STATE(1692), 1, sym__type_query_member_expression, - STATE(1434), 1, + STATE(1693), 1, sym__type_query_subscript_expression, - STATE(1486), 1, + STATE(1985), 1, sym__type_query_call_expression, - STATE(1487), 1, + STATE(1987), 1, sym__type_query_instantiation_expression, - STATE(4461), 1, + STATE(4495), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133572] = 7, - ACTIONS(7138), 1, - sym_escape_sequence, - ACTIONS(7142), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, - sym__template_chars, - ACTIONS(7164), 1, - anon_sym_BQUOTE, + [133583] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3891), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4104), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133597] = 7, - ACTIONS(3329), 1, + ACTIONS(1799), 2, + anon_sym_while, sym_identifier, - ACTIONS(3331), 1, + ACTIONS(1797), 6, anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7166), 1, - anon_sym_enum, - STATE(4409), 1, - sym_variable_declarator, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [133600] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [133622] = 9, + ACTIONS(1857), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1855), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [133617] = 9, ACTIONS(133), 1, anon_sym_import, - ACTIONS(7168), 1, + ACTIONS(7172), 1, sym_identifier, - ACTIONS(7170), 1, + ACTIONS(7174), 1, sym_this, - STATE(2780), 1, - sym__type_query_subscript_expression, - STATE(2782), 1, + STATE(1431), 1, sym__type_query_member_expression, - STATE(2830), 1, + STATE(1432), 1, + sym__type_query_subscript_expression, + STATE(1576), 1, sym__type_query_call_expression, - STATE(2947), 1, + STATE(1577), 1, sym__type_query_instantiation_expression, - STATE(4518), 1, + STATE(4478), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133651] = 7, - ACTIONS(7142), 1, + [133646] = 7, + ACTIONS(7130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, + ACTIONS(7132), 1, sym__template_chars, - ACTIONS(7172), 1, + ACTIONS(7148), 1, sym_escape_sequence, - ACTIONS(7174), 1, + ACTIONS(7176), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3812), 2, + STATE(3858), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4296), 2, + STATE(4347), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [133676] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7176), 1, - sym_identifier, - ACTIONS(7178), 1, - sym_this, - STATE(2871), 1, - sym__type_query_member_expression, - STATE(2873), 1, - sym__type_query_subscript_expression, - STATE(3183), 1, - sym__type_query_call_expression, - STATE(3322), 1, - sym__type_query_instantiation_expression, - STATE(4510), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133705] = 7, - ACTIONS(7142), 1, + [133671] = 7, + ACTIONS(7126), 1, + sym_escape_sequence, + ACTIONS(7130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, + ACTIONS(7132), 1, sym__template_chars, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7180), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3812), 2, + STATE(3783), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4296), 2, + STATE(4347), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [133730] = 9, - ACTIONS(133), 1, - anon_sym_import, + [133696] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6693), 1, + anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7180), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133717] = 3, + ACTIONS(6711), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [133734] = 3, + ACTIONS(6711), 1, + anon_sym_is, + 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, + [133751] = 3, ACTIONS(7182), 1, - sym_identifier, - ACTIONS(7184), 1, - sym_this, - STATE(1780), 1, - sym__type_query_member_expression, - STATE(1782), 1, - sym__type_query_subscript_expression, - STATE(1913), 1, - sym__type_query_call_expression, - STATE(1914), 1, - sym__type_query_instantiation_expression, - STATE(4523), 1, - sym_import, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133759] = 7, - ACTIONS(7138), 1, - sym_escape_sequence, - ACTIONS(7142), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, - sym__template_chars, - ACTIONS(7186), 1, - anon_sym_BQUOTE, + ACTIONS(4027), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [133768] = 6, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7164), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7166), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3891), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133784] = 5, - ACTIONS(6853), 1, + STATE(4081), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133791] = 6, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7164), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7166), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4082), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133814] = 5, + ACTIONS(6691), 1, anon_sym_AMP, - ACTIONS(6855), 1, + ACTIONS(6693), 1, anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(6695), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6767), 5, + ACTIONS(7184), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [133805] = 2, + anon_sym_PIPE_RBRACE, + [133835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3129), 8, + ACTIONS(3133), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -245202,272 +245284,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133820] = 7, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - ACTIONS(6713), 1, - anon_sym_BANG, - STATE(4180), 1, - sym_type_annotation, - STATE(4742), 1, - sym__initializer, + [133850] = 7, + ACTIONS(7126), 1, + sym_escape_sequence, + ACTIONS(7130), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7132), 1, + sym__template_chars, + ACTIONS(7186), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133845] = 7, - ACTIONS(7138), 1, + STATE(3783), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4347), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133875] = 7, + ACTIONS(7126), 1, sym_escape_sequence, - ACTIONS(7142), 1, + ACTIONS(7130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7144), 1, + ACTIONS(7132), 1, sym__template_chars, ACTIONS(7188), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3891), 2, + STATE(3783), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4296), 2, + STATE(4347), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [133870] = 3, + [133900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1760), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1758), 6, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, + ACTIONS(3125), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - [133887] = 5, - ACTIONS(7152), 1, - anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133915] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3129), 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, + [133930] = 6, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7164), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7166), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4301), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133953] = 5, ACTIONS(7190), 1, + anon_sym_LBRACE, + ACTIONS(7192), 1, anon_sym_DOT, - STATE(4331), 1, + STATE(4349), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 5, + ACTIONS(1712), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133908] = 3, + [133974] = 5, + ACTIONS(7190), 1, + anon_sym_LBRACE, + ACTIONS(7194), 1, + anon_sym_DOT, + STATE(4349), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1774), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1772), 6, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - [133925] = 7, - ACTIONS(3329), 1, - sym_identifier, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7192), 1, - anon_sym_enum, - STATE(4414), 1, - sym_variable_declarator, + ACTIONS(1712), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133995] = 6, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7164), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7166), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [133950] = 2, + STATE(4223), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134018] = 6, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7164), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7166), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 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, - [133965] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6751), 1, - sym_identifier, - STATE(5191), 1, - sym_export_specifier, + STATE(4226), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134041] = 7, + ACTIONS(7126), 1, + sym_escape_sequence, + ACTIONS(7130), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7132), 1, + sym__template_chars, + ACTIONS(7196), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6753), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4783), 2, - sym__module_export_name, - sym_string, - [133990] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7170), 1, - sym_this, - ACTIONS(7194), 1, - sym_identifier, - STATE(2830), 1, - sym__type_query_call_expression, - STATE(2947), 1, - sym__type_query_instantiation_expression, - STATE(3087), 1, - sym__type_query_member_expression, - STATE(3089), 1, - sym__type_query_subscript_expression, - STATE(4521), 1, - sym_import, + STATE(3783), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4110), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134066] = 6, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7164), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7166), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134019] = 3, - ACTIONS(6695), 1, - anon_sym_is, + STATE(4221), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134089] = 7, + ACTIONS(3335), 1, + sym_identifier, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7198), 1, + anon_sym_enum, + STATE(4506), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134036] = 3, - ACTIONS(7196), 1, - anon_sym_is, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134114] = 6, + ACTIONS(6411), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7164), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7166), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134053] = 6, - ACTIONS(6405), 1, + STATE(4214), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134137] = 6, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7112), 1, + ACTIONS(7162), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7114), 1, + ACTIONS(7164), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7116), 1, + ACTIONS(7166), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4184), 4, + STATE(4217), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134076] = 6, - ACTIONS(6397), 1, + [134160] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7146), 1, + sym_this, + ACTIONS(7200), 1, + sym_identifier, + STATE(2833), 1, + sym__type_query_call_expression, + STATE(2905), 1, + sym__type_query_instantiation_expression, + STATE(3127), 1, + sym__type_query_member_expression, + STATE(3131), 1, + sym__type_query_subscript_expression, + STATE(4517), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134189] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4067), 1, + STATE(4118), 1, sym_type_annotation, - STATE(5008), 1, + STATE(4588), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134098] = 6, - ACTIONS(6397), 1, + [134211] = 7, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(7202), 1, + anon_sym_EQ, + ACTIONS(7206), 1, + anon_sym_QMARK, + STATE(4510), 1, + sym_type_annotation, + STATE(5453), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [134235] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4347), 1, + STATE(4291), 1, sym_type_annotation, - STATE(5049), 1, + STATE(4960), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134120] = 6, - ACTIONS(3331), 1, + [134257] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7198), 1, - sym_identifier, - STATE(4553), 1, - sym_variable_declarator, + STATE(5345), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3307), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134142] = 6, - ACTIONS(6397), 1, + ACTIONS(7208), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134275] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4260), 1, + STATE(4249), 1, sym_type_annotation, - STATE(4921), 1, + STATE(4881), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6636), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134164] = 6, - ACTIONS(6397), 1, + [134297] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7210), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [134311] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4380), 1, + STATE(3934), 1, sym_type_annotation, - STATE(4555), 1, + STATE(4965), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -245476,694 +245643,976 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134186] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, + [134333] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5360), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 4, + ACTIONS(7212), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [134206] = 3, - ACTIONS(4098), 1, - sym_identifier, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134351] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5364), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - anon_sym_BQUOTE, - [134222] = 6, - ACTIONS(3331), 1, + ACTIONS(7208), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134369] = 6, + ACTIONS(3337), 1, anon_sym_LBRACE, - ACTIONS(3333), 1, + ACTIONS(3339), 1, anon_sym_LBRACK, - ACTIONS(7206), 1, + ACTIONS(7214), 1, sym_identifier, - STATE(4414), 1, + STATE(4452), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3311), 3, + STATE(3441), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [134244] = 4, - ACTIONS(4053), 1, + [134391] = 6, + ACTIONS(6403), 1, anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4253), 1, + sym_type_annotation, + STATE(4894), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5734), 2, + ACTIONS(6628), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3715), 4, - anon_sym_LPAREN, + anon_sym_SEMI, + [134413] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [134262] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5312), 1, - sym_statement_block, + STATE(4254), 1, + sym_type_annotation, + STATE(4899), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(6628), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134435] = 4, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4042), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7216), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134280] = 8, - ACTIONS(6719), 1, + [134453] = 8, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(2156), 1, + STATE(2277), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5199), 1, + STATE(5273), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134306] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5194), 1, - sym_statement_block, + [134479] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4264), 1, + sym_type_annotation, + STATE(4913), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 5, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134324] = 2, + [134501] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7218), 1, + sym_identifier, + ACTIONS(7220), 1, + anon_sym_DOT, + STATE(711), 1, + sym_nested_identifier, + STATE(741), 1, + sym_string, + STATE(825), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [134338] = 6, - ACTIONS(6397), 1, + [134527] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4141), 1, + STATE(4016), 1, sym_type_annotation, - STATE(4660), 1, + STATE(4745), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134360] = 6, - ACTIONS(6397), 1, + [134549] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4358), 1, + STATE(4306), 1, sym_type_annotation, - STATE(5074), 1, + STATE(4973), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134382] = 6, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(5964), 1, - anon_sym_LT, - STATE(2125), 1, - sym_arguments, - STATE(5506), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7214), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [134404] = 2, + [134571] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4139), 1, + sym_type_annotation, + STATE(4643), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6891), 7, + ACTIONS(6648), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [134418] = 6, - ACTIONS(6397), 1, + [134593] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4125), 1, + STATE(4142), 1, sym_type_annotation, - STATE(4611), 1, + STATE(4646), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134440] = 8, - ACTIONS(6811), 1, + [134615] = 8, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6941), 1, - anon_sym_LBRACE, - STATE(751), 1, + STATE(2224), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5415), 1, + STATE(5398), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134466] = 8, - ACTIONS(6811), 1, + [134641] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4373), 1, + sym_type_annotation, + STATE(5091), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6638), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134663] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5477), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [134677] = 8, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6907), 1, - anon_sym_LBRACE, - STATE(247), 1, + STATE(1745), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5259), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134492] = 6, - ACTIONS(6397), 1, + [134703] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4127), 1, + STATE(4145), 1, sym_type_annotation, - STATE(4618), 1, + STATE(4654), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134514] = 6, - ACTIONS(6397), 1, + [134725] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4133), 1, + STATE(4146), 1, sym_type_annotation, - STATE(4636), 1, + STATE(4657), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134536] = 5, - ACTIONS(6584), 1, + [134747] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - ACTIONS(7216), 1, + STATE(3959), 1, + sym_type_annotation, + STATE(4757), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6638), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134769] = 6, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7218), 1, - anon_sym_EQ, + STATE(4506), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 4, + STATE(3442), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134791] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [134556] = 6, - ACTIONS(6397), 1, + STATE(5533), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7224), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134809] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4135), 1, + STATE(4277), 1, sym_type_annotation, - STATE(4638), 1, + STATE(4917), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134578] = 2, + [134831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 7, + ACTIONS(6962), 7, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [134845] = 8, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2321), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5526), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134871] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, + STATE(5484), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7226), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [134592] = 8, - ACTIONS(6719), 1, + [134889] = 8, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(2247), 1, + STATE(2142), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5213), 1, + STATE(5436), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134618] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6697), 1, + [134915] = 8, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7228), 1, sym_identifier, - ACTIONS(6735), 1, - anon_sym_type, - STATE(5271), 1, - sym__import_identifier, + ACTIONS(7230), 1, + anon_sym_STAR, + STATE(3742), 1, + sym_formal_parameters, + STATE(5281), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5885), 2, - sym__module_export_name, - sym_string, - [134642] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4292), 1, - sym_type_annotation, - STATE(4978), 1, - sym__initializer, + [134941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(4987), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [134664] = 8, - ACTIONS(6733), 1, + anon_sym_COLON, + [134955] = 8, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(7232), 1, + sym_identifier, + ACTIONS(7234), 1, + anon_sym_DOT, + STATE(3483), 1, + sym_nested_identifier, + STATE(3697), 1, + sym_string, + STATE(4370), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134981] = 8, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1586), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(7236), 1, + anon_sym_LT, + ACTIONS(7238), 1, + anon_sym_extends, + STATE(3921), 1, + sym_object_type, + STATE(3995), 1, + sym_type_parameters, + STATE(4647), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135007] = 8, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7240), 1, + sym_identifier, + ACTIONS(7242), 1, + anon_sym_STAR, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5441), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135033] = 8, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(2509), 1, + ACTIONS(7096), 1, + anon_sym_LBRACE, + STATE(815), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5200), 1, + STATE(5210), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134690] = 6, - ACTIONS(6397), 1, + [135059] = 8, + ACTIONS(7244), 1, + anon_sym_LBRACE, + ACTIONS(7246), 1, + anon_sym_COMMA, + ACTIONS(7248), 1, + anon_sym_DOT, + ACTIONS(7250), 1, + anon_sym_LT, + ACTIONS(7252), 1, + anon_sym_LBRACE_PIPE, + STATE(4471), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5094), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135085] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3937), 1, + STATE(4197), 1, sym_type_annotation, - STATE(4740), 1, + STATE(5173), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6650), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134712] = 6, - ACTIONS(6397), 1, + [135107] = 6, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_LT, + STATE(1676), 1, + sym_arguments, + STATE(5224), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7254), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [135129] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4188), 1, + STATE(4368), 1, sym_type_annotation, - STATE(4759), 1, + STATE(5085), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134734] = 8, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_STAR, - STATE(3900), 1, - sym_formal_parameters, - STATE(5201), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134760] = 3, - ACTIONS(7230), 1, + [135151] = 4, + ACTIONS(4243), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 6, + ACTIONS(5749), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3743), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [134776] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3938), 1, - sym_type_annotation, - STATE(4758), 1, - sym__initializer, + [135169] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5494), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(7256), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134798] = 6, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [135187] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4144), 1, + STATE(4135), 1, sym_type_annotation, - STATE(4673), 1, + STATE(4631), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134820] = 6, - ACTIONS(6397), 1, + [135209] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4195), 1, + STATE(4136), 1, sym_type_annotation, - STATE(4772), 1, + STATE(4632), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134842] = 6, - ACTIONS(6397), 1, + [135231] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4196), 1, + STATE(4236), 1, sym_type_annotation, - STATE(4774), 1, + STATE(4846), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134864] = 6, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7233), 1, - sym_identifier, - STATE(4414), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134886] = 6, - ACTIONS(3331), 1, + [135253] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7233), 1, - sym_identifier, - STATE(4553), 1, - sym_variable_declarator, + STATE(5504), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134908] = 6, - ACTIONS(6397), 1, + ACTIONS(7258), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135271] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4202), 1, + STATE(4312), 1, sym_type_annotation, - STATE(4790), 1, + STATE(4987), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134930] = 2, + [135293] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5323), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7235), 7, + ACTIONS(7262), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [134944] = 2, + [135311] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4327), 1, + sym_type_annotation, + STATE(5029), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6939), 7, + ACTIONS(6664), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [134958] = 6, - ACTIONS(6397), 1, + [135333] = 8, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5421), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135359] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4204), 1, + STATE(4269), 1, sym_type_annotation, - STATE(4795), 1, + STATE(4930), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134980] = 6, - ACTIONS(6397), 1, + [135381] = 3, + ACTIONS(4332), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4334), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [135397] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4363), 1, + STATE(4149), 1, sym_type_annotation, - STATE(5089), 1, + STATE(4680), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6658), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135002] = 8, - ACTIONS(6733), 1, + [135419] = 8, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(1784), 1, + STATE(2249), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5302), 1, + STATE(5355), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135028] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5363), 1, - sym_statement_block, + [135445] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4045), 1, + sym_type_annotation, + STATE(4896), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6630), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135467] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4150), 1, + sym_type_annotation, + STATE(4684), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6648), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7237), 5, + ACTIONS(7264), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [135046] = 6, - ACTIONS(6397), 1, + [135503] = 6, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7266), 1, + sym_identifier, + STATE(4433), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [135525] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4145), 1, + STATE(4315), 1, sym_type_annotation, - STATE(4674), 1, + STATE(4993), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135068] = 6, - ACTIONS(6397), 1, + [135547] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4146), 1, + STATE(4345), 1, sym_type_annotation, - STATE(4678), 1, + STATE(5045), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135090] = 6, - ACTIONS(6397), 1, + [135569] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4208), 1, + STATE(4152), 1, sym_type_annotation, - STATE(4806), 1, + STATE(4687), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6648), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135591] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4156), 1, + sym_type_annotation, + STATE(4689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6648), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135613] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4356), 1, + sym_type_annotation, + STATE(5064), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135112] = 2, + [135635] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5477), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7239), 7, + ACTIONS(7270), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -246171,173 +246620,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [135126] = 4, - ACTIONS(6405), 1, + [135667] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4308), 1, + STATE(4157), 1, sym_type_annotation, + STATE(4704), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7241), 5, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135144] = 8, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6941), 1, - anon_sym_LBRACE, - STATE(766), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5436), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + [135689] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(3994), 1, + sym_type_annotation, + STATE(4639), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135170] = 6, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7233), 1, - sym_identifier, - STATE(4531), 1, - sym_variable_declarator, + ACTIONS(6638), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [135192] = 6, - ACTIONS(6397), 1, + ACTIONS(7086), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [135725] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4209), 1, + STATE(4272), 1, sym_type_annotation, - STATE(4807), 1, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135214] = 8, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(7243), 1, - sym_identifier, - ACTIONS(7245), 1, - anon_sym_DOT, - STATE(3481), 1, - sym_nested_identifier, - STATE(3632), 1, - sym_string, - STATE(4328), 1, - sym__module, + [135747] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(3971), 1, + sym_type_annotation, + STATE(4833), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135240] = 8, - ACTIONS(1028), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1576), 1, + ACTIONS(6630), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135769] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4019), 1, + sym_type_annotation, + STATE(4719), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6630), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135791] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1797), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7247), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [135805] = 8, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_extends, - STATE(4006), 1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7272), 1, + sym_identifier, + ACTIONS(7274), 1, + anon_sym_STAR, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, sym_type_parameters, - STATE(4391), 1, - sym_object_type, - STATE(4654), 1, - sym_extends_type_clause, + STATE(5442), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135266] = 8, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6907), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5180), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + [135831] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4281), 1, + sym_type_annotation, + STATE(4937), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135292] = 6, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(5964), 1, + ACTIONS(6628), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135853] = 8, + ACTIONS(2581), 1, anon_sym_LT, - STATE(1728), 1, - sym_arguments, - STATE(5235), 1, - sym_type_arguments, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7276), 1, + sym_identifier, + ACTIONS(7278), 1, + anon_sym_STAR, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5441), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [135314] = 6, - ACTIONS(6397), 1, + [135879] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4090), 1, + STATE(4321), 1, sym_type_annotation, - STATE(5094), 1, + STATE(5013), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135336] = 2, + [135901] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5384), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1758), 7, + ACTIONS(7268), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [135350] = 2, + [135919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1772), 7, + ACTIONS(1855), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -246345,402 +246818,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [135364] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4210), 1, - sym_type_annotation, - STATE(4810), 1, - sym__initializer, + [135933] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5468), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(7280), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135386] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, + anon_sym_PIPE_RBRACE, + [135951] = 4, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4212), 1, + STATE(4358), 1, sym_type_annotation, - STATE(4814), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(7282), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135408] = 6, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [135969] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4214), 1, + STATE(4322), 1, sym_type_annotation, - STATE(4818), 1, + STATE(5014), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135430] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 7, + [135991] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(6411), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [135444] = 2, + STATE(4162), 1, + sym_type_annotation, + STATE(4711), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4979), 7, + ACTIONS(6630), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [135458] = 6, - ACTIONS(6397), 1, + [136013] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4215), 1, + STATE(4186), 1, sym_type_annotation, - STATE(4820), 1, + STATE(4749), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135480] = 6, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7233), 1, - sym_identifier, - STATE(4409), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [135502] = 6, - ACTIONS(6397), 1, + [136035] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4356), 1, + STATE(4228), 1, sym_type_annotation, - STATE(5072), 1, + STATE(4809), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135524] = 6, - ACTIONS(6397), 1, + [136057] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4382), 1, + STATE(4242), 1, sym_type_annotation, - STATE(5123), 1, + STATE(4841), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135546] = 8, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2132), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5347), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135572] = 6, - ACTIONS(6397), 1, + [136079] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4217), 1, + STATE(3927), 1, sym_type_annotation, - STATE(4829), 1, + STATE(4638), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135594] = 8, - ACTIONS(2577), 1, + [136101] = 8, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7251), 1, + ACTIONS(7284), 1, sym_identifier, - ACTIONS(7253), 1, + ACTIONS(7286), 1, anon_sym_STAR, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5298), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5442), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135620] = 6, - ACTIONS(6397), 1, + [136127] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4147), 1, + STATE(4282), 1, sym_type_annotation, - STATE(4681), 1, + STATE(4939), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135642] = 6, - ACTIONS(6397), 1, + [136149] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4387), 1, + STATE(4166), 1, sym_type_annotation, - STATE(5142), 1, + STATE(4718), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135664] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5350), 1, - sym_statement_block, + [136171] = 3, + ACTIONS(6781), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7255), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135682] = 6, - ACTIONS(6397), 1, + ACTIONS(4041), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [136187] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4151), 1, + STATE(4168), 1, sym_type_annotation, - STATE(4697), 1, + STATE(4726), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135704] = 6, - ACTIONS(6397), 1, + [136209] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4218), 1, + STATE(4169), 1, sym_type_annotation, - STATE(4831), 1, + STATE(4727), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135726] = 8, - ACTIONS(6733), 1, + [136231] = 3, + ACTIONS(7288), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3514), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136247] = 8, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(2485), 1, + STATE(2490), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5234), 1, + STATE(5310), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135752] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5193), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7257), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135770] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4153), 1, - sym_type_annotation, - STATE(4698), 1, - sym__initializer, + [136273] = 3, + ACTIONS(7291), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135792] = 2, + ACTIONS(4027), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [136289] = 8, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7293), 1, + sym_identifier, + ACTIONS(7295), 1, + anon_sym_STAR, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5441), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5077), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [135806] = 6, - ACTIONS(6397), 1, + [136315] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4156), 1, + STATE(4173), 1, sym_type_annotation, - STATE(4706), 1, + STATE(4743), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135828] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4401), 1, - sym_type_annotation, - STATE(5165), 1, - sym__initializer, + [136337] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5321), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(7297), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135850] = 6, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [136355] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4402), 1, + STATE(4176), 1, sym_type_annotation, - STATE(5167), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135872] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5208), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7259), 5, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135890] = 6, - ACTIONS(6397), 1, + [136377] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3942), 1, + STATE(4374), 1, sym_type_annotation, - STATE(4971), 1, + STATE(5093), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -246749,42 +247161,41 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135912] = 4, - ACTIONS(2429), 1, + [136399] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(5409), 1, + STATE(5329), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7259), 5, + ACTIONS(7299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135930] = 7, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(7261), 1, - anon_sym_EQ, - ACTIONS(7265), 1, - anon_sym_QMARK, - STATE(4431), 1, - sym_type_annotation, - STATE(5188), 1, - sym__initializer, + [136417] = 6, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_LT, + STATE(2260), 1, + sym_arguments, + STATE(5483), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7263), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [135954] = 2, + ACTIONS(7254), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [136439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4969), 7, + ACTIONS(6839), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -246792,1044 +247203,894 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [135968] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5410), 1, - sym_statement_block, + [136453] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(3925), 1, + sym_type_annotation, + STATE(4598), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 5, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135986] = 3, - ACTIONS(4047), 1, + [136475] = 8, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7220), 1, + anon_sym_DOT, + ACTIONS(7301), 1, sym_identifier, + STATE(741), 1, + sym_string, + STATE(825), 1, + sym__module, + STATE(4429), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 6, + [136501] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - anon_sym_BQUOTE, - [136002] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4366), 1, - sym_type_annotation, - STATE(5062), 1, - sym__initializer, + STATE(5506), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(7224), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136024] = 6, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [136519] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4160), 1, + STATE(4237), 1, sym_type_annotation, - STATE(5172), 1, + STATE(4847), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136046] = 6, - ACTIONS(6397), 1, + [136541] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4036), 1, + STATE(3917), 1, sym_type_annotation, - STATE(4666), 1, + STATE(5106), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136068] = 6, - ACTIONS(6397), 1, + [136563] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4138), 1, + STATE(4021), 1, sym_type_annotation, - STATE(4822), 1, + STATE(4792), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136090] = 6, - ACTIONS(6397), 1, + [136585] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4222), 1, + STATE(3967), 1, sym_type_annotation, - STATE(4843), 1, + STATE(4855), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6630), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136112] = 6, - ACTIONS(6397), 1, + [136607] = 3, + ACTIONS(7303), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3945), 1, - sym_type_annotation, - STATE(5036), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, + ACTIONS(3549), 6, anon_sym_COMMA, - anon_sym_SEMI, - [136134] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4226), 1, - sym_type_annotation, - STATE(4853), 1, - sym__initializer, + anon_sym_RBRACK, + anon_sym_QMARK, + [136623] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5334), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(7297), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136156] = 6, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [136641] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4227), 1, + STATE(4183), 1, sym_type_annotation, - STATE(4856), 1, + STATE(4758), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136178] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4121), 1, - sym_type_annotation, - STATE(4595), 1, - sym__initializer, + [136663] = 3, + ACTIONS(4470), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136200] = 8, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, + ACTIONS(4472), 6, anon_sym_LBRACE, - STATE(745), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5190), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136226] = 6, - ACTIONS(6397), 1, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [136679] = 3, + ACTIONS(7305), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4230), 1, - sym_type_annotation, - STATE(4863), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, - sym__automatic_semicolon, + ACTIONS(3514), 6, anon_sym_COMMA, - anon_sym_SEMI, - [136248] = 8, - ACTIONS(2577), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136695] = 8, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7267), 1, - sym_identifier, - ACTIONS(7269), 1, - anon_sym_STAR, - STATE(3900), 1, + ACTIONS(7308), 1, + anon_sym_COLON, + ACTIONS(7310), 1, + anon_sym_QMARK, + STATE(3742), 1, sym_formal_parameters, - STATE(5336), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5471), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136274] = 6, - ACTIONS(6397), 1, + [136721] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4231), 1, + STATE(4185), 1, sym_type_annotation, - STATE(4865), 1, + STATE(4762), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136296] = 6, - ACTIONS(6397), 1, + [136743] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4232), 1, + STATE(3919), 1, sym_type_annotation, - STATE(4868), 1, + STATE(4641), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136318] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5481), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [136332] = 6, - ACTIONS(6397), 1, + [136765] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4233), 1, + STATE(3985), 1, sym_type_annotation, - STATE(4870), 1, + STATE(4596), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136354] = 6, - ACTIONS(6397), 1, + [136787] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4234), 1, + STATE(4244), 1, sym_type_annotation, - STATE(4874), 1, + STATE(4871), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136376] = 6, - ACTIONS(6397), 1, + [136809] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4109), 1, + STATE(3992), 1, sym_type_annotation, - STATE(4564), 1, + STATE(4613), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136398] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4377), 1, - sym_type_annotation, - STATE(5115), 1, - sym__initializer, + [136831] = 8, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(1723), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5501), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 3, - sym__automatic_semicolon, + [136857] = 3, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4400), 6, anon_sym_COMMA, - anon_sym_SEMI, - [136420] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4085), 1, - sym_type_annotation, - STATE(5054), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [136873] = 5, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, + ACTIONS(4422), 4, anon_sym_COMMA, - anon_sym_SEMI, - [136442] = 8, - ACTIONS(6811), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [136893] = 3, + ACTIONS(7318), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4430), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + [136909] = 8, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - ACTIONS(6867), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(3992), 1, + STATE(4006), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5496), 1, + STATE(5502), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136468] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3983), 1, - sym_type_annotation, - STATE(5037), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6622), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136490] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4237), 1, - sym_type_annotation, - STATE(4875), 1, - sym__initializer, + [136935] = 8, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(7236), 1, + anon_sym_LT, + ACTIONS(7238), 1, + anon_sym_extends, + STATE(857), 1, + sym_object_type, + STATE(4419), 1, + sym_type_parameters, + STATE(4766), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136512] = 4, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4117), 1, - sym_type_annotation, + [136961] = 5, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7271), 5, - sym__automatic_semicolon, + ACTIONS(4106), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136530] = 8, - ACTIONS(6733), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [136981] = 8, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(1664), 1, + STATE(1758), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5523), 1, + STATE(5524), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136556] = 6, - ACTIONS(6397), 1, + [137007] = 3, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4136), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [137023] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4240), 1, + STATE(4188), 1, sym_type_annotation, - STATE(4883), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136578] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, + [137045] = 4, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4241), 1, + STATE(4000), 1, sym_type_annotation, - STATE(4884), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 3, + ACTIONS(7320), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136600] = 6, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [137063] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4371), 1, + STATE(4240), 1, sym_type_annotation, - STATE(5105), 1, + STATE(4864), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136622] = 4, - ACTIONS(6405), 1, + [137085] = 5, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4358), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137105] = 5, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4362), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137125] = 4, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4300), 1, + STATE(4044), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7273), 5, + ACTIONS(7322), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136640] = 6, - ACTIONS(6397), 1, + [137143] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4157), 1, + STATE(4189), 1, sym_type_annotation, - STATE(4710), 1, + STATE(4769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136662] = 6, - ACTIONS(6397), 1, + [137165] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3915), 1, + STATE(4190), 1, sym_type_annotation, - STATE(4913), 1, + STATE(4774), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136684] = 6, - ACTIONS(6250), 1, + [137187] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4444), 1, - sym_constraint, - STATE(5377), 1, - sym_default_type, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4191), 1, + sym_type_annotation, + STATE(4775), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6254), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7275), 2, - anon_sym_COLON, - anon_sym_extends, - [136706] = 8, - ACTIONS(7277), 1, - anon_sym_LBRACE, - ACTIONS(7279), 1, + ACTIONS(6648), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7281), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LBRACE_PIPE, - STATE(4548), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5079), 1, - sym_type_arguments, + anon_sym_SEMI, + [137209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136732] = 6, - ACTIONS(6397), 1, + ACTIONS(7324), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [137223] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4406), 1, + STATE(4198), 1, sym_type_annotation, - STATE(4720), 1, + STATE(4564), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136754] = 8, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(4030), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5230), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136780] = 6, - ACTIONS(6397), 1, + [137245] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4359), 1, + STATE(4199), 1, sym_type_annotation, - STATE(5077), 1, + STATE(4785), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136802] = 3, - ACTIONS(6741), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4015), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136818] = 8, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(742), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5186), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136844] = 8, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7287), 1, - sym_identifier, - ACTIONS(7289), 1, - anon_sym_STAR, - STATE(3900), 1, - sym_formal_parameters, - STATE(5201), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136870] = 8, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2265), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5245), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + [137267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136896] = 8, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7291), 1, + ACTIONS(7098), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7293), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_formal_parameters, - STATE(5397), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136922] = 8, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, + [137281] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(4049), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5252), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + STATE(5351), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136948] = 8, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(7299), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137299] = 8, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(1695), 1, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(4062), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5263), 1, + STATE(5213), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136974] = 3, - ACTIONS(7295), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136990] = 8, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7298), 1, - sym_identifier, - ACTIONS(7300), 1, - anon_sym_STAR, - STATE(3900), 1, - sym_formal_parameters, - STATE(5341), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137016] = 4, - ACTIONS(2429), 1, + [137325] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(5417), 1, + STATE(5198), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 5, + ACTIONS(7258), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137034] = 4, - ACTIONS(2429), 1, + [137343] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(5419), 1, + STATE(5204), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7304), 5, + ACTIONS(7326), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137052] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7306), 1, - sym_identifier, - ACTIONS(7308), 1, - anon_sym_DOT, - STATE(726), 1, - sym_string, - STATE(754), 1, - sym__module, - STATE(4421), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137078] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5250), 1, - sym_statement_block, + [137361] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4200), 1, + sym_type_annotation, + STATE(4789), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7310), 5, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137096] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5369), 1, - sym_statement_block, + [137383] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4201), 1, + sym_type_annotation, + STATE(4790), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 5, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137114] = 4, - ACTIONS(7152), 1, - anon_sym_LBRACE, - STATE(4331), 1, - sym_statement_block, + [137405] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4390), 1, + sym_type_annotation, + STATE(5125), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 5, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137132] = 3, + [137427] = 5, ACTIONS(7312), 1, - anon_sym_EQ, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 6, + ACTIONS(4197), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [137148] = 8, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(4082), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5297), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137174] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5475), 1, - sym_statement_block, + [137447] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4286), 1, + sym_type_annotation, + STATE(4943), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7304), 5, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137192] = 6, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_LBRACK, - ACTIONS(7233), 1, - sym_identifier, - STATE(4614), 1, - sym_variable_declarator, + [137469] = 3, + ACTIONS(6781), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3716), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137214] = 8, - ACTIONS(6719), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(4015), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2140), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5521), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137240] = 6, - ACTIONS(6397), 1, + [137485] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4262), 1, + STATE(4208), 1, sym_type_annotation, - STATE(4923), 1, + STATE(4805), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7314), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137262] = 8, - ACTIONS(6719), 1, + [137507] = 8, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(2302), 1, + STATE(2201), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5215), 1, + STATE(5230), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137288] = 3, - ACTIONS(7200), 1, + [137533] = 5, + ACTIONS(7312), 1, anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 6, + ACTIONS(4214), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [137304] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, + [137553] = 6, + ACTIONS(6254), 1, + anon_sym_EQ, + STATE(4540), 1, + sym_constraint, + STATE(5495), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 4, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137324] = 3, - ACTIONS(7316), 1, + anon_sym_GT, + ACTIONS(7328), 2, + anon_sym_COLON, anon_sym_extends, + [137575] = 8, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(4076), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5237), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [137340] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4263), 1, - sym_type_annotation, - STATE(4925), 1, - sym__initializer, + [137601] = 8, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(1628), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5249), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7314), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137362] = 6, - ACTIONS(6397), 1, + [137627] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4355), 1, + STATE(4083), 1, sym_type_annotation, - STATE(5069), 1, + STATE(5055), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6656), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137384] = 2, + [137649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6909), 7, + ACTIONS(4989), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -247837,220 +248098,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [137398] = 6, - ACTIONS(6397), 1, + [137663] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4267), 1, + STATE(3929), 1, sym_type_annotation, - STATE(4947), 1, + STATE(4714), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7314), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137420] = 3, - ACTIONS(4126), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4128), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - anon_sym_BQUOTE, - [137436] = 6, - ACTIONS(6397), 1, + [137685] = 6, + ACTIONS(6254), 1, anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4268), 1, - sym_type_annotation, - STATE(4948), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7314), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137458] = 3, - ACTIONS(6741), 1, - anon_sym_is, + STATE(4456), 1, + sym_constraint, + STATE(5346), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7328), 2, + anon_sym_COLON, anon_sym_extends, - [137474] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(7330), 2, + anon_sym_COMMA, + anon_sym_GT, + [137707] = 5, + ACTIONS(6572), 1, anon_sym_COLON, - STATE(4091), 1, - sym_type_annotation, - STATE(5103), 1, - sym__initializer, + ACTIONS(7332), 1, + sym_identifier, + ACTIONS(7334), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137496] = 8, - ACTIONS(6719), 1, + ACTIONS(7336), 4, anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(2233), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5329), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137522] = 8, - ACTIONS(6719), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [137727] = 8, + ACTIONS(6725), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6835), 1, anon_sym_extends, - ACTIONS(6813), 1, + ACTIONS(6837), 1, anon_sym_implements, - STATE(2226), 1, + STATE(2341), 1, sym_class_body, - STATE(5063), 1, + STATE(5071), 1, sym_extends_clause, - STATE(5426), 1, + STATE(5530), 1, sym_class_heritage, - STATE(5677), 1, + STATE(5674), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137548] = 4, - ACTIONS(6405), 1, + [137753] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3974), 1, + STATE(4267), 1, sym_type_annotation, + STATE(4926), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7318), 5, + ACTIONS(6715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137566] = 3, - ACTIONS(7320), 1, - anon_sym_is, + [137775] = 8, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(4106), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5289), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137582] = 6, - ACTIONS(6397), 1, + [137801] = 8, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, + anon_sym_STAR, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5442), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137827] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4084), 1, + STATE(4395), 1, sym_type_annotation, - STATE(5048), 1, + STATE(5127), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137604] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5214), 1, - sym_statement_block, + [137849] = 8, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7310), 1, + anon_sym_QMARK, + ACTIONS(7342), 1, + anon_sym_COLON, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5471), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7322), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137622] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5429), 1, - sym_statement_block, + [137875] = 5, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 5, - sym__automatic_semicolon, + ACTIONS(4311), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137640] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5444), 1, - sym_statement_block, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137895] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4287), 1, + sym_type_annotation, + STATE(4946), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7322), 5, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137658] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5466), 1, - sym_statement_block, + [137917] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4288), 1, + sym_type_annotation, + STATE(4950), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 5, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137676] = 2, + [137939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6955), 7, + ACTIONS(4985), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -248058,105 +248308,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [137690] = 6, - ACTIONS(6397), 1, + [137953] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4093), 1, + STATE(4401), 1, sym_type_annotation, - STATE(5111), 1, + STATE(5142), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137712] = 4, - ACTIONS(2429), 1, + [137975] = 8, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6960), 1, anon_sym_LBRACE, - STATE(5452), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7326), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137730] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4094), 1, - sym_type_annotation, - STATE(5133), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137752] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3982), 1, - sym_type_annotation, - STATE(5040), 1, - sym__initializer, + STATE(234), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5350), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137774] = 6, - ACTIONS(6397), 1, + [138001] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4105), 1, + STATE(4087), 1, sym_type_annotation, - STATE(5171), 1, + STATE(5072), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137796] = 6, - ACTIONS(6397), 1, + [138023] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4007), 1, + STATE(4406), 1, sym_type_annotation, - STATE(4657), 1, + STATE(5143), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137818] = 2, + [138045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7044), 7, + ACTIONS(6875), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -248164,30 +248386,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [137832] = 6, - ACTIONS(6397), 1, + [138059] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4108), 1, + STATE(4241), 1, sym_type_annotation, - STATE(4563), 1, + STATE(4865), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137854] = 6, - ACTIONS(6397), 1, + [138081] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3914), 1, + STATE(4407), 1, sym_type_annotation, - STATE(4692), 1, + STATE(5146), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -248196,305 +248418,248 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137876] = 8, - ACTIONS(2577), 1, - anon_sym_LT, + [138103] = 6, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_STAR, - STATE(3900), 1, - sym_formal_parameters, - STATE(5341), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137902] = 6, - ACTIONS(6397), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4010), 1, + STATE(4245), 1, sym_type_annotation, - STATE(4690), 1, + STATE(4873), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137924] = 8, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7308), 1, - anon_sym_DOT, - ACTIONS(7332), 1, - sym_identifier, - STATE(707), 1, - sym_nested_identifier, - STATE(726), 1, - sym_string, - STATE(754), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137950] = 8, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7293), 1, - anon_sym_QMARK, - ACTIONS(7334), 1, - anon_sym_COLON, - STATE(3900), 1, - sym_formal_parameters, - STATE(5397), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + [138125] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5267), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137976] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(3931), 1, - sym_type_annotation, - STATE(4602), 1, - sym__initializer, + ACTIONS(7344), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138143] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5269), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(7346), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137998] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4130), 1, - sym_type_annotation, - STATE(4629), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [138161] = 6, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7266), 1, + sym_identifier, + STATE(4442), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138183] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5352), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7346), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138020] = 6, - ACTIONS(6250), 1, - anon_sym_EQ, - STATE(4433), 1, - sym_constraint, - STATE(5358), 1, - sym_default_type, + anon_sym_PIPE_RBRACE, + [138201] = 4, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5383), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7275), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7336), 2, + ACTIONS(7344), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [138042] = 6, - ACTIONS(6397), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138219] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4017), 1, + STATE(4384), 1, sym_type_annotation, - STATE(4737), 1, + STATE(5111), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138064] = 6, - ACTIONS(6397), 1, + [138241] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4019), 1, + STATE(4104), 1, sym_type_annotation, - STATE(4739), 1, + STATE(5118), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138086] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4290), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138106] = 6, - ACTIONS(6397), 1, + [138263] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4041), 1, + STATE(4247), 1, sym_type_annotation, - STATE(4862), 1, + STATE(4876), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138128] = 8, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(7247), 1, - anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_extends, - STATE(829), 1, - sym_object_type, - STATE(4357), 1, - sym_type_parameters, - STATE(5068), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138154] = 6, - ACTIONS(6397), 1, + [138285] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4044), 1, + STATE(4108), 1, sym_type_annotation, - STATE(4876), 1, + STATE(5147), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138176] = 6, - ACTIONS(6397), 1, + [138307] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4289), 1, sym_type_annotation, - STATE(5021), 1, + STATE(4952), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138198] = 3, - ACTIONS(7200), 1, - anon_sym_AMP, + [138329] = 6, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7266), 1, + sym_identifier, + STATE(4452), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [138214] = 6, - ACTIONS(6397), 1, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138351] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4052), 1, + STATE(4171), 1, sym_type_annotation, - STATE(4910), 1, + STATE(4736), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6632), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138236] = 5, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(5117), 1, - aux_sym_object_repeat1, + [138373] = 8, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7348), 1, + sym_identifier, + ACTIONS(7350), 1, + anon_sym_STAR, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5442), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [138256] = 6, - ACTIONS(6397), 1, + [138399] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4056), 1, + STATE(4129), 1, sym_type_annotation, - STATE(4928), 1, + STATE(4612), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138278] = 6, - ACTIONS(6397), 1, + [138421] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4131), 1, + STATE(4409), 1, sym_type_annotation, - STATE(4628), 1, + STATE(5149), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -248503,284 +248668,305 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138300] = 4, - ACTIONS(2429), 1, + [138443] = 6, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(5432), 1, - sym_statement_block, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7266), 1, + sym_identifier, + STATE(4506), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7338), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138318] = 8, - ACTIONS(2577), 1, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138465] = 8, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7340), 1, + ACTIONS(7352), 1, sym_identifier, - ACTIONS(7342), 1, + ACTIONS(7354), 1, anon_sym_STAR, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5201), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5441), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138344] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4060), 1, - sym_type_annotation, - STATE(4969), 1, - sym__initializer, + [138491] = 3, + ACTIONS(4142), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, - sym__automatic_semicolon, + ACTIONS(4144), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [138507] = 5, + ACTIONS(5644), 1, anon_sym_COMMA, - anon_sym_SEMI, - [138366] = 4, - ACTIONS(2429), 1, + ACTIONS(5700), 1, + anon_sym_RBRACE, + STATE(5124), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [138527] = 4, + ACTIONS(7190), 1, anon_sym_LBRACE, - STATE(5431), 1, + STATE(4349), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 5, + ACTIONS(1712), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138384] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4142), 1, - sym_type_annotation, - STATE(4665), 1, - sym__initializer, + [138545] = 8, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6960), 1, + anon_sym_LBRACE, + STATE(216), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5256), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138406] = 8, - ACTIONS(2577), 1, + [138571] = 8, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7356), 1, sym_identifier, - ACTIONS(7348), 1, + ACTIONS(7358), 1, anon_sym_STAR, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5341), 1, + STATE(5304), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138432] = 6, - ACTIONS(6397), 1, + [138597] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3514), 7, anon_sym_EQ, - ACTIONS(6405), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4149), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + [138611] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4113), 1, sym_type_annotation, - STATE(4689), 1, + STATE(4570), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138454] = 6, - ACTIONS(6397), 1, + [138633] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(3993), 1, sym_type_annotation, - STATE(4984), 1, + STATE(4633), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138476] = 4, - ACTIONS(2429), 1, + [138655] = 8, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(5181), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7338), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138494] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, + ACTIONS(6835), 1, anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2473), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5203), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138514] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, + [138681] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(6701), 1, + sym_identifier, + ACTIONS(6749), 1, + anon_sym_type, + STATE(5330), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4461), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138534] = 6, - ACTIONS(6397), 1, + STATE(5830), 2, + sym__module_export_name, + sym_string, + [138705] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4186), 1, + STATE(4114), 1, sym_type_annotation, - STATE(4751), 1, + STATE(4573), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138556] = 6, - ACTIONS(6397), 1, + [138727] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4190), 1, + STATE(4115), 1, sym_type_annotation, - STATE(4763), 1, + STATE(4576), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138578] = 8, - ACTIONS(2577), 1, - anon_sym_LT, + [138749] = 6, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7350), 1, - sym_identifier, - ACTIONS(7352), 1, - anon_sym_STAR, - STATE(3900), 1, - sym_formal_parameters, - STATE(5341), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138604] = 6, - ACTIONS(6397), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4107), 1, + STATE(4116), 1, sym_type_annotation, - STATE(4558), 1, + STATE(4584), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138626] = 6, - ACTIONS(6397), 1, + [138771] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(3933), 1, + STATE(4130), 1, sym_type_annotation, - STATE(4641), 1, + STATE(4615), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138648] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4285), 1, - sym_type_annotation, - STATE(4968), 1, - sym__initializer, + [138793] = 8, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(719), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5266), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138670] = 6, - ACTIONS(6397), 1, + [138819] = 8, + ACTIONS(6725), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + STATE(2228), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5234), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138845] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4289), 1, + STATE(3974), 1, sym_type_annotation, - STATE(4974), 1, + STATE(5044), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -248789,46 +248975,46 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138692] = 6, - ACTIONS(6397), 1, + [138867] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4114), 1, + STATE(4229), 1, sym_type_annotation, - STATE(4580), 1, + STATE(4837), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(7360), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138714] = 6, - ACTIONS(6397), 1, + [138889] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4140), 1, + STATE(4290), 1, sym_type_annotation, - STATE(4658), 1, + STATE(4959), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138736] = 6, - ACTIONS(6397), 1, + [138911] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4302), 1, + STATE(3930), 1, sym_type_annotation, - STATE(4987), 1, + STATE(4764), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -248837,7701 +249023,7819 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138758] = 6, - ACTIONS(6397), 1, + [138933] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4303), 1, + STATE(4246), 1, sym_type_annotation, - STATE(4988), 1, + STATE(4875), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138780] = 6, - ACTIONS(6397), 1, + [138955] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4309), 1, + STATE(4119), 1, sym_type_annotation, - STATE(4994), 1, + STATE(4589), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138802] = 6, - ACTIONS(6397), 1, + [138977] = 6, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(7266), 1, + sym_identifier, + STATE(4813), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3661), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138999] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4310), 1, + STATE(4248), 1, sym_type_annotation, - STATE(4999), 1, + STATE(4880), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(6628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138824] = 6, - ACTIONS(6397), 1, + [139021] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4068), 1, + STATE(3973), 1, sym_type_annotation, - STATE(5009), 1, + STATE(5019), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138846] = 4, - ACTIONS(2429), 1, + [139043] = 8, + ACTIONS(6835), 1, + anon_sym_extends, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(7096), 1, anon_sym_LBRACE, - STATE(5339), 1, - sym_statement_block, + STATE(845), 1, + sym_class_body, + STATE(5071), 1, + sym_extends_clause, + STATE(5500), 1, + sym_class_heritage, + STATE(5674), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138864] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, + [139069] = 6, + ACTIONS(6403), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4385), 1, + sym_type_annotation, + STATE(5113), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 4, + ACTIONS(6638), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138884] = 6, - ACTIONS(6397), 1, + anon_sym_SEMI, + [139091] = 6, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(6405), 1, + ACTIONS(6411), 1, anon_sym_COLON, - STATE(4180), 1, + STATE(3928), 1, sym_type_annotation, - STATE(4762), 1, + STATE(4685), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 3, + ACTIONS(6638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138906] = 8, - ACTIONS(2577), 1, + [139113] = 5, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(7362), 1, + sym_identifier, + ACTIONS(7364), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4535), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [139132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4753), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(6403), 1, + [139147] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7354), 1, - sym_identifier, - ACTIONS(7356), 1, - anon_sym_STAR, - STATE(3900), 1, + ACTIONS(7366), 1, + anon_sym_QMARK, + STATE(3742), 1, sym_formal_parameters, - STATE(5201), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5508), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138932] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, + [139170] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138952] = 6, - ACTIONS(6397), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4344), 1, - sym_type_annotation, - STATE(5047), 1, - sym__initializer, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(4640), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139185] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138974] = 8, - ACTIONS(6733), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7368), 6, anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_extends, - ACTIONS(6813), 1, - anon_sym_implements, - STATE(1662), 1, - sym_class_body, - STATE(5063), 1, - sym_extends_clause, - STATE(5492), 1, - sym_class_heritage, - STATE(5677), 1, - sym_implements_clause, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139200] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7370), 1, + sym_identifier, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139000] = 3, - ACTIONS(7358), 1, - sym_identifier, + [139223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6281), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [139015] = 2, + ACTIONS(7372), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7360), 6, + ACTIONS(7374), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139028] = 7, - ACTIONS(2577), 1, + [139249] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(7362), 1, + ACTIONS(7376), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(5210), 1, + STATE(3795), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139051] = 7, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7332), 1, - sym_identifier, - STATE(707), 1, - sym_nested_identifier, - STATE(726), 1, - sym_string, - STATE(754), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139074] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, + [139272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7364), 3, + ACTIONS(7324), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [139093] = 7, - ACTIONS(2577), 1, + anon_sym_SEMI, + anon_sym_COLON, + [139285] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, - anon_sym_QMARK, - STATE(3244), 1, + ACTIONS(7378), 1, + sym_identifier, + STATE(3742), 1, sym_formal_parameters, - STATE(3958), 1, - sym__call_signature, - STATE(5406), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4786), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + [139308] = 7, + ACTIONS(2581), 1, anon_sym_LT, - [139131] = 2, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(7380), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [139144] = 4, - STATE(3857), 1, + [139331] = 4, + STATE(3776), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3649), 2, + ACTIONS(3669), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7368), 3, + ACTIONS(7382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139161] = 7, - ACTIONS(7279), 1, - anon_sym_COMMA, - ACTIONS(7283), 1, - anon_sym_LT, - ACTIONS(7370), 1, - anon_sym_LBRACE, - ACTIONS(7372), 1, - anon_sym_LBRACE_PIPE, - STATE(4549), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5088), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139184] = 4, + [139348] = 4, STATE(3766), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3645), 2, + ACTIONS(3665), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7374), 3, + ACTIONS(7384), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [139365] = 7, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(7386), 1, + anon_sym_COMMA, + ACTIONS(7388), 1, + anon_sym_GT, + STATE(4571), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4620), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139216] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [139388] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4624), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139231] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(7390), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [139407] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4620), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139246] = 3, + sym_comment, + ACTIONS(2331), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139420] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4632), 6, + ACTIONS(7392), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139261] = 7, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7306), 1, - sym_identifier, - STATE(726), 1, - sym_string, - STATE(768), 1, - sym__module, - STATE(4421), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139284] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(3575), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139307] = 7, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7306), 1, - sym_identifier, - STATE(726), 1, - sym_string, - STATE(754), 1, - sym__module, - STATE(4421), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139435] = 3, + ACTIONS(3), 1, sym_comment, - [139330] = 4, - STATE(3764), 1, - aux_sym_object_type_repeat1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7394), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139450] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3691), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7378), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139347] = 4, - ACTIONS(7380), 1, + ACTIONS(6743), 2, anon_sym_LBRACE, - STATE(2577), 1, + anon_sym_EQ_GT, + STATE(5232), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [139467] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2596), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7255), 4, + ACTIONS(7280), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139364] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [139484] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7378), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139381] = 4, - STATE(3902), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7368), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139499] = 4, + STATE(3776), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3657), 2, + ACTIONS(3649), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139398] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2581), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7237), 4, + ACTIONS(7400), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139415] = 3, + [139516] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4646), 6, + ACTIONS(7402), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [139430] = 7, - ACTIONS(2577), 1, + [139531] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(7384), 1, - sym_identifier, - STATE(3900), 1, + ACTIONS(7404), 1, + anon_sym_QMARK, + STATE(3320), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(3882), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139453] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3645), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7374), 3, - sym__automatic_semicolon, + [139554] = 4, + ACTIONS(7406), 1, anon_sym_COMMA, - anon_sym_SEMI, - [139470] = 5, - ACTIONS(7386), 1, - anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_extends, + STATE(3748), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 3, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(4322), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - [139489] = 3, - ACTIONS(7386), 1, - anon_sym_AMP, + [139571] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7409), 1, + sym_identifier, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5498), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [139594] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - [139504] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7392), 1, - anon_sym_export, - ACTIONS(7394), 1, - anon_sym_class, - ACTIONS(7396), 1, - anon_sym_abstract, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139527] = 4, - ACTIONS(7380), 1, + ACTIONS(7411), 3, anon_sym_LBRACE, - STATE(2613), 1, + anon_sym_COMMA, + anon_sym_GT, + [139613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7413), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139628] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2586), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7322), 4, + ACTIONS(7226), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139544] = 3, + [139645] = 4, + STATE(3821), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7417), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7415), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139662] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4714), 6, + ACTIONS(7368), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [139559] = 3, + [139677] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4718), 6, + ACTIONS(7419), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [139574] = 7, - ACTIONS(6538), 1, - anon_sym_AMP, + [139692] = 7, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(7398), 1, + ACTIONS(7421), 1, anon_sym_COMMA, - ACTIONS(7400), 1, + ACTIONS(7423), 1, anon_sym_GT, - STATE(4645), 1, + STATE(4683), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139597] = 7, - ACTIONS(2577), 1, + [139715] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7402), 1, + ACTIONS(7425), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3867), 1, + STATE(5349), 1, + sym_type_parameters, + STATE(5523), 1, sym__call_signature, - STATE(5493), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139738] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7427), 1, + sym_identifier, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, sym_type_parameters, + STATE(5411), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139620] = 5, - ACTIONS(7386), 1, - anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_extends, + [139761] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [139639] = 5, - ACTIONS(7386), 1, - anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_extends, + ACTIONS(7208), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4461), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [139658] = 3, + ACTIONS(3743), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [139791] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4620), 6, + ACTIONS(7429), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [139673] = 4, - ACTIONS(7380), 1, + [139806] = 4, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2557), 1, + STATE(2587), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 4, + ACTIONS(7256), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139690] = 4, - ACTIONS(7380), 1, + [139823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4800), 6, anon_sym_LBRACE, - STATE(2574), 1, - sym_statement_block, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4804), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4800), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139868] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 4, + ACTIONS(3655), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7431), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139707] = 7, - ACTIONS(2577), 1, + [139885] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7404), 1, - sym_identifier, - STATE(3900), 1, + ACTIONS(7433), 1, + anon_sym_QMARK, + STATE(3229), 1, sym_formal_parameters, - STATE(5346), 1, + STATE(3998), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139730] = 7, - ACTIONS(2577), 1, + [139908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4815), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [139923] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6753), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5405), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [139940] = 7, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7406), 1, + ACTIONS(7435), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3628), 1, + STATE(3559), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139753] = 5, - ACTIONS(7411), 1, - anon_sym_BQUOTE, - ACTIONS(7413), 1, - anon_sym_DOLLAR_LBRACE, + [139963] = 4, + STATE(3810), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7408), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3762), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [139772] = 7, - ACTIONS(2577), 1, + ACTIONS(7439), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139980] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(7416), 1, + ACTIONS(7441), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(5420), 1, + STATE(3886), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139795] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, + [140003] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(7443), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4332), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3695), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7418), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139812] = 5, - ACTIONS(7420), 1, + [140026] = 5, + ACTIONS(7445), 1, anon_sym_default, - ACTIONS(7422), 1, + ACTIONS(7448), 1, anon_sym_RBRACE, - ACTIONS(7424), 1, + ACTIONS(7450), 1, anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3890), 3, + STATE(3774), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [139831] = 4, - STATE(3902), 1, + [140045] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7453), 1, + sym_identifier, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5498), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140068] = 4, + STATE(3776), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3659), 2, + ACTIONS(7458), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7426), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139848] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7428), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_formal_parameters, - STATE(5388), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + [140085] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2565), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139871] = 3, + ACTIONS(7297), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140102] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7430), 6, + ACTIONS(4819), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [139886] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, + [140117] = 5, + ACTIONS(7460), 1, + anon_sym_BQUOTE, + ACTIONS(7462), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3669), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7432), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139903] = 7, - ACTIONS(2577), 1, + ACTIONS(7148), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3858), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4800), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - ACTIONS(7434), 1, - anon_sym_QMARK, - STATE(3415), 1, - sym_formal_parameters, - STATE(3908), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, + [140151] = 5, + ACTIONS(7467), 1, + anon_sym_BQUOTE, + ACTIONS(7469), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139926] = 5, - ACTIONS(7386), 1, + ACTIONS(7464), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3781), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140170] = 3, + ACTIONS(7472), 1, anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 3, + ACTIONS(4400), 5, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [139945] = 5, - ACTIONS(7386), 1, + anon_sym_PIPE, + anon_sym_extends, + [140185] = 5, + ACTIONS(7462), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7476), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7474), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3781), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140204] = 5, + ACTIONS(7472), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7478), 1, anon_sym_PIPE, - ACTIONS(7390), 1, + ACTIONS(7480), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 3, + ACTIONS(4422), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [139964] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7396), 1, - anon_sym_abstract, - ACTIONS(7436), 1, - anon_sym_export, - ACTIONS(7438), 1, - anon_sym_class, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139987] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - ACTIONS(7440), 1, - anon_sym_QMARK, - STATE(3415), 1, - sym_formal_parameters, - STATE(3743), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140010] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7442), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(3657), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + [140223] = 3, + ACTIONS(7482), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140033] = 6, - ACTIONS(7281), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LBRACE, - STATE(5079), 1, - sym_type_arguments, + ACTIONS(4430), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [140238] = 4, + STATE(3745), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7446), 2, + ACTIONS(3651), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7484), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [140054] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2567), 1, - sym_statement_block, + anon_sym_SEMI, + [140255] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7322), 4, + ACTIONS(3665), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7384), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140071] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - ACTIONS(7448), 1, - anon_sym_QMARK, - STATE(3415), 1, - sym_formal_parameters, - STATE(3849), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140094] = 7, - ACTIONS(2577), 1, + [140272] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7450), 1, + ACTIONS(7486), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3692), 1, + STATE(5341), 1, sym__call_signature, - STATE(5406), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140117] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7452), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(3535), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + [140295] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140140] = 5, - ACTIONS(7386), 1, + ACTIONS(2335), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(7388), 1, anon_sym_PIPE, - ACTIONS(7390), 1, anon_sym_extends, + [140308] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140159] = 4, - ACTIONS(7380), 1, + ACTIONS(7344), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140325] = 4, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2605), 1, + STATE(2589), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7338), 4, + ACTIONS(7262), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140176] = 3, + [140342] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7454), 6, + ACTIONS(4650), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [140191] = 3, + [140357] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7456), 6, + ACTIONS(4654), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [140206] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7458), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(4279), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140229] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2584), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7310), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140246] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7460), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140259] = 3, + [140372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7462), 6, + ACTIONS(7488), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [140274] = 2, + [140387] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2569), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7464), 6, + ACTIONS(7346), 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, - [140287] = 2, + [140404] = 7, + ACTIONS(7120), 1, + anon_sym_GT, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, + sym_jsx_identifier, + ACTIONS(7494), 1, + anon_sym_SLASH_GT, + STATE(3137), 1, + sym_nested_identifier, + STATE(3352), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2329), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7466), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140315] = 7, - ACTIONS(2577), 1, + [140427] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7468), 1, - anon_sym_QMARK, - STATE(3900), 1, + ACTIONS(7496), 1, + sym_identifier, + STATE(3742), 1, sym_formal_parameters, - STATE(5482), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140338] = 4, - ACTIONS(7470), 1, - anon_sym_COMMA, - STATE(3793), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4509), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [140355] = 7, - ACTIONS(2577), 1, + [140450] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(7473), 1, + ACTIONS(7498), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(5522), 1, + STATE(3875), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7475), 6, + [140473] = 4, + ACTIONS(7398), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + STATE(2588), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140490] = 7, + ACTIONS(7246), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, anon_sym_LT, - [140393] = 7, - ACTIONS(2577), 1, + ACTIONS(7500), 1, + anon_sym_LBRACE, + ACTIONS(7502), 1, + anon_sym_LBRACE_PIPE, + STATE(4473), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140513] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7477), 1, + ACTIONS(7504), 1, sym_identifier, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5400), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5498), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140416] = 3, - ACTIONS(3), 1, + [140536] = 4, + STATE(3849), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(7508), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7506), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140553] = 4, + ACTIONS(4267), 1, + anon_sym_COMMA, + STATE(3748), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7510), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [140570] = 4, + STATE(3872), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7430), 6, + sym_comment, + ACTIONS(3673), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7512), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140587] = 4, + ACTIONS(7398), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140431] = 7, - ACTIONS(7122), 1, + STATE(2605), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7346), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140604] = 7, + ACTIONS(7120), 1, anon_sym_GT, - ACTIONS(7479), 1, + ACTIONS(7514), 1, sym_identifier, - ACTIONS(7481), 1, + ACTIONS(7516), 1, sym_jsx_identifier, - ACTIONS(7483), 1, + ACTIONS(7518), 1, anon_sym_SLASH_GT, - STATE(3084), 1, + STATE(3108), 1, sym_nested_identifier, - STATE(3250), 1, + STATE(3356), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140454] = 7, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(7485), 1, - anon_sym_COMMA, - ACTIONS(7487), 1, - anon_sym_GT, - STATE(4701), 1, - aux_sym_implements_clause_repeat1, + [140627] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2574), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140477] = 7, - ACTIONS(2577), 1, + ACTIONS(7344), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140644] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7489), 1, + ACTIONS(7520), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(5185), 1, + STATE(3679), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [140667] = 4, + STATE(3825), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4658), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140515] = 2, + sym_comment, + ACTIONS(3697), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140684] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 6, + ACTIONS(3697), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7522), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140528] = 3, + [140701] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4662), 6, + ACTIONS(7524), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [140543] = 4, - STATE(3742), 1, - aux_sym_object_type_repeat1, + [140716] = 5, + ACTIONS(7472), 1, + anon_sym_AMP, + ACTIONS(7478), 1, + anon_sym_PIPE, + ACTIONS(7480), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7493), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140560] = 5, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(7495), 1, - sym_identifier, - ACTIONS(7497), 1, + ACTIONS(4106), 3, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, + [140735] = 3, + ACTIONS(7472), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4492), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140579] = 3, + ACTIONS(4136), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [140750] = 5, + ACTIONS(7526), 1, + anon_sym_AT, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3533), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [140769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7499), 6, + ACTIONS(4910), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [140594] = 7, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(7501), 1, - anon_sym_COMMA, - ACTIONS(7503), 1, - anon_sym_GT, - STATE(4560), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [140784] = 3, + ACTIONS(3), 1, sym_comment, - [140617] = 7, - ACTIONS(2577), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4918), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(3205), 1, + [140799] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7505), 1, + ACTIONS(7529), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4165), 1, + STATE(5243), 1, sym__call_signature, - STATE(5406), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140640] = 6, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, - ACTIONS(7509), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7507), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [140661] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2570), 1, - sym_statement_block, + [140822] = 7, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7218), 1, + sym_identifier, + STATE(711), 1, + sym_nested_identifier, + STATE(741), 1, + sym_string, + STATE(855), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140678] = 7, - ACTIONS(6538), 1, + [140845] = 5, + ACTIONS(7472), 1, anon_sym_AMP, - ACTIONS(6554), 1, + ACTIONS(7478), 1, anon_sym_PIPE, - ACTIONS(6556), 1, + ACTIONS(7480), 1, anon_sym_extends, - ACTIONS(7511), 1, - anon_sym_LBRACE, - ACTIONS(7513), 1, - anon_sym_COMMA, - STATE(5000), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140701] = 5, - ACTIONS(7517), 1, - anon_sym_BQUOTE, - ACTIONS(7519), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7515), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3762), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140720] = 3, - ACTIONS(7386), 1, + ACTIONS(4358), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140864] = 5, + ACTIONS(7472), 1, anon_sym_AMP, + ACTIONS(7478), 1, + anon_sym_PIPE, + ACTIONS(7480), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 5, + ACTIONS(4362), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [140735] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2571), 1, - sym_statement_block, + [140883] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7304), 4, + ACTIONS(3673), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7512), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140752] = 7, - ACTIONS(2577), 1, + [140900] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - ACTIONS(7521), 1, + ACTIONS(7531), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(3758), 1, + STATE(3873), 1, sym__call_signature, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140775] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2559), 1, - sym_statement_block, + [140923] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6409), 1, + anon_sym_LPAREN, + ACTIONS(7533), 1, + anon_sym_QMARK, + STATE(3320), 1, + sym_formal_parameters, + STATE(3762), 1, + sym__call_signature, + STATE(5342), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140792] = 5, - ACTIONS(7386), 1, - anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_extends, + [140946] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7535), 1, + anon_sym_QMARK, + STATE(3742), 1, + sym_formal_parameters, + STATE(5335), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140811] = 5, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(7497), 1, - anon_sym_LBRACK, - ACTIONS(7523), 1, - sym_identifier, + [140969] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4578), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140830] = 7, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(7525), 1, + ACTIONS(3659), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7537), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7527), 1, - anon_sym_GT, - STATE(4796), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140853] = 5, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(7497), 1, - anon_sym_LBRACK, - ACTIONS(7529), 1, + anon_sym_SEMI, + [140986] = 4, + ACTIONS(7539), 1, sym_identifier, + ACTIONS(7541), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5476), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140872] = 2, + ACTIONS(7543), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [141003] = 6, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(7202), 1, + anon_sym_EQ, + STATE(4502), 1, + sym_type_annotation, + STATE(5257), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 6, - anon_sym_EQ, + ACTIONS(7545), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [140885] = 3, - ACTIONS(7531), 1, + anon_sym_RPAREN, + [141024] = 5, + ACTIONS(7472), 1, + anon_sym_AMP, + ACTIONS(7478), 1, + anon_sym_PIPE, + ACTIONS(7480), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 5, + ACTIONS(4197), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + [141043] = 5, + ACTIONS(7472), 1, anon_sym_AMP, + ACTIONS(7478), 1, anon_sym_PIPE, - [140900] = 6, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(7261), 1, - anon_sym_EQ, - STATE(4436), 1, - sym_type_annotation, - STATE(5258), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7533), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [140921] = 2, + ACTIONS(7480), 1, + anon_sym_extends, 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, - [140934] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2569), 1, - sym_statement_block, + ACTIONS(4214), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141062] = 4, + STATE(3787), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7304), 4, + ACTIONS(7549), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7547), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7535), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140966] = 2, + [141079] = 4, + STATE(3867), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7239), 6, + ACTIONS(3695), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7551), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140979] = 7, - ACTIONS(2577), 1, + [141096] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7537), 1, + ACTIONS(7553), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(5325), 1, + STATE(3596), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7539), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [141017] = 4, - ACTIONS(7380), 1, + [141119] = 7, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(7555), 1, anon_sym_LBRACE, - STATE(2591), 1, - sym_statement_block, + ACTIONS(7557), 1, + anon_sym_COMMA, + STATE(5116), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141034] = 4, - STATE(3863), 1, - aux_sym_object_type_repeat1, + [141142] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(7559), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(3499), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7543), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7541), 3, + ACTIONS(7210), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141051] = 7, - ACTIONS(2577), 1, + anon_sym_COLON, + [141178] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7545), 1, - sym_identifier, - STATE(3900), 1, + ACTIONS(7561), 1, + anon_sym_QMARK, + STATE(3229), 1, sym_formal_parameters, - STATE(5346), 1, + STATE(3537), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [141201] = 5, + ACTIONS(7472), 1, + anon_sym_AMP, + ACTIONS(7478), 1, + anon_sym_PIPE, + ACTIONS(7480), 1, + anon_sym_extends, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7547), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [141089] = 3, + sym_comment, + ACTIONS(4311), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141220] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4807), 6, + ACTIONS(7563), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [141104] = 5, - ACTIONS(7420), 1, - anon_sym_default, - ACTIONS(7424), 1, - anon_sym_case, - ACTIONS(7549), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3765), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141123] = 7, - ACTIONS(6538), 1, - anon_sym_AMP, + [141235] = 7, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(7551), 1, + ACTIONS(7565), 1, anon_sym_COMMA, - ACTIONS(7553), 1, + ACTIONS(7567), 1, anon_sym_GT, - STATE(4679), 1, + STATE(4655), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141146] = 5, - ACTIONS(7555), 1, - anon_sym_AT, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3523), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [141165] = 7, - ACTIONS(2577), 1, + [141258] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7558), 1, - sym_identifier, - STATE(3900), 1, + ACTIONS(7569), 1, + anon_sym_QMARK, + STATE(3229), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5163), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141188] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2604), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7324), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141205] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3649), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7368), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141222] = 5, - ACTIONS(7519), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7560), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7172), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3812), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141241] = 7, - ACTIONS(2577), 1, + [141281] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7562), 1, + ACTIONS(7571), 1, sym_identifier, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5284), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141264] = 7, - ACTIONS(2577), 1, + [141304] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(5261), 1, + STATE(4307), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141287] = 4, - STATE(3879), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3679), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7566), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141304] = 4, - ACTIONS(4104), 1, - anon_sym_COMMA, - STATE(3793), 1, - aux_sym_sequence_expression_repeat1, + [141327] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(7575), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(4213), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7568), 4, - anon_sym_RBRACE, + [141350] = 7, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_LT, + ACTIONS(6847), 1, + anon_sym_DOT, + ACTIONS(7577), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [141321] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, + STATE(1194), 1, + sym_arguments, + STATE(5478), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6745), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5414), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141338] = 3, + [141373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7572), 6, + ACTIONS(7579), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [141353] = 2, + [141388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2325), 6, + ACTIONS(2319), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [141366] = 4, - ACTIONS(7380), 1, + [141401] = 4, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2593), 1, + STATE(2572), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7259), 4, + ACTIONS(7297), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141383] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, + [141418] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7581), 1, + anon_sym_export, + ACTIONS(7583), 1, + anon_sym_class, + ACTIONS(7585), 1, + anon_sym_abstract, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7574), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [141402] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2597), 1, - sym_statement_block, + [141441] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7326), 4, + ACTIONS(3695), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7551), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141419] = 7, - ACTIONS(2577), 1, + [141458] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7576), 1, + ACTIONS(7587), 1, anon_sym_QMARK, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3814), 1, + STATE(5349), 1, + sym_type_parameters, + STATE(5510), 1, sym__call_signature, - STATE(5493), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4888), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [141496] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7589), 1, + anon_sym_QMARK, + STATE(3742), 1, + sym_formal_parameters, + STATE(5270), 1, + sym__call_signature, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141442] = 7, - ACTIONS(2577), 1, + [141519] = 7, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7218), 1, + sym_identifier, + STATE(711), 1, + sym_nested_identifier, + STATE(741), 1, + sym_string, + STATE(825), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141542] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7578), 1, + ACTIONS(7591), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5320), 1, + STATE(5298), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141465] = 4, - ACTIONS(7380), 1, + [141565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4902), 6, anon_sym_LBRACE, - STATE(2610), 1, - sym_statement_block, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [141580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141482] = 4, - STATE(3746), 1, - aux_sym_object_type_repeat1, + ACTIONS(2323), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7582), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7580), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141499] = 5, - ACTIONS(7519), 1, + ACTIONS(2327), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141606] = 5, + ACTIONS(7462), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7584), 1, + ACTIONS(7593), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7138), 2, + ACTIONS(7474), 2, sym__template_chars, sym_escape_sequence, - STATE(3891), 2, + STATE(3781), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [141518] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, + [141625] = 6, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, + ACTIONS(7597), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3651), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7586), 3, - sym__automatic_semicolon, + ACTIONS(7595), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141535] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(5016), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + anon_sym_RBRACK, + [141646] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7585), 1, + anon_sym_abstract, + ACTIONS(7599), 1, + anon_sym_export, + ACTIONS(7601), 1, + anon_sym_class, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141558] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2576), 1, - sym_statement_block, + [141669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7259), 4, + ACTIONS(7264), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141575] = 4, - ACTIONS(7380), 1, + anon_sym_COLON, + [141682] = 6, + ACTIONS(7248), 1, + anon_sym_DOT, + ACTIONS(7250), 1, + anon_sym_LT, + ACTIONS(7603), 1, anon_sym_LBRACE, - STATE(2578), 1, - sym_statement_block, + STATE(5094), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7605), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141592] = 7, + anon_sym_LBRACE_PIPE, + [141703] = 7, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7394), 1, - anon_sym_class, - ACTIONS(7396), 1, + ACTIONS(7585), 1, anon_sym_abstract, - ACTIONS(7590), 1, + ACTIONS(7601), 1, + anon_sym_class, + ACTIONS(7607), 1, anon_sym_export, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(3837), 1, + STATE(3814), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141615] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7592), 1, + [141726] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2567), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7224), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141743] = 5, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(7364), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, sym_identifier, - STATE(3900), 1, - sym_formal_parameters, - STATE(5349), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141638] = 4, - STATE(3902), 1, + STATE(4692), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [141762] = 5, + ACTIONS(7611), 1, + anon_sym_default, + ACTIONS(7613), 1, + anon_sym_RBRACE, + ACTIONS(7615), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3774), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141781] = 4, + STATE(3776), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3679), 2, + ACTIONS(3653), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7566), 3, + ACTIONS(7617), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141655] = 3, - ACTIONS(3), 1, + [141798] = 5, + ACTIONS(7462), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7619), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(7126), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3783), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141817] = 3, + ACTIONS(7621), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7594), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + sym_comment, + ACTIONS(6285), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT, - [141670] = 4, - STATE(3899), 1, + anon_sym_BQUOTE, + [141832] = 4, + STATE(3776), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7598), 2, + ACTIONS(3651), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7596), 3, + ACTIONS(7484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141687] = 2, + [141849] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2571), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7600), 6, + ACTIONS(7326), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [141866] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3689), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - [141700] = 4, - ACTIONS(7380), 1, + ACTIONS(7623), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141883] = 4, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2590), 1, + STATE(2559), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 4, + ACTIONS(7299), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141717] = 2, + [141900] = 4, + STATE(3909), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141730] = 2, + ACTIONS(7627), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7625), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141917] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2606), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2317), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141743] = 7, - ACTIONS(2577), 1, + ACTIONS(7224), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141934] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, - anon_sym_QMARK, - STATE(3244), 1, + ACTIONS(7629), 1, + sym_identifier, + STATE(3742), 1, sym_formal_parameters, - STATE(4307), 1, - sym__call_signature, - STATE(5406), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141766] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [141957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3657), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7382), 3, - sym__automatic_semicolon, + ACTIONS(5869), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141783] = 7, - ACTIONS(6538), 1, - anon_sym_AMP, + anon_sym_RBRACE, + ACTIONS(3743), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [141972] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, + anon_sym_QMARK, + STATE(3742), 1, + sym_formal_parameters, + STATE(5318), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141995] = 7, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(7604), 1, + ACTIONS(7633), 1, anon_sym_COMMA, - ACTIONS(7606), 1, + ACTIONS(7635), 1, anon_sym_GT, - STATE(4613), 1, + STATE(4703), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141806] = 7, - ACTIONS(2577), 1, + [142018] = 7, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7608), 1, + ACTIONS(7637), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4929), 1, + STATE(4029), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141829] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7610), 1, + [142041] = 7, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(7232), 1, sym_identifier, - STATE(3900), 1, - sym_formal_parameters, - STATE(5348), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + STATE(3483), 1, + sym_nested_identifier, + STATE(3697), 1, + sym_string, + STATE(4346), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142064] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2600), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141852] = 3, + ACTIONS(7268), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142081] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4818), 6, + ACTIONS(4709), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [141867] = 4, - STATE(3840), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7614), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7612), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141884] = 7, - ACTIONS(2577), 1, + [142096] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7616), 1, + ACTIONS(7639), 1, sym_identifier, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5346), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5498), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141907] = 4, - STATE(3769), 1, - aux_sym_object_type_repeat1, + [142119] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2583), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3653), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7618), 3, + ACTIONS(7208), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141924] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, + [142136] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2584), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3681), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7620), 3, + ACTIONS(7212), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141941] = 7, - ACTIONS(2577), 1, + [142153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4713), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7622), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(5104), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + [142168] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7270), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [142181] = 7, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(7641), 1, + anon_sym_COMMA, + ACTIONS(7643), 1, + anon_sym_GT, + STATE(4595), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141964] = 7, - ACTIONS(2577), 1, + [142204] = 7, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - ACTIONS(7624), 1, + ACTIONS(7645), 1, anon_sym_QMARK, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5300), 1, + STATE(5338), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141987] = 7, - ACTIONS(1552), 1, + [142227] = 7, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(7647), 1, + anon_sym_COMMA, + ACTIONS(7649), 1, + anon_sym_GT, + STATE(4625), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142250] = 7, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1554), 1, + ACTIONS(1596), 1, anon_sym_SQUOTE, - ACTIONS(7332), 1, + ACTIONS(7232), 1, sym_identifier, - STATE(707), 1, + STATE(3483), 1, sym_nested_identifier, - STATE(726), 1, + STATE(3697), 1, sym_string, - STATE(768), 1, + STATE(4370), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142010] = 4, - ACTIONS(7626), 1, + [142273] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2597), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7258), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142290] = 3, + ACTIONS(6475), 1, sym_identifier, - ACTIONS(7628), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7630), 4, + ACTIONS(6477), 5, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [142027] = 7, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - ACTIONS(7243), 1, - sym_identifier, - STATE(3481), 1, - sym_nested_identifier, - STATE(3632), 1, - sym_string, - STATE(4329), 1, - sym__module, + [142305] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7651), 1, + anon_sym_QMARK, + STATE(3742), 1, + sym_formal_parameters, + STATE(5320), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142050] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, + [142328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3675), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7632), 3, + ACTIONS(7653), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142067] = 7, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [142341] = 7, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7634), 1, + ACTIONS(7655), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4116), 1, + STATE(4989), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4868), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + [142364] = 7, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, anon_sym_LT, - [142105] = 3, - ACTIONS(3), 1, + ACTIONS(6847), 1, + anon_sym_DOT, + ACTIONS(7657), 1, + anon_sym_RPAREN, + STATE(1194), 1, + sym_arguments, + STATE(5478), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [142387] = 3, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4576), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + sym_comment, + ACTIONS(6285), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT, - [142120] = 3, - ACTIONS(6447), 1, - sym_identifier, + anon_sym_BQUOTE, + [142402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 5, - anon_sym_EQ, + ACTIONS(7661), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [142135] = 5, - ACTIONS(7636), 1, - anon_sym_default, - ACTIONS(7639), 1, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(7641), 1, - anon_sym_case, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142415] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2563), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3890), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142154] = 5, - ACTIONS(7519), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7644), 1, - anon_sym_BQUOTE, + ACTIONS(7258), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142432] = 5, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(7364), 1, + anon_sym_LBRACK, + ACTIONS(7663), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7515), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3762), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142173] = 3, - ACTIONS(5), 2, - sym_html_comment, + STATE(5532), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [142451] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3715), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7665), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, + [142466] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + ACTIONS(7667), 1, anon_sym_QMARK, - [142188] = 7, - ACTIONS(2577), 1, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5362), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142489] = 7, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(7646), 1, + ACTIONS(7669), 1, anon_sym_QMARK, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3714), 1, + STATE(5062), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142211] = 4, - STATE(3741), 1, + [142512] = 7, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(7671), 1, + anon_sym_COMMA, + ACTIONS(7673), 1, + anon_sym_GT, + STATE(4823), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142535] = 4, + STATE(3735), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7650), 2, + ACTIONS(3661), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7648), 3, + ACTIONS(7675), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4827), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [142243] = 7, - ACTIONS(1584), 1, + [142552] = 7, + ACTIONS(1506), 1, anon_sym_DQUOTE, - ACTIONS(1586), 1, + ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(7243), 1, + ACTIONS(7301), 1, sym_identifier, - STATE(3481), 1, - sym_nested_identifier, - STATE(3632), 1, + STATE(741), 1, sym_string, - STATE(4328), 1, + STATE(855), 1, sym__module, + STATE(4429), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142266] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7652), 1, - sym_identifier, - STATE(3900), 1, - sym_formal_parameters, - STATE(5346), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + [142575] = 4, + STATE(3776), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142289] = 3, - ACTIONS(7654), 1, + ACTIONS(3661), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7675), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142592] = 7, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7301), 1, sym_identifier, + STATE(741), 1, + sym_string, + STATE(825), 1, + sym__module, + STATE(4429), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6281), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [142304] = 4, - STATE(3902), 1, + [142615] = 4, + STATE(3870), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3653), 2, + ACTIONS(7679), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7618), 3, + ACTIONS(7677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142321] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, + [142632] = 4, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2566), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6775), 2, - anon_sym_LBRACE, + ACTIONS(7299), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142649] = 5, + ACTIONS(7611), 1, + anon_sym_default, + ACTIONS(7615), 1, + anon_sym_case, + ACTIONS(7681), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3866), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142668] = 7, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(7683), 1, + anon_sym_QMARK, + STATE(3229), 1, + sym_formal_parameters, + STATE(3601), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142691] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7685), 1, anon_sym_EQ_GT, - STATE(5499), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5232), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [142338] = 2, + [142707] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4665), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7235), 6, + ACTIONS(7688), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142723] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4666), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7690), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [142739] = 3, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5421), 4, + anon_sym_LPAREN, anon_sym_COLON, - [142351] = 4, - STATE(3902), 1, - aux_sym_object_type_repeat1, + anon_sym_LT, + anon_sym_QMARK, + [142753] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4670), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7659), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7656), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142368] = 3, - ACTIONS(3), 1, + [142769] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(2859), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142781] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7430), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [142383] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2587), 1, - sym_statement_block, + sym_comment, + ACTIONS(2863), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7338), 4, + ACTIONS(2867), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142400] = 7, - ACTIONS(7122), 1, - anon_sym_GT, - ACTIONS(7661), 1, - sym_identifier, - ACTIONS(7663), 1, - sym_jsx_identifier, - ACTIONS(7665), 1, - anon_sym_SLASH_GT, - STATE(3090), 1, - sym_nested_identifier, - STATE(3269), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [142805] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4667), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142423] = 7, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7667), 1, - anon_sym_QMARK, - STATE(3244), 1, - sym_formal_parameters, - STATE(4251), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + ACTIONS(7692), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142821] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4686), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142446] = 7, - ACTIONS(2577), 1, - anon_sym_LT, + ACTIONS(7688), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142837] = 4, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7669), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_formal_parameters, - STATE(5317), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_EQ, + STATE(4673), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142469] = 4, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2603), 1, - sym_statement_block, + ACTIONS(7694), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142853] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4696), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 4, + ACTIONS(7688), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142486] = 7, - ACTIONS(2577), 1, - anon_sym_LT, + [142869] = 4, ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(7671), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_formal_parameters, - STATE(5303), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_EQ, + STATE(4697), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142509] = 7, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(7673), 1, + ACTIONS(7690), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7675), 1, - anon_sym_GT, - STATE(5145), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [142885] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4699), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142532] = 4, - ACTIONS(6397), 1, + ACTIONS(7690), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142901] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4775), 1, + STATE(4700), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142548] = 4, - ACTIONS(6397), 1, + [142917] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4683), 1, + STATE(4702), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142564] = 3, - ACTIONS(7475), 1, + [142933] = 3, + ACTIONS(7394), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7681), 4, + ACTIONS(7696), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [142578] = 4, - ACTIONS(6397), 1, + [142947] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4684), 1, + STATE(4708), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142594] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4686), 1, - sym__initializer, + [142963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7653), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [142610] = 2, + [142975] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4709), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7360), 5, + ACTIONS(7690), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [142622] = 2, + [142991] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7460), 5, + ACTIONS(7661), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [142634] = 2, + [143003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7464), 5, + ACTIONS(7372), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [142646] = 2, + [143015] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2551), 5, + ACTIONS(2875), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142658] = 2, + [143027] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4710), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7690), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2555), 5, + ACTIONS(2487), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142670] = 2, + [143055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2555), 5, + ACTIONS(2487), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142682] = 2, + [143067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2559), 5, + ACTIONS(2879), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142694] = 2, + [143079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2563), 5, + ACTIONS(2883), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142706] = 2, + [143091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 5, + ACTIONS(1875), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142718] = 2, + [143103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2555), 5, + ACTIONS(2487), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142730] = 2, + [143115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2555), 5, + ACTIONS(2487), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142742] = 2, + [143127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2555), 5, + ACTIONS(2487), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142754] = 2, + [143139] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2555), 5, + ACTIONS(2487), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142766] = 4, - ACTIONS(6397), 1, + [143151] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4705), 1, + STATE(4688), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142782] = 4, - ACTIONS(6397), 1, + [143167] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4712), 1, + STATE(5145), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142798] = 4, - ACTIONS(6397), 1, + [143183] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6409), 1, + anon_sym_LPAREN, + STATE(3320), 1, + sym_formal_parameters, + STATE(3847), 1, + sym__call_signature, + STATE(5342), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143203] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4714), 1, + STATE(4724), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142814] = 2, + [143219] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7698), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5232), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5077), 5, + ACTIONS(4987), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [142826] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4715), 1, - sym__initializer, + [143247] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(2511), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142842] = 2, + anon_sym_PIPE_RBRACE, + [143259] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2603), 5, + ACTIONS(2515), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142854] = 2, + [143271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2607), 5, + ACTIONS(2519), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142866] = 2, + [143283] = 5, + ACTIONS(7701), 1, + sym_identifier, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(1183), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2611), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142878] = 4, - ACTIONS(6397), 1, + STATE(1228), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [143301] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4716), 1, + STATE(4729), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142894] = 4, - ACTIONS(6397), 1, + [143317] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4717), 1, + STATE(4731), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142910] = 6, - ACTIONS(2577), 1, - anon_sym_LT, + [143333] = 4, ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5443), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_EQ, + STATE(4738), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142930] = 5, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7685), 1, - sym_identifier, + ACTIONS(7690), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143349] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5453), 2, - sym__module_export_name, - sym_string, - [142948] = 4, - ACTIONS(6397), 1, + ACTIONS(7705), 2, + anon_sym_COMMA, + anon_sym_GT, + [143367] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4727), 1, + STATE(4787), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142964] = 4, - ACTIONS(6397), 1, + [143383] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4729), 1, + STATE(5159), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142980] = 4, - ACTIONS(6397), 1, + [143399] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4731), 1, + STATE(4748), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142996] = 4, - ACTIONS(6397), 1, + [143415] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5025), 1, + STATE(4816), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143012] = 4, - ACTIONS(6397), 1, + [143431] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4733), 1, + STATE(4763), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143028] = 4, - ACTIONS(6397), 1, + [143447] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4736), 1, + STATE(4822), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143044] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(4320), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, + [143463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143064] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(7707), 5, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(3999), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143084] = 6, - ACTIONS(2577), 1, - anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [143475] = 4, ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5222), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143104] = 6, - ACTIONS(7152), 1, - anon_sym_LBRACE, - ACTIONS(7689), 1, - anon_sym_SEMI, - ACTIONS(7691), 1, - sym__automatic_semicolon, - ACTIONS(7693), 1, - sym__function_signature_automatic_semicolon, - STATE(743), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143124] = 3, - ACTIONS(7695), 1, anon_sym_EQ, + STATE(4773), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 4, + ACTIONS(7688), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [143138] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6689), 1, - anon_sym_extends, - ACTIONS(7699), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [143491] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4825), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7697), 2, + ACTIONS(7694), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [143156] = 2, + [143507] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5160), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 5, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143168] = 2, + [143523] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4776), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 5, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143180] = 2, + [143539] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4777), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 5, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143192] = 2, + [143555] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4778), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 5, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143204] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_formal_parameters, - STATE(4163), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + [143571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143224] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7304), 5, + ACTIONS(2583), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143236] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5338), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143256] = 6, - ACTIONS(7701), 1, + [143583] = 6, + ACTIONS(7709), 1, sym_identifier, - ACTIONS(7703), 1, + ACTIONS(7711), 1, anon_sym_GT, - ACTIONS(7705), 1, + ACTIONS(7713), 1, sym_jsx_identifier, - STATE(5519), 1, + STATE(5253), 1, sym_nested_identifier, - STATE(5904), 1, + STATE(5802), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143276] = 2, + [143603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 5, + ACTIONS(2583), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143288] = 2, + [143615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7707), 5, + ACTIONS(2583), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143300] = 4, - ACTIONS(3463), 1, - anon_sym_COLON, - STATE(5310), 1, - sym_type_annotation, + [143627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(7344), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143639] = 6, + ACTIONS(7202), 1, anon_sym_EQ, + ACTIONS(7715), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [143316] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7709), 1, - anon_sym_EQ_GT, + ACTIONS(7717), 1, + anon_sym_RBRACE, + STATE(4895), 1, + aux_sym_enum_body_repeat1, + STATE(5219), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5499), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143332] = 2, + [143659] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4788), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 5, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143344] = 2, + [143675] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3229), 1, + sym_formal_parameters, + STATE(4027), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2751), 5, - sym__automatic_semicolon, + [143695] = 6, + ACTIONS(3743), 1, + anon_sym_COLON, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5113), 1, anon_sym_COMMA, + ACTIONS(7719), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143356] = 2, + STATE(4672), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2755), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143368] = 2, + [143715] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4795), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2759), 5, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143380] = 4, - ACTIONS(6397), 1, + [143731] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5137), 1, + STATE(4796), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143396] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7712), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5414), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143412] = 5, - ACTIONS(7715), 1, - anon_sym_BQUOTE, - ACTIONS(7717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7719), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143430] = 2, + [143747] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7304), 5, + ACTIONS(2587), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143442] = 2, + [143759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 5, + ACTIONS(2591), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143454] = 2, + [143771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 5, + ACTIONS(2595), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143466] = 2, + [143783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 5, + ACTIONS(2599), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143478] = 2, + [143795] = 5, + ACTIONS(7721), 1, + anon_sym_BQUOTE, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7725), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7727), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4017), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [143813] = 6, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(7727), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143490] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5447), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + ACTIONS(7729), 1, + sym__automatic_semicolon, + ACTIONS(7731), 1, + sym__function_signature_automatic_semicolon, + STATE(2385), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143510] = 2, + [143833] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7729), 5, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143522] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(3904), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, + [143849] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4801), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143542] = 4, - ACTIONS(6397), 1, + ACTIONS(7690), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143865] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5110), 1, + STATE(4802), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143558] = 3, - ACTIONS(7539), 1, + [143881] = 6, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1586), 1, + anon_sym_LBRACE, + ACTIONS(7238), 1, + anon_sym_extends, + STATE(3988), 1, + sym_object_type, + STATE(4818), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143901] = 3, + ACTIONS(7563), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 4, + ACTIONS(7733), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [143572] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4639), 1, - sym__initializer, + [143915] = 5, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7735), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143588] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4561), 1, - sym__initializer, + STATE(5419), 2, + sym__module_export_name, + sym_string, + [143933] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7346), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143604] = 6, - ACTIONS(7737), 1, - sym_identifier, - ACTIONS(7739), 1, - anon_sym_GT, - ACTIONS(7741), 1, - sym_jsx_identifier, - STATE(5256), 1, - sym_nested_identifier, - STATE(5790), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [143945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143624] = 2, + ACTIONS(2623), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2783), 5, + ACTIONS(7737), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143636] = 2, + [143969] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7739), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5200), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143648] = 2, + STATE(5232), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2791), 5, + ACTIONS(2627), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143660] = 2, + [143997] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2791), 5, + ACTIONS(2627), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143672] = 2, + [144009] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2795), 5, + ACTIONS(2635), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143684] = 2, + [144021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 5, + ACTIONS(1801), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143696] = 5, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7743), 1, - sym_identifier, + [144033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5184), 2, - sym__module_export_name, - sym_string, - [143714] = 2, + ACTIONS(1835), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 5, + ACTIONS(1825), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143726] = 2, + [144057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 5, + ACTIONS(2647), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143738] = 6, - ACTIONS(3715), 1, - anon_sym_COLON, - ACTIONS(4053), 1, - anon_sym_EQ, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(7745), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_object_pattern_repeat1, + [144069] = 6, + ACTIONS(7190), 1, + anon_sym_LBRACE, + ACTIONS(7742), 1, + anon_sym_SEMI, + ACTIONS(7744), 1, + sym__automatic_semicolon, + ACTIONS(7746), 1, + sym__function_signature_automatic_semicolon, + STATE(4031), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143758] = 2, + [144089] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4810), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2819), 5, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143770] = 6, - ACTIONS(2577), 1, + [144105] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6695), 1, + anon_sym_extends, + ACTIONS(7750), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7748), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144123] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(5362), 1, + STATE(4090), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143790] = 6, - ACTIONS(2577), 1, + [144143] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5187), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5430), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143810] = 5, - ACTIONS(7717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7747), 1, - anon_sym_BQUOTE, - ACTIONS(7749), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4020), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143828] = 6, - ACTIONS(7152), 1, - anon_sym_LBRACE, - ACTIONS(7751), 1, - anon_sym_SEMI, - ACTIONS(7753), 1, - sym__automatic_semicolon, - ACTIONS(7755), 1, - sym__function_signature_automatic_semicolon, - STATE(729), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143848] = 6, - ACTIONS(4009), 1, + [144163] = 6, + ACTIONS(7190), 1, anon_sym_LBRACE, - ACTIONS(7689), 1, + ACTIONS(7727), 1, anon_sym_SEMI, - ACTIONS(7691), 1, + ACTIONS(7729), 1, sym__automatic_semicolon, - ACTIONS(7693), 1, + ACTIONS(7731), 1, sym__function_signature_automatic_semicolon, - STATE(2172), 1, + STATE(746), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143868] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(3740), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143888] = 2, + [144183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2847), 5, + ACTIONS(2667), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143900] = 4, - ACTIONS(6397), 1, + [144195] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4668), 1, + STATE(4811), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143916] = 2, + [144211] = 5, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7752), 1, + anon_sym_BQUOTE, + ACTIONS(7754), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7757), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143928] = 2, + STATE(4233), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144229] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4814), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7759), 5, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143940] = 6, - ACTIONS(1028), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1576), 1, - anon_sym_LBRACE, - ACTIONS(7249), 1, - anon_sym_extends, - STATE(3967), 1, - sym_object_type, - STATE(4785), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143960] = 4, - ACTIONS(6397), 1, + [144245] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4757), 1, + STATE(5161), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7761), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143976] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4760), 1, - sym__initializer, + [144261] = 6, + ACTIONS(4029), 1, + anon_sym_LBRACE, + ACTIONS(7756), 1, + anon_sym_SEMI, + ACTIONS(7758), 1, + sym__automatic_semicolon, + ACTIONS(7760), 1, + sym__function_signature_automatic_semicolon, + STATE(2196), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143992] = 4, - ACTIONS(6397), 1, + [144281] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4663), 1, + STATE(4815), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7765), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144008] = 4, - ACTIONS(6397), 1, + [144297] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4766), 1, + STATE(4817), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144024] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6689), 1, - anon_sym_extends, - ACTIONS(7699), 1, - anon_sym_PIPE, + [144313] = 6, + ACTIONS(7202), 1, + anon_sym_EQ, + ACTIONS(7762), 1, + anon_sym_COMMA, + ACTIONS(7764), 1, + anon_sym_RBRACE, + STATE(4893), 1, + aux_sym_enum_body_repeat1, + STATE(5219), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7769), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144042] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5239), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + [144333] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7766), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144062] = 4, - ACTIONS(7570), 1, + STATE(5232), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144349] = 4, + ACTIONS(7396), 1, anon_sym_COLON, - ACTIONS(7771), 1, + ACTIONS(7769), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5499), 3, + STATE(5405), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144078] = 6, - ACTIONS(2577), 1, + [144365] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7346), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144377] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7258), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144389] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(5266), 1, + STATE(4211), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144098] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4768), 1, - sym__initializer, + [144409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7224), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144114] = 6, - ACTIONS(7152), 1, + anon_sym_PIPE_RBRACE, + [144421] = 6, + ACTIONS(7190), 1, anon_sym_LBRACE, - ACTIONS(7774), 1, + ACTIONS(7772), 1, anon_sym_SEMI, - ACTIONS(7776), 1, + ACTIONS(7774), 1, sym__automatic_semicolon, - ACTIONS(7778), 1, + ACTIONS(7776), 1, sym__function_signature_automatic_semicolon, - STATE(4038), 1, + STATE(4050), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144134] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4769), 1, - sym__initializer, + [144441] = 3, + ACTIONS(5640), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, + ACTIONS(1769), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144150] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6689), 1, - anon_sym_extends, - ACTIONS(7699), 1, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [144455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7780), 2, + ACTIONS(7778), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144168] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4770), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144467] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6695), 1, + anon_sym_extends, + ACTIONS(7750), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7780), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [144184] = 5, - ACTIONS(7717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7782), 1, - anon_sym_BQUOTE, - ACTIONS(7784), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4178), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [144202] = 2, + [144485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2495), 5, + ACTIONS(7258), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144214] = 2, + [144497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2495), 5, + ACTIONS(7782), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144226] = 6, - ACTIONS(2577), 1, + [144509] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(5195), 1, + STATE(3678), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144246] = 2, + [144529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2495), 5, + ACTIONS(7344), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144258] = 6, - ACTIONS(4009), 1, - anon_sym_LBRACE, - ACTIONS(7751), 1, - anon_sym_SEMI, - ACTIONS(7753), 1, - sym__automatic_semicolon, - ACTIONS(7755), 1, - sym__function_signature_automatic_semicolon, - STATE(2258), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144278] = 2, + [144541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 5, + ACTIONS(7784), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144290] = 2, + [144553] = 4, + ACTIONS(3477), 1, + anon_sym_COLON, + STATE(5509), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2535), 5, - sym__automatic_semicolon, + ACTIONS(3514), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144302] = 2, + anon_sym_RBRACK, + [144569] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2539), 5, + ACTIONS(7224), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144314] = 6, - ACTIONS(7261), 1, - anon_sym_EQ, - ACTIONS(7786), 1, - anon_sym_COMMA, - ACTIONS(7788), 1, - anon_sym_RBRACE, - STATE(4902), 1, - aux_sym_enum_body_repeat1, - STATE(5471), 1, - sym__initializer, + [144581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144334] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2543), 5, + ACTIONS(7786), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144346] = 2, + [144593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2547), 5, + ACTIONS(7788), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144358] = 2, + [144605] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5074), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 5, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144370] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7790), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5499), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144386] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7793), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5414), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144402] = 2, + [144621] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2631), 5, + ACTIONS(7790), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144414] = 4, - ACTIONS(6397), 1, + [144633] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5082), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144430] = 6, - ACTIONS(7152), 1, - anon_sym_LBRACE, - ACTIONS(7796), 1, - anon_sym_SEMI, - ACTIONS(7798), 1, - sym__automatic_semicolon, - ACTIONS(7800), 1, - sym__function_signature_automatic_semicolon, - STATE(4053), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144450] = 3, - ACTIONS(5358), 1, - sym__automatic_semicolon, + [144649] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7792), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1780), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144464] = 5, - ACTIONS(6685), 1, + STATE(5405), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144665] = 5, + ACTIONS(6691), 1, anon_sym_AMP, - ACTIONS(6689), 1, + ACTIONS(6695), 1, anon_sym_extends, - ACTIONS(7699), 1, + ACTIONS(7750), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7802), 2, + ACTIONS(7795), 2, sym__automatic_semicolon, anon_sym_SEMI, - [144482] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_formal_parameters, - STATE(3569), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144502] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4777), 1, - sym__initializer, + [144683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144518] = 2, + ACTIONS(6285), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [144695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 5, + ACTIONS(2695), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144530] = 2, + [144707] = 3, + ACTIONS(5668), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 5, - sym__automatic_semicolon, + ACTIONS(1755), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144542] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4780), 1, - sym__initializer, + [144721] = 3, + ACTIONS(5670), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, + ACTIONS(1845), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144558] = 2, + anon_sym_PIPE_RBRACE, + [144735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2711), 5, + ACTIONS(2695), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144570] = 6, - ACTIONS(2577), 1, + [144747] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(5212), 1, + STATE(3541), 1, sym__call_signature, - STATE(5525), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144590] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1909), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144602] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1748), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144614] = 2, + [144767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 5, + ACTIONS(2695), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144626] = 2, + [144779] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2727), 5, + ACTIONS(2699), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144638] = 4, - ACTIONS(7570), 1, + [144791] = 4, + ACTIONS(7396), 1, anon_sym_COLON, - ACTIONS(7804), 1, + ACTIONS(7797), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5414), 3, + STATE(5405), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144654] = 4, - ACTIONS(6397), 1, + [144807] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4782), 1, + STATE(5077), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144670] = 3, - ACTIONS(5370), 1, + [144823] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6695), 1, + anon_sym_extends, + ACTIONS(7750), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7800), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [144841] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 4, + ACTIONS(2703), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144684] = 3, - ACTIONS(5372), 1, + [144853] = 3, + ACTIONS(5672), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 4, + ACTIONS(1885), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144698] = 6, - ACTIONS(2577), 1, + [144867] = 6, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3627), 1, + STATE(3593), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144718] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4784), 1, - sym__initializer, + [144887] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(2707), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144734] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6689), 1, - anon_sym_extends, - ACTIONS(7699), 1, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [144899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7807), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144752] = 3, - ACTIONS(5374), 1, + ACTIONS(2711), 5, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1879), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144766] = 6, - ACTIONS(2577), 1, + [144911] = 6, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3656), 1, + STATE(3495), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144786] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4788), 1, - sym__initializer, + [144931] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(2715), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144802] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_formal_parameters, - STATE(3689), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144822] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_formal_parameters, - STATE(3565), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144842] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4789), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(2719), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144858] = 6, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [144955] = 6, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3630), 1, + STATE(3524), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144878] = 6, - ACTIONS(2577), 1, + [144975] = 6, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(3956), 1, + STATE(3543), 1, sym__call_signature, - STATE(5406), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144898] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4797), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7677), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144914] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144930] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4801), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144946] = 6, - ACTIONS(2577), 1, + [144995] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4682), 1, - sym__call_signature, - STATE(5406), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5475), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144966] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4809), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7677), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144982] = 4, - ACTIONS(6397), 1, + [145015] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4685), 1, + STATE(5083), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144998] = 2, + [145031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2779), 5, + ACTIONS(2727), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145010] = 2, + [145043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2799), 5, + ACTIONS(2727), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145022] = 2, + [145055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 5, + ACTIONS(2739), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145034] = 2, + [145067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2807), 5, + ACTIONS(1811), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145046] = 2, + [145079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2811), 5, + ACTIONS(1859), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145058] = 2, + [145091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2815), 5, + ACTIONS(1734), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145070] = 2, + [145103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 5, + ACTIONS(2755), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145082] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4815), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7677), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145098] = 2, + [145115] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5488), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145110] = 6, - ACTIONS(2577), 1, + [145135] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(5344), 1, + STATE(3752), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145130] = 2, + [145155] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4981), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2491), 5, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145142] = 2, + [145171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 5, + ACTIONS(7804), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145154] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4816), 1, - sym__initializer, + [145183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7806), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145170] = 4, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [145195] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4817), 1, + STATE(4836), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145186] = 4, - ACTIONS(6397), 1, + [145211] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4688), 1, + STATE(4840), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145202] = 4, - ACTIONS(6397), 1, + [145227] = 5, + ACTIONS(7812), 1, + sym_identifier, + ACTIONS(7814), 1, + anon_sym_LPAREN, + STATE(2601), 1, + sym_decorator_member_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2704), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [145245] = 5, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7816), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5260), 2, + sym__module_export_name, + sym_string, + [145263] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4823), 1, + STATE(4842), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145218] = 4, - ACTIONS(7811), 1, - anon_sym_in, - ACTIONS(7813), 1, - anon_sym_of, + [145279] = 3, + ACTIONS(7820), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7809), 3, - sym__automatic_semicolon, + ACTIONS(3549), 4, anon_sym_COMMA, - anon_sym_SEMI, - [145234] = 4, - ACTIONS(7815), 1, - anon_sym_in, - ACTIONS(7817), 1, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [145293] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5263), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7809), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [145313] = 6, + ACTIONS(7190), 1, + anon_sym_LBRACE, + ACTIONS(7756), 1, anon_sym_SEMI, - [145250] = 4, - ACTIONS(6397), 1, + ACTIONS(7758), 1, + sym__automatic_semicolon, + ACTIONS(7760), 1, + sym__function_signature_automatic_semicolon, + STATE(748), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145333] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4825), 1, + STATE(4843), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145266] = 4, - ACTIONS(6397), 1, + [145349] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4826), 1, + STATE(5090), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145282] = 6, - ACTIONS(7819), 1, + [145365] = 6, + ACTIONS(7822), 1, sym_identifier, - ACTIONS(7821), 1, + ACTIONS(7824), 1, anon_sym_GT, - ACTIONS(7823), 1, + ACTIONS(7826), 1, sym_jsx_identifier, - STATE(5514), 1, + STATE(5516), 1, sym_nested_identifier, - STATE(5894), 1, + STATE(5890), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145302] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4827), 1, - sym__initializer, + [145385] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6695), 1, + anon_sym_extends, + ACTIONS(7750), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145403] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2779), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(2783), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145318] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4828), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [145427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(2787), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145334] = 5, - ACTIONS(7717), 1, + anon_sym_PIPE_RBRACE, + [145439] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2791), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145451] = 5, + ACTIONS(7723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(7830), 1, anon_sym_BQUOTE, - ACTIONS(7827), 1, + ACTIONS(7832), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4104), 2, + STATE(4110), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145352] = 6, - ACTIONS(4009), 1, + [145469] = 6, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(7774), 1, + ACTIONS(7742), 1, anon_sym_SEMI, - ACTIONS(7776), 1, + ACTIONS(7744), 1, sym__automatic_semicolon, - ACTIONS(7778), 1, + ACTIONS(7746), 1, sym__function_signature_automatic_semicolon, - STATE(2142), 1, + STATE(2326), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145372] = 2, + [145489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2507), 5, + ACTIONS(2795), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145384] = 2, + [145501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2511), 5, + ACTIONS(2799), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145396] = 2, + [145513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5694), 5, + ACTIONS(2803), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145525] = 4, + ACTIONS(6403), 1, anon_sym_EQ, + STATE(4844), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7818), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145408] = 2, + anon_sym_SEMI, + [145541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2515), 5, + ACTIONS(2815), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145420] = 2, + [145553] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2519), 5, + ACTIONS(2819), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145432] = 2, + [145565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2527), 5, + ACTIONS(1895), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145444] = 4, - ACTIONS(6397), 1, + [145577] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4832), 1, + STATE(4845), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145460] = 5, - ACTIONS(7717), 1, + [145593] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5268), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145613] = 5, + ACTIONS(7723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7784), 1, + ACTIONS(7754), 1, sym__template_chars, - ACTIONS(7829), 1, + ACTIONS(7834), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4178), 2, + STATE(4233), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145478] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4833), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145494] = 6, - ACTIONS(4009), 1, + [145631] = 6, + ACTIONS(4029), 1, anon_sym_LBRACE, - ACTIONS(7796), 1, + ACTIONS(7772), 1, anon_sym_SEMI, - ACTIONS(7798), 1, + ACTIONS(7774), 1, sym__automatic_semicolon, - ACTIONS(7800), 1, + ACTIONS(7776), 1, sym__function_signature_automatic_semicolon, - STATE(2153), 1, + STATE(2336), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145514] = 4, - ACTIONS(6397), 1, + [145651] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4834), 1, + STATE(4849), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145530] = 4, - ACTIONS(6397), 1, + [145667] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4850), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145546] = 4, - ACTIONS(6397), 1, + [145683] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4838), 1, + STATE(4851), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145562] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5508), 5, + [145699] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145574] = 2, + STATE(4854), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 5, - anon_sym_EQ, + ACTIONS(7818), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145586] = 2, + anon_sym_SEMI, + [145715] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4856), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 5, - anon_sym_EQ, + ACTIONS(7818), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145598] = 6, - ACTIONS(2577), 1, + anon_sym_SEMI, + [145731] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3830), 1, + STATE(5271), 1, sym__call_signature, - STATE(5493), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145618] = 4, - ACTIONS(6397), 1, + [145751] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4839), 1, + STATE(4859), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145634] = 4, - ACTIONS(6397), 1, + [145767] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4842), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145650] = 2, + [145783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7259), 5, + ACTIONS(2831), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145662] = 2, + [145795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 5, + ACTIONS(2835), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145674] = 6, - ACTIONS(7833), 1, - sym_identifier, - ACTIONS(7835), 1, - anon_sym_GT, - ACTIONS(7837), 1, - sym_jsx_identifier, - STATE(5211), 1, - sym_nested_identifier, - STATE(5681), 1, - sym_jsx_namespace_name, + [145807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145694] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4847), 1, - sym__initializer, + ACTIONS(2839), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145819] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(2843), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145710] = 5, - ACTIONS(7717), 1, + anon_sym_PIPE_RBRACE, + [145831] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2851), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145843] = 6, + ACTIONS(7838), 1, + sym_identifier, + ACTIONS(7840), 1, + anon_sym_GT, + ACTIONS(7842), 1, + sym_jsx_identifier, + STATE(5221), 1, + sym_nested_identifier, + STATE(5887), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145863] = 5, + ACTIONS(7723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7839), 1, + ACTIONS(7844), 1, anon_sym_BQUOTE, - ACTIONS(7841), 1, + ACTIONS(7846), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4124), 2, + STATE(4131), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145728] = 4, - ACTIONS(6397), 1, + [145881] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4848), 1, + STATE(4693), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145744] = 4, - ACTIONS(6397), 1, + [145897] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4924), 1, + STATE(4866), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7843), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145760] = 4, - ACTIONS(6397), 1, + [145913] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4850), 1, + STATE(4867), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145776] = 5, - ACTIONS(7717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7784), 1, - sym__template_chars, - ACTIONS(7845), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4178), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145794] = 4, - ACTIONS(6397), 1, + [145929] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4851), 1, + STATE(4868), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145810] = 5, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - ACTIONS(7847), 1, - sym_identifier, + [145945] = 5, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7754), 1, + sym__template_chars, + ACTIONS(7848), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5581), 2, - sym__module_export_name, - sym_string, - [145828] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4852), 1, - sym__initializer, + STATE(4233), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145963] = 3, + ACTIONS(7850), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145844] = 4, - ACTIONS(6397), 1, + ACTIONS(7852), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145977] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4708), 1, + STATE(4874), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145860] = 5, - ACTIONS(7717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7849), 1, - anon_sym_BQUOTE, - ACTIONS(7851), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4134), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145878] = 4, - ACTIONS(6397), 1, + [145993] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4934), 1, + STATE(4877), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7853), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145894] = 4, - ACTIONS(6397), 1, + [146009] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4709), 1, + STATE(4878), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145910] = 4, - ACTIONS(6397), 1, + [146025] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4857), 1, + STATE(4879), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145926] = 4, - ACTIONS(6397), 1, + [146041] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4858), 1, + STATE(4882), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145942] = 5, - ACTIONS(7717), 1, + [146057] = 5, + ACTIONS(7723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7784), 1, - sym__template_chars, - ACTIONS(7855), 1, + ACTIONS(7854), 1, anon_sym_BQUOTE, + ACTIONS(7856), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4178), 2, + STATE(4143), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145960] = 4, - ACTIONS(6397), 1, + [146075] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4859), 1, + STATE(4883), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145976] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4713), 1, - sym__initializer, + [146091] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5202), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145992] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4867), 1, - sym__initializer, + [146111] = 4, + ACTIONS(7860), 1, + anon_sym_in, + ACTIONS(7862), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(7858), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146008] = 4, - ACTIONS(6397), 1, + [146127] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5085), 1, + STATE(4884), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146024] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4871), 1, - sym__initializer, + [146143] = 5, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7754), 1, + sym__template_chars, + ACTIONS(7864), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146040] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4872), 1, - sym__initializer, + STATE(4233), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146161] = 4, + ACTIONS(7866), 1, + anon_sym_in, + ACTIONS(7868), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7858), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146056] = 4, - ACTIONS(6397), 1, + [146177] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4873), 1, + STATE(4885), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146072] = 4, - ACTIONS(6397), 1, + [146193] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4721), 1, + STATE(4886), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146088] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4878), 1, - sym__initializer, + [146209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, - sym__automatic_semicolon, + ACTIONS(5518), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [146104] = 4, - ACTIONS(6397), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146221] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4879), 1, + STATE(4900), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146120] = 4, - ACTIONS(6397), 1, + [146237] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4880), 1, + STATE(4901), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146136] = 4, - ACTIONS(6397), 1, + [146253] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4881), 1, + STATE(4904), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146152] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4882), 1, - sym__initializer, + [146269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, - sym__automatic_semicolon, + ACTIONS(5522), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [146168] = 4, - ACTIONS(6397), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146281] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4981), 1, + STATE(4905), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7857), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146184] = 4, - ACTIONS(6397), 1, + [146297] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5522), 5, anon_sym_EQ, - STATE(4723), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, - sym__automatic_semicolon, + ACTIONS(5522), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [146200] = 4, - ACTIONS(6397), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146321] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6409), 1, + anon_sym_LPAREN, + STATE(3320), 1, + sym_formal_parameters, + STATE(3790), 1, + sym__call_signature, + STATE(5342), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146341] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4887), 1, + STATE(4908), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146216] = 4, - ACTIONS(6397), 1, + [146357] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4891), 1, + STATE(4909), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146232] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7396), 1, - anon_sym_abstract, - ACTIONS(7438), 1, - anon_sym_class, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, + [146373] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5353), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146252] = 4, - ACTIONS(6397), 1, + [146393] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5354), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146413] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4893), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146268] = 6, - ACTIONS(3715), 1, - anon_sym_COLON, - ACTIONS(4053), 1, + [146429] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(7859), 1, - anon_sym_RBRACE, - STATE(5168), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146288] = 2, + STATE(4786), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5356), 5, - anon_sym_EQ, + ACTIONS(7692), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146300] = 4, - ACTIONS(6397), 1, + anon_sym_SEMI, + [146445] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4895), 1, + STATE(4807), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146316] = 4, - ACTIONS(6397), 1, + [146461] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4900), 1, + STATE(4977), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7870), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146332] = 2, + [146477] = 5, + ACTIONS(7874), 1, + anon_sym_SEMI, + ACTIONS(7876), 1, + sym__automatic_semicolon, + STATE(5412), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7326), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146344] = 2, + ACTIONS(7872), 2, + anon_sym_with, + anon_sym_assert, + [146495] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4915), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7861), 5, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146356] = 4, - ACTIONS(6397), 1, + [146511] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5081), 1, + STATE(4916), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146372] = 4, - ACTIONS(6397), 1, + [146527] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4905), 1, + STATE(4920), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146388] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(4000), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, + [146543] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4922), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146408] = 2, + ACTIONS(7818), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146559] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4924), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7322), 5, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146420] = 6, - ACTIONS(2577), 1, + [146575] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4249), 1, + STATE(3991), 1, sym__call_signature, - STATE(5406), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146440] = 2, + [146595] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4992), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 5, + ACTIONS(7878), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146452] = 2, + [146611] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4932), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7322), 5, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146464] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7863), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [146482] = 2, + [146627] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4933), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7865), 5, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146494] = 6, + [146643] = 6, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7394), 1, - anon_sym_class, - ACTIONS(7396), 1, + ACTIONS(7585), 1, anon_sym_abstract, - STATE(1236), 1, + ACTIONS(7601), 1, + anon_sym_class, + STATE(1244), 1, sym_decorator, - STATE(3837), 1, + STATE(3814), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146514] = 6, - ACTIONS(2577), 1, + [146663] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4016), 1, + STATE(4009), 1, sym__call_signature, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146534] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7396), 1, - anon_sym_abstract, - ACTIONS(7867), 1, - anon_sym_class, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146554] = 2, + [146683] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4934), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 5, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146566] = 6, - ACTIONS(2577), 1, + [146699] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5333), 1, + STATE(5348), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146586] = 4, - ACTIONS(6307), 1, - anon_sym_LBRACK, - ACTIONS(7869), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [146602] = 2, + [146719] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5344), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7871), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146614] = 4, - ACTIONS(6397), 1, + [146739] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4746), 1, + STATE(4942), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146630] = 6, - ACTIONS(2577), 1, + [146755] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4025), 1, + STATE(4020), 1, sym__call_signature, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146650] = 5, - ACTIONS(7873), 1, - anon_sym_BQUOTE, - ACTIONS(7875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7878), 1, - sym__template_chars, + [146775] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4947), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4178), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146668] = 6, - ACTIONS(2577), 1, + ACTIONS(7836), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146791] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5412), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5424), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146688] = 4, - ACTIONS(6397), 1, + [146811] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4610), 1, + STATE(4948), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7881), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146704] = 2, + [146827] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5033), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5362), 5, - anon_sym_EQ, + ACTIONS(7880), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146716] = 2, + anon_sym_SEMI, + [146843] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4949), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7883), 5, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146728] = 2, + [146859] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4819), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5362), 5, - anon_sym_EQ, + ACTIONS(7694), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146740] = 2, + anon_sym_SEMI, + [146875] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4953), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7885), 5, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146752] = 5, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(7887), 1, - sym_identifier, + [146891] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4955), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4761), 2, - sym__module_export_name, - sym_string, - [146770] = 4, - ACTIONS(6397), 1, + ACTIONS(7818), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146907] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4752), 1, + STATE(4956), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146786] = 2, + [146923] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4957), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5362), 5, - anon_sym_EQ, + ACTIONS(7818), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146798] = 4, - ACTIONS(6397), 1, + anon_sym_SEMI, + [146939] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4958), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7889), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146814] = 6, - ACTIONS(2577), 1, + [146955] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(3786), 1, + STATE(4030), 1, sym__call_signature, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146834] = 4, - ACTIONS(6397), 1, + [146975] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5520), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146995] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4767), 1, + STATE(4961), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146850] = 6, - ACTIONS(2577), 1, + [147011] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4037), 1, - sym__call_signature, - STATE(5493), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5525), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146870] = 6, - ACTIONS(2577), 1, + [147031] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5518), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5528), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146890] = 6, - ACTIONS(2577), 1, - anon_sym_LT, + [147051] = 4, ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5178), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_EQ, + STATE(4869), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146910] = 6, - ACTIONS(2577), 1, - anon_sym_LT, + ACTIONS(7882), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147067] = 4, ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5183), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_EQ, + STATE(4962), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146930] = 4, - ACTIONS(6397), 1, + ACTIONS(7818), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147083] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4916), 1, + STATE(4966), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146946] = 4, - ACTIONS(6397), 1, + [147099] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4917), 1, + STATE(4967), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146962] = 3, - ACTIONS(7893), 1, - sym_identifier, + [147115] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4968), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7895), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [146976] = 3, - ACTIONS(7897), 1, - sym_identifier, + ACTIONS(7818), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147131] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5252), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7899), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [146990] = 6, - ACTIONS(2577), 1, + [147151] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5229), 1, + STATE(5212), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147010] = 2, + [147171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7901), 5, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(7326), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147183] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7884), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147195] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [147022] = 6, - ACTIONS(2577), 1, + STATE(3742), 1, + sym_formal_parameters, + STATE(5241), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147215] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5259), 1, + STATE(5246), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147042] = 4, - ACTIONS(6397), 1, + [147235] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4918), 1, + STATE(4969), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7818), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147058] = 6, - ACTIONS(2577), 1, - anon_sym_LT, + [147251] = 4, ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4971), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7818), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147267] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5262), 1, + STATE(5294), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147078] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4919), 1, - sym__initializer, + [147287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7297), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147094] = 2, + anon_sym_PIPE_RBRACE, + [147299] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3229), 1, + sym_formal_parameters, + STATE(4303), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7259), 5, + ACTIONS(7299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147106] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4927), 1, - sym__initializer, + [147331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7903), 3, + ACTIONS(7886), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147122] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5299), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [147343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147142] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4932), 1, - sym__initializer, + ACTIONS(7297), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7888), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147158] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4933), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147367] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7890), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147174] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4935), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7299), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147190] = 6, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [147391] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5315), 1, + STATE(5317), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147210] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4936), 1, - sym__initializer, + [147411] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7892), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7894), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147226] = 6, - ACTIONS(2577), 1, + anon_sym_PIPE_RBRACE, + [147435] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5324), 1, + STATE(5319), 1, sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147246] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4939), 1, - sym__initializer, + [147455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7896), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147262] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4940), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147467] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5326), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147487] = 6, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(7900), 1, + anon_sym_GT, + ACTIONS(7902), 1, + sym_jsx_identifier, + STATE(5361), 1, + sym_nested_identifier, + STATE(5577), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + [147507] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7904), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147278] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5332), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [147519] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147298] = 4, - ACTIONS(6397), 1, + ACTIONS(7906), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [147537] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4941), 1, + STATE(4826), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147314] = 4, - ACTIONS(6397), 1, + [147553] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4942), 1, + STATE(4980), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7908), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147330] = 6, - ACTIONS(2577), 1, + [147569] = 4, + STATE(5301), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7872), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7910), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147585] = 4, + STATE(5303), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7872), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7912), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147601] = 4, + ACTIONS(6309), 1, + anon_sym_LBRACK, + ACTIONS(7914), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4344), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147617] = 5, + ACTIONS(7916), 1, + anon_sym_BQUOTE, + ACTIONS(7918), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7921), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4233), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147635] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(3950), 1, + STATE(3791), 1, sym__call_signature, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147350] = 2, + [147655] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6409), 1, + anon_sym_LPAREN, + STATE(3320), 1, + sym_formal_parameters, + STATE(3885), 1, + sym__call_signature, + STATE(5342), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7905), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147362] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7907), 1, - anon_sym_EQ_GT, + [147675] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4982), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5414), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [147378] = 4, - ACTIONS(6397), 1, + ACTIONS(7924), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147691] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4943), 1, + STATE(4983), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147394] = 2, + [147707] = 3, + ACTIONS(7926), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5263), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147406] = 4, - ACTIONS(6397), 1, + ACTIONS(7928), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147721] = 3, + ACTIONS(7930), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7932), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147735] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4944), 1, + STATE(4984), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147422] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7257), 5, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147434] = 4, - ACTIONS(6397), 1, + [147751] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4945), 1, + STATE(4986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147450] = 4, - ACTIONS(6397), 1, + [147767] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4946), 1, + STATE(4853), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147466] = 4, - ACTIONS(6397), 1, + [147783] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4909), 1, + STATE(4996), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7934), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147482] = 4, - ACTIONS(6397), 1, + [147799] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4949), 1, + STATE(4997), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7903), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147498] = 4, - ACTIONS(6397), 1, + [147815] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4950), 1, + STATE(4998), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147514] = 4, - ACTIONS(6397), 1, + [147831] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4951), 1, + STATE(4999), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147530] = 4, - ACTIONS(6397), 1, + [147847] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4952), 1, + STATE(5000), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147546] = 4, - ACTIONS(6397), 1, + [147863] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4953), 1, + STATE(5003), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147562] = 4, - ACTIONS(6397), 1, + [147879] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4954), 1, + STATE(5004), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147578] = 3, - ACTIONS(4786), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4788), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [147592] = 3, - ACTIONS(4807), 1, - sym_identifier, + [147895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4809), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [147606] = 4, - ACTIONS(6397), 1, + ACTIONS(7936), 5, anon_sym_EQ, - STATE(4955), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7891), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147622] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5418), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_extends, + anon_sym_implements, + [147907] = 5, + ACTIONS(7938), 1, + anon_sym_SEMI, + ACTIONS(7940), 1, + sym__automatic_semicolon, + STATE(5380), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147642] = 6, - ACTIONS(2577), 1, + ACTIONS(7872), 2, + anon_sym_with, + anon_sym_assert, + [147925] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4096), 1, + STATE(4100), 1, sym__call_signature, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147662] = 4, - ACTIONS(6397), 1, + [147945] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4958), 1, + STATE(5005), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147678] = 4, - ACTIONS(6397), 1, + [147961] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4959), 1, + STATE(5006), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147694] = 2, + [147977] = 6, + ACTIONS(3743), 1, + anon_sym_COLON, + ACTIONS(4243), 1, + anon_sym_EQ, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(7942), 1, + anon_sym_RBRACE, + STATE(5157), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5566), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147706] = 6, + [147997] = 6, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7910), 1, + ACTIONS(7944), 1, anon_sym_class, - ACTIONS(7912), 1, + ACTIONS(7946), 1, anon_sym_abstract, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(3837), 1, + STATE(3814), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147726] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - STATE(4106), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, + [148017] = 4, + STATE(5218), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147746] = 6, - ACTIONS(2577), 1, + ACTIONS(7872), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7948), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148033] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(5454), 1, + STATE(4111), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147766] = 2, + [148053] = 3, + ACTIONS(4753), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7914), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147778] = 6, - ACTIONS(2577), 1, + ACTIONS(4755), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148067] = 3, + ACTIONS(4640), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4642), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148081] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5192), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5365), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147798] = 2, + [148101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5600), 5, + ACTIONS(5193), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [147810] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7338), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147822] = 6, - ACTIONS(2577), 1, + [148113] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(4277), 1, - sym__call_signature, - STATE(5406), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5466), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147842] = 2, + [148133] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5008), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 5, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147854] = 2, + [148149] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5009), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7338), 5, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147866] = 6, - ACTIONS(7386), 1, - anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_extends, - ACTIONS(7916), 1, - anon_sym_as, - ACTIONS(7918), 1, - anon_sym_RBRACK, + [148165] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7950), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147886] = 4, - ACTIONS(6397), 1, + STATE(5405), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148181] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4643), 1, + STATE(4798), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7920), 3, + ACTIONS(7953), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147902] = 2, + [148197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7922), 5, - sym__automatic_semicolon, + ACTIONS(5580), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147914] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148209] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5011), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 5, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147926] = 6, - ACTIONS(2577), 1, + [148225] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7585), 1, + anon_sym_abstract, + ACTIONS(7955), 1, + anon_sym_class, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148245] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(3810), 1, - sym__call_signature, - STATE(5493), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5505), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147946] = 3, - ACTIONS(4868), 1, + [148265] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5012), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7924), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148281] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5332), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148293] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5332), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148305] = 3, + ACTIONS(4888), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4870), 4, + ACTIONS(4890), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [147960] = 4, - ACTIONS(6397), 1, + [148319] = 3, + ACTIONS(4902), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4904), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148333] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5092), 1, + STATE(5047), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7926), 3, + ACTIONS(7957), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147976] = 4, - ACTIONS(6397), 1, + [148349] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5093), 1, + STATE(5016), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7928), 3, + ACTIONS(7934), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147992] = 3, - ACTIONS(4576), 1, + [148365] = 3, + ACTIONS(4709), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4578), 4, + ACTIONS(4711), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148006] = 4, - ACTIONS(6397), 1, + [148379] = 3, + ACTIONS(4713), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4715), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148393] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4962), 1, + STATE(5017), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7930), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148022] = 4, - ACTIONS(6397), 1, + [148409] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4963), 1, + STATE(5021), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7930), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148038] = 3, - ACTIONS(4818), 1, + [148425] = 5, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + ACTIONS(7959), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148052] = 3, - ACTIONS(4827), 1, - sym_identifier, + STATE(5545), 2, + sym__module_export_name, + sym_string, + [148443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4829), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148066] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_formal_parameters, - STATE(5102), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + ACTIONS(5332), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148455] = 4, + STATE(5222), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148086] = 4, - ACTIONS(6397), 1, + ACTIONS(7872), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7961), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148471] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4966), 1, + STATE(5023), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7930), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148102] = 4, - ACTIONS(6397), 1, + [148487] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4967), 1, + STATE(5026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7930), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148118] = 2, + [148503] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5027), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7932), 5, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148130] = 3, - ACTIONS(4620), 1, - sym_identifier, + [148519] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5034), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4622), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148144] = 4, - ACTIONS(6397), 1, + ACTIONS(7924), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148535] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5130), 1, + STATE(5035), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7924), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148551] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5036), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148160] = 3, - ACTIONS(4624), 1, + [148567] = 3, + ACTIONS(4800), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4802), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148581] = 3, + ACTIONS(4804), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4626), 4, + ACTIONS(4806), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148174] = 3, - ACTIONS(4620), 1, + [148595] = 3, + ACTIONS(4800), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4622), 4, + ACTIONS(4802), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148188] = 3, - ACTIONS(4632), 1, + [148609] = 3, + ACTIONS(4815), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4634), 4, + ACTIONS(4817), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148202] = 3, - ACTIONS(4646), 1, + [148623] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5598), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148635] = 3, + ACTIONS(4819), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4648), 4, + ACTIONS(4821), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148216] = 3, - ACTIONS(4620), 1, + [148649] = 6, + ACTIONS(7472), 1, + anon_sym_AMP, + ACTIONS(7478), 1, + anon_sym_PIPE, + ACTIONS(7480), 1, + anon_sym_extends, + ACTIONS(7963), 1, + anon_sym_as, + ACTIONS(7965), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148669] = 3, + ACTIONS(4800), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4622), 4, + ACTIONS(4802), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148230] = 2, + [148683] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5267), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7255), 5, + ACTIONS(7967), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148242] = 6, - ACTIONS(2577), 1, + [148707] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3244), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(4283), 1, + STATE(3893), 1, sym__call_signature, - STATE(5406), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148262] = 2, + [148727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7237), 5, + ACTIONS(7208), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148274] = 4, - ACTIONS(6397), 1, + [148739] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3229), 1, + sym_formal_parameters, + STATE(4330), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148759] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5146), 1, + STATE(5119), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148290] = 3, - ACTIONS(4658), 1, + [148775] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5121), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7971), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148791] = 2, + 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, + [148803] = 3, + ACTIONS(4910), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4660), 4, + ACTIONS(4912), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148304] = 3, - ACTIONS(4662), 1, + [148817] = 3, + ACTIONS(4918), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4664), 4, + ACTIONS(4920), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148318] = 2, + [148831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7310), 5, + ACTIONS(7208), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148330] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4960), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7679), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148346] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4961), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7683), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148362] = 2, + [148843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1807), 5, + ACTIONS(7973), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148374] = 4, - ACTIONS(6397), 1, + [148855] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5169), 1, + STATE(5038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148390] = 3, - ACTIONS(4558), 1, - anon_sym_in, + [148871] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3229), 1, + sym_formal_parameters, + STATE(5135), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5579), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [148404] = 4, - ACTIONS(6397), 1, + [148891] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4965), 1, + STATE(4740), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148420] = 4, - ACTIONS(6397), 1, + [148907] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4869), 1, + STATE(5040), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148436] = 4, - ACTIONS(6397), 1, + [148923] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4734), 1, + STATE(4978), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148452] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4743), 1, - sym__initializer, + [148939] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7583), 1, + anon_sym_class, + ACTIONS(7585), 1, + anon_sym_abstract, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7936), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148468] = 4, - ACTIONS(6397), 1, + [148959] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4744), 1, + STATE(5115), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7936), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148484] = 2, - 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, - [148496] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1807), 5, + ACTIONS(7979), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148508] = 5, - ACTIONS(7717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7784), 1, - sym__template_chars, - ACTIONS(7938), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4178), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [148526] = 3, - ACTIONS(4714), 1, + [148975] = 3, + ACTIONS(4650), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4716), 4, + ACTIONS(4652), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148540] = 3, - ACTIONS(4718), 1, + [148989] = 3, + ACTIONS(4654), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4720), 4, + ACTIONS(4656), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148554] = 4, - ACTIONS(6397), 1, + [149003] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(5041), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148570] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7940), 5, + ACTIONS(7975), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148582] = 4, - ACTIONS(6397), 1, + [149019] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4992), 1, + STATE(5042), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148598] = 4, - ACTIONS(6397), 1, + [149035] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(4806), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148614] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4998), 1, - sym__initializer, + [149051] = 5, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7981), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148630] = 4, - ACTIONS(6397), 1, + STATE(4658), 2, + sym__module_export_name, + sym_string, + [149069] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5173), 1, + STATE(4780), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148646] = 4, - ACTIONS(6397), 1, + [149085] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4680), 1, + STATE(4910), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148662] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_formal_parameters, - STATE(4026), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148682] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7208), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148694] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7942), 5, + ACTIONS(7979), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148706] = 4, - ACTIONS(6397), 1, + [149101] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5001), 1, + STATE(4935), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148722] = 4, - ACTIONS(6397), 1, + [149117] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5002), 1, + STATE(4976), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148738] = 2, + [149133] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(7985), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148750] = 2, + [149145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7944), 5, + ACTIONS(7226), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148762] = 6, - ACTIONS(2577), 1, + [149157] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3229), 1, sym_formal_parameters, - STATE(4318), 1, + STATE(4334), 1, sym__call_signature, - STATE(5493), 1, + STATE(5404), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148782] = 2, + [149177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7659), 5, + ACTIONS(7256), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148794] = 2, + [149189] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7946), 1, + anon_sym_abstract, + ACTIONS(7987), 1, + anon_sym_class, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 5, + ACTIONS(7262), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148806] = 6, - ACTIONS(2577), 1, - anon_sym_LT, + [149221] = 4, ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5382), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + anon_sym_EQ, + STATE(5095), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148826] = 2, + ACTIONS(7692), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7946), 5, + ACTIONS(1783), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148838] = 6, - ACTIONS(1674), 1, - anon_sym_LBRACE, - ACTIONS(7751), 1, - anon_sym_SEMI, - ACTIONS(7753), 1, - sym__automatic_semicolon, - ACTIONS(7755), 1, - sym__function_signature_automatic_semicolon, - STATE(234), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148858] = 6, - ACTIONS(2577), 1, + [149249] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(5351), 1, + STATE(4014), 1, sym__call_signature, - STATE(5525), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148878] = 6, - ACTIONS(1674), 1, - anon_sym_LBRACE, - ACTIONS(7689), 1, - anon_sym_SEMI, - ACTIONS(7691), 1, - sym__automatic_semicolon, - ACTIONS(7693), 1, - sym__function_signature_automatic_semicolon, - STATE(226), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148898] = 4, - ACTIONS(6397), 1, + [149269] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5007), 1, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7989), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148914] = 4, - ACTIONS(6397), 1, + [149285] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5014), 1, + STATE(4608), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148930] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7912), 1, - anon_sym_abstract, - ACTIONS(7948), 1, - anon_sym_class, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148950] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, + [149301] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4599), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7950), 2, + ACTIONS(7692), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [148968] = 3, - ACTIONS(7952), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7954), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148982] = 4, - ACTIONS(6397), 1, + anon_sym_SEMI, + [149317] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5109), 1, + STATE(5063), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148998] = 2, + [149333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -256541,4783 +256845,4661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149010] = 2, + [149345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2499), 5, + ACTIONS(1783), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149022] = 2, + [149357] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7991), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1762), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149034] = 4, - ACTIONS(6397), 1, + STATE(5232), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149373] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5058), 1, + STATE(5096), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149050] = 2, + [149389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1776), 5, + ACTIONS(1925), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149062] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5107), 1, - sym__initializer, + [149401] = 5, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7754), 1, + sym__template_chars, + ACTIONS(7994), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149078] = 3, - ACTIONS(7956), 1, - sym_identifier, + STATE(4233), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149419] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5349), 1, + sym_type_parameters, + STATE(5443), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7958), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149092] = 5, - ACTIONS(6685), 1, - anon_sym_AMP, - ACTIONS(6689), 1, - anon_sym_extends, - ACTIONS(7699), 1, - anon_sym_PIPE, + [149439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7960), 2, + ACTIONS(1779), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149110] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5078), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149451] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3229), 1, + sym_formal_parameters, + STATE(5065), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149126] = 4, - ACTIONS(7570), 1, + [149471] = 4, + ACTIONS(7396), 1, anon_sym_COLON, - ACTIONS(7962), 1, + ACTIONS(7996), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5499), 3, + STATE(5232), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149142] = 2, + [149487] = 4, + ACTIONS(7396), 1, + anon_sym_COLON, + ACTIONS(7999), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7965), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [149154] = 6, - ACTIONS(2577), 1, + STATE(5405), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149503] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3900), 1, + STATE(3742), 1, sym_formal_parameters, - STATE(5438), 1, - sym__call_signature, - STATE(5525), 1, + STATE(5349), 1, sym_type_parameters, + STATE(5462), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149174] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5141), 1, - sym__initializer, + [149523] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3229), 1, + sym_formal_parameters, + STATE(3979), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149190] = 4, - ACTIONS(7570), 1, + [149543] = 4, + ACTIONS(7396), 1, anon_sym_COLON, - ACTIONS(7967), 1, + ACTIONS(8002), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5499), 3, + STATE(5405), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149206] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7970), 1, - anon_sym_EQ_GT, + [149559] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(5066), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5414), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149222] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5460), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + ACTIONS(7690), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149242] = 2, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7600), 5, + ACTIONS(8005), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149254] = 4, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [149599] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5152), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149270] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7973), 1, - anon_sym_EQ_GT, + [149615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5414), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149286] = 2, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2647), 5, + ACTIONS(8007), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149298] = 4, - ACTIONS(6397), 1, + [149639] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5153), 1, + STATE(5099), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149314] = 2, + [149655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2707), 5, + ACTIONS(7458), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149326] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4700), 1, - sym__initializer, + [149667] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7280), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149342] = 5, - ACTIONS(7283), 1, - anon_sym_LT, - ACTIONS(7976), 1, - anon_sym_LBRACE, - STATE(5088), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [149679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7978), 2, + ACTIONS(8009), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [149360] = 4, - ACTIONS(6397), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149691] = 5, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8011), 1, + anon_sym_BQUOTE, + ACTIONS(8013), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4347), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149709] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4562), 1, + STATE(5103), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149376] = 4, - ACTIONS(6397), 1, + [149725] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4572), 1, + STATE(5105), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149392] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7980), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [149404] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3900), 1, - sym_formal_parameters, - STATE(5463), 1, - sym__call_signature, - STATE(5525), 1, - sym_type_parameters, + [149741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149424] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4573), 1, - sym__initializer, + ACTIONS(2723), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(2743), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149440] = 4, - ACTIONS(6397), 1, + anon_sym_PIPE_RBRACE, + [149765] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4574), 1, + STATE(5108), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149456] = 6, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(7249), 1, - anon_sym_extends, - STATE(833), 1, - sym_object_type, - STATE(5128), 1, - sym_extends_type_clause, + [149781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149476] = 4, - ACTIONS(6397), 1, + ACTIONS(8015), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149793] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4576), 1, + STATE(5109), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149492] = 4, - ACTIONS(6397), 1, + [149809] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4579), 1, + STATE(5112), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149508] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4979), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [149520] = 2, + [149825] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6409), 1, + anon_sym_LPAREN, + STATE(3320), 1, + sym_formal_parameters, + STATE(4408), 1, + sym__call_signature, + STATE(5342), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4969), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [149532] = 6, - ACTIONS(2577), 1, + [149845] = 6, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6413), 1, + ACTIONS(6409), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3320), 1, sym_formal_parameters, - STATE(3750), 1, + STATE(4378), 1, sym__call_signature, - STATE(5493), 1, + STATE(5342), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149552] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5033), 1, - sym__initializer, + [149865] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5217), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [149885] = 6, + ACTIONS(1716), 1, + anon_sym_LBRACE, + ACTIONS(7727), 1, anon_sym_SEMI, - [149568] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2639), 5, + ACTIONS(7729), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149580] = 2, + ACTIONS(7731), 1, + sym__function_signature_automatic_semicolon, + STATE(221), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2643), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149592] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5080), 1, - sym__initializer, + [149905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7374), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [149608] = 4, - ACTIONS(6397), 1, + [149917] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4624), 1, + STATE(4793), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7984), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149624] = 2, + [149933] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7986), 5, + ACTIONS(2535), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149636] = 4, - ACTIONS(6397), 1, + [149945] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4587), 1, + STATE(5162), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149652] = 6, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_formal_parameters, - STATE(4711), 1, - sym__call_signature, - STATE(5406), 1, - sym_type_parameters, + [149961] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149672] = 4, - ACTIONS(6397), 1, + ACTIONS(2547), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149973] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4589), 1, + STATE(5164), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149688] = 4, - ACTIONS(6397), 1, + [149989] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4590), 1, + STATE(5169), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149704] = 4, - ACTIONS(1758), 1, + [150005] = 4, + ACTIONS(1797), 1, anon_sym_DOT, - ACTIONS(4278), 1, + ACTIONS(4097), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 3, + ACTIONS(4099), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [149720] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4779), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7687), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149736] = 4, - ACTIONS(1772), 1, + [150021] = 4, + ACTIONS(1855), 1, anon_sym_DOT, - ACTIONS(4278), 1, + ACTIONS(4097), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 3, + ACTIONS(4099), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [149752] = 4, - ACTIONS(6397), 1, + [150037] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4605), 1, + STATE(4575), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149768] = 4, - ACTIONS(6397), 1, + [150053] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4794), 1, + STATE(4585), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149784] = 4, - ACTIONS(6397), 1, + [150069] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4620), 1, + STATE(4586), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149800] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4676), 1, - sym__initializer, + [150085] = 3, + ACTIONS(8017), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149816] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4622), 1, - sym__initializer, + ACTIONS(8019), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150099] = 3, + ACTIONS(8021), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149832] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5154), 1, - sym__initializer, + ACTIONS(8023), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150113] = 5, + ACTIONS(6691), 1, + anon_sym_AMP, + ACTIONS(6695), 1, + anon_sym_extends, + ACTIONS(7750), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(8025), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [149848] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5161), 1, - sym__initializer, + [150131] = 5, + ACTIONS(7703), 1, + anon_sym_LPAREN, + ACTIONS(8027), 1, + sym_identifier, + STATE(3283), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149864] = 4, - ACTIONS(6397), 1, + STATE(1228), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [150149] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4586), 1, + STATE(4587), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149880] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4625), 1, - sym__initializer, + [150165] = 5, + ACTIONS(7250), 1, + anon_sym_LT, + ACTIONS(8029), 1, + anon_sym_LBRACE, + STATE(5098), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 3, - sym__automatic_semicolon, + ACTIONS(8031), 2, anon_sym_COMMA, - anon_sym_SEMI, - [149896] = 4, - ACTIONS(6397), 1, + anon_sym_LBRACE_PIPE, + [150183] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4655), 1, + STATE(5114), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149912] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4725), 1, - sym__initializer, + [150199] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5186), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, - sym__automatic_semicolon, + [150219] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5681), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [149928] = 4, - ACTIONS(6397), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [150231] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4730), 1, + STATE(4600), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149944] = 4, - ACTIONS(6397), 1, + [150247] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4738), 1, + STATE(4601), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149960] = 4, - ACTIONS(6397), 1, + [150263] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4989), 5, anon_sym_EQ, - STATE(4646), 1, - sym__initializer, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149976] = 2, + ACTIONS(4985), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2735), 5, + ACTIONS(2639), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149988] = 2, + [150299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2739), 5, + ACTIONS(2643), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150000] = 4, - ACTIONS(6397), 1, + [150311] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4802), 1, + STATE(4604), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150016] = 2, + [150327] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4605), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2747), 5, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150028] = 4, - ACTIONS(7570), 1, - anon_sym_COLON, - ACTIONS(7988), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5499), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150044] = 3, - ACTIONS(7991), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7993), 4, + [150343] = 6, + ACTIONS(1716), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [150058] = 2, + ACTIONS(7756), 1, + anon_sym_SEMI, + ACTIONS(7758), 1, + sym__automatic_semicolon, + ACTIONS(7760), 1, + sym__function_signature_automatic_semicolon, + STATE(219), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6281), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [150070] = 4, - ACTIONS(6397), 1, + [150363] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4979), 1, + STATE(4607), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150086] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4805), 1, - sym__initializer, + [150379] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3742), 1, + sym_formal_parameters, + STATE(5328), 1, + sym__call_signature, + STATE(5349), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150102] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(4990), 1, - sym__initializer, + [150399] = 6, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3229), 1, + sym_formal_parameters, + STATE(5050), 1, + sym__call_signature, + STATE(5404), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150118] = 4, - ACTIONS(6397), 1, - anon_sym_EQ, - STATE(5010), 1, - sym__initializer, + [150419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150134] = 4, - ACTIONS(6397), 1, + ACTIONS(8033), 5, anon_sym_EQ, - STATE(5011), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [150431] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4617), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150150] = 4, - ACTIONS(6397), 1, + [150447] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5012), 1, + STATE(5053), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150166] = 6, - ACTIONS(7261), 1, - anon_sym_EQ, - ACTIONS(7995), 1, - anon_sym_COMMA, - ACTIONS(7997), 1, - anon_sym_RBRACE, - STATE(4812), 1, - aux_sym_enum_body_repeat1, - STATE(5471), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150186] = 4, - ACTIONS(6397), 1, + [150463] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4664), 1, + STATE(5132), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150202] = 4, - ACTIONS(6397), 1, + [150479] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(5052), 1, + STATE(4635), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150218] = 4, - ACTIONS(6397), 1, + [150495] = 4, + ACTIONS(6403), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4648), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150234] = 2, + [150511] = 4, + ACTIONS(6403), 1, + anon_sym_EQ, + STATE(4630), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5932), 4, + ACTIONS(7692), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150245] = 5, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5318), 1, - sym_type_parameters, - STATE(5816), 1, - sym_formal_parameters, + [150527] = 6, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(7238), 1, + anon_sym_extends, + STATE(781), 1, + sym_object_type, + STATE(5110), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150262] = 4, - ACTIONS(7999), 1, + [150547] = 4, + ACTIONS(8035), 1, anon_sym_COMMA, - STATE(4512), 1, + STATE(4560), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8001), 2, + ACTIONS(8037), 2, sym__automatic_semicolon, anon_sym_SEMI, - [150277] = 4, - ACTIONS(829), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, + [150562] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1745), 2, - sym_template_string, - sym_arguments, - [150292] = 5, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5306), 1, - sym_type_parameters, - STATE(5727), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [150309] = 4, - ACTIONS(8003), 1, - anon_sym_from, - STATE(5502), 1, - sym__from_clause, + ACTIONS(8039), 1, + anon_sym_DQUOTE, + STATE(4486), 1, + aux_sym_string_repeat1, + ACTIONS(8041), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150579] = 4, + ACTIONS(8043), 1, + anon_sym_COMMA, + STATE(4422), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8005), 2, + ACTIONS(4322), 2, sym__automatic_semicolon, anon_sym_SEMI, - [150324] = 5, - ACTIONS(2577), 1, + [150594] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5357), 1, + STATE(5325), 1, sym_type_parameters, - STATE(5543), 1, + STATE(5693), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150341] = 4, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(4508), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8007), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150356] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8009), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150373] = 5, - ACTIONS(7120), 1, - anon_sym_const, - ACTIONS(8011), 1, - sym_identifier, - ACTIONS(8013), 1, - anon_sym_GT, - STATE(5421), 1, - sym_type_parameter, + [150611] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5327), 1, + sym_type_parameters, + STATE(5814), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150390] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8015), 1, - anon_sym_RBRACK, + [150628] = 3, + ACTIONS(6035), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150407] = 5, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [150641] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8017), 1, + ACTIONS(8046), 1, anon_sym_DQUOTE, - STATE(4423), 1, + STATE(4430), 1, aux_sym_string_repeat1, - ACTIONS(8019), 2, + ACTIONS(8048), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150424] = 5, + [150658] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8017), 1, + ACTIONS(8046), 1, anon_sym_SQUOTE, - STATE(4424), 1, + STATE(4431), 1, aux_sym_string_repeat2, - ACTIONS(8021), 2, + ACTIONS(8050), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150441] = 5, - ACTIONS(1670), 1, + [150675] = 5, + ACTIONS(1712), 1, anon_sym_while, - ACTIONS(2429), 1, + ACTIONS(2437), 1, anon_sym_LBRACE, - ACTIONS(6263), 1, + ACTIONS(6267), 1, anon_sym_DOT, - STATE(793), 1, + STATE(862), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150458] = 5, - ACTIONS(1670), 1, + [150692] = 5, + ACTIONS(1712), 1, anon_sym_while, - ACTIONS(2429), 1, + ACTIONS(2437), 1, anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(6642), 1, anon_sym_DOT, - STATE(793), 1, + STATE(862), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150475] = 4, - ACTIONS(6273), 1, - anon_sym_STAR, - ACTIONS(6277), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5576), 2, - sym_namespace_import, - sym_named_imports, - [150490] = 5, + [150709] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8023), 1, + ACTIONS(8052), 1, anon_sym_DQUOTE, - STATE(4474), 1, + STATE(4480), 1, aux_sym_string_repeat1, - ACTIONS(8025), 2, + ACTIONS(8054), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150507] = 5, + [150726] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8023), 1, + ACTIONS(8052), 1, anon_sym_SQUOTE, - STATE(4475), 1, + STATE(4493), 1, aux_sym_string_repeat2, - ACTIONS(8027), 2, + ACTIONS(8056), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150524] = 3, - ACTIONS(8029), 1, - sym_escape_sequence, + [150743] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8058), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8031), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [150537] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8034), 1, - anon_sym_class, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, + [150760] = 4, + ACTIONS(8035), 1, + anon_sym_COMMA, + STATE(4531), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150554] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + ACTIONS(8060), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150775] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8036), 1, + ACTIONS(8062), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150571] = 5, - ACTIONS(7120), 1, - anon_sym_const, - ACTIONS(8011), 1, - sym_identifier, - ACTIONS(8038), 1, - anon_sym_GT, - STATE(5421), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150588] = 4, - ACTIONS(8003), 1, + [150792] = 4, + ACTIONS(8064), 1, anon_sym_from, - STATE(5278), 1, + STATE(5417), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 2, + ACTIONS(4674), 2, sym__automatic_semicolon, anon_sym_SEMI, - [150603] = 4, - ACTIONS(8044), 1, + [150807] = 4, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1626), 2, + sym_template_string, + sym_arguments, + [150822] = 3, + ACTIONS(7914), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4344), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150835] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8066), 1, + anon_sym_DQUOTE, + STATE(4463), 1, + aux_sym_string_repeat1, + ACTIONS(8068), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150852] = 4, + ACTIONS(8072), 1, anon_sym_COMMA, - STATE(4430), 1, + STATE(4498), 1, aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8042), 2, + ACTIONS(8070), 2, anon_sym_LBRACE, anon_sym_implements, - [150618] = 4, - ACTIONS(7261), 1, + [150867] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8066), 1, + anon_sym_SQUOTE, + STATE(4465), 1, + aux_sym_string_repeat2, + ACTIONS(8074), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150884] = 4, + ACTIONS(3743), 1, + anon_sym_COLON, + ACTIONS(4243), 1, anon_sym_EQ, - STATE(5282), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 2, + ACTIONS(8076), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [150633] = 5, - ACTIONS(1688), 1, + anon_sym_RBRACE, + [150899] = 4, + ACTIONS(8035), 1, anon_sym_COMMA, - ACTIONS(8049), 1, - anon_sym_EQ, - ACTIONS(8051), 1, - anon_sym_RBRACK, - STATE(4588), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150650] = 4, - ACTIONS(6250), 1, - anon_sym_EQ, - STATE(5407), 1, - sym_default_type, + STATE(4533), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8053), 2, - anon_sym_COMMA, - anon_sym_GT, - [150665] = 5, + ACTIONS(8078), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150914] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8055), 1, + ACTIONS(8080), 1, anon_sym_DQUOTE, - STATE(4474), 1, + STATE(4457), 1, aux_sym_string_repeat1, - ACTIONS(8025), 2, + ACTIONS(8082), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150682] = 4, - ACTIONS(8003), 1, - anon_sym_from, - STATE(5231), 1, - sym__from_clause, + [150931] = 5, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, + ACTIONS(8084), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4836), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150697] = 4, - ACTIONS(7261), 1, - anon_sym_EQ, - STATE(5504), 1, - sym__initializer, + [150948] = 4, + ACTIONS(8086), 1, + anon_sym_COMMA, + STATE(4445), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [150712] = 5, + ACTIONS(7411), 2, + anon_sym_LBRACE, + anon_sym_GT, + [150963] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8089), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150980] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8059), 1, + ACTIONS(8091), 1, + sym_html_character_reference, + ACTIONS(8093), 1, anon_sym_DQUOTE, - STATE(4441), 1, - aux_sym_string_repeat1, - ACTIONS(8061), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150729] = 5, + ACTIONS(8095), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(4522), 1, + aux_sym__jsx_string_repeat1, + [150999] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8097), 1, + anon_sym_export, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151016] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8059), 1, + ACTIONS(8093), 1, anon_sym_SQUOTE, - STATE(4442), 1, - aux_sym_string_repeat2, - ACTIONS(8063), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150746] = 5, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(8099), 1, + sym_html_character_reference, + ACTIONS(8101), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(4523), 1, + aux_sym__jsx_string_repeat2, + [151035] = 5, + ACTIONS(3438), 1, anon_sym_LPAREN, - STATE(3610), 1, - sym_formal_parameters, - STATE(5342), 1, - sym_type_parameters, + ACTIONS(6246), 1, + anon_sym_LT, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150763] = 5, + [151052] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8065), 1, - anon_sym_DQUOTE, - STATE(4467), 1, - aux_sym_string_repeat1, - ACTIONS(8067), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8080), 1, + anon_sym_SQUOTE, + STATE(4459), 1, + aux_sym_string_repeat2, + ACTIONS(8103), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [150780] = 5, + [151069] = 4, + ACTIONS(8035), 1, + anon_sym_COMMA, + STATE(4420), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8105), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151084] = 5, + ACTIONS(7246), 1, + anon_sym_COMMA, + ACTIONS(7500), 1, + anon_sym_LBRACE, + ACTIONS(7502), 1, + anon_sym_LBRACE_PIPE, + STATE(4474), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151101] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8069), 1, + ACTIONS(8107), 1, anon_sym_DQUOTE, - STATE(4474), 1, + STATE(4518), 1, aux_sym_string_repeat1, - ACTIONS(8025), 2, + ACTIONS(8109), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150797] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [151118] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8111), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8069), 1, - anon_sym_SQUOTE, - STATE(4475), 1, - aux_sym_string_repeat2, - ACTIONS(8027), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150814] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8065), 1, - anon_sym_SQUOTE, - STATE(4471), 1, - aux_sym_string_repeat2, - ACTIONS(8071), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150831] = 4, - ACTIONS(6250), 1, + [151135] = 4, + ACTIONS(6254), 1, anon_sym_EQ, - STATE(5390), 1, + STATE(5189), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8073), 2, + ACTIONS(8113), 2, anon_sym_COMMA, anon_sym_GT, - [150846] = 4, - ACTIONS(8075), 1, - anon_sym_COMMA, - STATE(4445), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [151150] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [150861] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8115), 1, + anon_sym_DQUOTE, + STATE(4480), 1, + aux_sym_string_repeat1, + ACTIONS(8054), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151167] = 5, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(8078), 1, + ACTIONS(8117), 1, anon_sym_class, - STATE(1236), 1, + STATE(1244), 1, sym_decorator, - STATE(3837), 1, + STATE(3814), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150878] = 5, - ACTIONS(2577), 1, + [151184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8115), 1, + anon_sym_SQUOTE, + STATE(4493), 1, + aux_sym_string_repeat2, + ACTIONS(8056), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151201] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5391), 1, + STATE(5395), 1, sym_type_parameters, - STATE(5678), 1, + STATE(5671), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150895] = 4, - ACTIONS(8003), 1, - anon_sym_from, - STATE(5285), 1, - sym__from_clause, + [151218] = 5, + ACTIONS(7118), 1, + anon_sym_const, + ACTIONS(8119), 1, + sym_identifier, + ACTIONS(8121), 1, + anon_sym_GT, + STATE(5223), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4894), 2, + ACTIONS(8123), 4, sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [150910] = 6, + [151246] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8080), 1, - sym_html_character_reference, - ACTIONS(8082), 1, + ACTIONS(8125), 1, anon_sym_DQUOTE, - ACTIONS(8084), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4535), 1, - aux_sym__jsx_string_repeat1, - [150929] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(4480), 1, + aux_sym_string_repeat1, + ACTIONS(8054), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151263] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8082), 1, - anon_sym_SQUOTE, - ACTIONS(8086), 1, - sym_html_character_reference, - ACTIONS(8088), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4536), 1, - aux_sym__jsx_string_repeat2, - [150948] = 5, + sym_comment, + ACTIONS(5932), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151274] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8055), 1, + ACTIONS(8125), 1, anon_sym_SQUOTE, - STATE(4475), 1, + STATE(4493), 1, aux_sym_string_repeat2, - ACTIONS(8027), 2, + ACTIONS(8056), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150965] = 4, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(4538), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7568), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150980] = 4, - ACTIONS(8090), 1, - anon_sym_with, - STATE(5489), 1, - sym_import_attribute, + [151291] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8127), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8092), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150995] = 5, - ACTIONS(7120), 1, + [151308] = 5, + ACTIONS(7118), 1, anon_sym_const, - ACTIONS(8011), 1, + ACTIONS(8119), 1, sym_identifier, - ACTIONS(8094), 1, + ACTIONS(8129), 1, anon_sym_GT, - STATE(5421), 1, + STATE(5223), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151012] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8096), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151029] = 5, - ACTIONS(1688), 1, + [151325] = 5, + ACTIONS(1700), 1, anon_sym_COMMA, - ACTIONS(8049), 1, + ACTIONS(8131), 1, anon_sym_EQ, - ACTIONS(8098), 1, + ACTIONS(8133), 1, anon_sym_RBRACK, - STATE(5031), 1, + STATE(4594), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151046] = 4, - ACTIONS(3715), 1, - anon_sym_COLON, - ACTIONS(4053), 1, - anon_sym_EQ, + [151342] = 5, + ACTIONS(8135), 1, + sym_identifier, + STATE(4396), 1, + sym_nested_type_identifier, + STATE(5133), 1, + sym_generic_type, + STATE(5801), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151061] = 5, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, + [151359] = 4, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4519), 1, anon_sym_LPAREN, - STATE(5399), 1, - sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151078] = 5, - ACTIONS(2577), 1, + STATE(2222), 2, + sym_template_string, + sym_arguments, + [151374] = 5, + ACTIONS(7246), 1, + anon_sym_COMMA, + ACTIONS(8137), 1, + anon_sym_LBRACE, + ACTIONS(8139), 1, + anon_sym_LBRACE_PIPE, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151391] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5236), 1, + STATE(5403), 1, sym_type_parameters, - STATE(5827), 1, + STATE(5770), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151095] = 4, - ACTIONS(8090), 1, - anon_sym_with, - STATE(5509), 1, - sym_import_attribute, + [151408] = 5, + ACTIONS(7246), 1, + anon_sym_COMMA, + ACTIONS(8141), 1, + anon_sym_LBRACE, + ACTIONS(8143), 1, + anon_sym_LBRACE_PIPE, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8102), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151110] = 5, - ACTIONS(3961), 1, + [151425] = 5, + ACTIONS(7246), 1, + anon_sym_COMMA, + ACTIONS(8141), 1, + anon_sym_LBRACE, + ACTIONS(8143), 1, + anon_sym_LBRACE_PIPE, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151442] = 4, + ACTIONS(6277), 1, + anon_sym_STAR, + ACTIONS(6281), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5642), 2, + sym_namespace_import, + sym_named_imports, + [151457] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8145), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151474] = 5, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, + ACTIONS(8147), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151491] = 5, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(8104), 1, + ACTIONS(8149), 1, anon_sym_LT, - STATE(1503), 1, + STATE(1601), 1, sym_arguments, - STATE(1504), 1, + STATE(1602), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151127] = 5, + [151508] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5410), 1, + sym_type_parameters, + STATE(5578), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151525] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8106), 1, + ACTIONS(8151), 1, anon_sym_DQUOTE, - STATE(4474), 1, + STATE(4480), 1, aux_sym_string_repeat1, - ACTIONS(8025), 2, + ACTIONS(8153), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151144] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [151542] = 4, + ACTIONS(8072), 1, + anon_sym_COMMA, + STATE(4439), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8106), 1, - anon_sym_SQUOTE, - STATE(4475), 1, - aux_sym_string_repeat2, - ACTIONS(8027), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151161] = 5, - ACTIONS(7200), 1, + sym_comment, + ACTIONS(8156), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151557] = 5, + ACTIONS(6554), 1, anon_sym_AMP, - ACTIONS(7202), 1, + ACTIONS(6556), 1, anon_sym_PIPE, - ACTIONS(7204), 1, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8108), 1, - anon_sym_QMARK, + ACTIONS(8158), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151178] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + [151574] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8110), 1, + ACTIONS(8160), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151195] = 5, - ACTIONS(2577), 1, + [151591] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5240), 1, + STATE(5235), 1, sym_type_parameters, - STATE(5909), 1, + STATE(5550), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151212] = 5, + [151608] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8162), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151625] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8112), 1, + ACTIONS(8164), 1, anon_sym_DQUOTE, - STATE(4474), 1, + STATE(4480), 1, aux_sym_string_repeat1, - ACTIONS(8025), 2, + ACTIONS(8054), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151229] = 5, - ACTIONS(8090), 1, - anon_sym_with, - ACTIONS(8114), 1, - anon_sym_SEMI, - ACTIONS(8116), 1, - sym__automatic_semicolon, - STATE(5196), 1, - sym_import_attribute, + [151642] = 3, + ACTIONS(8166), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151246] = 4, - ACTIONS(8118), 1, - anon_sym_COMMA, - STATE(4469), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(3743), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [151655] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8121), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151261] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8123), 1, - anon_sym_COLON, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8168), 1, + sym_html_character_reference, + ACTIONS(8171), 1, + anon_sym_DQUOTE, + ACTIONS(8173), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(4488), 1, + aux_sym__jsx_string_repeat1, + [151674] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5379), 1, + sym_type_parameters, + STATE(5612), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151278] = 5, + [151691] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8112), 1, + ACTIONS(8176), 1, + sym_html_character_reference, + ACTIONS(8179), 1, anon_sym_SQUOTE, - STATE(4475), 1, - aux_sym_string_repeat2, - ACTIONS(8027), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151295] = 5, - ACTIONS(8125), 1, - anon_sym_LBRACE, - ACTIONS(8127), 1, - anon_sym_COMMA, - ACTIONS(8130), 1, - anon_sym_LBRACE_PIPE, - STATE(4472), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(8181), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(4490), 1, + aux_sym__jsx_string_repeat2, + [151710] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5240), 1, + sym_type_parameters, + STATE(5779), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151312] = 4, - ACTIONS(7261), 1, - anon_sym_EQ, - STATE(5471), 1, - sym__initializer, + [151727] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5527), 1, + sym_type_parameters, + STATE(5907), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151327] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8134), 1, - anon_sym_DQUOTE, - STATE(4474), 1, - aux_sym_string_repeat1, - ACTIONS(8136), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151344] = 5, + [151744] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8139), 1, + ACTIONS(8184), 1, anon_sym_SQUOTE, - STATE(4475), 1, + STATE(4493), 1, aux_sym_string_repeat2, - ACTIONS(8141), 2, + ACTIONS(8186), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151361] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + [151761] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8144), 1, + ACTIONS(8189), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151378] = 3, - ACTIONS(7869), 1, - anon_sym_RBRACE, + [151778] = 5, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(8191), 1, + anon_sym_LT, + STATE(2046), 1, + sym_arguments, + STATE(2049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, + [151795] = 5, + ACTIONS(6554), 1, anon_sym_AMP, + ACTIONS(6556), 1, anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - [151391] = 5, - ACTIONS(8146), 1, - sym_identifier, - STATE(3730), 1, - sym_nested_type_identifier, - STATE(4513), 1, - sym_generic_type, - STATE(5783), 1, - sym_nested_identifier, + ACTIONS(8193), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151408] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + [151812] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8148), 1, - anon_sym_RBRACK, + ACTIONS(8195), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151425] = 5, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5416), 1, - sym_type_parameters, - STATE(5574), 1, - sym_formal_parameters, + [151829] = 4, + ACTIONS(8199), 1, + anon_sym_COMMA, + STATE(4498), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151442] = 5, - ACTIONS(7120), 1, - anon_sym_const, - ACTIONS(8011), 1, - sym_identifier, - ACTIONS(8150), 1, - anon_sym_GT, - STATE(5421), 1, - sym_type_parameter, + ACTIONS(8197), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151844] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8202), 1, + anon_sym_class, + STATE(1244), 1, + sym_decorator, + STATE(3814), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151459] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8152), 1, - anon_sym_RBRACK, + [151861] = 4, + ACTIONS(8064), 1, + anon_sym_from, + STATE(5456), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151476] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8154), 1, - anon_sym_COLON, + ACTIONS(8204), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151876] = 4, + ACTIONS(8035), 1, + anon_sym_COMMA, + STATE(4560), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8206), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151891] = 4, + ACTIONS(7202), 1, + anon_sym_EQ, + STATE(5191), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151493] = 5, + ACTIONS(8208), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [151906] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8156), 1, + ACTIONS(8164), 1, anon_sym_SQUOTE, - STATE(4463), 1, + STATE(4493), 1, aux_sym_string_repeat2, - ACTIONS(8158), 2, + ACTIONS(8056), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151510] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8160), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, + [151923] = 5, + ACTIONS(3), 1, sym_comment, - [151527] = 5, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5316), 1, - sym_type_parameters, - STATE(5717), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8210), 1, + anon_sym_DQUOTE, + STATE(4508), 1, + aux_sym_string_repeat1, + ACTIONS(8212), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151940] = 5, + ACTIONS(3), 1, sym_comment, - [151544] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8162), 1, - anon_sym_RBRACK, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8210), 1, + anon_sym_SQUOTE, + STATE(4509), 1, + aux_sym_string_repeat2, + ACTIONS(8214), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151957] = 4, + ACTIONS(8035), 1, + anon_sym_COMMA, + STATE(4501), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151561] = 5, + ACTIONS(8216), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151972] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8164), 1, + ACTIONS(8218), 1, anon_sym_SQUOTE, - STATE(4491), 1, + STATE(4493), 1, aux_sym_string_repeat2, - ACTIONS(8166), 2, + ACTIONS(8056), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151578] = 5, - ACTIONS(8090), 1, - anon_sym_with, - ACTIONS(8168), 1, - anon_sym_SEMI, - ACTIONS(8170), 1, - sym__automatic_semicolon, - STATE(5322), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151595] = 5, + [151989] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8172), 1, + ACTIONS(8220), 1, anon_sym_DQUOTE, - STATE(4474), 1, + STATE(4480), 1, aux_sym_string_repeat1, - ACTIONS(8025), 2, + ACTIONS(8054), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151612] = 5, + [152006] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8220), 1, + anon_sym_SQUOTE, + STATE(4493), 1, + aux_sym_string_repeat2, + ACTIONS(8056), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152023] = 4, + ACTIONS(7202), 1, + anon_sym_EQ, + STATE(5261), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8222), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [152038] = 4, + ACTIONS(8224), 1, + anon_sym_COMMA, + STATE(4511), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5011), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [152053] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8172), 1, + ACTIONS(8039), 1, anon_sym_SQUOTE, - STATE(4475), 1, + STATE(4503), 1, aux_sym_string_repeat2, - ACTIONS(8027), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151629] = 4, - ACTIONS(8174), 1, - anon_sym_EQ, - STATE(5232), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6715), 2, - anon_sym_in, - anon_sym_of, - [151644] = 2, + [152070] = 4, + ACTIONS(4757), 1, + anon_sym_COMMA, + STATE(4422), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8176), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [151655] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + ACTIONS(7510), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152085] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8178), 1, + ACTIONS(8229), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151672] = 4, - ACTIONS(8090), 1, - anon_sym_with, - STATE(5242), 1, - sym_import_attribute, + [152102] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(3631), 1, + sym_formal_parameters, + STATE(5418), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152119] = 4, + ACTIONS(8064), 1, + anon_sym_from, + STATE(5305), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8180), 2, + ACTIONS(4854), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151687] = 3, - ACTIONS(6021), 1, - anon_sym_EQ_GT, + [152134] = 5, + ACTIONS(6246), 1, + anon_sym_LT, + ACTIONS(6666), 1, + anon_sym_LPAREN, + STATE(2829), 1, + sym_arguments, + STATE(2852), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [151700] = 5, + [152151] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8182), 1, + ACTIONS(8218), 1, anon_sym_DQUOTE, - STATE(4434), 1, + STATE(4480), 1, aux_sym_string_repeat1, - ACTIONS(8184), 2, + ACTIONS(8054), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151717] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8186), 1, - anon_sym_RBRACK, + [152168] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5458), 1, + sym_type_parameters, + STATE(5658), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151734] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8188), 1, - anon_sym_RBRACK, + [152185] = 3, + ACTIONS(8231), 1, + sym_escape_sequence, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151751] = 5, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, - ACTIONS(8190), 1, - anon_sym_QMARK, + ACTIONS(8233), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152198] = 4, + ACTIONS(8064), 1, + anon_sym_from, + STATE(5491), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151768] = 4, - ACTIONS(8194), 1, - anon_sym_COMMA, - STATE(4430), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, + ACTIONS(8236), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8238), 1, + sym_html_character_reference, + ACTIONS(8240), 1, + anon_sym_DQUOTE, + ACTIONS(8242), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(4488), 1, + aux_sym__jsx_string_repeat1, + [152232] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8192), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151783] = 4, - ACTIONS(8196), 1, - anon_sym_COMMA, - STATE(4502), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8240), 1, + anon_sym_SQUOTE, + ACTIONS(8244), 1, + sym_html_character_reference, + ACTIONS(8246), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(4490), 1, + aux_sym__jsx_string_repeat2, + [152251] = 5, + ACTIONS(6311), 1, + anon_sym_LPAREN, + ACTIONS(6317), 1, + anon_sym_LT, + STATE(3185), 1, + sym_arguments, + STATE(3394), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7364), 2, - anon_sym_LBRACE, - anon_sym_GT, - [151798] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + [152268] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8199), 1, - anon_sym_RBRACK, + ACTIONS(8248), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151815] = 4, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(4469), 1, - aux_sym_variable_declaration_repeat1, + [152285] = 5, + ACTIONS(8250), 1, + sym_identifier, + STATE(3800), 1, + sym_nested_type_identifier, + STATE(4453), 1, + sym_generic_type, + STATE(5801), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8201), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151830] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8203), 1, - anon_sym_export, - STATE(1236), 1, - sym_decorator, - STATE(3837), 1, - aux_sym_export_statement_repeat1, + [152302] = 5, + ACTIONS(7118), 1, + anon_sym_const, + ACTIONS(8119), 1, + sym_identifier, + ACTIONS(8252), 1, + anon_sym_GT, + STATE(5223), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151847] = 4, - ACTIONS(7999), 1, + [152319] = 5, + ACTIONS(8254), 1, + anon_sym_LBRACE, + ACTIONS(8256), 1, anon_sym_COMMA, - STATE(4469), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(8259), 1, + anon_sym_LBRACE_PIPE, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8205), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151862] = 5, - ACTIONS(2577), 1, + [152336] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5291), 1, + STATE(5297), 1, sym_type_parameters, - STATE(5806), 1, + STATE(5647), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151879] = 4, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(4469), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8207), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151894] = 5, - ACTIONS(2577), 1, + [152353] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5292), 1, + STATE(5299), 1, sym_type_parameters, - STATE(5556), 1, + STATE(5685), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151911] = 5, - ACTIONS(6309), 1, - anon_sym_LPAREN, - ACTIONS(6315), 1, - anon_sym_LT, - STATE(3203), 1, - sym_arguments, - STATE(3343), 1, - sym_type_arguments, + [152370] = 4, + ACTIONS(8035), 1, + anon_sym_COMMA, + STATE(4560), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151928] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8209), 1, - anon_sym_RPAREN, + ACTIONS(8261), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152385] = 4, + ACTIONS(7202), 1, + anon_sym_EQ, + STATE(5219), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151945] = 4, - ACTIONS(7999), 1, + ACTIONS(8263), 2, anon_sym_COMMA, - STATE(4469), 1, + anon_sym_RBRACE, + [152400] = 4, + ACTIONS(8035), 1, + anon_sym_COMMA, + STATE(4560), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8211), 2, + ACTIONS(8265), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151960] = 5, - ACTIONS(7279), 1, - anon_sym_COMMA, - ACTIONS(7370), 1, - anon_sym_LBRACE, - ACTIONS(7372), 1, - anon_sym_LBRACE_PIPE, - STATE(4550), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151977] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + [152415] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8213), 1, + ACTIONS(8267), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151994] = 3, - ACTIONS(8215), 1, - anon_sym_EQ_GT, + [152432] = 4, + ACTIONS(8269), 1, + anon_sym_EQ, + STATE(5309), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3715), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [152007] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8182), 1, - anon_sym_SQUOTE, - STATE(4451), 1, - aux_sym_string_repeat2, - ACTIONS(8217), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152024] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + ACTIONS(6719), 2, + anon_sym_in, + anon_sym_of, + [152447] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8219), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152041] = 5, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(6242), 1, - anon_sym_LT, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, + ACTIONS(8271), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152058] = 4, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4528), 1, - anon_sym_LPAREN, + [152464] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8273), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2290), 2, - sym_template_string, - sym_arguments, - [152073] = 6, + [152481] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8221), 1, - sym_html_character_reference, - ACTIONS(8223), 1, + ACTIONS(8275), 1, anon_sym_DQUOTE, - ACTIONS(8225), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4449), 1, - aux_sym__jsx_string_repeat1, - [152092] = 5, - ACTIONS(6242), 1, - anon_sym_LT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - STATE(2822), 1, - sym_arguments, - STATE(2872), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, + STATE(4547), 1, + aux_sym_string_repeat1, + ACTIONS(8277), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152498] = 5, + ACTIONS(3), 1, sym_comment, - [152109] = 4, - ACTIONS(8090), 1, - anon_sym_with, - STATE(5276), 1, - sym_import_attribute, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(8227), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152124] = 5, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(8229), 1, - anon_sym_LT, - STATE(1933), 1, - sym_arguments, - STATE(1934), 1, - sym_type_arguments, + ACTIONS(8275), 1, + anon_sym_SQUOTE, + STATE(4552), 1, + aux_sym_string_repeat2, + ACTIONS(8279), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152515] = 4, + ACTIONS(6254), 1, + anon_sym_EQ, + STATE(5486), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152141] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + ACTIONS(8281), 2, + anon_sym_COMMA, + anon_sym_GT, + [152530] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8231), 1, - anon_sym_COLON, + ACTIONS(8283), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152158] = 5, - ACTIONS(7200), 1, + [152547] = 5, + ACTIONS(7312), 1, anon_sym_AMP, - ACTIONS(7202), 1, + ACTIONS(7314), 1, anon_sym_PIPE, - ACTIONS(7204), 1, + ACTIONS(7316), 1, anon_sym_extends, - ACTIONS(8233), 1, + ACTIONS(8285), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152175] = 5, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(6403), 1, + [152564] = 5, + ACTIONS(3408), 1, anon_sym_LPAREN, - STATE(5451), 1, - sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, + ACTIONS(6289), 1, + anon_sym_LT, + STATE(3020), 1, + sym_arguments, + STATE(3189), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152192] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8223), 1, - anon_sym_SQUOTE, - ACTIONS(8235), 1, - sym_html_character_reference, - ACTIONS(8237), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4450), 1, - aux_sym__jsx_string_repeat2, - [152211] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, - ACTIONS(8239), 1, - anon_sym_RPAREN, + [152581] = 5, + ACTIONS(1700), 1, + anon_sym_COMMA, + ACTIONS(8131), 1, + anon_sym_EQ, + ACTIONS(8287), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152228] = 5, - ACTIONS(7200), 1, + [152598] = 5, + ACTIONS(7312), 1, anon_sym_AMP, - ACTIONS(7202), 1, + ACTIONS(7314), 1, anon_sym_PIPE, - ACTIONS(7204), 1, + ACTIONS(7316), 1, anon_sym_extends, - ACTIONS(8241), 1, + ACTIONS(8289), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152245] = 5, - ACTIONS(6538), 1, - anon_sym_AMP, + [152615] = 5, ACTIONS(6554), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8243), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152262] = 4, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(4504), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(8291), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8245), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152277] = 5, + [152632] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8247), 1, + ACTIONS(8293), 1, anon_sym_DQUOTE, - STATE(4541), 1, + STATE(4480), 1, aux_sym_string_repeat1, - ACTIONS(8249), 2, + ACTIONS(8054), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152294] = 5, - ACTIONS(6538), 1, + [152649] = 5, + ACTIONS(7312), 1, anon_sym_AMP, - ACTIONS(6554), 1, + ACTIONS(7314), 1, anon_sym_PIPE, - ACTIONS(6556), 1, + ACTIONS(7316), 1, anon_sym_extends, - ACTIONS(8251), 1, - anon_sym_RPAREN, + ACTIONS(8295), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152311] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8247), 1, - anon_sym_SQUOTE, - STATE(4546), 1, - aux_sym_string_repeat2, - ACTIONS(8253), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8255), 1, - sym_html_character_reference, - ACTIONS(8258), 1, - anon_sym_DQUOTE, - ACTIONS(8260), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4535), 1, - aux_sym__jsx_string_repeat1, - [152347] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8263), 1, - sym_html_character_reference, - ACTIONS(8266), 1, - anon_sym_SQUOTE, - ACTIONS(8268), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4536), 1, - aux_sym__jsx_string_repeat2, - [152366] = 5, - ACTIONS(7200), 1, + [152666] = 5, + ACTIONS(6554), 1, anon_sym_AMP, - ACTIONS(7202), 1, + ACTIONS(6556), 1, anon_sym_PIPE, - ACTIONS(7204), 1, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8271), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152383] = 4, - ACTIONS(8273), 1, - anon_sym_COMMA, - STATE(4538), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(8297), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152398] = 5, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(6289), 1, - anon_sym_LT, - STATE(2994), 1, - sym_arguments, - STATE(3188), 1, - sym_type_arguments, + [152683] = 5, + ACTIONS(7118), 1, + anon_sym_const, + ACTIONS(8119), 1, + sym_identifier, + ACTIONS(8299), 1, + anon_sym_GT, + STATE(5223), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152415] = 4, - ACTIONS(8194), 1, - anon_sym_COMMA, - STATE(4501), 1, - aux_sym_extends_clause_repeat1, + [152700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8276), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152430] = 5, + ACTIONS(8301), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [152711] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8278), 1, - anon_sym_DQUOTE, - STATE(4474), 1, - aux_sym_string_repeat1, - ACTIONS(8025), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8293), 1, + anon_sym_SQUOTE, + STATE(4493), 1, + aux_sym_string_repeat2, + ACTIONS(8056), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [152447] = 5, - ACTIONS(8280), 1, - sym_identifier, - STATE(4350), 1, - sym_nested_type_identifier, - STATE(5055), 1, - sym_generic_type, - STATE(5783), 1, - sym_nested_identifier, + [152728] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8303), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152464] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8156), 1, - anon_sym_DQUOTE, - STATE(4462), 1, - aux_sym_string_repeat1, - ACTIONS(8282), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152481] = 5, - ACTIONS(2577), 1, + [152745] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5513), 1, + STATE(5519), 1, sym_type_parameters, - STATE(5630), 1, + STATE(5638), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152498] = 5, - ACTIONS(2577), 1, + [152762] = 5, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(6403), 1, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5516), 1, + STATE(5522), 1, sym_type_parameters, - STATE(5647), 1, + STATE(5655), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8278), 1, - anon_sym_SQUOTE, - STATE(4475), 1, - aux_sym_string_repeat2, - ACTIONS(8027), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152532] = 5, - ACTIONS(7200), 1, + [152779] = 5, + ACTIONS(7312), 1, anon_sym_AMP, - ACTIONS(7202), 1, + ACTIONS(7314), 1, anon_sym_PIPE, - ACTIONS(7204), 1, + ACTIONS(7316), 1, anon_sym_extends, - ACTIONS(8284), 1, + ACTIONS(8305), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152549] = 5, - ACTIONS(7279), 1, - anon_sym_COMMA, - ACTIONS(8286), 1, - anon_sym_LBRACE, - ACTIONS(8288), 1, - anon_sym_LBRACE_PIPE, - STATE(4472), 1, - aux_sym_extends_type_clause_repeat1, + [152796] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8307), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152566] = 5, - ACTIONS(7279), 1, - anon_sym_COMMA, - ACTIONS(8290), 1, - anon_sym_LBRACE, - ACTIONS(8292), 1, - anon_sym_LBRACE_PIPE, - STATE(4472), 1, - aux_sym_extends_type_clause_repeat1, + [152813] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8107), 1, + anon_sym_SQUOTE, + STATE(4507), 1, + aux_sym_string_repeat2, + ACTIONS(8309), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152583] = 5, - ACTIONS(7279), 1, + ACTIONS(8311), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152841] = 4, + ACTIONS(8313), 1, anon_sym_COMMA, - ACTIONS(8290), 1, - anon_sym_LBRACE, - ACTIONS(8292), 1, - anon_sym_LBRACE_PIPE, - STATE(4472), 1, - aux_sym_extends_type_clause_repeat1, + STATE(4560), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152600] = 5, - ACTIONS(6538), 1, + ACTIONS(8316), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152856] = 5, + ACTIONS(7312), 1, anon_sym_AMP, - ACTIONS(6554), 1, + ACTIONS(7314), 1, anon_sym_PIPE, - ACTIONS(6556), 1, + ACTIONS(7316), 1, anon_sym_extends, - ACTIONS(8294), 1, - anon_sym_RPAREN, + ACTIONS(8318), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152617] = 5, - ACTIONS(7200), 1, + [152873] = 5, + ACTIONS(6554), 1, anon_sym_AMP, - ACTIONS(7202), 1, + ACTIONS(6556), 1, anon_sym_PIPE, - ACTIONS(7204), 1, + ACTIONS(6558), 1, anon_sym_extends, - ACTIONS(8296), 1, - anon_sym_QMARK, + ACTIONS(8320), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152634] = 4, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(4506), 1, - aux_sym_variable_declaration_repeat1, + [152890] = 5, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, + ACTIONS(8322), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8298), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8164), 1, - anon_sym_DQUOTE, - STATE(4490), 1, - aux_sym_string_repeat1, - ACTIONS(8300), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152666] = 2, + [152907] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152676] = 4, - ACTIONS(8304), 1, + [152917] = 4, + ACTIONS(5644), 1, anon_sym_COMMA, - ACTIONS(8306), 1, - anon_sym_RBRACK, - STATE(4570), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8326), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152931] = 4, + ACTIONS(8328), 1, + anon_sym_COMMA, + ACTIONS(8330), 1, + anon_sym_RBRACE, + STATE(4897), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152690] = 4, - ACTIONS(6685), 1, + [152945] = 4, + ACTIONS(6691), 1, anon_sym_AMP, - ACTIONS(6689), 1, + ACTIONS(6695), 1, anon_sym_extends, - ACTIONS(7699), 1, + ACTIONS(7750), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152704] = 2, + [152959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152714] = 4, + [152969] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(8310), 1, + ACTIONS(8334), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152728] = 4, - ACTIONS(3165), 1, + [152983] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152993] = 4, + ACTIONS(3175), 1, anon_sym_GT, - ACTIONS(8312), 1, + ACTIONS(8336), 1, anon_sym_COMMA, - STATE(4502), 1, + STATE(4445), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152742] = 2, + [153007] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(4977), 1, + anon_sym_RPAREN, + STATE(4581), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152752] = 2, + [153031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152762] = 2, + [153041] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152772] = 2, + [153051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152782] = 4, - ACTIONS(8318), 1, + [153061] = 4, + ACTIONS(8342), 1, sym_identifier, - ACTIONS(8320), 1, + ACTIONS(8344), 1, anon_sym_LBRACK, - ACTIONS(8322), 1, + ACTIONS(8346), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152796] = 4, - ACTIONS(8324), 1, + [153075] = 4, + ACTIONS(8348), 1, sym_identifier, - ACTIONS(8326), 1, + ACTIONS(8350), 1, anon_sym_LBRACK, - ACTIONS(8328), 1, + ACTIONS(8352), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152810] = 4, - ACTIONS(8330), 1, + [153089] = 4, + ACTIONS(8354), 1, sym_identifier, - ACTIONS(8332), 1, + ACTIONS(8356), 1, anon_sym_LBRACK, - ACTIONS(8334), 1, + ACTIONS(8358), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152824] = 4, - ACTIONS(8336), 1, + [153103] = 4, + ACTIONS(8360), 1, sym_identifier, - ACTIONS(8338), 1, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(8340), 1, + ACTIONS(8364), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152838] = 2, + [153117] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(8366), 1, + anon_sym_RPAREN, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8342), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [152848] = 4, - ACTIONS(2897), 1, + [153131] = 4, + ACTIONS(2901), 1, anon_sym_RBRACK, - ACTIONS(8344), 1, + ACTIONS(8368), 1, anon_sym_COMMA, - STATE(5026), 1, + STATE(5101), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152862] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [153145] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(4977), 1, + anon_sym_RPAREN, + STATE(4511), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8346), 1, - sym__glimmer_template_content, - ACTIONS(8348), 1, - sym_glimmer_closing_tag, - STATE(5176), 1, - aux_sym_glimmer_template_repeat1, - [152878] = 2, + sym_comment, + [153159] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152888] = 2, + [153169] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152898] = 2, + [153179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152908] = 2, + [153189] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152918] = 2, + [153199] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152928] = 3, - ACTIONS(8354), 1, - anon_sym_as, + [153209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8356), 2, + ACTIONS(8324), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [152940] = 4, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(8358), 1, - anon_sym_RPAREN, - STATE(5684), 1, - sym_type_annotation, + anon_sym_SEMI, + [153219] = 3, + ACTIONS(8372), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152954] = 2, + ACTIONS(7707), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [153231] = 4, + ACTIONS(1638), 1, + anon_sym_RPAREN, + ACTIONS(8374), 1, + anon_sym_COMMA, + STATE(4921), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152964] = 2, + [153245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152974] = 4, - ACTIONS(8360), 1, + [153255] = 4, + ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(8362), 1, - anon_sym_RBRACE, - STATE(5018), 1, - aux_sym_named_imports_repeat1, + ACTIONS(8376), 1, + anon_sym_RBRACK, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152988] = 4, - ACTIONS(8364), 1, + [153269] = 4, + ACTIONS(1700), 1, anon_sym_COMMA, - ACTIONS(8367), 1, - anon_sym_RBRACE, - STATE(4582), 1, - aux_sym_export_clause_repeat1, + ACTIONS(8378), 1, + anon_sym_RBRACK, + STATE(4674), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153002] = 4, - ACTIONS(1628), 1, - anon_sym_RPAREN, - ACTIONS(8369), 1, + [153283] = 4, + ACTIONS(3155), 1, + anon_sym_GT, + ACTIONS(8380), 1, anon_sym_COMMA, - STATE(4702), 1, - aux_sym_formal_parameters_repeat1, + STATE(4445), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153016] = 2, + [153297] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153026] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8371), 1, - anon_sym_RBRACK, - STATE(4445), 1, - aux_sym_array_repeat1, + [153307] = 4, + ACTIONS(6397), 1, + anon_sym_type, + ACTIONS(8384), 1, + sym_identifier, + STATE(5274), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153040] = 2, + [153321] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153050] = 2, + [153331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153060] = 4, - ACTIONS(1688), 1, - anon_sym_COMMA, - ACTIONS(8373), 1, - anon_sym_RBRACK, - STATE(5035), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153074] = 2, + [153341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153084] = 2, + [153351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153094] = 4, - ACTIONS(8375), 1, + [153361] = 4, + ACTIONS(6397), 1, + anon_sym_type, + ACTIONS(8390), 1, sym_identifier, - ACTIONS(8377), 1, - anon_sym_LBRACK, - ACTIONS(8379), 1, - sym_private_property_identifier, + STATE(5275), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153108] = 4, - ACTIONS(8381), 1, + [153375] = 4, + ACTIONS(5644), 1, anon_sym_COMMA, - ACTIONS(8384), 1, + ACTIONS(8392), 1, anon_sym_RBRACE, - STATE(4592), 1, - aux_sym_object_pattern_repeat1, + STATE(4636), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153122] = 2, + [153389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8370), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153399] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153132] = 4, - ACTIONS(3961), 1, + [153409] = 4, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(8388), 1, + ACTIONS(8394), 1, anon_sym_DOT, - STATE(1499), 1, + STATE(1594), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153146] = 2, + [153423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153156] = 2, + [153433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8390), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153166] = 4, - ACTIONS(8003), 1, - anon_sym_from, - ACTIONS(8392), 1, - anon_sym_as, - STATE(5527), 1, - sym__from_clause, + [153443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153180] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8394), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153190] = 4, + [153453] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(5011), 1, + ACTIONS(5029), 1, anon_sym_RPAREN, - STATE(4612), 1, + STATE(4623), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153204] = 4, + [153467] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(5011), 1, + ACTIONS(5029), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153218] = 2, + [153481] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153228] = 2, + [153491] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153238] = 2, + [153501] = 4, + ACTIONS(8400), 1, + anon_sym_COMMA, + ACTIONS(8403), 1, + anon_sym_RBRACE, + STATE(4614), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153248] = 4, - ACTIONS(6263), 1, + [153525] = 4, + ACTIONS(6267), 1, anon_sym_DOT, - ACTIONS(6584), 1, + ACTIONS(6572), 1, anon_sym_COLON, - ACTIONS(8396), 1, + ACTIONS(8405), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153262] = 2, + [153539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153272] = 2, + [153549] = 4, + ACTIONS(4519), 1, + anon_sym_LPAREN, + ACTIONS(8407), 1, + anon_sym_DOT, + STATE(2032), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, + [153563] = 4, + ACTIONS(8409), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153282] = 4, - ACTIONS(8400), 1, - anon_sym_COMMA, - ACTIONS(8402), 1, + ACTIONS(8411), 1, anon_sym_RBRACK, - STATE(4616), 1, + STATE(4628), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153296] = 4, - ACTIONS(4212), 1, + [153577] = 4, + ACTIONS(4112), 1, anon_sym_extends, - ACTIONS(8404), 1, + ACTIONS(8413), 1, anon_sym_AMP, - ACTIONS(8406), 1, + ACTIONS(8415), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153310] = 4, - ACTIONS(8408), 1, - sym_identifier, - ACTIONS(8410), 1, - anon_sym_require, - STATE(5050), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153324] = 2, + [153591] = 4, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(8417), 1, + anon_sym_RBRACE, + STATE(4698), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8412), 3, - sym__automatic_semicolon, + [153605] = 4, + ACTIONS(1700), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153334] = 2, + ACTIONS(8419), 1, + anon_sym_RBRACK, + STATE(4674), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153344] = 4, + [153619] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(8414), 1, + ACTIONS(8421), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153358] = 4, - ACTIONS(3145), 1, + [153633] = 4, + ACTIONS(1506), 1, + anon_sym_DQUOTE, + ACTIONS(1508), 1, + anon_sym_SQUOTE, + STATE(5640), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153647] = 4, + ACTIONS(3153), 1, anon_sym_GT, - ACTIONS(8416), 1, + ACTIONS(8423), 1, anon_sym_COMMA, - STATE(4502), 1, + STATE(4445), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153372] = 2, + [153661] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8121), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153382] = 4, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(8418), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + [153671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153396] = 4, - ACTIONS(2891), 1, + ACTIONS(8338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153681] = 4, + ACTIONS(2907), 1, anon_sym_RBRACK, - ACTIONS(8420), 1, + ACTIONS(8425), 1, anon_sym_COMMA, - STATE(5026), 1, + STATE(5101), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153410] = 4, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(8422), 1, - anon_sym_DOT, - STATE(1927), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153424] = 2, + [153695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153434] = 4, - ACTIONS(1584), 1, - anon_sym_DQUOTE, - ACTIONS(1586), 1, - anon_sym_SQUOTE, - STATE(5134), 1, - sym_string, + [153705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153448] = 2, + ACTIONS(8388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153458] = 2, + [153725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153468] = 2, + [153735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153478] = 4, - ACTIONS(8424), 1, - sym_identifier, - STATE(1170), 1, - sym_decorator_member_expression, - STATE(1238), 1, - sym_decorator_call_expression, + [153745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153492] = 2, + ACTIONS(8338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8426), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153502] = 2, + [153765] = 4, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(8427), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, - sym__automatic_semicolon, + [153779] = 4, + ACTIONS(8129), 1, + anon_sym_GT, + ACTIONS(8429), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153512] = 2, + STATE(4938), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153522] = 2, + [153803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153532] = 2, + [153813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153542] = 2, + [153823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8430), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153552] = 4, - ACTIONS(6309), 1, + [153833] = 4, + ACTIONS(6311), 1, anon_sym_LPAREN, - ACTIONS(8432), 1, + ACTIONS(8431), 1, anon_sym_DOT, - STATE(3221), 1, + STATE(3239), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153566] = 4, + [153847] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153857] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(4973), 1, + ACTIONS(5035), 1, anon_sym_RPAREN, - STATE(4644), 1, + STATE(4653), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153580] = 4, + [153871] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(4973), 1, + ACTIONS(5035), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153594] = 2, + [153885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153604] = 2, + [153895] = 4, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1586), 1, + anon_sym_LBRACE, + STATE(3987), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153614] = 2, + [153909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8430), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153624] = 2, + [153919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153634] = 4, - ACTIONS(8013), 1, - anon_sym_GT, - ACTIONS(8436), 1, + [153929] = 4, + ACTIONS(8435), 1, anon_sym_COMMA, - STATE(5087), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(8437), 1, + anon_sym_RBRACK, + STATE(4663), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153648] = 2, + [153943] = 4, + ACTIONS(6807), 1, + anon_sym_AMP, + ACTIONS(6809), 1, + anon_sym_PIPE, + ACTIONS(6811), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, + [153957] = 4, + ACTIONS(1931), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153658] = 2, + ACTIONS(5015), 1, + anon_sym_RPAREN, + STATE(4821), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153668] = 4, - ACTIONS(8440), 1, + [153971] = 4, + ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(8442), 1, - anon_sym_RBRACK, - STATE(4653), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8439), 1, + anon_sym_RPAREN, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153682] = 2, + [153985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153692] = 4, - ACTIONS(6853), 1, - anon_sym_AMP, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153706] = 2, + [153995] = 4, + ACTIONS(3163), 1, + anon_sym_GT, + ACTIONS(8441), 1, + anon_sym_COMMA, + STATE(4445), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153716] = 4, + [154009] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(8446), 1, + ACTIONS(5015), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153730] = 4, - ACTIONS(3169), 1, - anon_sym_GT, - ACTIONS(8448), 1, - anon_sym_COMMA, - STATE(4502), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153744] = 2, + [154023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153754] = 2, + [154033] = 3, + ACTIONS(8443), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, - sym__automatic_semicolon, + ACTIONS(8445), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153764] = 4, - ACTIONS(8450), 1, + anon_sym_RBRACE, + [154045] = 4, + ACTIONS(8447), 1, sym_identifier, - ACTIONS(8452), 1, + ACTIONS(8449), 1, anon_sym_LBRACK, - ACTIONS(8454), 1, + ACTIONS(8451), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153778] = 4, - ACTIONS(8456), 1, + [154059] = 4, + ACTIONS(8453), 1, sym_identifier, - ACTIONS(8458), 1, + ACTIONS(8455), 1, anon_sym_LBRACK, - ACTIONS(8460), 1, + ACTIONS(8457), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153792] = 4, - ACTIONS(8462), 1, + [154073] = 4, + ACTIONS(8459), 1, sym_identifier, - ACTIONS(8464), 1, + ACTIONS(8461), 1, anon_sym_LBRACK, - ACTIONS(8466), 1, + ACTIONS(8463), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153806] = 4, - ACTIONS(8468), 1, + [154087] = 4, + ACTIONS(8465), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8467), 1, anon_sym_LBRACK, - ACTIONS(8472), 1, + ACTIONS(8469), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153820] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153830] = 4, - ACTIONS(2901), 1, + [154101] = 4, + ACTIONS(2893), 1, anon_sym_RBRACK, - ACTIONS(8474), 1, + ACTIONS(8471), 1, anon_sym_COMMA, - STATE(5026), 1, + STATE(5101), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153844] = 4, - ACTIONS(1028), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1576), 1, - anon_sym_LBRACE, - STATE(3966), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153858] = 2, + [154115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8473), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [153868] = 2, + [154125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153878] = 2, + [154135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8478), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153888] = 2, + [154145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153898] = 4, - ACTIONS(1931), 1, + [154155] = 4, + ACTIONS(6972), 1, + anon_sym_RBRACE, + ACTIONS(8475), 1, anon_sym_COMMA, - ACTIONS(4999), 1, - anon_sym_RPAREN, - STATE(4793), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153912] = 2, + STATE(5081), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153922] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(4999), 1, - anon_sym_RPAREN, - STATE(4445), 1, - aux_sym_array_repeat1, + [154169] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153936] = 2, + ACTIONS(7264), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [154179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153946] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8480), 3, - sym__automatic_semicolon, + [154189] = 4, + ACTIONS(5644), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153956] = 2, + ACTIONS(8477), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, - sym__automatic_semicolon, + [154203] = 4, + ACTIONS(5113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153966] = 2, + ACTIONS(8479), 1, + anon_sym_RBRACE, + STATE(4698), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153976] = 2, + [154217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153986] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8482), 3, - sym__automatic_semicolon, + [154227] = 4, + ACTIONS(8483), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153996] = 2, + ACTIONS(8486), 1, + anon_sym_RBRACK, + STATE(4674), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154006] = 2, + [154241] = 3, + ACTIONS(8131), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(8488), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154016] = 4, + anon_sym_RBRACE, + [154253] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(4981), 1, + ACTIONS(5041), 1, anon_sym_RPAREN, - STATE(4677), 1, + STATE(4681), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154030] = 4, + [154267] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(4981), 1, + ACTIONS(5041), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154044] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8484), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154054] = 2, + [154281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154064] = 2, - ACTIONS(5), 2, - sym_html_comment, + [154291] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154074] = 2, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(8478), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154084] = 2, + ACTIONS(8490), 1, + sym__glimmer_template_content, + ACTIONS(8492), 1, + sym_glimmer_closing_tag, + STATE(4925), 1, + aux_sym_glimmer_template_repeat1, + [154307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154094] = 4, + [154317] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(8486), 1, + ACTIONS(8494), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154108] = 2, + [154331] = 4, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(8392), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154118] = 4, - ACTIONS(3139), 1, + [154345] = 4, + ACTIONS(3167), 1, anon_sym_GT, - ACTIONS(8488), 1, + ACTIONS(8496), 1, anon_sym_COMMA, - STATE(4502), 1, + STATE(4445), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154132] = 2, + [154359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8490), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154142] = 2, + [154369] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154152] = 2, + [154379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8492), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154162] = 2, + [154389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154172] = 2, + [154399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154182] = 2, + [154409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154192] = 2, + [154419] = 4, + ACTIONS(8498), 1, + anon_sym_LPAREN, + ACTIONS(8500), 1, + anon_sym_await, + STATE(35), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, - sym__automatic_semicolon, + [154433] = 4, + ACTIONS(8502), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154202] = 2, + ACTIONS(8505), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8494), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154212] = 2, + [154447] = 4, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(8507), 1, + anon_sym_RPAREN, + STATE(5721), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154222] = 2, + [154461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154232] = 2, + [154471] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(5043), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, + [154485] = 4, + ACTIONS(1931), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154242] = 2, + ACTIONS(5043), 1, + anon_sym_RPAREN, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154252] = 2, + [154499] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154262] = 2, + [154509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154272] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7212), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [154282] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(4993), 1, - anon_sym_RPAREN, - STATE(4699), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154296] = 4, - ACTIONS(1931), 1, + [154519] = 4, + ACTIONS(8509), 1, anon_sym_COMMA, - ACTIONS(4993), 1, - anon_sym_RPAREN, - STATE(4445), 1, - aux_sym_array_repeat1, + ACTIONS(8512), 1, + anon_sym_RBRACE, + STATE(4698), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154310] = 2, + [154533] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154320] = 2, + [154543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154330] = 4, + [154553] = 4, ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(8496), 1, + ACTIONS(8514), 1, anon_sym_RPAREN, - STATE(4445), 1, + STATE(4511), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154344] = 2, + [154567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154354] = 4, - ACTIONS(3147), 1, + [154577] = 4, + ACTIONS(3161), 1, anon_sym_GT, - ACTIONS(8498), 1, + ACTIONS(8516), 1, anon_sym_COMMA, - STATE(4502), 1, + STATE(4445), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154368] = 4, - ACTIONS(8500), 1, - anon_sym_COMMA, - ACTIONS(8503), 1, - anon_sym_RPAREN, - STATE(4702), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154382] = 2, + [154591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8505), 3, - anon_sym_LBRACE, + ACTIONS(8324), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [154392] = 4, - ACTIONS(6263), 1, + anon_sym_SEMI, + [154601] = 4, + ACTIONS(6267), 1, anon_sym_DOT, - ACTIONS(6584), 1, + ACTIONS(6572), 1, anon_sym_COLON, - ACTIONS(8507), 1, + ACTIONS(8518), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154406] = 2, + [154615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154416] = 2, + [154625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154426] = 4, - ACTIONS(8509), 1, - anon_sym_LPAREN, - ACTIONS(8511), 1, - anon_sym_await, - STATE(59), 1, - sym__for_header, + [154635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154440] = 2, + ACTIONS(8340), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154645] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154450] = 2, + [154655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154460] = 2, + [154665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154470] = 2, + [154675] = 4, + ACTIONS(8520), 1, + anon_sym_LPAREN, + ACTIONS(8522), 1, + anon_sym_await, + STATE(31), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + [154689] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154480] = 2, + [154699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154490] = 2, + [154709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154500] = 2, + [154719] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154510] = 2, + [154729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154520] = 2, + [154739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154530] = 2, + [154749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154540] = 4, - ACTIONS(8003), 1, + [154759] = 4, + ACTIONS(8064), 1, anon_sym_from, - ACTIONS(8392), 1, + ACTIONS(8526), 1, anon_sym_as, - STATE(5448), 1, + STATE(5460), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154554] = 4, + [154773] = 4, ACTIONS(2229), 1, anon_sym_LBRACE, - ACTIONS(8515), 1, + ACTIONS(8528), 1, sym_identifier, - STATE(4448), 1, + STATE(4516), 1, sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154568] = 2, + [154787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154578] = 2, + [154797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8530), 1, + sym__glimmer_template_content, + ACTIONS(8533), 1, + sym_glimmer_closing_tag, + STATE(4723), 1, + aux_sym_glimmer_template_repeat1, + [154813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154588] = 4, - ACTIONS(8517), 1, - sym_identifier, - ACTIONS(8519), 1, - anon_sym_LBRACK, - ACTIONS(8521), 1, - sym_private_property_identifier, + [154823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154602] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8350), 3, + ACTIONS(8524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154612] = 2, + [154833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154622] = 2, + [154843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154632] = 4, - ACTIONS(8523), 1, - sym_identifier, - ACTIONS(8525), 1, - anon_sym_LBRACK, - ACTIONS(8527), 1, - sym_private_property_identifier, + [154853] = 3, + ACTIONS(8535), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154646] = 2, + ACTIONS(6399), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [154865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154656] = 4, - ACTIONS(7120), 1, + [154875] = 4, + ACTIONS(7118), 1, anon_sym_const, - ACTIONS(8011), 1, + ACTIONS(8119), 1, sym_identifier, - STATE(5034), 1, + STATE(5032), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154670] = 2, + [154889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154680] = 2, + [154899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8537), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154690] = 2, + [154909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154700] = 4, - ACTIONS(8529), 1, + [154919] = 4, + ACTIONS(6397), 1, + anon_sym_type, + ACTIONS(8539), 1, sym_identifier, - ACTIONS(8531), 1, - anon_sym_LBRACK, - ACTIONS(8533), 1, - sym_private_property_identifier, + STATE(5451), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154714] = 2, + [154933] = 4, + ACTIONS(8541), 1, + sym_identifier, + STATE(3898), 1, + sym_decorator_member_expression, + STATE(5611), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154724] = 2, + [154947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8490), 3, + ACTIONS(8543), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154734] = 4, - ACTIONS(8535), 1, - sym_identifier, - ACTIONS(8537), 1, - anon_sym_LBRACK, - ACTIONS(8539), 1, - sym_private_property_identifier, + [154957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154748] = 2, + ACTIONS(8338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154758] = 2, + [154977] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8543), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154768] = 2, + [154987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8545), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154778] = 2, + [154997] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154788] = 2, + [155007] = 4, + ACTIONS(6397), 1, + anon_sym_type, + ACTIONS(8547), 1, + sym_identifier, + STATE(5493), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + [155021] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154798] = 4, - ACTIONS(2899), 1, - anon_sym_RBRACK, - ACTIONS(8541), 1, + [155031] = 4, + ACTIONS(8549), 1, anon_sym_COMMA, - STATE(5026), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8551), 1, + anon_sym_GT, + STATE(5171), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154812] = 2, + [155045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7809), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154822] = 2, + [155055] = 4, + ACTIONS(6759), 1, + anon_sym_RBRACE, + ACTIONS(8553), 1, + anon_sym_COMMA, + STATE(4614), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8543), 3, + [155069] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154832] = 2, + [155079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8543), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154842] = 2, + [155089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154852] = 2, + [155099] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154862] = 4, - ACTIONS(2463), 1, + [155109] = 4, + ACTIONS(2473), 1, anon_sym_while, - ACTIONS(8545), 1, + ACTIONS(8555), 1, anon_sym_else, - STATE(791), 1, + STATE(764), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154876] = 3, - ACTIONS(7154), 1, + [155123] = 3, + ACTIONS(7192), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8547), 2, + ACTIONS(8557), 2, sym__automatic_semicolon, anon_sym_SEMI, - [154888] = 3, - ACTIONS(7190), 1, + [155135] = 4, + ACTIONS(5987), 1, + anon_sym_LPAREN, + ACTIONS(8559), 1, + anon_sym_DOT, + STATE(2848), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155149] = 3, + ACTIONS(7192), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8547), 2, + ACTIONS(8561), 2, sym__automatic_semicolon, anon_sym_SEMI, - [154900] = 4, - ACTIONS(5960), 1, - anon_sym_LPAREN, - ACTIONS(8549), 1, - anon_sym_DOT, - STATE(2845), 1, - sym_arguments, + [155161] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154914] = 2, + ACTIONS(8398), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155171] = 3, + ACTIONS(7194), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8561), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154924] = 2, + [155183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154934] = 3, - ACTIONS(8551), 1, - anon_sym_LBRACE, + [155193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7980), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [154946] = 4, - ACTIONS(5114), 1, + ACTIONS(8324), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8553), 1, + anon_sym_SEMI, + [155203] = 4, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(8563), 1, anon_sym_RBRACE, - STATE(4592), 1, + STATE(4698), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154960] = 4, - ACTIONS(8555), 1, - anon_sym_COMMA, - ACTIONS(8557), 1, - anon_sym_RBRACK, - STATE(4877), 1, - aux_sym_tuple_type_repeat1, + [155217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154974] = 4, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(8559), 1, - anon_sym_AMP, - ACTIONS(8561), 1, - anon_sym_PIPE, + ACTIONS(8565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155227] = 3, + ACTIONS(8567), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154988] = 2, + ACTIONS(8033), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [155239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8563), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154998] = 2, + [155249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155008] = 2, + [155259] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8565), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155018] = 2, + [155269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8567), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155028] = 3, - ACTIONS(8569), 1, - anon_sym_as, + [155279] = 4, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1498), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8571), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [155040] = 2, + [155293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7809), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155050] = 2, + [155303] = 3, + ACTIONS(7194), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8557), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155060] = 2, + [155315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8573), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [155070] = 4, - ACTIONS(8575), 1, + [155325] = 4, + ACTIONS(8569), 1, anon_sym_COMMA, - ACTIONS(8577), 1, - anon_sym_RBRACE, - STATE(4808), 1, - aux_sym_export_clause_repeat1, + ACTIONS(8571), 1, + anon_sym_RBRACK, + STATE(4872), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155084] = 2, + [155339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, - sym__automatic_semicolon, + ACTIONS(8573), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [155094] = 2, + anon_sym_implements, + [155349] = 4, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155104] = 2, + [155363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155114] = 2, + [155373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155124] = 2, + [155383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155134] = 4, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(8581), 1, - anon_sym_RBRACE, - STATE(4903), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155148] = 2, + [155393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155158] = 4, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(8585), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_repeat1, + [155403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155172] = 2, + ACTIONS(8370), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155182] = 2, + [155423] = 4, + ACTIONS(7118), 1, + anon_sym_const, + ACTIONS(8119), 1, + sym_identifier, + STATE(4744), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + [155437] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155192] = 4, - ACTIONS(7386), 1, + [155447] = 4, + ACTIONS(5087), 1, + anon_sym_extends, + ACTIONS(8581), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155206] = 2, + [155461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155216] = 3, - ACTIONS(8589), 1, - anon_sym_LBRACE, + [155471] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7901), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [155228] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8476), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155238] = 2, + [155481] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155248] = 4, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(8585), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + [155491] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155262] = 2, + ACTIONS(8324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155272] = 3, - ACTIONS(8591), 1, - anon_sym_as, + [155511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8388), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [155284] = 2, + anon_sym_SEMI, + [155521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155294] = 4, - ACTIONS(1028), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1576), 1, - anon_sym_LBRACE, - STATE(4031), 1, - sym_object_type, + [155531] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155308] = 4, - ACTIONS(7120), 1, - anon_sym_const, - ACTIONS(8011), 1, - sym_identifier, - STATE(5421), 1, - sym_type_parameter, + ACTIONS(8324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155322] = 4, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(8595), 1, - anon_sym_EQ, - STATE(5584), 1, - sym_type_parameters, + ACTIONS(8324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155551] = 4, + ACTIONS(7472), 1, + anon_sym_AMP, + ACTIONS(7478), 1, + anon_sym_PIPE, + ACTIONS(7480), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155336] = 2, + [155565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155346] = 2, + [155575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155356] = 2, + [155585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155366] = 4, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(8581), 1, - anon_sym_RBRACE, - STATE(4592), 1, - aux_sym_object_pattern_repeat1, + [155595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155380] = 4, - ACTIONS(8597), 1, - anon_sym_COMMA, - ACTIONS(8599), 1, - anon_sym_RBRACE, - STATE(4904), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155394] = 4, - ACTIONS(1931), 1, + ACTIONS(8340), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8601), 1, - anon_sym_RPAREN, - STATE(4445), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155408] = 2, + anon_sym_SEMI, + [155605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155418] = 2, + [155615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155428] = 4, - ACTIONS(3173), 1, - anon_sym_GT, - ACTIONS(8603), 1, - anon_sym_COMMA, - STATE(4502), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155442] = 2, + [155625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -261325,2049 +261507,2070 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155452] = 3, - ACTIONS(4047), 1, - anon_sym_LBRACE, + [155635] = 4, + ACTIONS(8589), 1, + sym_identifier, + ACTIONS(8591), 1, + anon_sym_LBRACK, + ACTIONS(8593), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [155464] = 2, + [155649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8605), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [155474] = 2, + [155659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155484] = 2, + [155669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155494] = 2, + [155679] = 4, + ACTIONS(8595), 1, + sym_identifier, + ACTIONS(8597), 1, + anon_sym_LBRACK, + ACTIONS(8599), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155504] = 2, + [155693] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155514] = 4, - ACTIONS(8609), 1, - anon_sym_COMMA, - ACTIONS(8611), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_enum_body_repeat1, + [155703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155528] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8314), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155538] = 2, + [155713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155548] = 2, + [155723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155558] = 4, - ACTIONS(6823), 1, - anon_sym_RBRACE, - ACTIONS(8613), 1, - anon_sym_COMMA, - STATE(4582), 1, - aux_sym_export_clause_repeat1, + [155733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155572] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8587), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155582] = 2, + [155743] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155592] = 3, - ACTIONS(4098), 1, - anon_sym_LBRACE, + [155753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [155604] = 4, - ACTIONS(8615), 1, + ACTIONS(8340), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8617), 1, - anon_sym_RBRACE, - STATE(5059), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [155763] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155618] = 4, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8370), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155773] = 4, + ACTIONS(8601), 1, sym_identifier, - STATE(4435), 1, - sym_export_clause, + ACTIONS(8603), 1, + anon_sym_LBRACK, + ACTIONS(8605), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155632] = 2, + [155787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8316), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155642] = 2, + [155797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155652] = 2, + [155807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155662] = 2, + [155817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155672] = 2, + [155827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155682] = 2, + [155837] = 4, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1586), 1, + anon_sym_LBRACE, + STATE(4063), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155692] = 2, + [155851] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155702] = 4, - ACTIONS(8621), 1, + [155861] = 4, + ACTIONS(8607), 1, anon_sym_COMMA, - ACTIONS(8623), 1, + ACTIONS(8609), 1, anon_sym_RBRACE, - STATE(5059), 1, + STATE(4898), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155716] = 2, + [155875] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(8611), 1, + anon_sym_RPAREN, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155726] = 2, + [155889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155736] = 3, - ACTIONS(8625), 1, + [155899] = 4, + ACTIONS(3171), 1, + anon_sym_GT, + ACTIONS(8613), 1, + anon_sym_COMMA, + STATE(4445), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155913] = 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(8627), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [155748] = 2, + [155927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155758] = 2, + [155937] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155768] = 2, + [155947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155778] = 2, + [155957] = 3, + ACTIONS(8621), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, - sym__automatic_semicolon, + ACTIONS(8623), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155788] = 2, + anon_sym_from, + [155969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8625), 1, + sym__glimmer_template_content, + ACTIONS(8627), 1, + sym_glimmer_closing_tag, + STATE(5176), 1, + aux_sym_glimmer_template_repeat1, + [155985] = 4, + ACTIONS(8629), 1, + sym_identifier, + STATE(3844), 1, + sym_decorator_member_expression, + STATE(5775), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155798] = 2, + [155999] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, - sym__automatic_semicolon, + ACTIONS(6399), 3, anon_sym_COMMA, - anon_sym_SEMI, - [155808] = 2, + anon_sym_RBRACE, + anon_sym_from, + [156009] = 3, + ACTIONS(8631), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, - sym__automatic_semicolon, + ACTIONS(8623), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155818] = 2, + anon_sym_from, + [156021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155828] = 2, + [156031] = 4, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(8633), 1, + anon_sym_RBRACE, + STATE(5158), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, - sym__automatic_semicolon, + [156045] = 4, + ACTIONS(5644), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155838] = 2, + ACTIONS(8635), 1, + anon_sym_RBRACE, + STATE(4565), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + [156059] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8637), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155848] = 2, + [156069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155858] = 3, - ACTIONS(8631), 1, - anon_sym_EQ, + [156079] = 4, + ACTIONS(2905), 1, + anon_sym_RBRACK, + ACTIONS(8641), 1, + anon_sym_COMMA, + STATE(5101), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3585), 2, - anon_sym_in, - anon_sym_of, - [155870] = 4, - ACTIONS(8633), 1, - sym_identifier, - STATE(1238), 1, - sym_decorator_call_expression, - STATE(3422), 1, - sym_decorator_member_expression, + [156093] = 4, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(8635), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155884] = 2, + [156107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8643), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155894] = 2, + [156117] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155904] = 3, - ACTIONS(8635), 1, - sym_identifier, + [156127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8637), 2, + ACTIONS(8645), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [155916] = 4, - ACTIONS(8639), 1, anon_sym_COMMA, - ACTIONS(8641), 1, - anon_sym_RPAREN, - STATE(4583), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [156137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155930] = 2, + ACTIONS(8645), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156147] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155940] = 2, + [156157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155950] = 2, + [156167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155960] = 2, + [156177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7239), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [155970] = 4, - ACTIONS(1644), 1, - anon_sym_RPAREN, - ACTIONS(8643), 1, + ACTIONS(8647), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4702), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [156187] = 4, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(8633), 1, + anon_sym_RBRACE, + STATE(4698), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155984] = 2, + [156201] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155994] = 2, + [156211] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156004] = 2, + [156221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(8645), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, + anon_sym_SEMI, + [156231] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [156014] = 2, + [156241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156024] = 2, + [156251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156034] = 2, + [156261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156044] = 2, + [156271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156054] = 3, - ACTIONS(8647), 1, + [156281] = 3, + ACTIONS(8651), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6393), 2, + ACTIONS(8623), 2, anon_sym_COMMA, anon_sym_RBRACE, - [156066] = 4, - ACTIONS(1688), 1, + [156293] = 4, + ACTIONS(8653), 1, anon_sym_COMMA, - ACTIONS(8098), 1, - anon_sym_RBRACK, - STATE(5031), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(8655), 1, + anon_sym_RBRACE, + STATE(4746), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156080] = 2, + [156307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156090] = 2, + [156317] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156100] = 2, + [156327] = 4, + ACTIONS(5113), 1, + anon_sym_COMMA, + ACTIONS(8563), 1, + anon_sym_RBRACE, + STATE(4621), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156110] = 2, + [156341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156120] = 2, + [156351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156130] = 2, + [156361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156140] = 2, + [156371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156150] = 2, + [156381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156160] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4128), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [156172] = 2, + [156391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156182] = 2, + [156401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156192] = 2, + [156411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156202] = 2, + [156421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156212] = 2, + [156431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8490), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156222] = 2, + [156441] = 4, + ACTIONS(2891), 1, + anon_sym_RBRACK, + ACTIONS(8661), 1, + anon_sym_COMMA, + STATE(5101), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156232] = 2, + [156455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156242] = 2, + [156465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156252] = 2, + [156475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156262] = 2, + [156485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156272] = 2, + [156495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156282] = 2, + [156505] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156292] = 4, - ACTIONS(2905), 1, - anon_sym_RBRACK, - ACTIONS(8649), 1, - anon_sym_COMMA, - STATE(5026), 1, - aux_sym_tuple_type_repeat1, + [156515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156306] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8587), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156316] = 2, + [156525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156326] = 2, + [156535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156336] = 2, + [156545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156346] = 2, + [156555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156356] = 2, + [156565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156366] = 2, + [156575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156376] = 4, - ACTIONS(1688), 1, - anon_sym_COMMA, - ACTIONS(8051), 1, - anon_sym_RBRACK, - STATE(4588), 1, - aux_sym_array_pattern_repeat1, + [156585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156390] = 4, - ACTIONS(1931), 1, + ACTIONS(8645), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4971), 1, - anon_sym_RBRACK, - STATE(5029), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156404] = 2, + anon_sym_SEMI, + [156595] = 4, + ACTIONS(7118), 1, + anon_sym_const, + ACTIONS(8119), 1, + sym_identifier, + STATE(5223), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156414] = 4, - ACTIONS(6391), 1, - anon_sym_type, - ACTIONS(8651), 1, + [156609] = 4, + ACTIONS(8663), 1, sym_identifier, - STATE(5367), 1, - sym__import_identifier, + ACTIONS(8665), 1, + anon_sym_require, + STATE(4768), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156428] = 4, - ACTIONS(1931), 1, + [156623] = 4, + ACTIONS(8667), 1, anon_sym_COMMA, - ACTIONS(4971), 1, + ACTIONS(8669), 1, anon_sym_RBRACK, - STATE(4445), 1, - aux_sym_array_repeat1, + STATE(4582), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156442] = 4, - ACTIONS(1688), 1, + [156637] = 4, + ACTIONS(8671), 1, anon_sym_COMMA, - ACTIONS(8098), 1, - anon_sym_RBRACK, - STATE(5035), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(8673), 1, + anon_sym_RPAREN, + STATE(5070), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156456] = 2, + [156651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156466] = 4, - ACTIONS(1931), 1, + [156661] = 4, + ACTIONS(8675), 1, anon_sym_COMMA, - ACTIONS(5015), 1, - anon_sym_RBRACK, - STATE(4585), 1, - aux_sym_array_repeat1, + ACTIONS(8677), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156675] = 4, + ACTIONS(8679), 1, + anon_sym_COMMA, + ACTIONS(8681), 1, + anon_sym_RBRACE, + STATE(5141), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156480] = 2, + [156689] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156490] = 4, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(8549), 1, - anon_sym_DOT, - STATE(2845), 1, - sym_arguments, + [156699] = 4, + ACTIONS(8683), 1, + anon_sym_COMMA, + ACTIONS(8685), 1, + anon_sym_RBRACE, + STATE(5141), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156504] = 2, + [156713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156514] = 4, - ACTIONS(2429), 1, - anon_sym_LBRACE, - ACTIONS(8653), 1, - anon_sym_LPAREN, - STATE(739), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156528] = 4, - ACTIONS(1931), 1, + [156723] = 4, + ACTIONS(8687), 1, anon_sym_COMMA, - ACTIONS(5015), 1, - anon_sym_RBRACK, - STATE(4445), 1, - aux_sym_array_repeat1, + ACTIONS(8689), 1, + anon_sym_RBRACE, + STATE(5141), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156542] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8655), 1, - sym__glimmer_template_content, - ACTIONS(8657), 1, - sym_glimmer_closing_tag, - STATE(5057), 1, - aux_sym_glimmer_template_repeat1, - [156558] = 4, - ACTIONS(1688), 1, + [156737] = 4, + ACTIONS(8691), 1, anon_sym_COMMA, - ACTIONS(8051), 1, - anon_sym_RBRACK, - STATE(5035), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(8693), 1, + anon_sym_RBRACE, + STATE(5141), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156572] = 2, + [156751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156582] = 2, + [156761] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156592] = 4, - ACTIONS(8659), 1, - anon_sym_COMMA, - ACTIONS(8661), 1, - anon_sym_RBRACE, - STATE(5059), 1, - aux_sym_enum_body_repeat1, + [156771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156606] = 4, - ACTIONS(5114), 1, + ACTIONS(8645), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RBRACE, - STATE(4592), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [156781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156620] = 4, - ACTIONS(8665), 1, + ACTIONS(8338), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8667), 1, - anon_sym_RBRACE, - STATE(5059), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [156791] = 4, + ACTIONS(6666), 1, + anon_sym_LPAREN, + ACTIONS(8559), 1, + anon_sym_DOT, + STATE(2848), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156634] = 2, + [156805] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156644] = 2, + [156815] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156654] = 4, - ACTIONS(5336), 1, + [156825] = 4, + ACTIONS(1700), 1, anon_sym_COMMA, - ACTIONS(8669), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + ACTIONS(8133), 1, + anon_sym_RBRACK, + STATE(4594), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156668] = 2, + [156839] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(5013), 1, + anon_sym_RBRACK, + STATE(4593), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156678] = 2, + [156853] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156688] = 2, + [156863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156698] = 4, - ACTIONS(7120), 1, - anon_sym_const, - ACTIONS(8011), 1, - sym_identifier, - STATE(5076), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156712] = 2, + [156873] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8671), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156722] = 2, + [156883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156732] = 2, + [156893] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(5013), 1, + anon_sym_RBRACK, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156742] = 2, + [156907] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156752] = 2, + [156917] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156762] = 2, + [156927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156772] = 2, + [156937] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156782] = 2, + [156947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156792] = 2, + [156957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8677), 3, + ACTIONS(7858), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156802] = 2, + [156967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8679), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156812] = 2, + ACTIONS(7210), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [156977] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8679), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156822] = 2, + [156987] = 4, + ACTIONS(8697), 1, + anon_sym_COMMA, + ACTIONS(8700), 1, + anon_sym_RPAREN, + STATE(4921), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8681), 3, + [157001] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156832] = 2, + [157011] = 4, + ACTIONS(1700), 1, + anon_sym_COMMA, + ACTIONS(8133), 1, + anon_sym_RBRACK, + STATE(4674), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8683), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156842] = 2, + [157035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8702), 1, + sym__glimmer_template_content, + ACTIONS(8704), 1, + sym_glimmer_closing_tag, + STATE(4723), 1, + aux_sym_glimmer_template_repeat1, + [157051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8681), 3, + ACTIONS(7858), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156852] = 2, + [157061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8677), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156862] = 2, + [157071] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8685), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156872] = 2, + [157081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8706), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [156882] = 2, + [157091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8687), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156892] = 2, + [157101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8689), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156902] = 2, + [157111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8679), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156912] = 2, + [157121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156922] = 2, + [157131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156932] = 2, + [157141] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8691), 3, + ACTIONS(8708), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156942] = 2, + [157151] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156952] = 2, + [157161] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156962] = 2, + [157171] = 4, + ACTIONS(8710), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_GT, + STATE(4938), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8687), 3, + [157185] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156972] = 2, + [157195] = 3, + ACTIONS(4332), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8677), 3, - sym__automatic_semicolon, + ACTIONS(4334), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156982] = 2, + anon_sym_LBRACE_PIPE, + [157207] = 4, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + STATE(4462), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156992] = 2, + [157231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157002] = 2, + [157241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157012] = 2, + [157251] = 3, + ACTIONS(8715), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(7936), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [157263] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157022] = 2, + [157273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157032] = 2, + [157283] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157042] = 2, + [157293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157052] = 2, + [157303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157062] = 2, + [157313] = 4, + ACTIONS(8064), 1, + anon_sym_from, + ACTIONS(8526), 1, + anon_sym_as, + STATE(5283), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157327] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8681), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157072] = 2, + [157337] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8681), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157082] = 2, + [157347] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(8717), 1, + anon_sym_EQ, + STATE(5582), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8685), 3, + [157361] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157092] = 2, + [157371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157102] = 2, + [157381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157112] = 2, + [157391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157122] = 2, + [157401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157132] = 2, + [157411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157142] = 2, + [157421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157152] = 2, + [157431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157162] = 4, - ACTIONS(6391), 1, - anon_sym_type, - ACTIONS(8695), 1, - sym_identifier, - STATE(5378), 1, - sym__import_identifier, + [157441] = 3, + ACTIONS(8719), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157176] = 2, + ACTIONS(3589), 2, + anon_sym_in, + anon_sym_of, + [157453] = 3, + ACTIONS(8721), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8723), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [157186] = 2, + [157465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8675), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157196] = 2, + [157475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157206] = 2, + [157485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157216] = 2, + [157495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8697), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157226] = 2, + [157505] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8697), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157236] = 2, + [157515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157246] = 2, + [157525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8645), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157256] = 2, + [157535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8697), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157266] = 2, + [157545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8697), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157276] = 2, + [157555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157286] = 2, + [157565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157296] = 2, + [157575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 3, + ACTIONS(8708), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157306] = 2, + [157585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157316] = 4, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(8699), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + [157595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157330] = 4, - ACTIONS(5114), 1, + ACTIONS(8396), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8701), 1, - anon_sym_RBRACE, - STATE(4592), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [157605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157344] = 2, + ACTIONS(5011), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [157615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157354] = 4, - ACTIONS(8703), 1, - anon_sym_COMMA, - ACTIONS(8705), 1, - anon_sym_RBRACK, - STATE(4741), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157368] = 2, + [157625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157378] = 2, + [157635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157388] = 2, + [157645] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8707), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157398] = 2, + [157655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157408] = 2, + [157665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8707), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157418] = 2, + [157675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8709), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157428] = 4, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(8549), 1, - anon_sym_DOT, - STATE(2845), 1, - sym_arguments, + [157685] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157442] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7222), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157452] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8308), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157462] = 2, + [157695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157472] = 4, - ACTIONS(6538), 1, - anon_sym_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE, - ACTIONS(6556), 1, - anon_sym_extends, + [157705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157486] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8302), 3, + ACTIONS(8741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157496] = 2, + [157715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8743), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157506] = 2, + [157725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157516] = 2, + [157735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157526] = 2, + [157745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157536] = 2, + [157755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157546] = 2, + [157765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5038), 3, + ACTIONS(8725), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [157556] = 2, + anon_sym_SEMI, + [157775] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157566] = 2, + [157785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157576] = 3, - ACTIONS(8049), 1, - anon_sym_EQ, + [157795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8711), 2, + ACTIONS(8735), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [157588] = 2, + anon_sym_SEMI, + [157805] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157598] = 2, + [157815] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157608] = 2, + [157825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157618] = 4, - ACTIONS(7513), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_LBRACE, - STATE(4502), 1, - aux_sym_implements_clause_repeat1, + [157835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157632] = 2, + ACTIONS(8332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157642] = 2, + [157855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157652] = 4, - ACTIONS(6391), 1, - anon_sym_type, - ACTIONS(8715), 1, - sym_identifier, - STATE(5216), 1, - sym__import_identifier, + [157865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157666] = 4, - ACTIONS(8717), 1, - anon_sym_LPAREN, - ACTIONS(8719), 1, - anon_sym_await, - STATE(48), 1, - sym__for_header, + ACTIONS(8735), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157680] = 2, + ACTIONS(8735), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8484), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157690] = 2, + [157895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157700] = 2, + [157905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157710] = 2, + [157915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157720] = 2, + [157925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157730] = 2, + [157935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157740] = 2, + [157945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157750] = 2, + [157955] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157760] = 2, + [157965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157770] = 2, + [157975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157780] = 2, + [157985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157790] = 2, + [157995] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8721), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157800] = 2, + [158005] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157810] = 4, - ACTIONS(6765), 1, - anon_sym_RBRACE, - ACTIONS(8723), 1, + [158015] = 4, + ACTIONS(8755), 1, anon_sym_COMMA, - STATE(5042), 1, - aux_sym_named_imports_repeat1, + ACTIONS(8757), 1, + anon_sym_RBRACE, + STATE(4668), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157824] = 4, - ACTIONS(2577), 1, - anon_sym_LT, - ACTIONS(8725), 1, - anon_sym_EQ, - STATE(5600), 1, - sym_type_parameters, + [158029] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157838] = 3, - ACTIONS(7154), 1, - anon_sym_DOT, + ACTIONS(8735), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158039] = 3, + ACTIONS(8759), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [157850] = 2, + ACTIONS(8761), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [158051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157860] = 2, + [158061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157870] = 4, - ACTIONS(6391), 1, - anon_sym_type, - ACTIONS(8729), 1, - sym_identifier, - STATE(5217), 1, - sym__import_identifier, + [158071] = 3, + ACTIONS(4470), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157884] = 2, + ACTIONS(4472), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [158083] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157894] = 2, + [158093] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157904] = 4, - ACTIONS(8731), 1, - anon_sym_COMMA, - ACTIONS(8734), 1, - anon_sym_RBRACK, - STATE(5026), 1, - aux_sym_tuple_type_repeat1, + [158103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157918] = 2, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158113] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157928] = 2, + [158123] = 4, + ACTIONS(6267), 1, + anon_sym_DOT, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(8765), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157938] = 4, - ACTIONS(1931), 1, + [158147] = 4, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8736), 1, - anon_sym_RBRACK, - STATE(4445), 1, - aux_sym_array_repeat1, + ACTIONS(8769), 1, + anon_sym_GT, + STATE(4637), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157952] = 2, + [158161] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8738), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [157962] = 4, - ACTIONS(1688), 1, + ACTIONS(8771), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8740), 1, - anon_sym_RBRACK, - STATE(5035), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [158171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157976] = 2, + ACTIONS(8735), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158181] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157986] = 2, + [158191] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8742), 3, + ACTIONS(8735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157996] = 4, - ACTIONS(8744), 1, - anon_sym_COMMA, - ACTIONS(8746), 1, - anon_sym_GT, - STATE(4637), 1, - aux_sym_type_parameters_repeat1, + [158201] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158010] = 4, - ACTIONS(8711), 1, - anon_sym_RBRACK, - ACTIONS(8748), 1, + ACTIONS(7324), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158211] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8773), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5035), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [158221] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(8775), 1, + anon_sym_EQ, + STATE(5608), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158024] = 2, + [158235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8773), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158034] = 2, + [158245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8773), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158044] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8751), 1, - anon_sym_RPAREN, - STATE(4445), 1, - aux_sym_array_repeat1, + [158255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158058] = 2, + ACTIONS(8773), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158265] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158068] = 2, + [158275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8390), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158078] = 2, + [158285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -263375,1864 +263578,1913 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158088] = 4, - ACTIONS(8753), 1, - anon_sym_COMMA, - ACTIONS(8756), 1, - anon_sym_RBRACE, - STATE(5042), 1, - aux_sym_named_imports_repeat1, + [158295] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158102] = 4, - ACTIONS(8094), 1, - anon_sym_GT, - ACTIONS(8758), 1, + ACTIONS(8777), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5087), 1, - aux_sym_type_parameters_repeat1, + anon_sym_SEMI, + [158305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158116] = 2, + ACTIONS(8779), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158126] = 4, - ACTIONS(1552), 1, - anon_sym_DQUOTE, - ACTIONS(1554), 1, - anon_sym_SQUOTE, - STATE(5795), 1, - sym_string, + [158325] = 4, + ACTIONS(8781), 1, + anon_sym_COMMA, + ACTIONS(8783), 1, + anon_sym_RBRACK, + STATE(4838), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158140] = 4, - ACTIONS(7200), 1, - anon_sym_AMP, - ACTIONS(7202), 1, - anon_sym_PIPE, - ACTIONS(7204), 1, - anon_sym_extends, + [158339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158154] = 2, + ACTIONS(8785), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158349] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158164] = 2, + [158359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(5932), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158174] = 2, + [158369] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158184] = 3, - ACTIONS(7190), 1, - anon_sym_DOT, + [158379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 2, + ACTIONS(8749), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158196] = 2, + [158389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8787), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158206] = 2, + [158399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8789), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158216] = 4, - ACTIONS(8760), 1, - sym_identifier, - STATE(2595), 1, - sym_decorator_member_expression, - STATE(2702), 1, - sym_decorator_call_expression, + [158409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158230] = 2, + ACTIONS(8332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8791), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158240] = 3, - ACTIONS(7976), 1, - anon_sym_LBRACE, + [158429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7978), 2, + ACTIONS(8777), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158252] = 4, - ACTIONS(8762), 1, - sym_identifier, - ACTIONS(8764), 1, - anon_sym_LBRACK, - ACTIONS(8766), 1, - sym_private_property_identifier, + anon_sym_SEMI, + [158439] = 4, + ACTIONS(7312), 1, + anon_sym_AMP, + ACTIONS(7314), 1, + anon_sym_PIPE, + ACTIONS(7316), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158266] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8768), 1, - sym__glimmer_template_content, - ACTIONS(8771), 1, - sym_glimmer_closing_tag, - STATE(5057), 1, - aux_sym_glimmer_template_repeat1, - [158282] = 2, + [158453] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8787), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158292] = 4, - ACTIONS(8773), 1, - anon_sym_COMMA, - ACTIONS(8776), 1, - anon_sym_RBRACE, - STATE(5059), 1, - aux_sym_enum_body_repeat1, + [158463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158306] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8352), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158316] = 2, + [158473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158326] = 2, + [158483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158336] = 4, - ACTIONS(6813), 1, - anon_sym_implements, - ACTIONS(8778), 1, - anon_sym_LBRACE, - STATE(5820), 1, - sym_implements_clause, + [158493] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158350] = 2, + ACTIONS(8795), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158503] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158360] = 2, + [158513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158370] = 2, + [158523] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158380] = 2, + [158533] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6393), 3, + ACTIONS(7270), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158543] = 4, + ACTIONS(1648), 1, + anon_sym_RPAREN, + ACTIONS(8797), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [158390] = 4, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1544), 1, + STATE(4921), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158557] = 4, + ACTIONS(6837), 1, + anon_sym_implements, + ACTIONS(8799), 1, anon_sym_LBRACE, - STATE(832), 1, - sym_object_type, + STATE(5726), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158404] = 2, + [158571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158414] = 3, - ACTIONS(8780), 1, - anon_sym_EQ, + [158581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8356), 2, - anon_sym_COMMA, - anon_sym_from, - [158426] = 2, + ACTIONS(7254), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [158591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8782), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [158436] = 2, + [158601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158446] = 2, + [158611] = 4, + ACTIONS(6554), 1, + anon_sym_AMP, + ACTIONS(6556), 1, + anon_sym_PIPE, + ACTIONS(6558), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158456] = 2, + [158625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158466] = 2, + [158635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5932), 3, + ACTIONS(8801), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [158476] = 4, - ACTIONS(8784), 1, - anon_sym_COMMA, - ACTIONS(8786), 1, - anon_sym_GT, - STATE(5043), 1, - aux_sym_type_parameters_repeat1, + [158645] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158490] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8302), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158500] = 2, + [158655] = 4, + ACTIONS(8803), 1, + sym_identifier, + ACTIONS(8805), 1, + anon_sym_LBRACK, + ACTIONS(8807), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, - sym__automatic_semicolon, + [158669] = 4, + ACTIONS(8809), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158510] = 3, - ACTIONS(4202), 1, + ACTIONS(8812), 1, + anon_sym_RBRACE, + STATE(5081), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158683] = 3, + ACTIONS(4142), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 2, + ACTIONS(4144), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [158522] = 2, + [158695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158532] = 2, + [158705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158542] = 2, + [158715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158552] = 4, - ACTIONS(5336), 1, + [158725] = 4, + ACTIONS(5644), 1, anon_sym_COMMA, - ACTIONS(8788), 1, + ACTIONS(8814), 1, anon_sym_RBRACE, - STATE(5120), 1, + STATE(5126), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158566] = 3, - ACTIONS(8049), 1, - anon_sym_EQ, + [158739] = 4, + ACTIONS(3438), 1, + anon_sym_LPAREN, + ACTIONS(8559), 1, + anon_sym_DOT, + STATE(2848), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8790), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158578] = 2, + [158753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158588] = 4, - ACTIONS(5336), 1, + [158763] = 4, + ACTIONS(5644), 1, anon_sym_COMMA, - ACTIONS(8788), 1, + ACTIONS(8814), 1, anon_sym_RBRACE, - STATE(5113), 1, + STATE(4691), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158602] = 4, - ACTIONS(8792), 1, + [158777] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8388), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_GT, - STATE(5087), 1, - aux_sym_type_parameters_repeat1, + anon_sym_SEMI, + [158787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158616] = 3, - ACTIONS(4234), 1, + ACTIONS(8382), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158797] = 4, + ACTIONS(8816), 1, + anon_sym_COMMA, + ACTIONS(8818), 1, + anon_sym_RPAREN, + STATE(5130), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158811] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8382), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158821] = 3, + ACTIONS(4410), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 2, + ACTIONS(4412), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [158628] = 2, + [158833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158638] = 2, + [158843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158648] = 4, - ACTIONS(8799), 1, - anon_sym_COMMA, - ACTIONS(8801), 1, - anon_sym_RPAREN, - STATE(5124), 1, - aux_sym_formal_parameters_repeat1, + [158853] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158662] = 2, + ACTIONS(8324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158863] = 3, + ACTIONS(4462), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8803), 3, - sym__automatic_semicolon, + ACTIONS(4464), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158672] = 2, + anon_sym_LBRACE_PIPE, + [158875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8805), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158682] = 2, + [158885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158692] = 4, - ACTIONS(1931), 1, + [158895] = 4, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(4967), 1, - anon_sym_RPAREN, - STATE(5038), 1, - aux_sym_array_repeat1, + ACTIONS(8823), 1, + anon_sym_RBRACK, + STATE(5101), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158706] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(4967), 1, - anon_sym_RPAREN, - STATE(4445), 1, - aux_sym_array_repeat1, + [158909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158720] = 2, + ACTIONS(8825), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [158919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158730] = 2, + [158929] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8807), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158740] = 2, + [158939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8807), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158750] = 2, + [158949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158760] = 3, - ACTIONS(7312), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3585), 2, - anon_sym_in, - anon_sym_of, - [158772] = 2, + [158959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8809), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158782] = 2, + [158969] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158792] = 2, + [158979] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8811), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158802] = 2, + [158989] = 4, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1498), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158812] = 4, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(8813), 1, - anon_sym_RBRACE, - STATE(4754), 1, - aux_sym_object_pattern_repeat1, + [159013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158826] = 2, + ACTIONS(8370), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158836] = 2, + [159033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158846] = 2, + [159043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158856] = 2, + [159053] = 4, + ACTIONS(7557), 1, + anon_sym_COMMA, + ACTIONS(8827), 1, + anon_sym_LBRACE, + STATE(4445), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158866] = 2, + [159077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158876] = 4, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(8815), 1, - anon_sym_RBRACE, - STATE(4907), 1, - aux_sym_object_repeat1, + [159087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158890] = 4, - ACTIONS(8817), 1, + ACTIONS(8829), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8820), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [159097] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158904] = 2, + ACTIONS(8338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158914] = 2, + [159117] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158924] = 2, + [159127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158934] = 4, - ACTIONS(5336), 1, + [159137] = 4, + ACTIONS(5644), 1, anon_sym_COMMA, - ACTIONS(8822), 1, + ACTIONS(8833), 1, anon_sym_RBRACE, - STATE(5113), 1, + STATE(4691), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158948] = 2, + [159151] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8809), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158958] = 2, + [159161] = 4, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(8835), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + [159175] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158968] = 4, - ACTIONS(5336), 1, - anon_sym_COMMA, - ACTIONS(8824), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + [159185] = 3, + ACTIONS(8131), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158982] = 4, - ACTIONS(8826), 1, + ACTIONS(8486), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159197] = 4, + ACTIONS(8837), 1, anon_sym_LPAREN, - ACTIONS(8828), 1, + ACTIONS(8839), 1, anon_sym_await, - STATE(62), 1, + STATE(61), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158996] = 2, + [159211] = 4, + ACTIONS(1636), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + STATE(4921), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159225] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159006] = 2, + [159235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159016] = 4, - ACTIONS(1640), 1, - anon_sym_RPAREN, - ACTIONS(8830), 1, - anon_sym_COMMA, - STATE(4702), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159030] = 2, + [159245] = 3, + ACTIONS(8029), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7235), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [159040] = 4, - ACTIONS(2463), 1, + ACTIONS(8031), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [159257] = 4, + ACTIONS(2473), 1, anon_sym_while, - ACTIONS(8832), 1, + ACTIONS(8843), 1, anon_sym_else, - STATE(791), 1, + STATE(764), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159054] = 2, + [159271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159064] = 4, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1544), 1, + [159281] = 4, + ACTIONS(2229), 1, anon_sym_LBRACE, - STATE(767), 1, - sym_object_type, + ACTIONS(8847), 1, + sym_identifier, + STATE(4435), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159078] = 2, + [159295] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159088] = 2, + [159305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8490), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159098] = 2, + [159315] = 4, + ACTIONS(3408), 1, + anon_sym_LPAREN, + ACTIONS(8849), 1, + anon_sym_DOT, + STATE(3086), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 3, - anon_sym_LBRACK, + [159329] = 3, + ACTIONS(8851), 1, sym_identifier, - sym_private_property_identifier, - [159108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8853), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159118] = 2, + [159341] = 4, + ACTIONS(8855), 1, + anon_sym_COMMA, + ACTIONS(8858), 1, + anon_sym_RBRACE, + STATE(5141), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159128] = 2, + [159355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8834), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [159138] = 4, - ACTIONS(5336), 1, anon_sym_COMMA, - ACTIONS(8815), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [159365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159152] = 3, - ACTIONS(8836), 1, + ACTIONS(8382), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159375] = 3, + ACTIONS(8860), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, + ACTIONS(3514), 2, anon_sym_COMMA, anon_sym_RBRACK, - [159164] = 2, + [159387] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159174] = 2, + [159397] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159184] = 4, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(8813), 1, - anon_sym_RBRACE, - STATE(4592), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159198] = 2, + [159407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159208] = 2, + [159417] = 4, + ACTIONS(1700), 1, + anon_sym_COMMA, + ACTIONS(8287), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159218] = 2, + [159431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159228] = 3, - ACTIONS(8839), 1, + [159441] = 4, + ACTIONS(2437), 1, anon_sym_LBRACE, + ACTIONS(8863), 1, + anon_sym_LPAREN, + STATE(731), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7965), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [159240] = 2, + [159455] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(5027), 1, + anon_sym_RPAREN, + STATE(4569), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159250] = 4, - ACTIONS(3163), 1, - anon_sym_GT, - ACTIONS(8841), 1, + [159469] = 4, + ACTIONS(1931), 1, anon_sym_COMMA, - STATE(4502), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(5064), 1, + anon_sym_RBRACK, + STATE(5170), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159264] = 2, + [159483] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(5027), 1, + anon_sym_RPAREN, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8843), 1, - sym__glimmer_template_content, - ACTIONS(8845), 1, - sym_glimmer_closing_tag, - STATE(4898), 1, - aux_sym_glimmer_template_repeat1, - [159290] = 2, + [159497] = 3, + ACTIONS(7303), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, - sym__automatic_semicolon, + ACTIONS(3589), 2, + anon_sym_in, + anon_sym_of, + [159509] = 4, + ACTIONS(1931), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159300] = 4, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(8847), 1, - anon_sym_DOT, - STATE(3102), 1, - sym_arguments, + ACTIONS(5064), 1, + anon_sym_RBRACK, + STATE(4511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159314] = 3, - ACTIONS(8849), 1, - anon_sym_EQ, + [159523] = 4, + ACTIONS(5644), 1, + anon_sym_COMMA, + ACTIONS(8865), 1, + anon_sym_RBRACE, + STATE(4691), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8356), 2, + [159537] = 4, + ACTIONS(5113), 1, anon_sym_COMMA, - anon_sym_from, - [159326] = 2, + ACTIONS(8867), 1, + anon_sym_RBRACE, + STATE(4698), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, - sym__automatic_semicolon, + [159551] = 4, + ACTIONS(5113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159336] = 2, + ACTIONS(8869), 1, + anon_sym_RBRACE, + STATE(4698), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159346] = 2, + [159565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159356] = 2, + [159575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159366] = 4, - ACTIONS(8851), 1, - anon_sym_COMMA, - ACTIONS(8853), 1, - anon_sym_RPAREN, - STATE(4846), 1, - aux_sym_formal_parameters_repeat1, + [159585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159380] = 4, - ACTIONS(1931), 1, + ACTIONS(8481), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4997), 1, - anon_sym_RPAREN, - STATE(4559), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [159595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159394] = 4, - ACTIONS(1931), 1, + ACTIONS(8340), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4997), 1, - anon_sym_RPAREN, - STATE(4445), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159408] = 2, + anon_sym_SEMI, + [159605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8871), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159418] = 2, + [159615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159428] = 4, - ACTIONS(5336), 1, + [159625] = 4, + ACTIONS(1700), 1, anon_sym_COMMA, - ACTIONS(8855), 1, - anon_sym_RBRACE, - STATE(5113), 1, - aux_sym_object_repeat1, + ACTIONS(8287), 1, + anon_sym_RBRACK, + STATE(4674), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159639] = 4, + ACTIONS(6267), 1, + anon_sym_DOT, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(8873), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159442] = 2, + [159653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159452] = 2, + [159663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159462] = 2, + [159673] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159472] = 4, - ACTIONS(6263), 1, - anon_sym_DOT, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(8857), 1, + [159683] = 4, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(8875), 1, + anon_sym_RBRACK, + STATE(4511), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159697] = 4, + ACTIONS(8299), 1, anon_sym_GT, + ACTIONS(8877), 1, + anon_sym_COMMA, + STATE(4938), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159486] = 2, + [159711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159496] = 2, + [159721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159506] = 2, + [159731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159516] = 4, - ACTIONS(5114), 1, - anon_sym_COMMA, - ACTIONS(8859), 1, - anon_sym_RBRACE, - STATE(4592), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159530] = 2, + [159741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8490), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159540] = 4, - ACTIONS(6263), 1, - anon_sym_DOT, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(8861), 1, - anon_sym_GT, + [159751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8702), 1, + sym__glimmer_template_content, + ACTIONS(8879), 1, + sym_glimmer_closing_tag, + STATE(4723), 1, + aux_sym_glimmer_template_repeat1, + [159767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159554] = 2, + ACTIONS(8398), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159564] = 2, + [159787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159574] = 2, + [159797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8490), 3, + ACTIONS(8332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159584] = 2, + [159807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159594] = 2, + [159817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159604] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8655), 1, - sym__glimmer_template_content, - ACTIONS(8863), 1, - sym_glimmer_closing_tag, - STATE(5057), 1, - aux_sym_glimmer_template_repeat1, - [159620] = 3, - ACTIONS(8865), 1, + [159827] = 3, + ACTIONS(8575), 1, sym_identifier, - ACTIONS(8867), 1, + ACTIONS(8579), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159631] = 3, - ACTIONS(4130), 1, + [159838] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(1688), 1, + STATE(2571), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159642] = 3, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159653] = 3, - ACTIONS(6907), 1, - anon_sym_LBRACE, - STATE(243), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159664] = 2, + [159849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 2, + ACTIONS(8403), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159673] = 3, - ACTIONS(6941), 1, + [159858] = 3, + ACTIONS(1716), 1, anon_sym_LBRACE, - STATE(750), 1, - sym_class_body, + STATE(241), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159684] = 3, - ACTIONS(4130), 1, - anon_sym_LBRACE, - STATE(1689), 1, - sym_statement_block, + [159869] = 3, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(32), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159695] = 2, + [159880] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8869), 2, + ACTIONS(8883), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159704] = 3, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5363), 1, - sym_statement_block, + [159889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159715] = 3, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(717), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159726] = 3, - ACTIONS(7152), 1, - anon_sym_LBRACE, - STATE(722), 1, - sym_statement_block, + ACTIONS(8885), 2, + anon_sym_COMMA, + anon_sym_GT, + [159898] = 3, + ACTIONS(8887), 1, + sym_identifier, + STATE(4768), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159737] = 2, + [159909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8871), 2, + ACTIONS(8889), 2, anon_sym_COMMA, anon_sym_RPAREN, - [159746] = 3, - ACTIONS(6733), 1, + [159918] = 3, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(1690), 1, + STATE(2489), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159757] = 3, - ACTIONS(6867), 1, + [159929] = 3, + ACTIONS(8891), 1, + sym_identifier, + ACTIONS(8893), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159940] = 3, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(723), 1, + STATE(718), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159768] = 2, + [159951] = 3, + ACTIONS(8895), 1, + sym_identifier, + ACTIONS(8897), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8367), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159777] = 3, - ACTIONS(4009), 1, - anon_sym_LBRACE, - STATE(2157), 1, - sym_statement_block, + [159962] = 3, + ACTIONS(8899), 1, + sym_identifier, + ACTIONS(8901), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159788] = 2, + [159973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 2, + ACTIONS(8488), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159797] = 2, + [159982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 2, + ACTIONS(5923), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159806] = 3, - ACTIONS(2429), 1, + [159991] = 3, + ACTIONS(8903), 1, + sym_identifier, + ACTIONS(8905), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160002] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(5417), 1, + STATE(2602), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159817] = 3, - ACTIONS(8873), 1, - anon_sym_SEMI, - ACTIONS(8875), 1, - sym__automatic_semicolon, + [160013] = 3, + ACTIONS(6763), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159828] = 3, - ACTIONS(7380), 1, + [160024] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2592), 1, + STATE(5468), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159839] = 2, + [160035] = 3, + ACTIONS(6763), 1, + anon_sym_LBRACE, + STATE(2491), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8877), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159848] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2158), 1, - sym_class_body, + [160046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159859] = 3, - ACTIONS(6733), 1, + ACTIONS(5940), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160055] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(2486), 1, + STATE(2223), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159870] = 3, - ACTIONS(4009), 1, - anon_sym_LBRACE, - STATE(2236), 1, - sym_statement_block, + [160066] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(4266), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159881] = 3, - ACTIONS(8879), 1, + [160077] = 3, + ACTIONS(8907), 1, sym_identifier, - ACTIONS(8881), 1, + ACTIONS(8909), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159892] = 3, - ACTIONS(4668), 1, + [160088] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2629), 1, + STATE(2613), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159903] = 3, - ACTIONS(8883), 1, - sym_identifier, - ACTIONS(8885), 1, - sym_private_property_identifier, + [160099] = 3, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(2227), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159914] = 3, - ACTIONS(8887), 1, - sym_identifier, - ACTIONS(8889), 1, - sym_private_property_identifier, + [160110] = 3, + ACTIONS(7096), 1, + anon_sym_LBRACE, + STATE(837), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159925] = 3, - ACTIONS(8891), 1, - sym_identifier, - ACTIONS(8893), 1, - sym_private_property_identifier, + [160121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159936] = 3, - ACTIONS(8895), 1, - sym_identifier, - ACTIONS(8897), 1, - sym_private_property_identifier, + ACTIONS(4721), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160130] = 3, + ACTIONS(4029), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159947] = 2, + [160141] = 3, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(4097), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5907), 2, + ACTIONS(8505), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159956] = 3, - ACTIONS(6584), 1, + [160161] = 3, + ACTIONS(6572), 1, anon_sym_COLON, - ACTIONS(8396), 1, + ACTIONS(8405), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159967] = 3, - ACTIONS(2429), 1, + [160172] = 3, + ACTIONS(8911), 1, anon_sym_LBRACE, - STATE(5419), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159978] = 3, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(8899), 1, - anon_sym_GT, + STATE(5381), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159989] = 3, - ACTIONS(4009), 1, + [160183] = 3, + ACTIONS(1716), 1, anon_sym_LBRACE, - STATE(2351), 1, + STATE(235), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160000] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2298), 1, - sym_class_body, + [160194] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160011] = 2, + ACTIONS(8913), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160203] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, + ACTIONS(8915), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160020] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2352), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160031] = 2, + [160212] = 3, + ACTIONS(8064), 1, + anon_sym_from, + STATE(4251), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8901), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160040] = 2, + [160223] = 3, + ACTIONS(6642), 1, + anon_sym_DOT, + ACTIONS(8917), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8903), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160049] = 3, - ACTIONS(8905), 1, - sym_identifier, - ACTIONS(8907), 1, - anon_sym_STAR, + [160234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160060] = 2, + ACTIONS(7912), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4842), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160069] = 3, - ACTIONS(8909), 1, + ACTIONS(8713), 2, + anon_sym_COMMA, + anon_sym_GT, + [160252] = 3, + ACTIONS(3969), 1, anon_sym_LPAREN, - STATE(737), 1, - sym_parenthesized_expression, + STATE(1774), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160080] = 3, - ACTIONS(7380), 1, + [160263] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2567), 1, + STATE(2574), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160091] = 3, - ACTIONS(7152), 1, + [160274] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(748), 1, + STATE(856), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160102] = 3, - ACTIONS(8911), 1, - sym_identifier, - STATE(5050), 1, - sym_nested_identifier, + [160285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160113] = 3, - ACTIONS(8913), 1, - sym_identifier, - ACTIONS(8915), 1, - sym_private_property_identifier, + ACTIONS(8512), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160294] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5554), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160124] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5713), 1, - sym_formal_parameters, + [160305] = 3, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(2340), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160135] = 2, + [160316] = 3, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8503), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160144] = 3, - ACTIONS(2429), 1, + [160327] = 3, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(803), 1, - sym_statement_block, + STATE(4105), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160155] = 3, - ACTIONS(8917), 1, - sym_identifier, - ACTIONS(8919), 1, - sym_private_property_identifier, + [160338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160166] = 3, - ACTIONS(4009), 1, + ACTIONS(7374), 2, anon_sym_LBRACE, - STATE(2294), 1, + anon_sym_EQ_GT, + [160347] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2579), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160177] = 3, - ACTIONS(6867), 1, + [160358] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(4074), 1, + STATE(2273), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160188] = 3, - ACTIONS(8921), 1, - anon_sym_SEMI, - ACTIONS(8923), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160199] = 3, - ACTIONS(7811), 1, - anon_sym_in, - ACTIONS(7813), 1, - anon_sym_of, + [160369] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5777), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160210] = 3, - ACTIONS(8925), 1, + [160380] = 3, + ACTIONS(8919), 1, sym_identifier, - ACTIONS(8927), 1, + ACTIONS(8921), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160221] = 3, - ACTIONS(6733), 1, + [160391] = 3, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(2497), 1, + STATE(4107), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160232] = 3, - ACTIONS(3961), 1, - anon_sym_LPAREN, - STATE(1651), 1, - sym_arguments, + [160402] = 3, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(4794), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160243] = 3, - ACTIONS(6403), 1, + [160413] = 3, + ACTIONS(8923), 1, + sym_identifier, + ACTIONS(8925), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160424] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5807), 1, + STATE(5630), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160254] = 3, - ACTIONS(8929), 1, - sym_identifier, - ACTIONS(8931), 1, - sym_private_property_identifier, + [160435] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2597), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160265] = 3, - ACTIONS(8933), 1, - sym_identifier, - ACTIONS(8935), 1, - sym_private_property_identifier, + [160446] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160276] = 3, - ACTIONS(4009), 1, + [160457] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2299), 1, + STATE(2606), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160287] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5686), 1, - sym_formal_parameters, + [160468] = 3, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(8518), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160298] = 3, - ACTIONS(7380), 1, + [160479] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2575), 1, + STATE(2556), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160309] = 2, + [160490] = 3, + ACTIONS(4189), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8102), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160318] = 3, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(715), 1, - sym_statement_block, + [160501] = 3, + ACTIONS(8927), 1, + anon_sym_COMMA, + ACTIONS(8929), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160329] = 3, - ACTIONS(8937), 1, + [160512] = 3, + ACTIONS(8931), 1, sym_identifier, - ACTIONS(8939), 1, + ACTIONS(8933), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160340] = 3, - ACTIONS(6719), 1, + [160523] = 3, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(2296), 1, + STATE(1704), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160351] = 3, - ACTIONS(6867), 1, + [160534] = 3, + ACTIONS(8935), 1, + sym_identifier, + ACTIONS(8937), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160545] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8700), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160554] = 3, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(4080), 1, - sym_class_body, + STATE(2229), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160362] = 3, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(8507), 1, + [160565] = 3, + ACTIONS(6642), 1, + anon_sym_DOT, + ACTIONS(8939), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160373] = 3, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_class_body, + [160576] = 3, + ACTIONS(8064), 1, + anon_sym_from, + STATE(5445), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160384] = 3, - ACTIONS(6733), 1, + [160587] = 3, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160598] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE, - STATE(1783), 1, + STATE(242), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160395] = 2, + [160609] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5954), 2, + ACTIONS(8941), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [160404] = 3, - ACTIONS(8941), 1, + anon_sym_RPAREN, + [160618] = 3, + ACTIONS(7096), 1, anon_sym_LBRACE, - STATE(800), 1, - sym_switch_body, + STATE(844), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160415] = 3, - ACTIONS(6867), 1, + [160629] = 3, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(4083), 1, + STATE(1708), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160426] = 2, + [160640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4878), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160435] = 3, - ACTIONS(8943), 1, - anon_sym_in, - ACTIONS(8945), 1, - anon_sym_COLON, + ACTIONS(8943), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160446] = 2, + ACTIONS(8945), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160658] = 3, + ACTIONS(8947), 1, + anon_sym_LBRACE, + STATE(760), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4892), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160455] = 3, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(8947), 1, - anon_sym_GT, + [160669] = 3, + ACTIONS(7190), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160466] = 3, - ACTIONS(8949), 1, + [160680] = 3, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(52), 1, + STATE(41), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160477] = 2, + [160691] = 3, + ACTIONS(6763), 1, + anon_sym_LBRACE, + STATE(2504), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160702] = 3, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8951), 2, + [160713] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5948), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [160486] = 3, - ACTIONS(7380), 1, + anon_sym_RBRACE, + [160722] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2570), 1, + STATE(5504), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160497] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3605), 1, - sym_formal_parameters, + [160733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160508] = 3, - ACTIONS(7380), 1, + ACTIONS(5915), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160742] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2571), 1, + STATE(5506), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160519] = 3, - ACTIONS(4130), 1, + [160753] = 3, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(1703), 1, + STATE(2382), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160530] = 3, - ACTIONS(6733), 1, + [160764] = 3, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(42), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160775] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(1704), 1, + STATE(2383), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160541] = 3, - ACTIONS(8949), 1, + [160786] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160795] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8951), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160804] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(54), 1, - sym_parenthesized_expression, + STATE(4056), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160552] = 3, + [160815] = 3, ACTIONS(8953), 1, sym_identifier, ACTIONS(8955), 1, @@ -265240,9177 +265492,9154 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [160563] = 3, - ACTIONS(4009), 1, - anon_sym_LBRACE, - STATE(2300), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160574] = 3, + [160826] = 3, ACTIONS(8957), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(8959), 1, - sym__automatic_semicolon, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160585] = 2, + [160837] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2566), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8711), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [160594] = 3, - ACTIONS(8949), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + [160848] = 3, + ACTIONS(6763), 1, + anon_sym_LBRACE, + STATE(1744), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160605] = 3, - ACTIONS(7380), 1, + [160859] = 3, + ACTIONS(4189), 1, anon_sym_LBRACE, - STATE(2563), 1, + STATE(1711), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160616] = 2, + [160870] = 3, + ACTIONS(8961), 1, + sym_identifier, + ACTIONS(8963), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160625] = 3, - ACTIONS(8963), 1, - sym_identifier, + [160881] = 3, ACTIONS(8965), 1, - sym_private_property_identifier, + anon_sym_SEMI, + ACTIONS(8967), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160636] = 3, - ACTIONS(8967), 1, - sym_identifier, + [160892] = 3, + ACTIONS(4189), 1, + anon_sym_LBRACE, + STATE(1718), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160903] = 3, ACTIONS(8969), 1, + sym_identifier, + ACTIONS(8971), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160647] = 3, - ACTIONS(8971), 1, - sym_identifier, + [160914] = 3, ACTIONS(8973), 1, + sym_identifier, + ACTIONS(8975), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160658] = 3, - ACTIONS(8975), 1, + [160925] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(5198), 1, - sym_object, + STATE(2561), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160669] = 2, + [160936] = 3, + ACTIONS(8977), 1, + sym_identifier, + ACTIONS(8979), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8977), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160678] = 3, - ACTIONS(8003), 1, + [160947] = 3, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(4124), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160958] = 3, + ACTIONS(8064), 1, anon_sym_from, - STATE(5501), 1, + STATE(5490), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160689] = 3, - ACTIONS(8979), 1, - anon_sym_SEMI, - ACTIONS(8981), 1, - sym__automatic_semicolon, + [160969] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160700] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(43), 1, - sym__for_header, + ACTIONS(4680), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160978] = 3, + ACTIONS(6763), 1, + anon_sym_LBRACE, + STATE(1784), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160711] = 3, - ACTIONS(6907), 1, + [160989] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(246), 1, - sym_class_body, + STATE(686), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160722] = 3, - ACTIONS(6733), 1, + [161000] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(1660), 1, - sym_class_body, + STATE(2572), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160733] = 2, + [161011] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5788), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8985), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160742] = 3, - ACTIONS(8517), 1, + [161022] = 3, + ACTIONS(8981), 1, sym_identifier, - ACTIONS(8521), 1, + ACTIONS(8983), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160753] = 3, - ACTIONS(7380), 1, + [161033] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5677), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161044] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2606), 1, + STATE(2559), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160764] = 3, - ACTIONS(8987), 1, - anon_sym_SEMI, - ACTIONS(8989), 1, - sym__automatic_semicolon, + [161055] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5847), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161066] = 3, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160775] = 2, + [161077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8991), 2, + ACTIONS(8985), 2, sym__automatic_semicolon, anon_sym_SEMI, - [160784] = 3, - ACTIONS(8993), 1, - sym_identifier, - ACTIONS(8995), 1, - sym_private_property_identifier, + [161086] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2603), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160795] = 3, - ACTIONS(7380), 1, + [161097] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8987), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161106] = 3, + ACTIONS(4189), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(1753), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160806] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym__for_header, + [161117] = 3, + ACTIONS(8989), 1, + anon_sym_SEMI, + ACTIONS(8991), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160817] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5628), 1, - sym_formal_parameters, + [161128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160828] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5551), 1, - sym_formal_parameters, + ACTIONS(8993), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160839] = 3, - ACTIONS(6403), 1, + ACTIONS(8995), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161146] = 3, + ACTIONS(8997), 1, anon_sym_LPAREN, - STATE(5697), 1, - sym_formal_parameters, + STATE(43), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161157] = 3, + ACTIONS(7860), 1, + anon_sym_in, + ACTIONS(7862), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160850] = 3, - ACTIONS(6719), 1, + [161168] = 3, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(2301), 1, + STATE(2494), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160861] = 3, - ACTIONS(6867), 1, + [161179] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(3990), 1, - sym_class_body, + STATE(722), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160872] = 3, - ACTIONS(7380), 1, + [161190] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161199] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2609), 1, + STATE(2585), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160883] = 3, - ACTIONS(8997), 1, - sym_identifier, - ACTIONS(8999), 1, - sym_private_property_identifier, + [161210] = 3, + ACTIONS(9001), 1, + anon_sym_in, + ACTIONS(9003), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160894] = 3, - ACTIONS(6867), 1, + [161221] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1728), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161230] = 3, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(4102), 1, + STATE(4005), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160905] = 3, - ACTIONS(4130), 1, + [161241] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(1788), 1, + STATE(2583), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160916] = 3, - ACTIONS(7380), 1, + [161252] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2613), 1, + STATE(2584), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160927] = 3, - ACTIONS(7380), 1, + [161263] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2557), 1, + STATE(2586), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160938] = 3, - ACTIONS(9001), 1, - sym_identifier, - ACTIONS(9003), 1, - sym_private_property_identifier, + [161274] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2587), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160949] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(1617), 1, - sym_class_body, + [161285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160960] = 3, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5339), 1, - sym_statement_block, + ACTIONS(5909), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161294] = 3, + ACTIONS(8997), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160971] = 3, - ACTIONS(3463), 1, - anon_sym_COLON, - STATE(5310), 1, - sym_type_annotation, + [161305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160982] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2508), 1, - sym_class_body, + ACTIONS(5977), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161314] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5747), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160993] = 3, - ACTIONS(6403), 1, + [161325] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5839), 1, + STATE(5808), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161004] = 2, + [161336] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2589), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9005), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161013] = 3, - ACTIONS(6405), 1, - anon_sym_COLON, - STATE(4606), 1, - sym_type_annotation, + [161347] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5915), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161024] = 3, - ACTIONS(3463), 1, - anon_sym_COLON, - STATE(5366), 1, - sym_type_annotation, + [161358] = 3, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5345), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161035] = 2, + [161369] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9007), 2, + ACTIONS(5919), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [161044] = 2, + anon_sym_RBRACE, + [161378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9009), 2, + ACTIONS(9005), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [161053] = 2, + anon_sym_RBRACE, + [161387] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161062] = 3, - ACTIONS(6719), 1, + ACTIONS(4729), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161396] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4733), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161405] = 3, + ACTIONS(9007), 1, anon_sym_LBRACE, - STATE(2225), 1, - sym_class_body, + STATE(3956), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161073] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5739), 1, - sym_formal_parameters, + [161416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161084] = 3, - ACTIONS(7380), 1, + ACTIONS(5909), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161425] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2587), 1, + STATE(2600), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161095] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5811), 1, - sym_formal_parameters, + [161436] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2588), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161106] = 3, - ACTIONS(7380), 1, + [161447] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2603), 1, + STATE(2596), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161117] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5863), 1, - sym_formal_parameters, + [161458] = 3, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5360), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161128] = 3, - ACTIONS(7380), 1, + [161469] = 3, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(2616), 1, - sym_statement_block, + STATE(1646), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161139] = 3, - ACTIONS(7380), 1, + [161480] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2590), 1, + STATE(2573), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161150] = 3, - ACTIONS(7380), 1, + [161491] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2574), 1, + STATE(5477), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161161] = 3, - ACTIONS(9011), 1, - anon_sym_SEMI, - ACTIONS(9013), 1, - sym__automatic_semicolon, + [161502] = 3, + ACTIONS(6409), 1, + anon_sym_LPAREN, + STATE(3415), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161172] = 3, - ACTIONS(6733), 1, + [161513] = 3, + ACTIONS(7096), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(814), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161183] = 3, - ACTIONS(7380), 1, + [161524] = 3, + ACTIONS(4189), 1, anon_sym_LBRACE, - STATE(2577), 1, + STATE(1763), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161194] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2581), 1, - sym_statement_block, + [161535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161205] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5882), 1, - sym_formal_parameters, + ACTIONS(5961), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161544] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161216] = 3, - ACTIONS(9015), 1, - sym_identifier, - ACTIONS(9017), 1, - sym_private_property_identifier, + ACTIONS(9009), 2, + anon_sym_COMMA, + anon_sym_GT, + [161553] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5666), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161227] = 3, - ACTIONS(7380), 1, + [161564] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2600), 1, + STATE(5484), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161238] = 3, - ACTIONS(6719), 1, + [161575] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(3769), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161586] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE, - STATE(2175), 1, + STATE(230), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161249] = 3, - ACTIONS(9019), 1, - sym_identifier, - ACTIONS(9021), 1, - sym_private_property_identifier, + [161597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161260] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2582), 1, - sym_statement_block, + ACTIONS(5919), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161271] = 3, - ACTIONS(7380), 1, + ACTIONS(5915), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161615] = 3, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(2584), 1, + STATE(2274), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161282] = 3, - ACTIONS(4130), 1, + [161626] = 3, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(1665), 1, + STATE(2275), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161293] = 3, - ACTIONS(8949), 1, - anon_sym_LPAREN, - STATE(68), 1, - sym_parenthesized_expression, + [161637] = 3, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(2139), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161304] = 3, - ACTIONS(9023), 1, - sym_identifier, - ACTIONS(9025), 1, - sym_private_property_identifier, + [161648] = 3, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(8765), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161315] = 3, - ACTIONS(4130), 1, + [161659] = 3, + ACTIONS(8947), 1, anon_sym_LBRACE, - STATE(1635), 1, - sym_statement_block, + STATE(858), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161326] = 3, - ACTIONS(8949), 1, + [161670] = 3, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(5251), 1, + STATE(5371), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161337] = 3, - ACTIONS(2429), 1, + [161681] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(5193), 1, - sym_statement_block, + STATE(2276), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161348] = 2, + [161692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 2, + ACTIONS(5965), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161357] = 2, + [161701] = 3, + ACTIONS(6642), 1, + anon_sym_DOT, + ACTIONS(9011), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7460), 2, + [161712] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161366] = 3, - ACTIONS(4009), 1, - anon_sym_LBRACE, - STATE(2177), 1, + STATE(5494), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161377] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3653), 1, - sym_formal_parameters, + [161723] = 3, + ACTIONS(9013), 1, + sym_identifier, + ACTIONS(9015), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161388] = 3, - ACTIONS(8949), 1, - anon_sym_LPAREN, - STATE(41), 1, - sym_parenthesized_expression, + [161734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161399] = 3, - ACTIONS(4009), 1, + ACTIONS(5961), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161743] = 3, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(2248), 1, + STATE(2337), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161410] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5633), 1, - sym_formal_parameters, + [161754] = 3, + ACTIONS(8342), 1, + sym_identifier, + ACTIONS(8346), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161421] = 3, - ACTIONS(4009), 1, + [161765] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2269), 1, + STATE(2592), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161432] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2228), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161443] = 3, - ACTIONS(4009), 1, - anon_sym_LBRACE, - STATE(2180), 1, - sym_statement_block, + [161776] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(4025), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161454] = 3, - ACTIONS(4130), 1, + [161787] = 3, + ACTIONS(7190), 1, anon_sym_LBRACE, - STATE(1743), 1, + STATE(3920), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161465] = 2, + [161798] = 3, + ACTIONS(9017), 1, + sym_identifier, + ACTIONS(9019), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161474] = 3, - ACTIONS(1674), 1, + [161809] = 3, + ACTIONS(9021), 1, anon_sym_LBRACE, - STATE(239), 1, - sym_statement_block, + STATE(796), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161485] = 3, - ACTIONS(9027), 1, + [161820] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(3936), 1, - sym_enum_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161496] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8384), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161505] = 2, + STATE(2577), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161514] = 3, - ACTIONS(6907), 1, + [161831] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(216), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161525] = 3, - ACTIONS(8949), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, + STATE(2609), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161536] = 3, - ACTIONS(6403), 1, + [161842] = 3, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(5595), 1, + STATE(3627), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161547] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(9029), 2, - anon_sym_COMMA, - anon_sym_GT, - [161556] = 3, - ACTIONS(7380), 1, + [161853] = 3, + ACTIONS(9007), 1, anon_sym_LBRACE, - STATE(2556), 1, - sym_statement_block, + STATE(3922), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161567] = 3, - ACTIONS(9031), 1, + [161864] = 3, + ACTIONS(9023), 1, sym_identifier, - ACTIONS(9033), 1, + ACTIONS(9025), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161578] = 3, - ACTIONS(3155), 1, - sym_jsx_identifier, - ACTIONS(9035), 1, - sym_identifier, + [161875] = 3, + ACTIONS(3477), 1, + anon_sym_COLON, + STATE(5509), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161589] = 3, - ACTIONS(2429), 1, + [161886] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(5250), 1, + STATE(2594), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161600] = 2, + [161897] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5888), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5946), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161609] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2588), 1, - sym_statement_block, + [161908] = 3, + ACTIONS(9027), 1, + anon_sym_SEMI, + ACTIONS(9029), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161620] = 3, - ACTIONS(7380), 1, + [161919] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9031), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161928] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2564), 1, + STATE(2610), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161631] = 2, + [161939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9037), 2, + ACTIONS(5948), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [161640] = 2, + anon_sym_RBRACE, + [161948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9039), 2, + ACTIONS(5944), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161649] = 2, + [161957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8734), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161658] = 2, + ACTIONS(4850), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161966] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5692), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161667] = 3, - ACTIONS(9041), 1, - anon_sym_COMMA, - ACTIONS(9043), 1, - anon_sym_from, + [161977] = 3, + ACTIONS(6960), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161678] = 3, - ACTIONS(9045), 1, + [161988] = 3, + ACTIONS(9033), 1, sym_identifier, - ACTIONS(9047), 1, + ACTIONS(9035), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161689] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2246), 1, - sym_class_body, + [161999] = 3, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161700] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2155), 1, - sym_class_body, + [162010] = 3, + ACTIONS(9037), 1, + sym_identifier, + STATE(4756), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161711] = 3, - ACTIONS(7380), 1, + [162021] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2559), 1, + STATE(2578), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161722] = 3, - ACTIONS(9049), 1, + [162032] = 3, + ACTIONS(9039), 1, sym_identifier, - ACTIONS(9051), 1, + ACTIONS(9041), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161733] = 3, - ACTIONS(9053), 1, + [162043] = 3, + ACTIONS(8803), 1, sym_identifier, - ACTIONS(9055), 1, - anon_sym_STAR, + ACTIONS(8807), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161744] = 2, + [162054] = 3, + ACTIONS(9043), 1, + sym_identifier, + ACTIONS(9045), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9057), 2, - anon_sym_COMMA, - anon_sym_GT, - [161753] = 2, + [162065] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5769), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9059), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161762] = 3, - ACTIONS(6719), 1, + [162076] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(2232), 1, + STATE(2141), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161773] = 3, - ACTIONS(2429), 1, + [162087] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(685), 1, + STATE(2616), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161784] = 3, - ACTIONS(9061), 1, + [162098] = 3, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(2388), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162109] = 3, + ACTIONS(9047), 1, sym_identifier, - ACTIONS(9063), 1, + ACTIONS(9049), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161795] = 3, - ACTIONS(1674), 1, + [162120] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE, - STATE(242), 1, - sym_statement_block, + STATE(229), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161806] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(4034), 1, - sym_formal_parameters, + [162131] = 3, + ACTIONS(9051), 1, + sym_identifier, + ACTIONS(9053), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161817] = 3, - ACTIONS(7152), 1, - anon_sym_LBRACE, - STATE(4390), 1, - sym_statement_block, + [162142] = 3, + ACTIONS(9055), 1, + sym_identifier, + ACTIONS(9057), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161828] = 3, - ACTIONS(6403), 1, + [162153] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5703), 1, + STATE(5806), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161839] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8756), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161848] = 3, - ACTIONS(6403), 1, + [162164] = 3, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(4221), 1, + STATE(3233), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161859] = 3, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5208), 1, - sym_statement_block, + [162175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161870] = 3, - ACTIONS(9027), 1, + ACTIONS(7372), 2, anon_sym_LBRACE, - STATE(4393), 1, - sym_enum_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161881] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(9065), 2, - anon_sym_COMMA, - anon_sym_GT, - [161890] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5750), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161901] = 3, - ACTIONS(6907), 1, + anon_sym_EQ_GT, + [162184] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(219), 1, - sym_class_body, + STATE(2563), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161912] = 3, - ACTIONS(9067), 1, + [162195] = 3, + ACTIONS(9059), 1, sym_identifier, - STATE(4749), 1, - sym_nested_identifier, + ACTIONS(9061), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161923] = 3, - ACTIONS(9069), 1, - sym_identifier, - ACTIONS(9071), 1, - sym_private_property_identifier, + [162206] = 3, + ACTIONS(5987), 1, + anon_sym_LPAREN, + STATE(2709), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161934] = 3, - ACTIONS(8762), 1, + [162217] = 3, + ACTIONS(9063), 1, sym_identifier, - ACTIONS(8766), 1, + ACTIONS(9065), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161945] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2585), 1, - sym_statement_block, + [162228] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5650), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161956] = 3, - ACTIONS(2429), 1, + [162239] = 3, + ACTIONS(4189), 1, anon_sym_LBRACE, - STATE(5452), 1, + STATE(1767), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161967] = 3, - ACTIONS(9073), 1, - anon_sym_LBRACE, - STATE(789), 1, - sym_enum_body, + [162250] = 3, + ACTIONS(9067), 1, + anon_sym_SEMI, + ACTIONS(9069), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161978] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5797), 1, - sym_formal_parameters, + [162261] = 3, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(2247), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161989] = 3, - ACTIONS(4130), 1, + [162272] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(1673), 1, + STATE(2614), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162000] = 2, + [162283] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162009] = 3, - ACTIONS(9075), 1, + ACTIONS(8812), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162292] = 3, + ACTIONS(9071), 1, sym_identifier, - ACTIONS(9077), 1, + ACTIONS(9073), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162020] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4861), 2, - sym__automatic_semicolon, + [162303] = 3, + ACTIONS(9075), 1, anon_sym_SEMI, - [162029] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8790), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162038] = 2, + ACTIONS(9077), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7360), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162047] = 3, + [162314] = 3, ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(3229), 1, + STATE(3504), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162058] = 2, + [162325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(9079), 2, - anon_sym_COMMA, - anon_sym_GT, - [162067] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(9081), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162076] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5907), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162085] = 2, + [162334] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2565), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162094] = 3, - ACTIONS(8003), 1, - anon_sym_from, - STATE(4468), 1, - sym__from_clause, + [162345] = 3, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162105] = 3, - ACTIONS(4009), 1, + [162356] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2259), 1, + STATE(2567), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162116] = 3, - ACTIONS(3408), 1, - anon_sym_LPAREN, - STATE(1227), 1, - sym_arguments, + [162367] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2581), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162127] = 2, + [162378] = 3, + ACTIONS(4029), 1, + anon_sym_LBRACE, + STATE(2197), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7464), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162136] = 3, - ACTIONS(6941), 1, + [162389] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(762), 1, - sym_class_body, + STATE(2611), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162147] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5738), 1, - sym_formal_parameters, + [162400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162158] = 2, + ACTIONS(9081), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162409] = 3, + ACTIONS(9083), 1, + sym_identifier, + ACTIONS(9085), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162167] = 3, - ACTIONS(2429), 1, + [162420] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(5214), 1, + STATE(2568), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162178] = 2, + [162431] = 3, + ACTIONS(9087), 1, + sym_identifier, + ACTIONS(9089), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162187] = 3, - ACTIONS(2429), 1, + [162442] = 3, + ACTIONS(7190), 1, anon_sym_LBRACE, - STATE(5429), 1, + STATE(735), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162198] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8795), 2, - anon_sym_COMMA, - anon_sym_GT, - [162207] = 3, - ACTIONS(9083), 1, + [162453] = 3, + ACTIONS(8589), 1, sym_identifier, - ACTIONS(9085), 1, + ACTIONS(8593), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162218] = 2, + [162464] = 3, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9087), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162227] = 3, - ACTIONS(8318), 1, + [162475] = 3, + ACTIONS(9091), 1, sym_identifier, - ACTIONS(8322), 1, + ACTIONS(9093), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162238] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2583), 1, - sym_statement_block, + [162486] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(4046), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162249] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2283), 1, - sym_class_body, + [162497] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5794), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162260] = 3, - ACTIONS(6867), 1, + [162508] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(4028), 1, + STATE(2158), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162271] = 3, - ACTIONS(8003), 1, - anon_sym_from, - STATE(4489), 1, - sym__from_clause, + [162519] = 3, + ACTIONS(9095), 1, + sym_identifier, + ACTIONS(9097), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162282] = 2, + [162530] = 3, + ACTIONS(9099), 1, + sym_identifier, + ACTIONS(9101), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5911), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162291] = 3, - ACTIONS(2429), 1, + [162541] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(730), 1, + STATE(2595), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162302] = 2, + [162552] = 3, + ACTIONS(9103), 1, + sym_identifier, + ACTIONS(9105), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162311] = 2, + [162563] = 3, + ACTIONS(4029), 1, + anon_sym_LBRACE, + STATE(2160), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162320] = 3, - ACTIONS(9089), 1, - sym_identifier, - ACTIONS(9091), 1, - sym_private_property_identifier, + [162574] = 3, + ACTIONS(4029), 1, + anon_sym_LBRACE, + STATE(2145), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162331] = 3, - ACTIONS(9093), 1, - sym_identifier, - ACTIONS(9095), 1, - sym_private_property_identifier, + [162585] = 3, + ACTIONS(7190), 1, + anon_sym_LBRACE, + STATE(4051), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162342] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(4051), 1, - sym_formal_parameters, + [162596] = 3, + ACTIONS(9107), 1, + sym_identifier, + ACTIONS(9109), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162353] = 3, - ACTIONS(6941), 1, - anon_sym_LBRACE, - STATE(846), 1, - sym_class_body, + [162607] = 3, + ACTIONS(9111), 1, + anon_sym_SEMI, + ACTIONS(9113), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162364] = 3, - ACTIONS(8003), 1, - anon_sym_from, - STATE(5267), 1, - sym__from_clause, + [162618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162375] = 3, - ACTIONS(7152), 1, - anon_sym_LBRACE, - STATE(4054), 1, - sym_statement_block, + ACTIONS(9115), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162386] = 3, - ACTIONS(7380), 1, + ACTIONS(8823), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162636] = 3, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(2612), 1, + STATE(2169), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162397] = 3, - ACTIONS(9097), 1, + [162647] = 3, + ACTIONS(9117), 1, sym_identifier, - ACTIONS(9099), 1, + ACTIONS(9119), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162408] = 3, - ACTIONS(9101), 1, - sym_identifier, - ACTIONS(9103), 1, - sym_private_property_identifier, + [162658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162419] = 3, - ACTIONS(9105), 1, - sym_identifier, - ACTIONS(9107), 1, - sym_private_property_identifier, + ACTIONS(4852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162667] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162430] = 3, - ACTIONS(2429), 1, + ACTIONS(9121), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162676] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(5350), 1, + STATE(2562), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162441] = 2, + [162687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, + ACTIONS(9123), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162450] = 3, - ACTIONS(7380), 1, + anon_sym_RPAREN, + [162696] = 3, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(2565), 1, - sym_statement_block, + STATE(4059), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162461] = 3, - ACTIONS(9109), 1, + [162707] = 3, + ACTIONS(9125), 1, sym_identifier, - ACTIONS(9111), 1, + ACTIONS(9127), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162472] = 3, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5194), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162483] = 3, - ACTIONS(9113), 1, + [162718] = 3, + ACTIONS(9129), 1, anon_sym_SEMI, - ACTIONS(9115), 1, + ACTIONS(9131), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162494] = 3, - ACTIONS(9117), 1, + [162729] = 3, + ACTIONS(9133), 1, sym_identifier, - ACTIONS(9119), 1, + ACTIONS(9135), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162505] = 3, - ACTIONS(6941), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_class_body, + [162740] = 3, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(5607), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162516] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(5654), 1, - sym_formal_parameters, + [162751] = 3, + ACTIONS(9137), 1, + sym_identifier, + ACTIONS(9139), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162527] = 2, + [162762] = 3, + ACTIONS(9141), 1, + anon_sym_SEMI, + ACTIONS(9143), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162536] = 2, + [162773] = 3, + ACTIONS(8447), 1, + sym_identifier, + ACTIONS(8451), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9121), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162545] = 3, - ACTIONS(4009), 1, + [162784] = 3, + ACTIONS(7190), 1, anon_sym_LBRACE, - STATE(2154), 1, + STATE(4060), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162556] = 3, - ACTIONS(9123), 1, + [162795] = 3, + ACTIONS(3145), 1, + sym_jsx_identifier, + ACTIONS(9145), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162806] = 3, + ACTIONS(9147), 1, sym_identifier, - ACTIONS(9125), 1, + ACTIONS(9149), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162567] = 3, - ACTIONS(9127), 1, + [162817] = 3, + ACTIONS(9151), 1, sym_identifier, - ACTIONS(9129), 1, + ACTIONS(9153), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162578] = 3, - ACTIONS(7380), 1, + [162828] = 3, + ACTIONS(4029), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2343), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162589] = 2, + [162839] = 3, + ACTIONS(9155), 1, + sym_identifier, + ACTIONS(9157), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9131), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162598] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2554), 1, - sym_statement_block, + [162850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162609] = 3, - ACTIONS(7152), 1, - anon_sym_LBRACE, - STATE(4058), 1, - sym_statement_block, + ACTIONS(5983), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162859] = 3, + ACTIONS(9159), 1, + sym_identifier, + ACTIONS(9161), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162620] = 3, - ACTIONS(5960), 1, + [162870] = 3, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2710), 1, - sym_arguments, + STATE(60), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162631] = 3, - ACTIONS(7380), 1, + [162881] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2560), 1, + STATE(5204), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162642] = 3, - ACTIONS(2429), 1, + [162892] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(5432), 1, + STATE(2605), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162653] = 3, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(828), 1, - sym_statement_block, + [162903] = 3, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162664] = 3, - ACTIONS(8450), 1, + [162914] = 3, + ACTIONS(9163), 1, sym_identifier, - ACTIONS(8454), 1, + ACTIONS(9165), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162675] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5911), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162684] = 3, - ACTIONS(9133), 1, - sym_identifier, - ACTIONS(9135), 1, - sym_private_property_identifier, + [162925] = 3, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5267), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162695] = 3, - ACTIONS(6719), 1, + [162936] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(2131), 1, + STATE(2304), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162706] = 3, - ACTIONS(8949), 1, - anon_sym_LPAREN, - STATE(61), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162717] = 3, - ACTIONS(9137), 1, - sym_identifier, - ACTIONS(9139), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162728] = 2, + [162947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5944), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162737] = 3, - ACTIONS(8949), 1, + [162956] = 3, + ACTIONS(3438), 1, anon_sym_LPAREN, - STATE(63), 1, - sym_parenthesized_expression, + STATE(1203), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162748] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2572), 1, - sym_statement_block, + [162967] = 3, + ACTIONS(8997), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162759] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2576), 1, - sym_statement_block, + [162978] = 3, + ACTIONS(9167), 1, + sym_identifier, + ACTIONS(9169), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162770] = 2, + [162989] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 2, + ACTIONS(9171), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162779] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6715), 2, - anon_sym_in, - anon_sym_of, - [162788] = 3, - ACTIONS(9143), 1, - sym_identifier, - ACTIONS(9145), 1, - sym_private_property_identifier, + [162998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162799] = 3, - ACTIONS(8983), 1, + ACTIONS(4759), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163007] = 3, + ACTIONS(4519), 1, anon_sym_LPAREN, - STATE(64), 1, - sym__for_header, + STATE(2219), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162810] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2597), 1, - sym_statement_block, + [163018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162821] = 3, - ACTIONS(9147), 1, - sym_identifier, - ACTIONS(9149), 1, - anon_sym_STAR, + ACTIONS(5969), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162832] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2578), 1, - sym_statement_block, + ACTIONS(9173), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162843] = 3, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(5431), 1, - sym_statement_block, + ACTIONS(9175), 2, + anon_sym_COMMA, + anon_sym_GT, + [163045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162854] = 3, - ACTIONS(9073), 1, + ACTIONS(7653), 2, anon_sym_LBRACE, - STATE(831), 1, - sym_enum_body, + anon_sym_EQ_GT, + [163054] = 3, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(5323), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162865] = 3, - ACTIONS(9151), 1, - sym_identifier, - ACTIONS(9153), 1, - sym_private_property_identifier, + [163065] = 3, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162876] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2139), 1, - sym_class_body, + [163076] = 3, + ACTIONS(9177), 1, + anon_sym_SEMI, + ACTIONS(9179), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162887] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2569), 1, - sym_statement_block, + [163087] = 3, + ACTIONS(9181), 1, + anon_sym_SEMI, + ACTIONS(9183), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162898] = 3, - ACTIONS(8375), 1, - sym_identifier, - ACTIONS(8379), 1, - sym_private_property_identifier, + [163098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162909] = 3, - ACTIONS(7380), 1, + ACTIONS(7661), 2, anon_sym_LBRACE, - STATE(2602), 1, - sym_statement_block, + anon_sym_EQ_GT, + [163107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162920] = 2, + ACTIONS(9185), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9155), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162929] = 3, - ACTIONS(6719), 1, - anon_sym_LBRACE, - STATE(2264), 1, - sym_class_body, + ACTIONS(5973), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162940] = 3, - ACTIONS(7380), 1, - anon_sym_LBRACE, - STATE(2589), 1, - sym_statement_block, + ACTIONS(9187), 2, + anon_sym_COMMA, + anon_sym_GT, + [163134] = 3, + ACTIONS(9189), 1, + anon_sym_LPAREN, + STATE(732), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162951] = 3, - ACTIONS(6733), 1, + [163145] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(1686), 1, + STATE(2200), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162962] = 3, - ACTIONS(6413), 1, - anon_sym_LPAREN, - STATE(3331), 1, - sym_formal_parameters, + [163156] = 3, + ACTIONS(4029), 1, + anon_sym_LBRACE, + STATE(2257), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162973] = 3, - ACTIONS(7380), 1, + [163167] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2558), 1, + STATE(772), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162984] = 2, + [163178] = 3, + ACTIONS(7096), 1, + anon_sym_LBRACE, + STATE(853), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9157), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162993] = 3, - ACTIONS(6867), 1, + [163189] = 3, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(4047), 1, + STATE(1785), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163004] = 2, + [163200] = 3, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(4074), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4790), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163013] = 3, - ACTIONS(6867), 1, - anon_sym_LBRACE, - STATE(4048), 1, - sym_class_body, + [163211] = 3, + ACTIONS(8064), 1, + anon_sym_from, + STATE(4164), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163024] = 2, + [163222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7600), 2, + ACTIONS(5923), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163231] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [163033] = 3, - ACTIONS(6403), 1, - anon_sym_LPAREN, - STATE(3970), 1, - sym_formal_parameters, + STATE(5321), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163044] = 3, - ACTIONS(9159), 1, - anon_sym_SEMI, - ACTIONS(9161), 1, - sym__automatic_semicolon, + [163242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163055] = 3, - ACTIONS(9163), 1, - anon_sym_SEMI, - ACTIONS(9165), 1, - sym__automatic_semicolon, + ACTIONS(5936), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163251] = 3, + ACTIONS(3477), 1, + anon_sym_COLON, + STATE(5446), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163066] = 3, - ACTIONS(7380), 1, + [163262] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2604), 1, + STATE(5329), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163077] = 2, + [163273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9167), 2, + ACTIONS(9191), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [163086] = 3, - ACTIONS(6733), 1, + anon_sym_RBRACK, + [163282] = 3, + ACTIONS(2437), 1, anon_sym_LBRACE, - STATE(2484), 1, - sym_class_body, + STATE(5269), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163097] = 3, - ACTIONS(4528), 1, - anon_sym_LPAREN, - STATE(2221), 1, - sym_arguments, + [163293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163108] = 2, + ACTIONS(9193), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4590), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163117] = 2, + ACTIONS(8486), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163311] = 3, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(4075), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4597), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163126] = 2, + [163322] = 3, + ACTIONS(6572), 1, + anon_sym_COLON, + ACTIONS(8873), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9169), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163135] = 3, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(8857), 1, + [163333] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2558), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163344] = 3, + ACTIONS(6642), 1, + anon_sym_DOT, + ACTIONS(9195), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163146] = 3, - ACTIONS(6403), 1, + [163355] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5637), 1, + STATE(5645), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163157] = 3, - ACTIONS(6403), 1, + [163366] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(4341), 1, + STATE(4352), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163168] = 3, - ACTIONS(6403), 1, + [163377] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5646), 1, + STATE(5654), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163179] = 3, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(9171), 1, - anon_sym_GT, + [163388] = 3, + ACTIONS(7398), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163190] = 3, - ACTIONS(6403), 1, + [163399] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(4345), 1, + STATE(4355), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163201] = 3, - ACTIONS(6403), 1, + [163410] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(5653), 1, + STATE(5661), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163212] = 3, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(8861), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163223] = 3, - ACTIONS(7380), 1, + [163421] = 3, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2591), 1, + STATE(2569), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163234] = 3, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(9173), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163245] = 3, - ACTIONS(8949), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163256] = 3, - ACTIONS(6719), 1, + [163432] = 3, + ACTIONS(6763), 1, anon_sym_LBRACE, - STATE(2151), 1, + STATE(1701), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163267] = 3, - ACTIONS(7380), 1, + [163443] = 3, + ACTIONS(4189), 1, anon_sym_LBRACE, - STATE(2593), 1, + STATE(1647), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163278] = 3, - ACTIONS(6733), 1, + [163454] = 3, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(1687), 1, + STATE(2335), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163289] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(9175), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163298] = 3, - ACTIONS(6403), 1, + [163465] = 3, + ACTIONS(6419), 1, anon_sym_LPAREN, - STATE(3846), 1, + STATE(5758), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163309] = 3, - ACTIONS(7380), 1, + [163476] = 3, + ACTIONS(4189), 1, anon_sym_LBRACE, - STATE(2605), 1, + STATE(1619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163320] = 3, - ACTIONS(9177), 1, - anon_sym_SEMI, - ACTIONS(9179), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163331] = 2, - ACTIONS(9181), 1, - anon_sym_class, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163339] = 2, - ACTIONS(9183), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163347] = 2, - ACTIONS(9185), 1, - anon_sym_EQ, + [163487] = 3, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163355] = 2, - ACTIONS(9187), 1, - anon_sym_RBRACK, + [163498] = 3, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(2372), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163363] = 2, - ACTIONS(9189), 1, - anon_sym_COLON, + [163509] = 3, + ACTIONS(2437), 1, + anon_sym_LBRACE, + STATE(721), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163371] = 2, - ACTIONS(9191), 1, - anon_sym_DOT, + [163520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163379] = 2, - ACTIONS(9193), 1, - anon_sym_RBRACK, + ACTIONS(6719), 2, + anon_sym_in, + anon_sym_of, + [163529] = 2, ACTIONS(5), 2, sym_html_comment, - sym_comment, - [163387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9195), 1, - anon_sym_SLASH2, - [163397] = 2, + sym_comment, + ACTIONS(5936), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163538] = 2, ACTIONS(9197), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163405] = 2, + [163546] = 2, ACTIONS(9199), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163413] = 2, + [163554] = 2, ACTIONS(9201), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163421] = 2, + [163562] = 2, ACTIONS(9203), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163429] = 2, + [163570] = 2, ACTIONS(9205), 1, - anon_sym_EQ_GT, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163437] = 2, + [163578] = 2, ACTIONS(9207), 1, - anon_sym_EQ_GT, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163586] = 2, + ACTIONS(8757), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163445] = 2, + [163594] = 2, ACTIONS(9209), 1, - anon_sym_LBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163453] = 2, + [163602] = 2, ACTIONS(9211), 1, - anon_sym_EQ_GT, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163461] = 2, + [163610] = 2, ACTIONS(9213), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163469] = 2, + [163618] = 2, ACTIONS(9215), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163477] = 2, + [163626] = 2, ACTIONS(9217), 1, - anon_sym_RBRACK, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163485] = 2, + [163634] = 2, ACTIONS(9219), 1, - sym_identifier, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163642] = 2, + ACTIONS(4083), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163493] = 2, + [163650] = 2, ACTIONS(9221), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163501] = 2, + [163658] = 2, ACTIONS(9223), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163509] = 2, + [163666] = 2, ACTIONS(9225), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163517] = 2, + [163674] = 2, ACTIONS(9227), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163682] = 2, + ACTIONS(5298), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163525] = 2, + [163690] = 2, ACTIONS(9229), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163533] = 2, + [163698] = 2, ACTIONS(9231), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163541] = 2, + [163706] = 2, ACTIONS(9233), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163549] = 2, + [163714] = 2, ACTIONS(9235), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163557] = 2, + [163722] = 2, + ACTIONS(5017), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163730] = 2, ACTIONS(9237), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163565] = 2, - ACTIONS(5148), 1, - anon_sym_in, + [163738] = 2, + ACTIONS(9239), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163573] = 2, - ACTIONS(9239), 1, - anon_sym_RBRACK, + [163746] = 2, + ACTIONS(5031), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163581] = 2, + [163754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9241), 1, - anon_sym_class, + anon_sym_SLASH2, + [163764] = 2, + ACTIONS(8571), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163589] = 2, + [163772] = 2, ACTIONS(9243), 1, - anon_sym_EQ, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163597] = 2, + [163780] = 2, ACTIONS(9245), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163605] = 2, - ACTIONS(5044), 1, - anon_sym_is, + [163788] = 2, + ACTIONS(5147), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163613] = 2, + [163796] = 2, ACTIONS(9247), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163621] = 2, + [163804] = 2, ACTIONS(9249), 1, - anon_sym_namespace, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163629] = 2, - ACTIONS(8557), 1, - anon_sym_RBRACK, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163637] = 2, + [163812] = 2, ACTIONS(9251), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163645] = 2, + [163820] = 2, ACTIONS(9253), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163653] = 2, + [163828] = 2, ACTIONS(9255), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163661] = 2, + [163836] = 2, ACTIONS(9257), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163669] = 2, + [163844] = 2, ACTIONS(9259), 1, - sym_identifier, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163677] = 2, + [163852] = 2, ACTIONS(9261), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163685] = 2, + [163860] = 2, ACTIONS(9263), 1, - sym_identifier, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163693] = 2, + [163868] = 2, ACTIONS(9265), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163701] = 2, + [163876] = 2, ACTIONS(9267), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163884] = 2, + ACTIONS(8765), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163709] = 2, + [163892] = 2, ACTIONS(9269), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163717] = 2, + [163900] = 2, ACTIONS(9271), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163908] = 2, + ACTIONS(8929), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163725] = 2, + [163916] = 2, ACTIONS(9273), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163733] = 2, + [163924] = 2, ACTIONS(9275), 1, - anon_sym_namespace, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163741] = 2, + [163932] = 2, ACTIONS(9277), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163749] = 2, + [163940] = 2, ACTIONS(9279), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163757] = 2, + [163948] = 2, ACTIONS(9281), 1, - anon_sym_from, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163765] = 2, + [163956] = 2, ACTIONS(9283), 1, - sym_identifier, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163773] = 2, + [163964] = 2, ACTIONS(9285), 1, - sym_number, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163781] = 2, + [163972] = 2, ACTIONS(9287), 1, - anon_sym_EQ, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163980] = 2, + ACTIONS(5033), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163789] = 2, + [163988] = 2, + ACTIONS(6540), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163996] = 2, ACTIONS(9289), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163797] = 2, + [164004] = 2, ACTIONS(9291), 1, - sym_identifier, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163805] = 2, + [164012] = 2, ACTIONS(9293), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163813] = 2, + [164020] = 2, ACTIONS(9295), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163821] = 2, + [164028] = 2, ACTIONS(9297), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163829] = 2, - ACTIONS(9299), 1, + [164036] = 2, + ACTIONS(8783), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163837] = 2, - ACTIONS(8515), 1, - sym_identifier, + [164044] = 2, + ACTIONS(9299), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163845] = 2, + [164052] = 2, ACTIONS(9301), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163853] = 2, - ACTIONS(8306), 1, - anon_sym_RBRACK, + [164060] = 2, + ACTIONS(8528), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163861] = 2, + [164068] = 2, ACTIONS(9303), 1, - anon_sym_EQ, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163869] = 2, + [164076] = 2, ACTIONS(9305), 1, - anon_sym_EQ_GT, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163877] = 3, + [164084] = 2, + ACTIONS(4979), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164092] = 2, + ACTIONS(9307), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164100] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9307), 1, - anon_sym_SLASH2, - [163887] = 2, ACTIONS(9309), 1, - anon_sym_RBRACK, + sym_regex_pattern, + [164110] = 2, + ACTIONS(5736), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163895] = 2, + [164118] = 2, ACTIONS(9311), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163903] = 2, + [164126] = 2, ACTIONS(9313), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163911] = 2, + [164134] = 2, ACTIONS(9315), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163919] = 2, + [164142] = 2, + ACTIONS(6658), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164150] = 2, ACTIONS(9317), 1, - anon_sym_RBRACK, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164158] = 2, + ACTIONS(7657), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163927] = 2, + [164166] = 2, ACTIONS(9319), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163935] = 2, + [164174] = 2, ACTIONS(9321), 1, - anon_sym_RBRACK, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163943] = 2, + [164182] = 2, ACTIONS(9323), 1, - anon_sym_RBRACK, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163951] = 2, - ACTIONS(5722), 1, - anon_sym_in, + [164190] = 2, + ACTIONS(9325), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163959] = 2, - ACTIONS(9325), 1, - anon_sym_RBRACK, + [164198] = 2, + ACTIONS(7621), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163967] = 2, + [164206] = 2, ACTIONS(9327), 1, - anon_sym_new, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163975] = 2, + [164214] = 2, ACTIONS(9329), 1, - anon_sym_RBRACK, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163983] = 2, + [164222] = 2, ACTIONS(9331), 1, - anon_sym_from, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163991] = 2, + [164230] = 2, ACTIONS(9333), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163999] = 2, - ACTIONS(8577), 1, - anon_sym_RBRACE, + [164238] = 2, + ACTIONS(9335), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164007] = 2, - ACTIONS(9335), 1, - anon_sym_EQ_GT, + [164246] = 2, + ACTIONS(8411), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [164254] = 2, ACTIONS(9337), 1, - anon_sym_SLASH2, - [164025] = 2, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164262] = 2, ACTIONS(9339), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164033] = 2, + [164270] = 2, ACTIONS(9341), 1, - anon_sym_new, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164041] = 2, + [164278] = 2, ACTIONS(9343), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164049] = 2, + [164286] = 2, ACTIONS(9345), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164294] = 2, + ACTIONS(8847), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164057] = 2, + [164302] = 2, ACTIONS(9347), 1, - anon_sym_EQ_GT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164065] = 2, + [164310] = 2, ACTIONS(9349), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164073] = 2, + [164318] = 2, ACTIONS(9351), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164081] = 2, + [164326] = 2, ACTIONS(9353), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164089] = 2, - ACTIONS(9355), 1, - anon_sym_while, + [164334] = 2, + ACTIONS(7820), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164097] = 2, - ACTIONS(9357), 1, - sym_identifier, + [164342] = 2, + ACTIONS(9355), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164105] = 3, - ACTIONS(3), 1, + [164350] = 2, + ACTIONS(4269), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164358] = 2, + ACTIONS(9357), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [164366] = 2, ACTIONS(9359), 1, - sym_regex_pattern, - [164115] = 2, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164374] = 2, ACTIONS(9361), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164123] = 2, + [164382] = 2, ACTIONS(9363), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164131] = 2, + [164390] = 2, ACTIONS(9365), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164139] = 2, + [164398] = 2, ACTIONS(9367), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164147] = 2, + [164406] = 2, ACTIONS(9369), 1, - anon_sym_COLON, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164155] = 2, + [164414] = 2, ACTIONS(9371), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164163] = 2, - ACTIONS(9373), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164171] = 2, - ACTIONS(4983), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, + [164422] = 3, + ACTIONS(3), 1, sym_comment, - [164179] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9373), 1, + sym_regex_pattern, + [164432] = 2, ACTIONS(9375), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164187] = 2, + [164440] = 2, ACTIONS(9377), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164195] = 2, + [164448] = 2, ACTIONS(9379), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164203] = 2, + [164456] = 2, ACTIONS(9381), 1, - anon_sym_DOT, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164464] = 2, + ACTIONS(7182), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164211] = 2, + [164472] = 2, ACTIONS(9383), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164219] = 2, + [164480] = 2, ACTIONS(9385), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [164488] = 2, ACTIONS(9387), 1, - sym_regex_pattern, - [164237] = 2, - ACTIONS(9389), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164245] = 2, - ACTIONS(7196), 1, - anon_sym_is, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164253] = 2, - ACTIONS(5001), 1, - anon_sym_RBRACK, + [164496] = 2, + ACTIONS(9389), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164261] = 2, + [164504] = 2, ACTIONS(9391), 1, - sym_number, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164269] = 2, + [164512] = 2, ACTIONS(9393), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164277] = 2, - ACTIONS(7695), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164285] = 2, + [164520] = 2, ACTIONS(9395), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164293] = 2, + [164528] = 2, ACTIONS(9397), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164301] = 2, + [164536] = 2, ACTIONS(9399), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164309] = 2, + [164544] = 2, ACTIONS(9401), 1, - anon_sym_LPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164317] = 2, + [164552] = 2, ACTIONS(9403), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164325] = 2, + [164560] = 2, ACTIONS(9405), 1, - anon_sym_from, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164333] = 2, + [164568] = 2, ACTIONS(9407), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164341] = 2, + [164576] = 2, ACTIONS(9409), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164349] = 2, + [164584] = 2, ACTIONS(9411), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164357] = 2, + [164592] = 2, ACTIONS(9413), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164365] = 2, + [164600] = 2, ACTIONS(9415), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164608] = 2, + ACTIONS(8719), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164373] = 2, + [164616] = 2, ACTIONS(9417), 1, - anon_sym_RPAREN, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164381] = 2, + [164624] = 2, ACTIONS(9419), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164389] = 2, + [164632] = 2, ACTIONS(9421), 1, - anon_sym_RBRACK, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164397] = 2, + [164640] = 2, ACTIONS(9423), 1, - sym_number, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164405] = 2, - ACTIONS(9043), 1, - anon_sym_from, + [164648] = 2, + ACTIONS(9425), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164413] = 2, - ACTIONS(9425), 1, - sym_identifier, + [164656] = 2, + ACTIONS(9427), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164421] = 2, - ACTIONS(9427), 1, - anon_sym_EQ_GT, + [164664] = 2, + ACTIONS(8799), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164429] = 2, + [164672] = 2, ACTIONS(9429), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164437] = 2, - ACTIONS(9431), 1, - sym_identifier, + [164680] = 2, + ACTIONS(5057), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164445] = 2, - ACTIONS(9433), 1, - anon_sym_symbol, + [164688] = 2, + ACTIONS(9431), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164453] = 2, - ACTIONS(5013), 1, - anon_sym_RBRACE, + [164696] = 2, + ACTIONS(9433), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164461] = 2, + [164704] = 2, ACTIONS(9435), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164469] = 2, + [164712] = 2, ACTIONS(9437), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164477] = 2, + [164720] = 2, ACTIONS(9439), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164728] = 2, + ACTIONS(8437), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164485] = 2, + [164736] = 2, ACTIONS(9441), 1, - sym_identifier, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164744] = 2, + ACTIONS(5019), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164493] = 2, + [164752] = 2, ACTIONS(9443), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164501] = 2, - ACTIONS(9445), 1, + [164760] = 2, + ACTIONS(6035), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164509] = 2, - ACTIONS(9447), 1, + [164768] = 2, + ACTIONS(9445), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164517] = 2, - ACTIONS(9449), 1, - sym_identifier, + [164776] = 2, + ACTIONS(4354), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164525] = 3, - ACTIONS(3), 1, + [164784] = 2, + ACTIONS(9447), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164792] = 2, + ACTIONS(9449), 1, + sym_number, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [164800] = 2, ACTIONS(9451), 1, - sym_regex_pattern, - [164535] = 2, - ACTIONS(8778), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164543] = 2, + [164808] = 2, ACTIONS(9453), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164551] = 2, + [164816] = 2, ACTIONS(9455), 1, - anon_sym_readonly, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164559] = 2, + [164824] = 2, ACTIONS(9457), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164567] = 2, - ACTIONS(8396), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164575] = 2, + [164832] = 2, ACTIONS(9459), 1, - anon_sym_from, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164583] = 2, + [164840] = 2, ACTIONS(9461), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164591] = 2, + [164848] = 2, ACTIONS(9463), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164599] = 2, + [164856] = 2, ACTIONS(9465), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164607] = 2, + [164864] = 2, ACTIONS(9467), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164872] = 2, + ACTIONS(8166), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164615] = 2, + [164880] = 2, ACTIONS(9469), 1, - anon_sym_as, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164623] = 2, + [164888] = 2, ACTIONS(9471), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164631] = 2, + [164896] = 2, ACTIONS(9473), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164639] = 2, + [164904] = 2, ACTIONS(9475), 1, - anon_sym_new, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164647] = 2, - ACTIONS(5042), 1, - anon_sym_COLON, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164655] = 2, + [164912] = 2, ACTIONS(9477), 1, - anon_sym_require, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164663] = 2, - ACTIONS(9479), 1, anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164671] = 2, - ACTIONS(9481), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [164920] = 3, + ACTIONS(3), 1, sym_comment, - [164679] = 2, - ACTIONS(6021), 1, - anon_sym_EQ_GT, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9479), 1, + sym_regex_pattern, + [164930] = 2, + ACTIONS(9481), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164687] = 2, + [164938] = 2, ACTIONS(9483), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164695] = 2, + [164946] = 2, ACTIONS(9485), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164703] = 2, + [164954] = 2, ACTIONS(9487), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164711] = 2, + [164962] = 2, ACTIONS(9489), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164719] = 2, + [164970] = 2, ACTIONS(9491), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164727] = 2, + [164978] = 2, ACTIONS(9493), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164735] = 2, + [164986] = 2, ACTIONS(9495), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164743] = 2, + [164994] = 2, ACTIONS(9497), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164751] = 2, + [165002] = 2, ACTIONS(9499), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164759] = 2, + [165010] = 2, ACTIONS(9501), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164767] = 2, - ACTIONS(4991), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164775] = 2, + [165018] = 2, ACTIONS(9503), 1, - sym_identifier, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164783] = 2, + [165026] = 2, ACTIONS(9505), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164791] = 2, + [165034] = 2, ACTIONS(9507), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164799] = 2, - ACTIONS(8705), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164807] = 2, + [165042] = 2, ACTIONS(9509), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164815] = 2, + [165050] = 2, ACTIONS(9511), 1, - anon_sym_symbol, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164823] = 2, + [165058] = 2, ACTIONS(9513), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164831] = 2, + [165066] = 2, ACTIONS(9515), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164839] = 2, - ACTIONS(8442), 1, - anon_sym_RBRACK, + [165074] = 2, + ACTIONS(4313), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164847] = 2, + [165082] = 2, ACTIONS(9517), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164855] = 2, + [165090] = 2, ACTIONS(9519), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164863] = 2, + [165098] = 2, ACTIONS(9521), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164871] = 2, - ACTIONS(9523), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164879] = 2, - ACTIONS(9525), 1, - sym_identifier, + [165106] = 2, + ACTIONS(4539), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164887] = 2, - ACTIONS(7320), 1, + [165114] = 2, + ACTIONS(7291), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164895] = 2, - ACTIONS(9527), 1, - sym_identifier, + [165122] = 2, + ACTIONS(9523), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164903] = 2, - ACTIONS(9529), 1, - anon_sym_target, + [165130] = 2, + ACTIONS(9525), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164911] = 2, - ACTIONS(9531), 1, + [165138] = 2, + ACTIONS(9527), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164919] = 2, - ACTIONS(4987), 1, - anon_sym_RPAREN, + [165146] = 2, + ACTIONS(9529), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164927] = 2, - ACTIONS(4497), 1, - anon_sym_RPAREN, + [165154] = 2, + ACTIONS(9531), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164935] = 2, - ACTIONS(9533), 1, - anon_sym_EQ_GT, + [165162] = 2, + ACTIONS(5025), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164943] = 2, - ACTIONS(9535), 1, + [165170] = 2, + ACTIONS(9533), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164951] = 2, - ACTIONS(4108), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164959] = 2, - ACTIONS(4092), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164967] = 2, - ACTIONS(5017), 1, - anon_sym_RPAREN, + [165178] = 2, + ACTIONS(9535), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164975] = 2, + [165186] = 2, ACTIONS(9537), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164983] = 2, + [165194] = 2, ACTIONS(9539), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164991] = 2, - ACTIONS(4957), 1, - anon_sym_in, + [165202] = 2, + ACTIONS(9541), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164999] = 2, - ACTIONS(9541), 1, - anon_sym_EQ_GT, + [165210] = 2, + ACTIONS(4961), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165007] = 2, + [165218] = 2, ACTIONS(9543), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165015] = 2, + [165226] = 2, ACTIONS(9545), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165023] = 2, + [165234] = 2, ACTIONS(9547), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165031] = 2, + [165242] = 2, ACTIONS(9549), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165039] = 2, - ACTIONS(5459), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165047] = 2, + [165250] = 2, ACTIONS(9551), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165055] = 2, + [165258] = 2, ACTIONS(9553), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165063] = 2, + [165266] = 2, ACTIONS(9555), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165071] = 2, + [165274] = 2, ACTIONS(9557), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165079] = 2, + [165282] = 2, ACTIONS(9559), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165087] = 2, - ACTIONS(8362), 1, - anon_sym_RBRACE, + [165290] = 2, + ACTIONS(9561), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165095] = 2, - ACTIONS(9561), 1, + [165298] = 2, + ACTIONS(9563), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9563), 1, - anon_sym_SLASH2, - [165113] = 2, + [165306] = 2, ACTIONS(9565), 1, - anon_sym_EQ_GT, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165121] = 2, + [165314] = 2, ACTIONS(9567), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165129] = 2, + [165322] = 2, ACTIONS(9569), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165137] = 2, - ACTIONS(9571), 1, - anon_sym_COLON, + [165330] = 2, + ACTIONS(5055), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165145] = 2, - ACTIONS(9573), 1, - anon_sym_EQ, + [165338] = 2, + ACTIONS(9571), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165153] = 2, + [165346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9573), 1, + anon_sym_SLASH2, + [165356] = 2, ACTIONS(9575), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165161] = 2, + [165364] = 2, ACTIONS(9577), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165169] = 2, - ACTIONS(9579), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [165372] = 3, + ACTIONS(3), 1, sym_comment, - [165177] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9579), 1, + anon_sym_SLASH2, + [165382] = 2, ACTIONS(9581), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165185] = 2, - ACTIONS(9583), 1, - anon_sym_RBRACK, + [165390] = 2, + ACTIONS(5456), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165193] = 2, - ACTIONS(4487), 1, - anon_sym_RPAREN, + [165398] = 2, + ACTIONS(9583), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165201] = 2, + [165406] = 2, ACTIONS(9585), 1, - anon_sym_class, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165209] = 2, + [165414] = 2, ACTIONS(9587), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165217] = 2, + [165422] = 2, ACTIONS(9589), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165225] = 2, + [165430] = 2, ACTIONS(9591), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165233] = 2, + [165438] = 2, ACTIONS(9593), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165241] = 2, - ACTIONS(4977), 1, - anon_sym_RPAREN, + [165446] = 2, + ACTIONS(9595), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165249] = 2, - ACTIONS(9595), 1, - anon_sym_RBRACK, + [165454] = 2, + ACTIONS(9597), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165257] = 2, - ACTIONS(4027), 1, - anon_sym_is, + [165462] = 2, + ACTIONS(9599), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165265] = 2, - ACTIONS(9597), 1, - anon_sym_RBRACK, + [165470] = 2, + ACTIONS(4043), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165273] = 2, - ACTIONS(9599), 1, - anon_sym_EQ_GT, + [165478] = 2, + ACTIONS(7577), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165281] = 2, + [165486] = 2, ACTIONS(9601), 1, - anon_sym_RBRACK, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165289] = 2, + [165494] = 2, ACTIONS(9603), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9605), 1, - anon_sym_SLASH2, - [165307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9607), 1, - sym_regex_pattern, - [165317] = 2, - ACTIONS(8619), 1, - sym_identifier, + [165502] = 2, + ACTIONS(5037), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165325] = 2, - ACTIONS(9609), 1, - sym_identifier, + [165510] = 2, + ACTIONS(9605), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165333] = 2, - ACTIONS(4975), 1, + [165518] = 2, + ACTIONS(9607), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165341] = 2, - ACTIONS(5026), 1, - anon_sym_RBRACK, + [165526] = 2, + ACTIONS(9609), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165349] = 2, + [165534] = 2, ACTIONS(9611), 1, - anon_sym_DOT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165357] = 2, - ACTIONS(8402), 1, + [165542] = 2, + ACTIONS(9613), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165365] = 2, - ACTIONS(9613), 1, - anon_sym_COLON, + [165550] = 2, + ACTIONS(9615), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165373] = 2, - ACTIONS(9615), 1, - sym_identifier, + [165558] = 2, + ACTIONS(4981), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165381] = 2, + [165566] = 2, ACTIONS(9617), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165389] = 2, + [165574] = 2, ACTIONS(9619), 1, - anon_sym_DOT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165397] = 2, + [165582] = 2, ACTIONS(9621), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165405] = 2, + [165590] = 2, ACTIONS(9623), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165413] = 2, + [165598] = 2, ACTIONS(9625), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165421] = 2, + [165606] = 2, ACTIONS(9627), 1, - anon_sym_EQ, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165429] = 2, + [165614] = 2, ACTIONS(9629), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165437] = 2, + [165622] = 2, ACTIONS(9631), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165445] = 2, - ACTIONS(8507), 1, - anon_sym_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165453] = 2, + [165630] = 2, ACTIONS(9633), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165461] = 2, + [165638] = 2, ACTIONS(9635), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165469] = 2, - ACTIONS(9637), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165477] = 2, + [165646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9637), 1, + sym_regex_pattern, + [165656] = 2, ACTIONS(9639), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165485] = 2, + [165664] = 2, ACTIONS(9641), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165493] = 2, + [165672] = 2, ACTIONS(9643), 1, - sym_identifier, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165501] = 2, + [165680] = 2, ACTIONS(9645), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165509] = 2, + [165688] = 2, ACTIONS(9647), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165517] = 2, - ACTIONS(9649), 1, - anon_sym_function, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165525] = 2, - ACTIONS(9651), 1, - anon_sym_RBRACK, + [165696] = 2, + ACTIONS(8518), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165533] = 2, - ACTIONS(9653), 1, + [165704] = 2, + ACTIONS(9649), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165541] = 2, - ACTIONS(9655), 1, - anon_sym_RBRACK, + [165712] = 2, + ACTIONS(9651), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165549] = 2, - ACTIONS(6743), 1, - anon_sym_is, + [165720] = 2, + ACTIONS(8655), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165557] = 2, - ACTIONS(5005), 1, - anon_sym_RPAREN, + [165728] = 2, + ACTIONS(9653), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165565] = 2, - ACTIONS(6425), 1, - anon_sym_is, + [165736] = 2, + ACTIONS(9655), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165573] = 2, + [165744] = 2, ACTIONS(9657), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165581] = 2, + [165752] = 2, ACTIONS(9659), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165589] = 2, + [165760] = 2, ACTIONS(9661), 1, - anon_sym_symbol, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165597] = 2, - ACTIONS(5046), 1, - anon_sym_RPAREN, + [165768] = 2, + ACTIONS(9663), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165605] = 2, - ACTIONS(9663), 1, - sym_identifier, + [165776] = 2, + ACTIONS(5062), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165613] = 2, - ACTIONS(9665), 1, - anon_sym_EQ_GT, + [165784] = 2, + ACTIONS(4983), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165621] = 2, - ACTIONS(8631), 1, - anon_sym_EQ, + [165792] = 2, + ACTIONS(9665), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165629] = 2, + [165800] = 2, ACTIONS(9667), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165637] = 2, - ACTIONS(4485), 1, - anon_sym_RPAREN, + [165808] = 2, + ACTIONS(5023), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165645] = 2, + [165816] = 2, ACTIONS(9669), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165653] = 2, + [165824] = 2, ACTIONS(9671), 1, - anon_sym_EQ_GT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165661] = 2, + [165832] = 2, ACTIONS(9673), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165669] = 2, - ACTIONS(4754), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165677] = 2, + [165840] = 2, ACTIONS(9675), 1, - anon_sym_from, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165685] = 2, + [165848] = 2, ACTIONS(9677), 1, - anon_sym_LBRACE, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165693] = 2, + [165856] = 2, ACTIONS(9679), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165701] = 2, - ACTIONS(7312), 1, + [165864] = 2, + ACTIONS(9681), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165709] = 2, - ACTIONS(9681), 1, - anon_sym_EQ, + [165872] = 2, + ACTIONS(9683), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165717] = 2, - ACTIONS(6680), 1, + [165880] = 2, + ACTIONS(6741), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165725] = 2, - ACTIONS(9683), 1, - sym_identifier, + [165888] = 2, + ACTIONS(4604), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165733] = 2, + [165896] = 2, ACTIONS(9685), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165741] = 2, + [165904] = 2, ACTIONS(9687), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165749] = 2, + [165912] = 2, ACTIONS(9689), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165757] = 2, + [165920] = 2, ACTIONS(9691), 1, - anon_sym_EQ_GT, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165765] = 2, + [165928] = 2, ACTIONS(9693), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165773] = 2, + [165936] = 2, ACTIONS(9695), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165781] = 2, + [165944] = 2, ACTIONS(9697), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165789] = 2, + [165952] = 2, ACTIONS(9699), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165797] = 2, + [165960] = 2, ACTIONS(9701), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165805] = 2, + [165968] = 2, ACTIONS(9703), 1, - sym_number, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165813] = 2, + [165976] = 2, ACTIONS(9705), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165821] = 2, + [165984] = 2, ACTIONS(9707), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165829] = 2, + [165992] = 2, ACTIONS(9709), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165837] = 2, + [166000] = 2, ACTIONS(9711), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165845] = 2, + [166008] = 2, ACTIONS(9713), 1, - anon_sym_RBRACK, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165853] = 2, + [166016] = 2, ACTIONS(9715), 1, - anon_sym_new, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165861] = 2, + [166024] = 2, ACTIONS(9717), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165869] = 2, - ACTIONS(8215), 1, - anon_sym_EQ_GT, + [166032] = 2, + ACTIONS(5039), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165877] = 2, + [166040] = 2, ACTIONS(9719), 1, - anon_sym_symbol, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165885] = 2, + [166048] = 2, ACTIONS(9721), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165893] = 2, - ACTIONS(4995), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165901] = 2, - ACTIONS(4558), 1, - anon_sym_in, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165909] = 2, + [166056] = 2, ACTIONS(9723), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165917] = 2, + [166064] = 2, ACTIONS(9725), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165925] = 2, + [166072] = 2, ACTIONS(9727), 1, - anon_sym_EQ_GT, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165933] = 2, + [166080] = 2, ACTIONS(9729), 1, - anon_sym_RBRACK, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165941] = 2, + [166088] = 2, ACTIONS(9731), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165949] = 2, + [166096] = 2, ACTIONS(9733), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165957] = 2, + [166104] = 2, ACTIONS(9735), 1, - anon_sym_new, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166112] = 2, + ACTIONS(7303), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165965] = 2, + [166120] = 2, ACTIONS(9737), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165973] = 2, + [166128] = 2, ACTIONS(9739), 1, - ts_builtin_sym_end, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165981] = 2, + [166136] = 2, ACTIONS(9741), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165989] = 2, + [166144] = 2, ACTIONS(9743), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165997] = 2, + [166152] = 2, ACTIONS(9745), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166005] = 2, + [166160] = 2, ACTIONS(9747), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166013] = 2, + [166168] = 2, ACTIONS(9749), 1, - anon_sym_class, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166021] = 2, + [166176] = 2, ACTIONS(9751), 1, - anon_sym_RPAREN, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166029] = 2, + [166184] = 2, ACTIONS(9753), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166037] = 2, + [166192] = 2, ACTIONS(9755), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166045] = 2, + [166200] = 2, ACTIONS(9757), 1, - anon_sym_new, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166053] = 2, - ACTIONS(7358), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166061] = 2, + [166208] = 2, ACTIONS(9759), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166069] = 2, - ACTIONS(9761), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [166216] = 3, + ACTIONS(3), 1, sym_comment, - [166077] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9761), 1, + sym_regex_pattern, + [166226] = 2, ACTIONS(9763), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166085] = 2, + [166234] = 2, ACTIONS(9765), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166093] = 2, + [166242] = 2, ACTIONS(9767), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166101] = 2, + [166250] = 2, ACTIONS(9769), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166109] = 2, + [166258] = 2, ACTIONS(9771), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166117] = 2, + [166266] = 2, ACTIONS(9773), 1, - anon_sym_RBRACK, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166125] = 2, - ACTIONS(9775), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [166274] = 3, + ACTIONS(3), 1, sym_comment, - [166133] = 2, - ACTIONS(7654), 1, - sym_identifier, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [166141] = 2, + ACTIONS(9775), 1, + anon_sym_SLASH2, + [166284] = 2, ACTIONS(9777), 1, - anon_sym_function, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166149] = 2, - ACTIONS(4989), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166157] = 2, + [166292] = 2, ACTIONS(9779), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166165] = 2, + [166300] = 2, ACTIONS(9781), 1, - anon_sym_symbol, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166173] = 2, + [166308] = 2, ACTIONS(9783), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166181] = 2, + [166316] = 2, ACTIONS(9785), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166189] = 2, + [166324] = 2, ACTIONS(9787), 1, - anon_sym_new, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166197] = 2, + [166332] = 2, ACTIONS(9789), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166205] = 2, + [166340] = 2, ACTIONS(9791), 1, - anon_sym_as, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166213] = 2, + [166348] = 2, ACTIONS(9793), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166356] = 2, + ACTIONS(7659), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166221] = 2, + [166364] = 2, ACTIONS(9795), 1, - anon_sym_DOT, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166229] = 2, + [166372] = 2, ACTIONS(9797), 1, - sym_identifier, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166380] = 2, + ACTIONS(8405), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166237] = 2, + [166388] = 2, ACTIONS(9799), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166245] = 2, + [166396] = 2, ACTIONS(9801), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166253] = 2, - ACTIONS(5415), 1, - anon_sym_in, + [166404] = 2, + ACTIONS(8873), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166261] = 2, + [166412] = 2, ACTIONS(9803), 1, - anon_sym_EQ_GT, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166269] = 2, + [166420] = 2, ACTIONS(9805), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166277] = 2, - ACTIONS(8857), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166285] = 2, + [166428] = 2, ACTIONS(9807), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166293] = 2, + [166436] = 2, ACTIONS(9809), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166301] = 2, + [166444] = 2, ACTIONS(9811), 1, - anon_sym_RBRACK, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166309] = 2, + [166452] = 2, ACTIONS(9813), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166317] = 2, + [166460] = 2, ACTIONS(9815), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166325] = 2, + [166468] = 2, ACTIONS(9817), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166333] = 2, + [166476] = 2, ACTIONS(9819), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166484] = 2, + ACTIONS(4474), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166341] = 2, + [166492] = 2, ACTIONS(9821), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166349] = 2, - ACTIONS(9823), 1, - anon_sym_EQ_GT, + [166500] = 2, + ACTIONS(5365), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166357] = 2, - ACTIONS(8861), 1, - anon_sym_GT, + [166508] = 2, + ACTIONS(9823), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166365] = 2, + [166516] = 2, ACTIONS(9825), 1, - anon_sym_DOT, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [166524] = 2, ACTIONS(9827), 1, - sym_regex_pattern, - [166383] = 2, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166532] = 2, ACTIONS(9829), 1, - anon_sym_EQ_GT, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166391] = 2, + [166540] = 2, ACTIONS(9831), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166399] = 2, + [166548] = 2, ACTIONS(9833), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166407] = 2, + [166556] = 2, ACTIONS(9835), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166415] = 2, - ACTIONS(5304), 1, - anon_sym_in, + [166564] = 2, + ACTIONS(4973), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166423] = 2, + [166572] = 2, ACTIONS(9837), 1, - anon_sym_new, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166431] = 2, + [166580] = 2, ACTIONS(9839), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166439] = 2, + [166588] = 2, ACTIONS(9841), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166447] = 2, + [166596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9843), 1, - anon_sym_RBRACK, + anon_sym_SLASH2, + [166606] = 2, + ACTIONS(9845), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166455] = 2, - ACTIONS(9845), 1, + [166614] = 2, + ACTIONS(9847), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, + [166622] = 2, + ACTIONS(9849), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166630] = 2, + ACTIONS(9851), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166638] = 2, + ACTIONS(9853), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166646] = 2, + ACTIONS(9855), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166654] = 2, + ACTIONS(9857), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166662] = 2, + ACTIONS(9859), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166670] = 2, + ACTIONS(8669), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166678] = 2, + ACTIONS(9861), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1132)] = 0, - [SMALL_STATE(1133)] = 89, - [SMALL_STATE(1134)] = 182, + [SMALL_STATE(1133)] = 93, + [SMALL_STATE(1134)] = 186, [SMALL_STATE(1135)] = 275, - [SMALL_STATE(1136)] = 370, - [SMALL_STATE(1137)] = 459, + [SMALL_STATE(1136)] = 368, + [SMALL_STATE(1137)] = 457, [SMALL_STATE(1138)] = 552, [SMALL_STATE(1139)] = 640, - [SMALL_STATE(1140)] = 726, - [SMALL_STATE(1141)] = 798, - [SMALL_STATE(1142)] = 886, - [SMALL_STATE(1143)] = 974, + [SMALL_STATE(1140)] = 710, + [SMALL_STATE(1141)] = 800, + [SMALL_STATE(1142)] = 888, + [SMALL_STATE(1143)] = 978, [SMALL_STATE(1144)] = 1064, - [SMALL_STATE(1145)] = 1152, - [SMALL_STATE(1146)] = 1242, - [SMALL_STATE(1147)] = 1312, - [SMALL_STATE(1148)] = 1382, - [SMALL_STATE(1149)] = 1474, - [SMALL_STATE(1150)] = 1566, - [SMALL_STATE(1151)] = 1656, - [SMALL_STATE(1152)] = 1728, - [SMALL_STATE(1153)] = 1798, - [SMALL_STATE(1154)] = 1886, - [SMALL_STATE(1155)] = 1956, - [SMALL_STATE(1156)] = 2046, - [SMALL_STATE(1157)] = 2136, - [SMALL_STATE(1158)] = 2224, - [SMALL_STATE(1159)] = 2310, - [SMALL_STATE(1160)] = 2380, - [SMALL_STATE(1161)] = 2470, - [SMALL_STATE(1162)] = 2558, - [SMALL_STATE(1163)] = 2646, - [SMALL_STATE(1164)] = 2736, - [SMALL_STATE(1165)] = 2826, - [SMALL_STATE(1166)] = 2896, - [SMALL_STATE(1167)] = 2988, + [SMALL_STATE(1145)] = 1136, + [SMALL_STATE(1146)] = 1224, + [SMALL_STATE(1147)] = 1294, + [SMALL_STATE(1148)] = 1364, + [SMALL_STATE(1149)] = 1434, + [SMALL_STATE(1150)] = 1504, + [SMALL_STATE(1151)] = 1574, + [SMALL_STATE(1152)] = 1662, + [SMALL_STATE(1153)] = 1754, + [SMALL_STATE(1154)] = 1842, + [SMALL_STATE(1155)] = 1932, + [SMALL_STATE(1156)] = 2020, + [SMALL_STATE(1157)] = 2110, + [SMALL_STATE(1158)] = 2200, + [SMALL_STATE(1159)] = 2290, + [SMALL_STATE(1160)] = 2378, + [SMALL_STATE(1161)] = 2468, + [SMALL_STATE(1162)] = 2554, + [SMALL_STATE(1163)] = 2624, + [SMALL_STATE(1164)] = 2716, + [SMALL_STATE(1165)] = 2808, + [SMALL_STATE(1166)] = 2880, + [SMALL_STATE(1167)] = 2970, [SMALL_STATE(1168)] = 3058, - [SMALL_STATE(1169)] = 3145, - [SMALL_STATE(1170)] = 3214, - [SMALL_STATE(1171)] = 3293, - [SMALL_STATE(1172)] = 3388, - [SMALL_STATE(1173)] = 3475, - [SMALL_STATE(1174)] = 3562, - [SMALL_STATE(1175)] = 3649, - [SMALL_STATE(1176)] = 3740, - [SMALL_STATE(1177)] = 3829, - [SMALL_STATE(1178)] = 3920, - [SMALL_STATE(1179)] = 4009, - [SMALL_STATE(1180)] = 4100, - [SMALL_STATE(1181)] = 4187, - [SMALL_STATE(1182)] = 4256, - [SMALL_STATE(1183)] = 4347, + [SMALL_STATE(1169)] = 3149, + [SMALL_STATE(1170)] = 3236, + [SMALL_STATE(1171)] = 3323, + [SMALL_STATE(1172)] = 3414, + [SMALL_STATE(1173)] = 3505, + [SMALL_STATE(1174)] = 3594, + [SMALL_STATE(1175)] = 3663, + [SMALL_STATE(1176)] = 3752, + [SMALL_STATE(1177)] = 3843, + [SMALL_STATE(1178)] = 3930, + [SMALL_STATE(1179)] = 3999, + [SMALL_STATE(1180)] = 4072, + [SMALL_STATE(1181)] = 4167, + [SMALL_STATE(1182)] = 4254, + [SMALL_STATE(1183)] = 4341, [SMALL_STATE(1184)] = 4420, - [SMALL_STATE(1185)] = 4500, - [SMALL_STATE(1186)] = 4586, - [SMALL_STATE(1187)] = 4678, - [SMALL_STATE(1188)] = 4758, - [SMALL_STATE(1189)] = 4850, - [SMALL_STATE(1190)] = 4936, - [SMALL_STATE(1191)] = 5026, - [SMALL_STATE(1192)] = 5104, - [SMALL_STATE(1193)] = 5190, - [SMALL_STATE(1194)] = 5276, - [SMALL_STATE(1195)] = 5354, - [SMALL_STATE(1196)] = 5430, - [SMALL_STATE(1197)] = 5520, - [SMALL_STATE(1198)] = 5606, - [SMALL_STATE(1199)] = 5692, - [SMALL_STATE(1200)] = 5778, - [SMALL_STATE(1201)] = 5864, - [SMALL_STATE(1202)] = 5942, - [SMALL_STATE(1203)] = 6032, - [SMALL_STATE(1204)] = 6110, - [SMALL_STATE(1205)] = 6196, - [SMALL_STATE(1206)] = 6282, - [SMALL_STATE(1207)] = 6368, - [SMALL_STATE(1208)] = 6454, - [SMALL_STATE(1209)] = 6544, - [SMALL_STATE(1210)] = 6618, - [SMALL_STATE(1211)] = 6696, - [SMALL_STATE(1212)] = 6782, - [SMALL_STATE(1213)] = 6860, - [SMALL_STATE(1214)] = 6949, - [SMALL_STATE(1215)] = 7028, - [SMALL_STATE(1216)] = 7101, - [SMALL_STATE(1217)] = 7190, - [SMALL_STATE(1218)] = 7259, - [SMALL_STATE(1219)] = 7328, - [SMALL_STATE(1220)] = 7411, - [SMALL_STATE(1221)] = 7496, - [SMALL_STATE(1222)] = 7563, - [SMALL_STATE(1223)] = 7640, - [SMALL_STATE(1224)] = 7709, - [SMALL_STATE(1225)] = 7782, - [SMALL_STATE(1226)] = 7871, - [SMALL_STATE(1227)] = 7960, - [SMALL_STATE(1228)] = 8027, - [SMALL_STATE(1229)] = 8100, - [SMALL_STATE(1230)] = 8169, - [SMALL_STATE(1231)] = 8238, - [SMALL_STATE(1232)] = 8313, - [SMALL_STATE(1233)] = 8386, - [SMALL_STATE(1234)] = 8473, - [SMALL_STATE(1235)] = 8552, - [SMALL_STATE(1236)] = 8627, - [SMALL_STATE(1237)] = 8694, + [SMALL_STATE(1185)] = 4512, + [SMALL_STATE(1186)] = 4598, + [SMALL_STATE(1187)] = 4684, + [SMALL_STATE(1188)] = 4774, + [SMALL_STATE(1189)] = 4854, + [SMALL_STATE(1190)] = 4932, + [SMALL_STATE(1191)] = 5018, + [SMALL_STATE(1192)] = 5096, + [SMALL_STATE(1193)] = 5174, + [SMALL_STATE(1194)] = 5264, + [SMALL_STATE(1195)] = 5332, + [SMALL_STATE(1196)] = 5418, + [SMALL_STATE(1197)] = 5504, + [SMALL_STATE(1198)] = 5590, + [SMALL_STATE(1199)] = 5676, + [SMALL_STATE(1200)] = 5762, + [SMALL_STATE(1201)] = 5848, + [SMALL_STATE(1202)] = 5922, + [SMALL_STATE(1203)] = 6002, + [SMALL_STATE(1204)] = 6070, + [SMALL_STATE(1205)] = 6148, + [SMALL_STATE(1206)] = 6238, + [SMALL_STATE(1207)] = 6330, + [SMALL_STATE(1208)] = 6416, + [SMALL_STATE(1209)] = 6502, + [SMALL_STATE(1210)] = 6580, + [SMALL_STATE(1211)] = 6666, + [SMALL_STATE(1212)] = 6756, + [SMALL_STATE(1213)] = 6832, + [SMALL_STATE(1214)] = 6918, + [SMALL_STATE(1215)] = 6996, + [SMALL_STATE(1216)] = 7069, + [SMALL_STATE(1217)] = 7142, + [SMALL_STATE(1218)] = 7215, + [SMALL_STATE(1219)] = 7304, + [SMALL_STATE(1220)] = 7393, + [SMALL_STATE(1221)] = 7478, + [SMALL_STATE(1222)] = 7553, + [SMALL_STATE(1223)] = 7636, + [SMALL_STATE(1224)] = 7705, + [SMALL_STATE(1225)] = 7784, + [SMALL_STATE(1226)] = 7853, + [SMALL_STATE(1227)] = 7938, + [SMALL_STATE(1228)] = 8007, + [SMALL_STATE(1229)] = 8074, + [SMALL_STATE(1230)] = 8151, + [SMALL_STATE(1231)] = 8226, + [SMALL_STATE(1232)] = 8293, + [SMALL_STATE(1233)] = 8380, + [SMALL_STATE(1234)] = 8447, + [SMALL_STATE(1235)] = 8522, + [SMALL_STATE(1236)] = 8605, + [SMALL_STATE(1237)] = 8690, [SMALL_STATE(1238)] = 8779, - [SMALL_STATE(1239)] = 8846, - [SMALL_STATE(1240)] = 8931, - [SMALL_STATE(1241)] = 9014, - [SMALL_STATE(1242)] = 9089, - [SMALL_STATE(1243)] = 9166, + [SMALL_STATE(1239)] = 8856, + [SMALL_STATE(1240)] = 8933, + [SMALL_STATE(1241)] = 9006, + [SMALL_STATE(1242)] = 9095, + [SMALL_STATE(1243)] = 9164, [SMALL_STATE(1244)] = 9233, - [SMALL_STATE(1245)] = 9302, - [SMALL_STATE(1246)] = 9379, - [SMALL_STATE(1247)] = 9451, - [SMALL_STATE(1248)] = 9517, - [SMALL_STATE(1249)] = 9583, - [SMALL_STATE(1250)] = 9659, - [SMALL_STATE(1251)] = 9747, - [SMALL_STATE(1252)] = 9825, - [SMALL_STATE(1253)] = 9891, - [SMALL_STATE(1254)] = 9961, - [SMALL_STATE(1255)] = 10033, - [SMALL_STATE(1256)] = 10109, - [SMALL_STATE(1257)] = 10189, - [SMALL_STATE(1258)] = 10263, - [SMALL_STATE(1259)] = 10329, - [SMALL_STATE(1260)] = 10417, - [SMALL_STATE(1261)] = 10489, - [SMALL_STATE(1262)] = 10561, - [SMALL_STATE(1263)] = 10643, - [SMALL_STATE(1264)] = 10719, - [SMALL_STATE(1265)] = 10789, - [SMALL_STATE(1266)] = 10867, - [SMALL_STATE(1267)] = 10933, - [SMALL_STATE(1268)] = 10999, - [SMALL_STATE(1269)] = 11077, - [SMALL_STATE(1270)] = 11151, - [SMALL_STATE(1271)] = 11225, - [SMALL_STATE(1272)] = 11291, - [SMALL_STATE(1273)] = 11357, - [SMALL_STATE(1274)] = 11429, - [SMALL_STATE(1275)] = 11501, - [SMALL_STATE(1276)] = 11573, - [SMALL_STATE(1277)] = 11647, - [SMALL_STATE(1278)] = 11721, - [SMALL_STATE(1279)] = 11793, - [SMALL_STATE(1280)] = 11859, - [SMALL_STATE(1281)] = 11943, - [SMALL_STATE(1282)] = 12027, - [SMALL_STATE(1283)] = 12107, - [SMALL_STATE(1284)] = 12191, - [SMALL_STATE(1285)] = 12265, - [SMALL_STATE(1286)] = 12332, - [SMALL_STATE(1287)] = 12403, - [SMALL_STATE(1288)] = 12470, - [SMALL_STATE(1289)] = 12543, - [SMALL_STATE(1290)] = 12620, - [SMALL_STATE(1291)] = 12693, - [SMALL_STATE(1292)] = 12762, - [SMALL_STATE(1293)] = 12831, - [SMALL_STATE(1294)] = 12904, + [SMALL_STATE(1245)] = 9300, + [SMALL_STATE(1246)] = 9369, + [SMALL_STATE(1247)] = 9448, + [SMALL_STATE(1248)] = 9520, + [SMALL_STATE(1249)] = 9602, + [SMALL_STATE(1250)] = 9678, + [SMALL_STATE(1251)] = 9750, + [SMALL_STATE(1252)] = 9820, + [SMALL_STATE(1253)] = 9886, + [SMALL_STATE(1254)] = 9958, + [SMALL_STATE(1255)] = 10030, + [SMALL_STATE(1256)] = 10096, + [SMALL_STATE(1257)] = 10162, + [SMALL_STATE(1258)] = 10228, + [SMALL_STATE(1259)] = 10294, + [SMALL_STATE(1260)] = 10360, + [SMALL_STATE(1261)] = 10426, + [SMALL_STATE(1262)] = 10502, + [SMALL_STATE(1263)] = 10574, + [SMALL_STATE(1264)] = 10648, + [SMALL_STATE(1265)] = 10722, + [SMALL_STATE(1266)] = 10796, + [SMALL_STATE(1267)] = 10884, + [SMALL_STATE(1268)] = 10960, + [SMALL_STATE(1269)] = 11048, + [SMALL_STATE(1270)] = 11118, + [SMALL_STATE(1271)] = 11190, + [SMALL_STATE(1272)] = 11256, + [SMALL_STATE(1273)] = 11322, + [SMALL_STATE(1274)] = 11400, + [SMALL_STATE(1275)] = 11480, + [SMALL_STATE(1276)] = 11560, + [SMALL_STATE(1277)] = 11638, + [SMALL_STATE(1278)] = 11712, + [SMALL_STATE(1279)] = 11786, + [SMALL_STATE(1280)] = 11864, + [SMALL_STATE(1281)] = 11936, + [SMALL_STATE(1282)] = 12020, + [SMALL_STATE(1283)] = 12104, + [SMALL_STATE(1284)] = 12176, + [SMALL_STATE(1285)] = 12260, + [SMALL_STATE(1286)] = 12334, + [SMALL_STATE(1287)] = 12411, + [SMALL_STATE(1288)] = 12482, + [SMALL_STATE(1289)] = 12549, + [SMALL_STATE(1290)] = 12622, + [SMALL_STATE(1291)] = 12695, + [SMALL_STATE(1292)] = 12768, + [SMALL_STATE(1293)] = 12841, + [SMALL_STATE(1294)] = 12908, [SMALL_STATE(1295)] = 12977, - [SMALL_STATE(1296)] = 13050, - [SMALL_STATE(1297)] = 13133, - [SMALL_STATE(1298)] = 13204, - [SMALL_STATE(1299)] = 13275, - [SMALL_STATE(1300)] = 13344, - [SMALL_STATE(1301)] = 13421, - [SMALL_STATE(1302)] = 13498, - [SMALL_STATE(1303)] = 13567, - [SMALL_STATE(1304)] = 13644, + [SMALL_STATE(1296)] = 13048, + [SMALL_STATE(1297)] = 13131, + [SMALL_STATE(1298)] = 13200, + [SMALL_STATE(1299)] = 13269, + [SMALL_STATE(1300)] = 13340, + [SMALL_STATE(1301)] = 13409, + [SMALL_STATE(1302)] = 13482, + [SMALL_STATE(1303)] = 13561, + [SMALL_STATE(1304)] = 13638, [SMALL_STATE(1305)] = 13715, - [SMALL_STATE(1306)] = 13794, - [SMALL_STATE(1307)] = 13914, - [SMALL_STATE(1308)] = 13980, - [SMALL_STATE(1309)] = 14052, - [SMALL_STATE(1310)] = 14172, - [SMALL_STATE(1311)] = 14246, - [SMALL_STATE(1312)] = 14366, - [SMALL_STATE(1313)] = 14436, - [SMALL_STATE(1314)] = 14512, - [SMALL_STATE(1315)] = 14586, - [SMALL_STATE(1316)] = 14706, - [SMALL_STATE(1317)] = 14778, - [SMALL_STATE(1318)] = 14898, - [SMALL_STATE(1319)] = 15018, - [SMALL_STATE(1320)] = 15092, - [SMALL_STATE(1321)] = 15162, - [SMALL_STATE(1322)] = 15232, - [SMALL_STATE(1323)] = 15306, - [SMALL_STATE(1324)] = 15376, - [SMALL_STATE(1325)] = 15446, - [SMALL_STATE(1326)] = 15516, - [SMALL_STATE(1327)] = 15586, - [SMALL_STATE(1328)] = 15656, - [SMALL_STATE(1329)] = 15722, - [SMALL_STATE(1330)] = 15790, + [SMALL_STATE(1306)] = 13786, + [SMALL_STATE(1307)] = 13863, + [SMALL_STATE(1308)] = 13933, + [SMALL_STATE(1309)] = 14003, + [SMALL_STATE(1310)] = 14123, + [SMALL_STATE(1311)] = 14243, + [SMALL_STATE(1312)] = 14317, + [SMALL_STATE(1313)] = 14393, + [SMALL_STATE(1314)] = 14467, + [SMALL_STATE(1315)] = 14537, + [SMALL_STATE(1316)] = 14657, + [SMALL_STATE(1317)] = 14731, + [SMALL_STATE(1318)] = 14801, + [SMALL_STATE(1319)] = 14875, + [SMALL_STATE(1320)] = 14945, + [SMALL_STATE(1321)] = 15011, + [SMALL_STATE(1322)] = 15131, + [SMALL_STATE(1323)] = 15197, + [SMALL_STATE(1324)] = 15317, + [SMALL_STATE(1325)] = 15387, + [SMALL_STATE(1326)] = 15459, + [SMALL_STATE(1327)] = 15529, + [SMALL_STATE(1328)] = 15597, + [SMALL_STATE(1329)] = 15667, + [SMALL_STATE(1330)] = 15787, [SMALL_STATE(1331)] = 15859, - [SMALL_STATE(1332)] = 15932, + [SMALL_STATE(1332)] = 15928, [SMALL_STATE(1333)] = 16001, [SMALL_STATE(1334)] = 16070, - [SMALL_STATE(1335)] = 16143, - [SMALL_STATE(1336)] = 16212, - [SMALL_STATE(1337)] = 16283, - [SMALL_STATE(1338)] = 16350, - [SMALL_STATE(1339)] = 16419, - [SMALL_STATE(1340)] = 16488, - [SMALL_STATE(1341)] = 16557, - [SMALL_STATE(1342)] = 16624, - [SMALL_STATE(1343)] = 16693, - [SMALL_STATE(1344)] = 16764, - [SMALL_STATE(1345)] = 16830, - [SMALL_STATE(1346)] = 16898, - [SMALL_STATE(1347)] = 17014, - [SMALL_STATE(1348)] = 17082, - [SMALL_STATE(1349)] = 17198, - [SMALL_STATE(1350)] = 17266, - [SMALL_STATE(1351)] = 17334, - [SMALL_STATE(1352)] = 17450, - [SMALL_STATE(1353)] = 17518, - [SMALL_STATE(1354)] = 17634, - [SMALL_STATE(1355)] = 17702, - [SMALL_STATE(1356)] = 17818, - [SMALL_STATE(1357)] = 17934, - [SMALL_STATE(1358)] = 18002, - [SMALL_STATE(1359)] = 18118, - [SMALL_STATE(1360)] = 18186, - [SMALL_STATE(1361)] = 18254, - [SMALL_STATE(1362)] = 18370, - [SMALL_STATE(1363)] = 18438, - [SMALL_STATE(1364)] = 18554, - [SMALL_STATE(1365)] = 18670, - [SMALL_STATE(1366)] = 18738, - [SMALL_STATE(1367)] = 18806, - [SMALL_STATE(1368)] = 18874, - [SMALL_STATE(1369)] = 18990, - [SMALL_STATE(1370)] = 19058, - [SMALL_STATE(1371)] = 19174, - [SMALL_STATE(1372)] = 19290, - [SMALL_STATE(1373)] = 19360, - [SMALL_STATE(1374)] = 19428, - [SMALL_STATE(1375)] = 19496, - [SMALL_STATE(1376)] = 19564, - [SMALL_STATE(1377)] = 19632, - [SMALL_STATE(1378)] = 19748, - [SMALL_STATE(1379)] = 19864, - [SMALL_STATE(1380)] = 19930, - [SMALL_STATE(1381)] = 19998, - [SMALL_STATE(1382)] = 20066, - [SMALL_STATE(1383)] = 20182, - [SMALL_STATE(1384)] = 20250, - [SMALL_STATE(1385)] = 20366, - [SMALL_STATE(1386)] = 20482, - [SMALL_STATE(1387)] = 20547, - [SMALL_STATE(1388)] = 20612, - [SMALL_STATE(1389)] = 20677, - [SMALL_STATE(1390)] = 20742, - [SMALL_STATE(1391)] = 20807, - [SMALL_STATE(1392)] = 20872, - [SMALL_STATE(1393)] = 20937, - [SMALL_STATE(1394)] = 21002, - [SMALL_STATE(1395)] = 21067, - [SMALL_STATE(1396)] = 21179, - [SMALL_STATE(1397)] = 21291, - [SMALL_STATE(1398)] = 21403, - [SMALL_STATE(1399)] = 21515, - [SMALL_STATE(1400)] = 21627, - [SMALL_STATE(1401)] = 21739, - [SMALL_STATE(1402)] = 21851, - [SMALL_STATE(1403)] = 21970, - [SMALL_STATE(1404)] = 22081, - [SMALL_STATE(1405)] = 22192, - [SMALL_STATE(1406)] = 22303, - [SMALL_STATE(1407)] = 22414, - [SMALL_STATE(1408)] = 22525, - [SMALL_STATE(1409)] = 22636, - [SMALL_STATE(1410)] = 22747, - [SMALL_STATE(1411)] = 22858, - [SMALL_STATE(1412)] = 22969, - [SMALL_STATE(1413)] = 23088, - [SMALL_STATE(1414)] = 23207, - [SMALL_STATE(1415)] = 23326, - [SMALL_STATE(1416)] = 23445, - [SMALL_STATE(1417)] = 23556, - [SMALL_STATE(1418)] = 23667, - [SMALL_STATE(1419)] = 23769, - [SMALL_STATE(1420)] = 23871, - [SMALL_STATE(1421)] = 23973, - [SMALL_STATE(1422)] = 24075, - [SMALL_STATE(1423)] = 24177, - [SMALL_STATE(1424)] = 24279, - [SMALL_STATE(1425)] = 24381, - [SMALL_STATE(1426)] = 24438, - [SMALL_STATE(1427)] = 24549, - [SMALL_STATE(1428)] = 24658, - [SMALL_STATE(1429)] = 24715, - [SMALL_STATE(1430)] = 24781, - [SMALL_STATE(1431)] = 24847, - [SMALL_STATE(1432)] = 24911, - [SMALL_STATE(1433)] = 24983, - [SMALL_STATE(1434)] = 25077, - [SMALL_STATE(1435)] = 25143, - [SMALL_STATE(1436)] = 25202, - [SMALL_STATE(1437)] = 25261, - [SMALL_STATE(1438)] = 25316, - [SMALL_STATE(1439)] = 25373, - [SMALL_STATE(1440)] = 25430, - [SMALL_STATE(1441)] = 25485, - [SMALL_STATE(1442)] = 25546, - [SMALL_STATE(1443)] = 25603, - [SMALL_STATE(1444)] = 25664, - [SMALL_STATE(1445)] = 25725, - [SMALL_STATE(1446)] = 25786, - [SMALL_STATE(1447)] = 25841, - [SMALL_STATE(1448)] = 25896, - [SMALL_STATE(1449)] = 25951, - [SMALL_STATE(1450)] = 26006, - [SMALL_STATE(1451)] = 26067, - [SMALL_STATE(1452)] = 26122, - [SMALL_STATE(1453)] = 26181, - [SMALL_STATE(1454)] = 26237, - [SMALL_STATE(1455)] = 26291, - [SMALL_STATE(1456)] = 26377, - [SMALL_STATE(1457)] = 26459, - [SMALL_STATE(1458)] = 26553, - [SMALL_STATE(1459)] = 26607, - [SMALL_STATE(1460)] = 26727, - [SMALL_STATE(1461)] = 26823, - [SMALL_STATE(1462)] = 26921, - [SMALL_STATE(1463)] = 27001, - [SMALL_STATE(1464)] = 27083, - [SMALL_STATE(1465)] = 27137, - [SMALL_STATE(1466)] = 27197, - [SMALL_STATE(1467)] = 27257, - [SMALL_STATE(1468)] = 27315, - [SMALL_STATE(1469)] = 27371, - [SMALL_STATE(1470)] = 27425, - [SMALL_STATE(1471)] = 27479, - [SMALL_STATE(1472)] = 27591, - [SMALL_STATE(1473)] = 27645, - [SMALL_STATE(1474)] = 27699, - [SMALL_STATE(1475)] = 27811, - [SMALL_STATE(1476)] = 27867, - [SMALL_STATE(1477)] = 27921, - [SMALL_STATE(1478)] = 27977, - [SMALL_STATE(1479)] = 28031, - [SMALL_STATE(1480)] = 28143, - [SMALL_STATE(1481)] = 28197, - [SMALL_STATE(1482)] = 28251, - [SMALL_STATE(1483)] = 28305, - [SMALL_STATE(1484)] = 28361, - [SMALL_STATE(1485)] = 28473, - [SMALL_STATE(1486)] = 28585, - [SMALL_STATE(1487)] = 28641, - [SMALL_STATE(1488)] = 28695, - [SMALL_STATE(1489)] = 28749, - [SMALL_STATE(1490)] = 28803, - [SMALL_STATE(1491)] = 28859, - [SMALL_STATE(1492)] = 28913, - [SMALL_STATE(1493)] = 28967, - [SMALL_STATE(1494)] = 29021, - [SMALL_STATE(1495)] = 29081, - [SMALL_STATE(1496)] = 29141, - [SMALL_STATE(1497)] = 29197, - [SMALL_STATE(1498)] = 29253, - [SMALL_STATE(1499)] = 29365, - [SMALL_STATE(1500)] = 29419, - [SMALL_STATE(1501)] = 29473, - [SMALL_STATE(1502)] = 29527, - [SMALL_STATE(1503)] = 29581, - [SMALL_STATE(1504)] = 29635, - [SMALL_STATE(1505)] = 29689, - [SMALL_STATE(1506)] = 29743, - [SMALL_STATE(1507)] = 29797, - [SMALL_STATE(1508)] = 29851, - [SMALL_STATE(1509)] = 29905, - [SMALL_STATE(1510)] = 29959, - [SMALL_STATE(1511)] = 30013, - [SMALL_STATE(1512)] = 30067, - [SMALL_STATE(1513)] = 30123, - [SMALL_STATE(1514)] = 30185, - [SMALL_STATE(1515)] = 30239, - [SMALL_STATE(1516)] = 30293, - [SMALL_STATE(1517)] = 30349, - [SMALL_STATE(1518)] = 30403, - [SMALL_STATE(1519)] = 30463, - [SMALL_STATE(1520)] = 30517, - [SMALL_STATE(1521)] = 30571, - [SMALL_STATE(1522)] = 30625, - [SMALL_STATE(1523)] = 30679, - [SMALL_STATE(1524)] = 30733, - [SMALL_STATE(1525)] = 30789, - [SMALL_STATE(1526)] = 30843, - [SMALL_STATE(1527)] = 30897, - [SMALL_STATE(1528)] = 30951, - [SMALL_STATE(1529)] = 31005, - [SMALL_STATE(1530)] = 31059, - [SMALL_STATE(1531)] = 31113, - [SMALL_STATE(1532)] = 31167, - [SMALL_STATE(1533)] = 31221, - [SMALL_STATE(1534)] = 31275, - [SMALL_STATE(1535)] = 31329, - [SMALL_STATE(1536)] = 31383, - [SMALL_STATE(1537)] = 31437, - [SMALL_STATE(1538)] = 31539, - [SMALL_STATE(1539)] = 31593, - [SMALL_STATE(1540)] = 31647, - [SMALL_STATE(1541)] = 31701, - [SMALL_STATE(1542)] = 31755, - [SMALL_STATE(1543)] = 31809, - [SMALL_STATE(1544)] = 31869, - [SMALL_STATE(1545)] = 31923, - [SMALL_STATE(1546)] = 31977, - [SMALL_STATE(1547)] = 32037, - [SMALL_STATE(1548)] = 32091, - [SMALL_STATE(1549)] = 32153, - [SMALL_STATE(1550)] = 32207, - [SMALL_STATE(1551)] = 32261, - [SMALL_STATE(1552)] = 32315, - [SMALL_STATE(1553)] = 32369, - [SMALL_STATE(1554)] = 32455, - [SMALL_STATE(1555)] = 32509, - [SMALL_STATE(1556)] = 32563, - [SMALL_STATE(1557)] = 32617, - [SMALL_STATE(1558)] = 32671, - [SMALL_STATE(1559)] = 32725, - [SMALL_STATE(1560)] = 32779, - [SMALL_STATE(1561)] = 32833, - [SMALL_STATE(1562)] = 32887, - [SMALL_STATE(1563)] = 32941, - [SMALL_STATE(1564)] = 32995, - [SMALL_STATE(1565)] = 33049, - [SMALL_STATE(1566)] = 33103, - [SMALL_STATE(1567)] = 33157, - [SMALL_STATE(1568)] = 33211, - [SMALL_STATE(1569)] = 33265, - [SMALL_STATE(1570)] = 33319, - [SMALL_STATE(1571)] = 33373, - [SMALL_STATE(1572)] = 33427, - [SMALL_STATE(1573)] = 33481, - [SMALL_STATE(1574)] = 33535, - [SMALL_STATE(1575)] = 33589, - [SMALL_STATE(1576)] = 33649, - [SMALL_STATE(1577)] = 33761, - [SMALL_STATE(1578)] = 33823, - [SMALL_STATE(1579)] = 33885, - [SMALL_STATE(1580)] = 33959, - [SMALL_STATE(1581)] = 34017, - [SMALL_STATE(1582)] = 34075, - [SMALL_STATE(1583)] = 34161, - [SMALL_STATE(1584)] = 34215, - [SMALL_STATE(1585)] = 34305, - [SMALL_STATE(1586)] = 34409, - [SMALL_STATE(1587)] = 34469, - [SMALL_STATE(1588)] = 34529, - [SMALL_STATE(1589)] = 34609, - [SMALL_STATE(1590)] = 34667, - [SMALL_STATE(1591)] = 34779, - [SMALL_STATE(1592)] = 34837, - [SMALL_STATE(1593)] = 34949, - [SMALL_STATE(1594)] = 35021, - [SMALL_STATE(1595)] = 35077, - [SMALL_STATE(1596)] = 35163, - [SMALL_STATE(1597)] = 35283, - [SMALL_STATE(1598)] = 35403, - [SMALL_STATE(1599)] = 35463, - [SMALL_STATE(1600)] = 35575, - [SMALL_STATE(1601)] = 35687, - [SMALL_STATE(1602)] = 35807, - [SMALL_STATE(1603)] = 35919, - [SMALL_STATE(1604)] = 36005, - [SMALL_STATE(1605)] = 36117, - [SMALL_STATE(1606)] = 36193, - [SMALL_STATE(1607)] = 36249, - [SMALL_STATE(1608)] = 36361, - [SMALL_STATE(1609)] = 36447, - [SMALL_STATE(1610)] = 36507, - [SMALL_STATE(1611)] = 36619, - [SMALL_STATE(1612)] = 36719, - [SMALL_STATE(1613)] = 36773, - [SMALL_STATE(1614)] = 36826, - [SMALL_STATE(1615)] = 36879, - [SMALL_STATE(1616)] = 36932, - [SMALL_STATE(1617)] = 37047, - [SMALL_STATE(1618)] = 37100, - [SMALL_STATE(1619)] = 37153, - [SMALL_STATE(1620)] = 37206, - [SMALL_STATE(1621)] = 37259, - [SMALL_STATE(1622)] = 37336, - [SMALL_STATE(1623)] = 37389, - [SMALL_STATE(1624)] = 37500, - [SMALL_STATE(1625)] = 37615, - [SMALL_STATE(1626)] = 37692, - [SMALL_STATE(1627)] = 37807, - [SMALL_STATE(1628)] = 37860, - [SMALL_STATE(1629)] = 37975, - [SMALL_STATE(1630)] = 38028, - [SMALL_STATE(1631)] = 38107, - [SMALL_STATE(1632)] = 38166, - [SMALL_STATE(1633)] = 38277, - [SMALL_STATE(1634)] = 38330, - [SMALL_STATE(1635)] = 38441, - [SMALL_STATE(1636)] = 38494, - [SMALL_STATE(1637)] = 38547, - [SMALL_STATE(1638)] = 38600, - [SMALL_STATE(1639)] = 38679, - [SMALL_STATE(1640)] = 38732, - [SMALL_STATE(1641)] = 38785, - [SMALL_STATE(1642)] = 38864, - [SMALL_STATE(1643)] = 38963, - [SMALL_STATE(1644)] = 39016, - [SMALL_STATE(1645)] = 39069, - [SMALL_STATE(1646)] = 39170, - [SMALL_STATE(1647)] = 39281, - [SMALL_STATE(1648)] = 39340, - [SMALL_STATE(1649)] = 39419, - [SMALL_STATE(1650)] = 39472, - [SMALL_STATE(1651)] = 39525, - [SMALL_STATE(1652)] = 39578, - [SMALL_STATE(1653)] = 39631, - [SMALL_STATE(1654)] = 39684, - [SMALL_STATE(1655)] = 39737, - [SMALL_STATE(1656)] = 39848, - [SMALL_STATE(1657)] = 39901, - [SMALL_STATE(1658)] = 40012, - [SMALL_STATE(1659)] = 40093, - [SMALL_STATE(1660)] = 40146, - [SMALL_STATE(1661)] = 40199, - [SMALL_STATE(1662)] = 40278, - [SMALL_STATE(1663)] = 40331, - [SMALL_STATE(1664)] = 40384, - [SMALL_STATE(1665)] = 40437, - [SMALL_STATE(1666)] = 40490, - [SMALL_STATE(1667)] = 40543, - [SMALL_STATE(1668)] = 40596, - [SMALL_STATE(1669)] = 40707, - [SMALL_STATE(1670)] = 40788, - [SMALL_STATE(1671)] = 40841, - [SMALL_STATE(1672)] = 40934, - [SMALL_STATE(1673)] = 41045, - [SMALL_STATE(1674)] = 41098, - [SMALL_STATE(1675)] = 41161, - [SMALL_STATE(1676)] = 41214, - [SMALL_STATE(1677)] = 41267, - [SMALL_STATE(1678)] = 41340, - [SMALL_STATE(1679)] = 41419, - [SMALL_STATE(1680)] = 41530, - [SMALL_STATE(1681)] = 41583, - [SMALL_STATE(1682)] = 41640, - [SMALL_STATE(1683)] = 41735, - [SMALL_STATE(1684)] = 41832, - [SMALL_STATE(1685)] = 41903, - [SMALL_STATE(1686)] = 42014, - [SMALL_STATE(1687)] = 42067, - [SMALL_STATE(1688)] = 42120, - [SMALL_STATE(1689)] = 42173, - [SMALL_STATE(1690)] = 42226, - [SMALL_STATE(1691)] = 42279, - [SMALL_STATE(1692)] = 42390, - [SMALL_STATE(1693)] = 42443, - [SMALL_STATE(1694)] = 42496, - [SMALL_STATE(1695)] = 42607, - [SMALL_STATE(1696)] = 42660, - [SMALL_STATE(1697)] = 42713, - [SMALL_STATE(1698)] = 42824, - [SMALL_STATE(1699)] = 42877, - [SMALL_STATE(1700)] = 42930, - [SMALL_STATE(1701)] = 43041, - [SMALL_STATE(1702)] = 43152, - [SMALL_STATE(1703)] = 43229, - [SMALL_STATE(1704)] = 43282, - [SMALL_STATE(1705)] = 43335, - [SMALL_STATE(1706)] = 43388, - [SMALL_STATE(1707)] = 43503, - [SMALL_STATE(1708)] = 43556, - [SMALL_STATE(1709)] = 43635, - [SMALL_STATE(1710)] = 43694, - [SMALL_STATE(1711)] = 43773, - [SMALL_STATE(1712)] = 43842, - [SMALL_STATE(1713)] = 43953, - [SMALL_STATE(1714)] = 44064, - [SMALL_STATE(1715)] = 44149, - [SMALL_STATE(1716)] = 44248, - [SMALL_STATE(1717)] = 44349, - [SMALL_STATE(1718)] = 44430, - [SMALL_STATE(1719)] = 44523, - [SMALL_STATE(1720)] = 44576, - [SMALL_STATE(1721)] = 44629, - [SMALL_STATE(1722)] = 44724, - [SMALL_STATE(1723)] = 44821, - [SMALL_STATE(1724)] = 44900, - [SMALL_STATE(1725)] = 44981, - [SMALL_STATE(1726)] = 45034, - [SMALL_STATE(1727)] = 45107, - [SMALL_STATE(1728)] = 45160, - [SMALL_STATE(1729)] = 45213, - [SMALL_STATE(1730)] = 45294, - [SMALL_STATE(1731)] = 45347, - [SMALL_STATE(1732)] = 45418, - [SMALL_STATE(1733)] = 45471, - [SMALL_STATE(1734)] = 45524, - [SMALL_STATE(1735)] = 45577, - [SMALL_STATE(1736)] = 45692, - [SMALL_STATE(1737)] = 45781, - [SMALL_STATE(1738)] = 45884, - [SMALL_STATE(1739)] = 45961, - [SMALL_STATE(1740)] = 46018, - [SMALL_STATE(1741)] = 46129, - [SMALL_STATE(1742)] = 46182, - [SMALL_STATE(1743)] = 46293, - [SMALL_STATE(1744)] = 46346, - [SMALL_STATE(1745)] = 46399, - [SMALL_STATE(1746)] = 46452, - [SMALL_STATE(1747)] = 46563, - [SMALL_STATE(1748)] = 46674, - [SMALL_STATE(1749)] = 46785, - [SMALL_STATE(1750)] = 46838, - [SMALL_STATE(1751)] = 46893, - [SMALL_STATE(1752)] = 46950, - [SMALL_STATE(1753)] = 47061, - [SMALL_STATE(1754)] = 47172, - [SMALL_STATE(1755)] = 47283, - [SMALL_STATE(1756)] = 47358, - [SMALL_STATE(1757)] = 47413, - [SMALL_STATE(1758)] = 47524, - [SMALL_STATE(1759)] = 47635, - [SMALL_STATE(1760)] = 47688, - [SMALL_STATE(1761)] = 47741, - [SMALL_STATE(1762)] = 47826, - [SMALL_STATE(1763)] = 47937, - [SMALL_STATE(1764)] = 47992, - [SMALL_STATE(1765)] = 48045, - [SMALL_STATE(1766)] = 48098, - [SMALL_STATE(1767)] = 48153, - [SMALL_STATE(1768)] = 48206, - [SMALL_STATE(1769)] = 48259, - [SMALL_STATE(1770)] = 48370, - [SMALL_STATE(1771)] = 48423, - [SMALL_STATE(1772)] = 48478, - [SMALL_STATE(1773)] = 48531, - [SMALL_STATE(1774)] = 48644, - [SMALL_STATE(1775)] = 48721, - [SMALL_STATE(1776)] = 48800, - [SMALL_STATE(1777)] = 48853, - [SMALL_STATE(1778)] = 48968, - [SMALL_STATE(1779)] = 49021, - [SMALL_STATE(1780)] = 49082, - [SMALL_STATE(1781)] = 49145, - [SMALL_STATE(1782)] = 49258, - [SMALL_STATE(1783)] = 49321, - [SMALL_STATE(1784)] = 49374, - [SMALL_STATE(1785)] = 49427, - [SMALL_STATE(1786)] = 49506, - [SMALL_STATE(1787)] = 49595, - [SMALL_STATE(1788)] = 49698, - [SMALL_STATE(1789)] = 49751, - [SMALL_STATE(1790)] = 49826, - [SMALL_STATE(1791)] = 49910, - [SMALL_STATE(1792)] = 50020, - [SMALL_STATE(1793)] = 50130, - [SMALL_STATE(1794)] = 50244, - [SMALL_STATE(1795)] = 50300, - [SMALL_STATE(1796)] = 50410, - [SMALL_STATE(1797)] = 50462, - [SMALL_STATE(1798)] = 50576, - [SMALL_STATE(1799)] = 50628, - [SMALL_STATE(1800)] = 50742, - [SMALL_STATE(1801)] = 50856, - [SMALL_STATE(1802)] = 50970, - [SMALL_STATE(1803)] = 51026, - [SMALL_STATE(1804)] = 51098, - [SMALL_STATE(1805)] = 51212, - [SMALL_STATE(1806)] = 51266, - [SMALL_STATE(1807)] = 51380, - [SMALL_STATE(1808)] = 51490, - [SMALL_STATE(1809)] = 51604, - [SMALL_STATE(1810)] = 51656, - [SMALL_STATE(1811)] = 51716, - [SMALL_STATE(1812)] = 51830, - [SMALL_STATE(1813)] = 51888, - [SMALL_STATE(1814)] = 51942, - [SMALL_STATE(1815)] = 52056, - [SMALL_STATE(1816)] = 52170, - [SMALL_STATE(1817)] = 52224, - [SMALL_STATE(1818)] = 52296, - [SMALL_STATE(1819)] = 52410, - [SMALL_STATE(1820)] = 52520, - [SMALL_STATE(1821)] = 52634, - [SMALL_STATE(1822)] = 52692, - [SMALL_STATE(1823)] = 52750, - [SMALL_STATE(1824)] = 52808, - [SMALL_STATE(1825)] = 52860, - [SMALL_STATE(1826)] = 52974, - [SMALL_STATE(1827)] = 53084, - [SMALL_STATE(1828)] = 53194, - [SMALL_STATE(1829)] = 53308, - [SMALL_STATE(1830)] = 53418, - [SMALL_STATE(1831)] = 53532, - [SMALL_STATE(1832)] = 53646, - [SMALL_STATE(1833)] = 53708, - [SMALL_STATE(1834)] = 53822, - [SMALL_STATE(1835)] = 53936, - [SMALL_STATE(1836)] = 54046, - [SMALL_STATE(1837)] = 54160, - [SMALL_STATE(1838)] = 54274, - [SMALL_STATE(1839)] = 54336, - [SMALL_STATE(1840)] = 54446, - [SMALL_STATE(1841)] = 54556, - [SMALL_STATE(1842)] = 54666, - [SMALL_STATE(1843)] = 54776, - [SMALL_STATE(1844)] = 54874, - [SMALL_STATE(1845)] = 54974, - [SMALL_STATE(1846)] = 55034, - [SMALL_STATE(1847)] = 55114, - [SMALL_STATE(1848)] = 55192, - [SMALL_STATE(1849)] = 55284, - [SMALL_STATE(1850)] = 55398, - [SMALL_STATE(1851)] = 55492, - [SMALL_STATE(1852)] = 55588, - [SMALL_STATE(1853)] = 55666, - [SMALL_STATE(1854)] = 55746, - [SMALL_STATE(1855)] = 55806, - [SMALL_STATE(1856)] = 55878, - [SMALL_STATE(1857)] = 55930, - [SMALL_STATE(1858)] = 56002, - [SMALL_STATE(1859)] = 56114, - [SMALL_STATE(1860)] = 56188, - [SMALL_STATE(1861)] = 56298, - [SMALL_STATE(1862)] = 56408, - [SMALL_STATE(1863)] = 56518, - [SMALL_STATE(1864)] = 56632, - [SMALL_STATE(1865)] = 56686, - [SMALL_STATE(1866)] = 56740, - [SMALL_STATE(1867)] = 56800, - [SMALL_STATE(1868)] = 56860, - [SMALL_STATE(1869)] = 56974, - [SMALL_STATE(1870)] = 57032, - [SMALL_STATE(1871)] = 57104, - [SMALL_STATE(1872)] = 57178, - [SMALL_STATE(1873)] = 57292, - [SMALL_STATE(1874)] = 57406, - [SMALL_STATE(1875)] = 57520, - [SMALL_STATE(1876)] = 57592, - [SMALL_STATE(1877)] = 57670, - [SMALL_STATE(1878)] = 57780, - [SMALL_STATE(1879)] = 57850, - [SMALL_STATE(1880)] = 57906, - [SMALL_STATE(1881)] = 57964, - [SMALL_STATE(1882)] = 58052, - [SMALL_STATE(1883)] = 58154, - [SMALL_STATE(1884)] = 58264, - [SMALL_STATE(1885)] = 58374, - [SMALL_STATE(1886)] = 58488, - [SMALL_STATE(1887)] = 58544, - [SMALL_STATE(1888)] = 58604, - [SMALL_STATE(1889)] = 58714, - [SMALL_STATE(1890)] = 58788, - [SMALL_STATE(1891)] = 58843, - [SMALL_STATE(1892)] = 58896, - [SMALL_STATE(1893)] = 58949, - [SMALL_STATE(1894)] = 59004, - [SMALL_STATE(1895)] = 59063, - [SMALL_STATE(1896)] = 59146, - [SMALL_STATE(1897)] = 59199, - [SMALL_STATE(1898)] = 59250, - [SMALL_STATE(1899)] = 59301, - [SMALL_STATE(1900)] = 59358, - [SMALL_STATE(1901)] = 59409, - [SMALL_STATE(1902)] = 59460, - [SMALL_STATE(1903)] = 59513, - [SMALL_STATE(1904)] = 59564, - [SMALL_STATE(1905)] = 59617, - [SMALL_STATE(1906)] = 59668, - [SMALL_STATE(1907)] = 59721, - [SMALL_STATE(1908)] = 59778, - [SMALL_STATE(1909)] = 59835, - [SMALL_STATE(1910)] = 59894, - [SMALL_STATE(1911)] = 59951, - [SMALL_STATE(1912)] = 60002, - [SMALL_STATE(1913)] = 60055, - [SMALL_STATE(1914)] = 60108, - [SMALL_STATE(1915)] = 60159, - [SMALL_STATE(1916)] = 60222, - [SMALL_STATE(1917)] = 60285, - [SMALL_STATE(1918)] = 60336, - [SMALL_STATE(1919)] = 60387, - [SMALL_STATE(1920)] = 60440, - [SMALL_STATE(1921)] = 60491, - [SMALL_STATE(1922)] = 60542, - [SMALL_STATE(1923)] = 60593, - [SMALL_STATE(1924)] = 60650, - [SMALL_STATE(1925)] = 60707, - [SMALL_STATE(1926)] = 60760, - [SMALL_STATE(1927)] = 60813, - [SMALL_STATE(1928)] = 60864, - [SMALL_STATE(1929)] = 60915, - [SMALL_STATE(1930)] = 60966, - [SMALL_STATE(1931)] = 61017, - [SMALL_STATE(1932)] = 61126, - [SMALL_STATE(1933)] = 61177, - [SMALL_STATE(1934)] = 61228, - [SMALL_STATE(1935)] = 61279, - [SMALL_STATE(1936)] = 61330, - [SMALL_STATE(1937)] = 61381, - [SMALL_STATE(1938)] = 61432, - [SMALL_STATE(1939)] = 61483, - [SMALL_STATE(1940)] = 61534, - [SMALL_STATE(1941)] = 61585, - [SMALL_STATE(1942)] = 61636, - [SMALL_STATE(1943)] = 61689, - [SMALL_STATE(1944)] = 61740, - [SMALL_STATE(1945)] = 61791, - [SMALL_STATE(1946)] = 61844, - [SMALL_STATE(1947)] = 61895, - [SMALL_STATE(1948)] = 61952, - [SMALL_STATE(1949)] = 62003, - [SMALL_STATE(1950)] = 62054, - [SMALL_STATE(1951)] = 62105, - [SMALL_STATE(1952)] = 62156, - [SMALL_STATE(1953)] = 62207, - [SMALL_STATE(1954)] = 62260, - [SMALL_STATE(1955)] = 62311, - [SMALL_STATE(1956)] = 62362, - [SMALL_STATE(1957)] = 62413, - [SMALL_STATE(1958)] = 62464, - [SMALL_STATE(1959)] = 62515, - [SMALL_STATE(1960)] = 62566, - [SMALL_STATE(1961)] = 62617, - [SMALL_STATE(1962)] = 62668, - [SMALL_STATE(1963)] = 62719, - [SMALL_STATE(1964)] = 62770, - [SMALL_STATE(1965)] = 62821, - [SMALL_STATE(1966)] = 62872, - [SMALL_STATE(1967)] = 62923, - [SMALL_STATE(1968)] = 62974, - [SMALL_STATE(1969)] = 63025, - [SMALL_STATE(1970)] = 63076, - [SMALL_STATE(1971)] = 63127, - [SMALL_STATE(1972)] = 63178, - [SMALL_STATE(1973)] = 63229, - [SMALL_STATE(1974)] = 63286, - [SMALL_STATE(1975)] = 63337, - [SMALL_STATE(1976)] = 63388, - [SMALL_STATE(1977)] = 63445, - [SMALL_STATE(1978)] = 63496, - [SMALL_STATE(1979)] = 63547, - [SMALL_STATE(1980)] = 63598, - [SMALL_STATE(1981)] = 63649, - [SMALL_STATE(1982)] = 63700, - [SMALL_STATE(1983)] = 63751, - [SMALL_STATE(1984)] = 63802, - [SMALL_STATE(1985)] = 63853, - [SMALL_STATE(1986)] = 63904, - [SMALL_STATE(1987)] = 63955, - [SMALL_STATE(1988)] = 64006, - [SMALL_STATE(1989)] = 64057, - [SMALL_STATE(1990)] = 64108, - [SMALL_STATE(1991)] = 64159, - [SMALL_STATE(1992)] = 64210, - [SMALL_STATE(1993)] = 64261, - [SMALL_STATE(1994)] = 64312, - [SMALL_STATE(1995)] = 64363, - [SMALL_STATE(1996)] = 64414, - [SMALL_STATE(1997)] = 64465, - [SMALL_STATE(1998)] = 64516, - [SMALL_STATE(1999)] = 64567, - [SMALL_STATE(2000)] = 64618, - [SMALL_STATE(2001)] = 64669, - [SMALL_STATE(2002)] = 64720, - [SMALL_STATE(2003)] = 64771, - [SMALL_STATE(2004)] = 64822, - [SMALL_STATE(2005)] = 64879, - [SMALL_STATE(2006)] = 64934, - [SMALL_STATE(2007)] = 65007, - [SMALL_STATE(2008)] = 65090, - [SMALL_STATE(2009)] = 65147, - [SMALL_STATE(2010)] = 65256, - [SMALL_STATE(2011)] = 65319, - [SMALL_STATE(2012)] = 65382, - [SMALL_STATE(2013)] = 65433, - [SMALL_STATE(2014)] = 65490, - [SMALL_STATE(2015)] = 65547, - [SMALL_STATE(2016)] = 65630, - [SMALL_STATE(2017)] = 65703, - [SMALL_STATE(2018)] = 65772, - [SMALL_STATE(2019)] = 65845, - [SMALL_STATE(2020)] = 65914, - [SMALL_STATE(2021)] = 65971, - [SMALL_STATE(2022)] = 66044, - [SMALL_STATE(2023)] = 66103, - [SMALL_STATE(2024)] = 66160, - [SMALL_STATE(2025)] = 66213, - [SMALL_STATE(2026)] = 66276, - [SMALL_STATE(2027)] = 66339, - [SMALL_STATE(2028)] = 66422, - [SMALL_STATE(2029)] = 66485, - [SMALL_STATE(2030)] = 66548, - [SMALL_STATE(2031)] = 66601, - [SMALL_STATE(2032)] = 66654, - [SMALL_STATE(2033)] = 66737, - [SMALL_STATE(2034)] = 66802, - [SMALL_STATE(2035)] = 66867, - [SMALL_STATE(2036)] = 66950, - [SMALL_STATE(2037)] = 67007, - [SMALL_STATE(2038)] = 67064, - [SMALL_STATE(2039)] = 67121, - [SMALL_STATE(2040)] = 67174, - [SMALL_STATE(2041)] = 67233, - [SMALL_STATE(2042)] = 67288, - [SMALL_STATE(2043)] = 67345, - [SMALL_STATE(2044)] = 67398, - [SMALL_STATE(2045)] = 67471, - [SMALL_STATE(2046)] = 67582, - [SMALL_STATE(2047)] = 67691, - [SMALL_STATE(2048)] = 67800, - [SMALL_STATE(2049)] = 67909, - [SMALL_STATE(2050)] = 68018, - [SMALL_STATE(2051)] = 68071, - [SMALL_STATE(2052)] = 68180, - [SMALL_STATE(2053)] = 68289, - [SMALL_STATE(2054)] = 68372, - [SMALL_STATE(2055)] = 68445, - [SMALL_STATE(2056)] = 68542, - [SMALL_STATE(2057)] = 68641, - [SMALL_STATE(2058)] = 68720, - [SMALL_STATE(2059)] = 68811, - [SMALL_STATE(2060)] = 68904, - [SMALL_STATE(2061)] = 68999, - [SMALL_STATE(2062)] = 69076, - [SMALL_STATE(2063)] = 69155, - [SMALL_STATE(2064)] = 69238, - [SMALL_STATE(2065)] = 69325, - [SMALL_STATE(2066)] = 69426, - [SMALL_STATE(2067)] = 69535, - [SMALL_STATE(2068)] = 69644, - [SMALL_STATE(2069)] = 69753, - [SMALL_STATE(2070)] = 69862, - [SMALL_STATE(2071)] = 69971, - [SMALL_STATE(2072)] = 70080, - [SMALL_STATE(2073)] = 70189, - [SMALL_STATE(2074)] = 70298, - [SMALL_STATE(2075)] = 70407, - [SMALL_STATE(2076)] = 70518, - [SMALL_STATE(2077)] = 70627, - [SMALL_STATE(2078)] = 70700, - [SMALL_STATE(2079)] = 70769, - [SMALL_STATE(2080)] = 70842, - [SMALL_STATE(2081)] = 70913, - [SMALL_STATE(2082)] = 70990, - [SMALL_STATE(2083)] = 71099, - [SMALL_STATE(2084)] = 71168, - [SMALL_STATE(2085)] = 71231, - [SMALL_STATE(2086)] = 71290, - [SMALL_STATE(2087)] = 71359, - [SMALL_STATE(2088)] = 71430, - [SMALL_STATE(2089)] = 71503, - [SMALL_STATE(2090)] = 71556, - [SMALL_STATE(2091)] = 71609, - [SMALL_STATE(2092)] = 71718, - [SMALL_STATE(2093)] = 71827, - [SMALL_STATE(2094)] = 71936, - [SMALL_STATE(2095)] = 72045, - [SMALL_STATE(2096)] = 72154, - [SMALL_STATE(2097)] = 72237, - [SMALL_STATE(2098)] = 72310, - [SMALL_STATE(2099)] = 72407, - [SMALL_STATE(2100)] = 72506, - [SMALL_STATE(2101)] = 72585, - [SMALL_STATE(2102)] = 72676, - [SMALL_STATE(2103)] = 72769, - [SMALL_STATE(2104)] = 72864, - [SMALL_STATE(2105)] = 72941, - [SMALL_STATE(2106)] = 73020, - [SMALL_STATE(2107)] = 73107, - [SMALL_STATE(2108)] = 73208, - [SMALL_STATE(2109)] = 73317, - [SMALL_STATE(2110)] = 73426, - [SMALL_STATE(2111)] = 73535, - [SMALL_STATE(2112)] = 73644, - [SMALL_STATE(2113)] = 73753, - [SMALL_STATE(2114)] = 73862, - [SMALL_STATE(2115)] = 73971, - [SMALL_STATE(2116)] = 74080, - [SMALL_STATE(2117)] = 74151, - [SMALL_STATE(2118)] = 74228, - [SMALL_STATE(2119)] = 74337, - [SMALL_STATE(2120)] = 74406, - [SMALL_STATE(2121)] = 74515, - [SMALL_STATE(2122)] = 74584, - [SMALL_STATE(2123)] = 74641, - [SMALL_STATE(2124)] = 74699, - [SMALL_STATE(2125)] = 74807, - [SMALL_STATE(2126)] = 74857, - [SMALL_STATE(2127)] = 74907, - [SMALL_STATE(2128)] = 74957, - [SMALL_STATE(2129)] = 75007, - [SMALL_STATE(2130)] = 75057, - [SMALL_STATE(2131)] = 75121, - [SMALL_STATE(2132)] = 75175, - [SMALL_STATE(2133)] = 75229, - [SMALL_STATE(2134)] = 75281, - [SMALL_STATE(2135)] = 75367, - [SMALL_STATE(2136)] = 75441, - [SMALL_STATE(2137)] = 75517, - [SMALL_STATE(2138)] = 75569, - [SMALL_STATE(2139)] = 75623, - [SMALL_STATE(2140)] = 75675, - [SMALL_STATE(2141)] = 75727, - [SMALL_STATE(2142)] = 75787, - [SMALL_STATE(2143)] = 75841, - [SMALL_STATE(2144)] = 75895, - [SMALL_STATE(2145)] = 75949, - [SMALL_STATE(2146)] = 76013, - [SMALL_STATE(2147)] = 76067, - [SMALL_STATE(2148)] = 76125, - [SMALL_STATE(2149)] = 76179, - [SMALL_STATE(2150)] = 76237, - [SMALL_STATE(2151)] = 76289, - [SMALL_STATE(2152)] = 76341, - [SMALL_STATE(2153)] = 76391, - [SMALL_STATE(2154)] = 76445, - [SMALL_STATE(2155)] = 76499, - [SMALL_STATE(2156)] = 76551, - [SMALL_STATE(2157)] = 76603, - [SMALL_STATE(2158)] = 76657, - [SMALL_STATE(2159)] = 76709, - [SMALL_STATE(2160)] = 76773, - [SMALL_STATE(2161)] = 76839, - [SMALL_STATE(2162)] = 76889, - [SMALL_STATE(2163)] = 76963, - [SMALL_STATE(2164)] = 77039, - [SMALL_STATE(2165)] = 77103, - [SMALL_STATE(2166)] = 77155, - [SMALL_STATE(2167)] = 77213, - [SMALL_STATE(2168)] = 77323, - [SMALL_STATE(2169)] = 77381, - [SMALL_STATE(2170)] = 77445, - [SMALL_STATE(2171)] = 77511, - [SMALL_STATE(2172)] = 77561, - [SMALL_STATE(2173)] = 77615, - [SMALL_STATE(2174)] = 77665, - [SMALL_STATE(2175)] = 77773, - [SMALL_STATE(2176)] = 77823, - [SMALL_STATE(2177)] = 77873, - [SMALL_STATE(2178)] = 77923, - [SMALL_STATE(2179)] = 77973, - [SMALL_STATE(2180)] = 78023, - [SMALL_STATE(2181)] = 78073, - [SMALL_STATE(2182)] = 78123, - [SMALL_STATE(2183)] = 78173, - [SMALL_STATE(2184)] = 78223, - [SMALL_STATE(2185)] = 78279, - [SMALL_STATE(2186)] = 78335, - [SMALL_STATE(2187)] = 78391, - [SMALL_STATE(2188)] = 78465, - [SMALL_STATE(2189)] = 78523, - [SMALL_STATE(2190)] = 78599, - [SMALL_STATE(2191)] = 78649, - [SMALL_STATE(2192)] = 78699, - [SMALL_STATE(2193)] = 78749, - [SMALL_STATE(2194)] = 78805, - [SMALL_STATE(2195)] = 78855, - [SMALL_STATE(2196)] = 78905, - [SMALL_STATE(2197)] = 78961, - [SMALL_STATE(2198)] = 79011, - [SMALL_STATE(2199)] = 79065, - [SMALL_STATE(2200)] = 79139, - [SMALL_STATE(2201)] = 79215, - [SMALL_STATE(2202)] = 79277, - [SMALL_STATE(2203)] = 79339, - [SMALL_STATE(2204)] = 79413, - [SMALL_STATE(2205)] = 79489, - [SMALL_STATE(2206)] = 79547, - [SMALL_STATE(2207)] = 79605, - [SMALL_STATE(2208)] = 79665, - [SMALL_STATE(2209)] = 79725, - [SMALL_STATE(2210)] = 79787, - [SMALL_STATE(2211)] = 79849, - [SMALL_STATE(2212)] = 79911, - [SMALL_STATE(2213)] = 79973, - [SMALL_STATE(2214)] = 80035, - [SMALL_STATE(2215)] = 80097, - [SMALL_STATE(2216)] = 80159, - [SMALL_STATE(2217)] = 80221, - [SMALL_STATE(2218)] = 80271, - [SMALL_STATE(2219)] = 80339, - [SMALL_STATE(2220)] = 80393, - [SMALL_STATE(2221)] = 80443, - [SMALL_STATE(2222)] = 80493, - [SMALL_STATE(2223)] = 80543, - [SMALL_STATE(2224)] = 80593, - [SMALL_STATE(2225)] = 80657, - [SMALL_STATE(2226)] = 80707, - [SMALL_STATE(2227)] = 80757, - [SMALL_STATE(2228)] = 80807, - [SMALL_STATE(2229)] = 80861, - [SMALL_STATE(2230)] = 80969, - [SMALL_STATE(2231)] = 81043, - [SMALL_STATE(2232)] = 81095, - [SMALL_STATE(2233)] = 81145, - [SMALL_STATE(2234)] = 81195, - [SMALL_STATE(2235)] = 81257, - [SMALL_STATE(2236)] = 81311, - [SMALL_STATE(2237)] = 81361, - [SMALL_STATE(2238)] = 81411, - [SMALL_STATE(2239)] = 81461, - [SMALL_STATE(2240)] = 81569, - [SMALL_STATE(2241)] = 81621, - [SMALL_STATE(2242)] = 81671, - [SMALL_STATE(2243)] = 81721, - [SMALL_STATE(2244)] = 81771, - [SMALL_STATE(2245)] = 81847, - [SMALL_STATE(2246)] = 81897, - [SMALL_STATE(2247)] = 81947, - [SMALL_STATE(2248)] = 81997, - [SMALL_STATE(2249)] = 82047, - [SMALL_STATE(2250)] = 82097, - [SMALL_STATE(2251)] = 82147, - [SMALL_STATE(2252)] = 82201, - [SMALL_STATE(2253)] = 82255, - [SMALL_STATE(2254)] = 82309, - [SMALL_STATE(2255)] = 82373, - [SMALL_STATE(2256)] = 82439, - [SMALL_STATE(2257)] = 82505, - [SMALL_STATE(2258)] = 82571, - [SMALL_STATE(2259)] = 82625, - [SMALL_STATE(2260)] = 82679, - [SMALL_STATE(2261)] = 82745, - [SMALL_STATE(2262)] = 82809, - [SMALL_STATE(2263)] = 82875, - [SMALL_STATE(2264)] = 82925, - [SMALL_STATE(2265)] = 82979, - [SMALL_STATE(2266)] = 83033, - [SMALL_STATE(2267)] = 83093, - [SMALL_STATE(2268)] = 83201, - [SMALL_STATE(2269)] = 83265, - [SMALL_STATE(2270)] = 83315, - [SMALL_STATE(2271)] = 83379, - [SMALL_STATE(2272)] = 83429, - [SMALL_STATE(2273)] = 83479, - [SMALL_STATE(2274)] = 83543, - [SMALL_STATE(2275)] = 83593, - [SMALL_STATE(2276)] = 83657, - [SMALL_STATE(2277)] = 83721, - [SMALL_STATE(2278)] = 83773, - [SMALL_STATE(2279)] = 83829, - [SMALL_STATE(2280)] = 83879, - [SMALL_STATE(2281)] = 83943, - [SMALL_STATE(2282)] = 84009, - [SMALL_STATE(2283)] = 84063, - [SMALL_STATE(2284)] = 84113, - [SMALL_STATE(2285)] = 84167, - [SMALL_STATE(2286)] = 84275, - [SMALL_STATE(2287)] = 84339, - [SMALL_STATE(2288)] = 84413, - [SMALL_STATE(2289)] = 84489, - [SMALL_STATE(2290)] = 84539, - [SMALL_STATE(2291)] = 84589, - [SMALL_STATE(2292)] = 84697, - [SMALL_STATE(2293)] = 84751, - [SMALL_STATE(2294)] = 84809, - [SMALL_STATE(2295)] = 84863, - [SMALL_STATE(2296)] = 84927, - [SMALL_STATE(2297)] = 84981, - [SMALL_STATE(2298)] = 85047, - [SMALL_STATE(2299)] = 85097, - [SMALL_STATE(2300)] = 85147, - [SMALL_STATE(2301)] = 85197, - [SMALL_STATE(2302)] = 85247, - [SMALL_STATE(2303)] = 85297, - [SMALL_STATE(2304)] = 85347, - [SMALL_STATE(2305)] = 85401, - [SMALL_STATE(2306)] = 85467, - [SMALL_STATE(2307)] = 85531, - [SMALL_STATE(2308)] = 85597, - [SMALL_STATE(2309)] = 85705, - [SMALL_STATE(2310)] = 85813, - [SMALL_STATE(2311)] = 85921, - [SMALL_STATE(2312)] = 86029, - [SMALL_STATE(2313)] = 86137, - [SMALL_STATE(2314)] = 86245, - [SMALL_STATE(2315)] = 86327, - [SMALL_STATE(2316)] = 86399, - [SMALL_STATE(2317)] = 86495, - [SMALL_STATE(2318)] = 86593, - [SMALL_STATE(2319)] = 86671, - [SMALL_STATE(2320)] = 86761, - [SMALL_STATE(2321)] = 86853, - [SMALL_STATE(2322)] = 86947, - [SMALL_STATE(2323)] = 87023, - [SMALL_STATE(2324)] = 87101, - [SMALL_STATE(2325)] = 87187, - [SMALL_STATE(2326)] = 87287, - [SMALL_STATE(2327)] = 87395, - [SMALL_STATE(2328)] = 87503, - [SMALL_STATE(2329)] = 87611, - [SMALL_STATE(2330)] = 87719, - [SMALL_STATE(2331)] = 87827, - [SMALL_STATE(2332)] = 87935, - [SMALL_STATE(2333)] = 88043, - [SMALL_STATE(2334)] = 88151, - [SMALL_STATE(2335)] = 88217, - [SMALL_STATE(2336)] = 88287, - [SMALL_STATE(2337)] = 88363, - [SMALL_STATE(2338)] = 88471, - [SMALL_STATE(2339)] = 88539, - [SMALL_STATE(2340)] = 88605, - [SMALL_STATE(2341)] = 88713, - [SMALL_STATE(2342)] = 88779, - [SMALL_STATE(2343)] = 88843, - [SMALL_STATE(2344)] = 88909, - [SMALL_STATE(2345)] = 89017, - [SMALL_STATE(2346)] = 89067, - [SMALL_STATE(2347)] = 89175, - [SMALL_STATE(2348)] = 89225, - [SMALL_STATE(2349)] = 89275, - [SMALL_STATE(2350)] = 89341, - [SMALL_STATE(2351)] = 89405, - [SMALL_STATE(2352)] = 89455, - [SMALL_STATE(2353)] = 89505, - [SMALL_STATE(2354)] = 89563, - [SMALL_STATE(2355)] = 89621, - [SMALL_STATE(2356)] = 89729, - [SMALL_STATE(2357)] = 89793, - [SMALL_STATE(2358)] = 89901, - [SMALL_STATE(2359)] = 90009, - [SMALL_STATE(2360)] = 90117, - [SMALL_STATE(2361)] = 90225, - [SMALL_STATE(2362)] = 90333, - [SMALL_STATE(2363)] = 90415, - [SMALL_STATE(2364)] = 90487, - [SMALL_STATE(2365)] = 90583, - [SMALL_STATE(2366)] = 90681, - [SMALL_STATE(2367)] = 90759, - [SMALL_STATE(2368)] = 90849, - [SMALL_STATE(2369)] = 90941, - [SMALL_STATE(2370)] = 91035, - [SMALL_STATE(2371)] = 91111, - [SMALL_STATE(2372)] = 91189, - [SMALL_STATE(2373)] = 91275, - [SMALL_STATE(2374)] = 91375, - [SMALL_STATE(2375)] = 91483, - [SMALL_STATE(2376)] = 91591, - [SMALL_STATE(2377)] = 91699, - [SMALL_STATE(2378)] = 91807, - [SMALL_STATE(2379)] = 91915, - [SMALL_STATE(2380)] = 92023, - [SMALL_STATE(2381)] = 92131, - [SMALL_STATE(2382)] = 92239, - [SMALL_STATE(2383)] = 92309, - [SMALL_STATE(2384)] = 92385, - [SMALL_STATE(2385)] = 92493, - [SMALL_STATE(2386)] = 92561, - [SMALL_STATE(2387)] = 92613, - [SMALL_STATE(2388)] = 92667, - [SMALL_STATE(2389)] = 92726, - [SMALL_STATE(2390)] = 92831, - [SMALL_STATE(2391)] = 92890, - [SMALL_STATE(2392)] = 92949, - [SMALL_STATE(2393)] = 93026, - [SMALL_STATE(2394)] = 93077, - [SMALL_STATE(2395)] = 93152, - [SMALL_STATE(2396)] = 93207, - [SMALL_STATE(2397)] = 93312, - [SMALL_STATE(2398)] = 93367, - [SMALL_STATE(2399)] = 93424, - [SMALL_STATE(2400)] = 93483, - [SMALL_STATE(2401)] = 93552, - [SMALL_STATE(2402)] = 93621, - [SMALL_STATE(2403)] = 93680, - [SMALL_STATE(2404)] = 93739, - [SMALL_STATE(2405)] = 93790, - [SMALL_STATE(2406)] = 93849, - [SMALL_STATE(2407)] = 93900, - [SMALL_STATE(2408)] = 93955, - [SMALL_STATE(2409)] = 94060, - [SMALL_STATE(2410)] = 94119, - [SMALL_STATE(2411)] = 94178, + [SMALL_STATE(1335)] = 16139, + [SMALL_STATE(1336)] = 16208, + [SMALL_STATE(1337)] = 16275, + [SMALL_STATE(1338)] = 16344, + [SMALL_STATE(1339)] = 16411, + [SMALL_STATE(1340)] = 16480, + [SMALL_STATE(1341)] = 16549, + [SMALL_STATE(1342)] = 16618, + [SMALL_STATE(1343)] = 16691, + [SMALL_STATE(1344)] = 16762, + [SMALL_STATE(1345)] = 16833, + [SMALL_STATE(1346)] = 16899, + [SMALL_STATE(1347)] = 17015, + [SMALL_STATE(1348)] = 17131, + [SMALL_STATE(1349)] = 17247, + [SMALL_STATE(1350)] = 17315, + [SMALL_STATE(1351)] = 17431, + [SMALL_STATE(1352)] = 17499, + [SMALL_STATE(1353)] = 17615, + [SMALL_STATE(1354)] = 17731, + [SMALL_STATE(1355)] = 17847, + [SMALL_STATE(1356)] = 17963, + [SMALL_STATE(1357)] = 18031, + [SMALL_STATE(1358)] = 18099, + [SMALL_STATE(1359)] = 18215, + [SMALL_STATE(1360)] = 18331, + [SMALL_STATE(1361)] = 18447, + [SMALL_STATE(1362)] = 18515, + [SMALL_STATE(1363)] = 18631, + [SMALL_STATE(1364)] = 18699, + [SMALL_STATE(1365)] = 18815, + [SMALL_STATE(1366)] = 18883, + [SMALL_STATE(1367)] = 18951, + [SMALL_STATE(1368)] = 19067, + [SMALL_STATE(1369)] = 19135, + [SMALL_STATE(1370)] = 19201, + [SMALL_STATE(1371)] = 19269, + [SMALL_STATE(1372)] = 19337, + [SMALL_STATE(1373)] = 19453, + [SMALL_STATE(1374)] = 19523, + [SMALL_STATE(1375)] = 19591, + [SMALL_STATE(1376)] = 19659, + [SMALL_STATE(1377)] = 19727, + [SMALL_STATE(1378)] = 19843, + [SMALL_STATE(1379)] = 19959, + [SMALL_STATE(1380)] = 20075, + [SMALL_STATE(1381)] = 20143, + [SMALL_STATE(1382)] = 20211, + [SMALL_STATE(1383)] = 20279, + [SMALL_STATE(1384)] = 20347, + [SMALL_STATE(1385)] = 20415, + [SMALL_STATE(1386)] = 20483, + [SMALL_STATE(1387)] = 20551, + [SMALL_STATE(1388)] = 20616, + [SMALL_STATE(1389)] = 20681, + [SMALL_STATE(1390)] = 20746, + [SMALL_STATE(1391)] = 20811, + [SMALL_STATE(1392)] = 20876, + [SMALL_STATE(1393)] = 20941, + [SMALL_STATE(1394)] = 21006, + [SMALL_STATE(1395)] = 21071, + [SMALL_STATE(1396)] = 21136, + [SMALL_STATE(1397)] = 21248, + [SMALL_STATE(1398)] = 21360, + [SMALL_STATE(1399)] = 21472, + [SMALL_STATE(1400)] = 21584, + [SMALL_STATE(1401)] = 21696, + [SMALL_STATE(1402)] = 21808, + [SMALL_STATE(1403)] = 21920, + [SMALL_STATE(1404)] = 22031, + [SMALL_STATE(1405)] = 22150, + [SMALL_STATE(1406)] = 22261, + [SMALL_STATE(1407)] = 22372, + [SMALL_STATE(1408)] = 22483, + [SMALL_STATE(1409)] = 22594, + [SMALL_STATE(1410)] = 22705, + [SMALL_STATE(1411)] = 22824, + [SMALL_STATE(1412)] = 22935, + [SMALL_STATE(1413)] = 23054, + [SMALL_STATE(1414)] = 23165, + [SMALL_STATE(1415)] = 23284, + [SMALL_STATE(1416)] = 23395, + [SMALL_STATE(1417)] = 23506, + [SMALL_STATE(1418)] = 23625, + [SMALL_STATE(1419)] = 23736, + [SMALL_STATE(1420)] = 23838, + [SMALL_STATE(1421)] = 23940, + [SMALL_STATE(1422)] = 24042, + [SMALL_STATE(1423)] = 24144, + [SMALL_STATE(1424)] = 24246, + [SMALL_STATE(1425)] = 24348, + [SMALL_STATE(1426)] = 24450, + [SMALL_STATE(1427)] = 24561, + [SMALL_STATE(1428)] = 24670, + [SMALL_STATE(1429)] = 24727, + [SMALL_STATE(1430)] = 24784, + [SMALL_STATE(1431)] = 24856, + [SMALL_STATE(1432)] = 24922, + [SMALL_STATE(1433)] = 24988, + [SMALL_STATE(1434)] = 25054, + [SMALL_STATE(1435)] = 25148, + [SMALL_STATE(1436)] = 25212, + [SMALL_STATE(1437)] = 25269, + [SMALL_STATE(1438)] = 25324, + [SMALL_STATE(1439)] = 25379, + [SMALL_STATE(1440)] = 25438, + [SMALL_STATE(1441)] = 25499, + [SMALL_STATE(1442)] = 25558, + [SMALL_STATE(1443)] = 25619, + [SMALL_STATE(1444)] = 25680, + [SMALL_STATE(1445)] = 25741, + [SMALL_STATE(1446)] = 25796, + [SMALL_STATE(1447)] = 25851, + [SMALL_STATE(1448)] = 25912, + [SMALL_STATE(1449)] = 25967, + [SMALL_STATE(1450)] = 26024, + [SMALL_STATE(1451)] = 26081, + [SMALL_STATE(1452)] = 26136, + [SMALL_STATE(1453)] = 26195, + [SMALL_STATE(1454)] = 26250, + [SMALL_STATE(1455)] = 26362, + [SMALL_STATE(1456)] = 26416, + [SMALL_STATE(1457)] = 26472, + [SMALL_STATE(1458)] = 26526, + [SMALL_STATE(1459)] = 26586, + [SMALL_STATE(1460)] = 26640, + [SMALL_STATE(1461)] = 26694, + [SMALL_STATE(1462)] = 26748, + [SMALL_STATE(1463)] = 26802, + [SMALL_STATE(1464)] = 26856, + [SMALL_STATE(1465)] = 26912, + [SMALL_STATE(1466)] = 26966, + [SMALL_STATE(1467)] = 27020, + [SMALL_STATE(1468)] = 27074, + [SMALL_STATE(1469)] = 27136, + [SMALL_STATE(1470)] = 27190, + [SMALL_STATE(1471)] = 27244, + [SMALL_STATE(1472)] = 27298, + [SMALL_STATE(1473)] = 27352, + [SMALL_STATE(1474)] = 27406, + [SMALL_STATE(1475)] = 27460, + [SMALL_STATE(1476)] = 27514, + [SMALL_STATE(1477)] = 27568, + [SMALL_STATE(1478)] = 27622, + [SMALL_STATE(1479)] = 27676, + [SMALL_STATE(1480)] = 27750, + [SMALL_STATE(1481)] = 27804, + [SMALL_STATE(1482)] = 27858, + [SMALL_STATE(1483)] = 27912, + [SMALL_STATE(1484)] = 27966, + [SMALL_STATE(1485)] = 28020, + [SMALL_STATE(1486)] = 28080, + [SMALL_STATE(1487)] = 28140, + [SMALL_STATE(1488)] = 28200, + [SMALL_STATE(1489)] = 28280, + [SMALL_STATE(1490)] = 28334, + [SMALL_STATE(1491)] = 28446, + [SMALL_STATE(1492)] = 28500, + [SMALL_STATE(1493)] = 28560, + [SMALL_STATE(1494)] = 28614, + [SMALL_STATE(1495)] = 28668, + [SMALL_STATE(1496)] = 28722, + [SMALL_STATE(1497)] = 28776, + [SMALL_STATE(1498)] = 28830, + [SMALL_STATE(1499)] = 28884, + [SMALL_STATE(1500)] = 28938, + [SMALL_STATE(1501)] = 28994, + [SMALL_STATE(1502)] = 29048, + [SMALL_STATE(1503)] = 29120, + [SMALL_STATE(1504)] = 29174, + [SMALL_STATE(1505)] = 29228, + [SMALL_STATE(1506)] = 29282, + [SMALL_STATE(1507)] = 29368, + [SMALL_STATE(1508)] = 29480, + [SMALL_STATE(1509)] = 29592, + [SMALL_STATE(1510)] = 29646, + [SMALL_STATE(1511)] = 29700, + [SMALL_STATE(1512)] = 29820, + [SMALL_STATE(1513)] = 29874, + [SMALL_STATE(1514)] = 29932, + [SMALL_STATE(1515)] = 29986, + [SMALL_STATE(1516)] = 30040, + [SMALL_STATE(1517)] = 30094, + [SMALL_STATE(1518)] = 30148, + [SMALL_STATE(1519)] = 30260, + [SMALL_STATE(1520)] = 30314, + [SMALL_STATE(1521)] = 30368, + [SMALL_STATE(1522)] = 30422, + [SMALL_STATE(1523)] = 30480, + [SMALL_STATE(1524)] = 30534, + [SMALL_STATE(1525)] = 30588, + [SMALL_STATE(1526)] = 30700, + [SMALL_STATE(1527)] = 30754, + [SMALL_STATE(1528)] = 30866, + [SMALL_STATE(1529)] = 30920, + [SMALL_STATE(1530)] = 30974, + [SMALL_STATE(1531)] = 31060, + [SMALL_STATE(1532)] = 31120, + [SMALL_STATE(1533)] = 31240, + [SMALL_STATE(1534)] = 31296, + [SMALL_STATE(1535)] = 31372, + [SMALL_STATE(1536)] = 31428, + [SMALL_STATE(1537)] = 31488, + [SMALL_STATE(1538)] = 31600, + [SMALL_STATE(1539)] = 31700, + [SMALL_STATE(1540)] = 31754, + [SMALL_STATE(1541)] = 31808, + [SMALL_STATE(1542)] = 31910, + [SMALL_STATE(1543)] = 31992, + [SMALL_STATE(1544)] = 32086, + [SMALL_STATE(1545)] = 32182, + [SMALL_STATE(1546)] = 32236, + [SMALL_STATE(1547)] = 32290, + [SMALL_STATE(1548)] = 32388, + [SMALL_STATE(1549)] = 32468, + [SMALL_STATE(1550)] = 32554, + [SMALL_STATE(1551)] = 32608, + [SMALL_STATE(1552)] = 32690, + [SMALL_STATE(1553)] = 32776, + [SMALL_STATE(1554)] = 32832, + [SMALL_STATE(1555)] = 32886, + [SMALL_STATE(1556)] = 32942, + [SMALL_STATE(1557)] = 32996, + [SMALL_STATE(1558)] = 33086, + [SMALL_STATE(1559)] = 33190, + [SMALL_STATE(1560)] = 33250, + [SMALL_STATE(1561)] = 33362, + [SMALL_STATE(1562)] = 33474, + [SMALL_STATE(1563)] = 33594, + [SMALL_STATE(1564)] = 33654, + [SMALL_STATE(1565)] = 33714, + [SMALL_STATE(1566)] = 33770, + [SMALL_STATE(1567)] = 33824, + [SMALL_STATE(1568)] = 33910, + [SMALL_STATE(1569)] = 33964, + [SMALL_STATE(1570)] = 34018, + [SMALL_STATE(1571)] = 34072, + [SMALL_STATE(1572)] = 34128, + [SMALL_STATE(1573)] = 34240, + [SMALL_STATE(1574)] = 34352, + [SMALL_STATE(1575)] = 34464, + [SMALL_STATE(1576)] = 34576, + [SMALL_STATE(1577)] = 34632, + [SMALL_STATE(1578)] = 34686, + [SMALL_STATE(1579)] = 34798, + [SMALL_STATE(1580)] = 34852, + [SMALL_STATE(1581)] = 34906, + [SMALL_STATE(1582)] = 34962, + [SMALL_STATE(1583)] = 35016, + [SMALL_STATE(1584)] = 35070, + [SMALL_STATE(1585)] = 35124, + [SMALL_STATE(1586)] = 35186, + [SMALL_STATE(1587)] = 35246, + [SMALL_STATE(1588)] = 35306, + [SMALL_STATE(1589)] = 35362, + [SMALL_STATE(1590)] = 35448, + [SMALL_STATE(1591)] = 35504, + [SMALL_STATE(1592)] = 35566, + [SMALL_STATE(1593)] = 35628, + [SMALL_STATE(1594)] = 35686, + [SMALL_STATE(1595)] = 35740, + [SMALL_STATE(1596)] = 35794, + [SMALL_STATE(1597)] = 35852, + [SMALL_STATE(1598)] = 35906, + [SMALL_STATE(1599)] = 35960, + [SMALL_STATE(1600)] = 36080, + [SMALL_STATE(1601)] = 36134, + [SMALL_STATE(1602)] = 36188, + [SMALL_STATE(1603)] = 36242, + [SMALL_STATE(1604)] = 36300, + [SMALL_STATE(1605)] = 36354, + [SMALL_STATE(1606)] = 36408, + [SMALL_STATE(1607)] = 36462, + [SMALL_STATE(1608)] = 36516, + [SMALL_STATE(1609)] = 36570, + [SMALL_STATE(1610)] = 36624, + [SMALL_STATE(1611)] = 36678, + [SMALL_STATE(1612)] = 36734, + [SMALL_STATE(1613)] = 36788, + [SMALL_STATE(1614)] = 36842, + [SMALL_STATE(1615)] = 36895, + [SMALL_STATE(1616)] = 36988, + [SMALL_STATE(1617)] = 37049, + [SMALL_STATE(1618)] = 37144, + [SMALL_STATE(1619)] = 37259, + [SMALL_STATE(1620)] = 37312, + [SMALL_STATE(1621)] = 37365, + [SMALL_STATE(1622)] = 37476, + [SMALL_STATE(1623)] = 37529, + [SMALL_STATE(1624)] = 37582, + [SMALL_STATE(1625)] = 37679, + [SMALL_STATE(1626)] = 37792, + [SMALL_STATE(1627)] = 37845, + [SMALL_STATE(1628)] = 37924, + [SMALL_STATE(1629)] = 37977, + [SMALL_STATE(1630)] = 38058, + [SMALL_STATE(1631)] = 38111, + [SMALL_STATE(1632)] = 38164, + [SMALL_STATE(1633)] = 38241, + [SMALL_STATE(1634)] = 38294, + [SMALL_STATE(1635)] = 38347, + [SMALL_STATE(1636)] = 38420, + [SMALL_STATE(1637)] = 38499, + [SMALL_STATE(1638)] = 38610, + [SMALL_STATE(1639)] = 38663, + [SMALL_STATE(1640)] = 38716, + [SMALL_STATE(1641)] = 38795, + [SMALL_STATE(1642)] = 38848, + [SMALL_STATE(1643)] = 38901, + [SMALL_STATE(1644)] = 38954, + [SMALL_STATE(1645)] = 39025, + [SMALL_STATE(1646)] = 39078, + [SMALL_STATE(1647)] = 39131, + [SMALL_STATE(1648)] = 39184, + [SMALL_STATE(1649)] = 39237, + [SMALL_STATE(1650)] = 39292, + [SMALL_STATE(1651)] = 39345, + [SMALL_STATE(1652)] = 39456, + [SMALL_STATE(1653)] = 39571, + [SMALL_STATE(1654)] = 39628, + [SMALL_STATE(1655)] = 39681, + [SMALL_STATE(1656)] = 39758, + [SMALL_STATE(1657)] = 39811, + [SMALL_STATE(1658)] = 39922, + [SMALL_STATE(1659)] = 39999, + [SMALL_STATE(1660)] = 40084, + [SMALL_STATE(1661)] = 40195, + [SMALL_STATE(1662)] = 40274, + [SMALL_STATE(1663)] = 40353, + [SMALL_STATE(1664)] = 40428, + [SMALL_STATE(1665)] = 40483, + [SMALL_STATE(1666)] = 40582, + [SMALL_STATE(1667)] = 40661, + [SMALL_STATE(1668)] = 40772, + [SMALL_STATE(1669)] = 40831, + [SMALL_STATE(1670)] = 40946, + [SMALL_STATE(1671)] = 41005, + [SMALL_STATE(1672)] = 41116, + [SMALL_STATE(1673)] = 41217, + [SMALL_STATE(1674)] = 41298, + [SMALL_STATE(1675)] = 41391, + [SMALL_STATE(1676)] = 41486, + [SMALL_STATE(1677)] = 41539, + [SMALL_STATE(1678)] = 41592, + [SMALL_STATE(1679)] = 41645, + [SMALL_STATE(1680)] = 41698, + [SMALL_STATE(1681)] = 41795, + [SMALL_STATE(1682)] = 41874, + [SMALL_STATE(1683)] = 41927, + [SMALL_STATE(1684)] = 41980, + [SMALL_STATE(1685)] = 42033, + [SMALL_STATE(1686)] = 42086, + [SMALL_STATE(1687)] = 42139, + [SMALL_STATE(1688)] = 42192, + [SMALL_STATE(1689)] = 42273, + [SMALL_STATE(1690)] = 42326, + [SMALL_STATE(1691)] = 42379, + [SMALL_STATE(1692)] = 42442, + [SMALL_STATE(1693)] = 42505, + [SMALL_STATE(1694)] = 42568, + [SMALL_STATE(1695)] = 42621, + [SMALL_STATE(1696)] = 42732, + [SMALL_STATE(1697)] = 42787, + [SMALL_STATE(1698)] = 42844, + [SMALL_STATE(1699)] = 42921, + [SMALL_STATE(1700)] = 42992, + [SMALL_STATE(1701)] = 43045, + [SMALL_STATE(1702)] = 43098, + [SMALL_STATE(1703)] = 43151, + [SMALL_STATE(1704)] = 43230, + [SMALL_STATE(1705)] = 43283, + [SMALL_STATE(1706)] = 43398, + [SMALL_STATE(1707)] = 43453, + [SMALL_STATE(1708)] = 43510, + [SMALL_STATE(1709)] = 43563, + [SMALL_STATE(1710)] = 43644, + [SMALL_STATE(1711)] = 43697, + [SMALL_STATE(1712)] = 43750, + [SMALL_STATE(1713)] = 43803, + [SMALL_STATE(1714)] = 43856, + [SMALL_STATE(1715)] = 43909, + [SMALL_STATE(1716)] = 43962, + [SMALL_STATE(1717)] = 44017, + [SMALL_STATE(1718)] = 44106, + [SMALL_STATE(1719)] = 44159, + [SMALL_STATE(1720)] = 44228, + [SMALL_STATE(1721)] = 44339, + [SMALL_STATE(1722)] = 44392, + [SMALL_STATE(1723)] = 44495, + [SMALL_STATE(1724)] = 44548, + [SMALL_STATE(1725)] = 44601, + [SMALL_STATE(1726)] = 44654, + [SMALL_STATE(1727)] = 44707, + [SMALL_STATE(1728)] = 44780, + [SMALL_STATE(1729)] = 44833, + [SMALL_STATE(1730)] = 44886, + [SMALL_STATE(1731)] = 44939, + [SMALL_STATE(1732)] = 44992, + [SMALL_STATE(1733)] = 45045, + [SMALL_STATE(1734)] = 45126, + [SMALL_STATE(1735)] = 45179, + [SMALL_STATE(1736)] = 45290, + [SMALL_STATE(1737)] = 45343, + [SMALL_STATE(1738)] = 45454, + [SMALL_STATE(1739)] = 45565, + [SMALL_STATE(1740)] = 45676, + [SMALL_STATE(1741)] = 45787, + [SMALL_STATE(1742)] = 45872, + [SMALL_STATE(1743)] = 45983, + [SMALL_STATE(1744)] = 46060, + [SMALL_STATE(1745)] = 46113, + [SMALL_STATE(1746)] = 46166, + [SMALL_STATE(1747)] = 46255, + [SMALL_STATE(1748)] = 46370, + [SMALL_STATE(1749)] = 46473, + [SMALL_STATE(1750)] = 46552, + [SMALL_STATE(1751)] = 46667, + [SMALL_STATE(1752)] = 46780, + [SMALL_STATE(1753)] = 46891, + [SMALL_STATE(1754)] = 46944, + [SMALL_STATE(1755)] = 46997, + [SMALL_STATE(1756)] = 47076, + [SMALL_STATE(1757)] = 47129, + [SMALL_STATE(1758)] = 47182, + [SMALL_STATE(1759)] = 47235, + [SMALL_STATE(1760)] = 47346, + [SMALL_STATE(1761)] = 47457, + [SMALL_STATE(1762)] = 47516, + [SMALL_STATE(1763)] = 47627, + [SMALL_STATE(1764)] = 47680, + [SMALL_STATE(1765)] = 47791, + [SMALL_STATE(1766)] = 47844, + [SMALL_STATE(1767)] = 47955, + [SMALL_STATE(1768)] = 48008, + [SMALL_STATE(1769)] = 48119, + [SMALL_STATE(1770)] = 48172, + [SMALL_STATE(1771)] = 48251, + [SMALL_STATE(1772)] = 48304, + [SMALL_STATE(1773)] = 48415, + [SMALL_STATE(1774)] = 48526, + [SMALL_STATE(1775)] = 48579, + [SMALL_STATE(1776)] = 48632, + [SMALL_STATE(1777)] = 48685, + [SMALL_STATE(1778)] = 48738, + [SMALL_STATE(1779)] = 48849, + [SMALL_STATE(1780)] = 48960, + [SMALL_STATE(1781)] = 49071, + [SMALL_STATE(1782)] = 49124, + [SMALL_STATE(1783)] = 49177, + [SMALL_STATE(1784)] = 49288, + [SMALL_STATE(1785)] = 49341, + [SMALL_STATE(1786)] = 49394, + [SMALL_STATE(1787)] = 49469, + [SMALL_STATE(1788)] = 49568, + [SMALL_STATE(1789)] = 49683, + [SMALL_STATE(1790)] = 49784, + [SMALL_STATE(1791)] = 49895, + [SMALL_STATE(1792)] = 49955, + [SMALL_STATE(1793)] = 50065, + [SMALL_STATE(1794)] = 50175, + [SMALL_STATE(1795)] = 50233, + [SMALL_STATE(1796)] = 50291, + [SMALL_STATE(1797)] = 50405, + [SMALL_STATE(1798)] = 50457, + [SMALL_STATE(1799)] = 50515, + [SMALL_STATE(1800)] = 50571, + [SMALL_STATE(1801)] = 50629, + [SMALL_STATE(1802)] = 50681, + [SMALL_STATE(1803)] = 50795, + [SMALL_STATE(1804)] = 50905, + [SMALL_STATE(1805)] = 51019, + [SMALL_STATE(1806)] = 51079, + [SMALL_STATE(1807)] = 51189, + [SMALL_STATE(1808)] = 51303, + [SMALL_STATE(1809)] = 51355, + [SMALL_STATE(1810)] = 51427, + [SMALL_STATE(1811)] = 51481, + [SMALL_STATE(1812)] = 51535, + [SMALL_STATE(1813)] = 51593, + [SMALL_STATE(1814)] = 51665, + [SMALL_STATE(1815)] = 51775, + [SMALL_STATE(1816)] = 51829, + [SMALL_STATE(1817)] = 51883, + [SMALL_STATE(1818)] = 51937, + [SMALL_STATE(1819)] = 51993, + [SMALL_STATE(1820)] = 52049, + [SMALL_STATE(1821)] = 52105, + [SMALL_STATE(1822)] = 52215, + [SMALL_STATE(1823)] = 52275, + [SMALL_STATE(1824)] = 52335, + [SMALL_STATE(1825)] = 52409, + [SMALL_STATE(1826)] = 52521, + [SMALL_STATE(1827)] = 52583, + [SMALL_STATE(1828)] = 52645, + [SMALL_STATE(1829)] = 52755, + [SMALL_STATE(1830)] = 52869, + [SMALL_STATE(1831)] = 52921, + [SMALL_STATE(1832)] = 52981, + [SMALL_STATE(1833)] = 53095, + [SMALL_STATE(1834)] = 53209, + [SMALL_STATE(1835)] = 53323, + [SMALL_STATE(1836)] = 53395, + [SMALL_STATE(1837)] = 53509, + [SMALL_STATE(1838)] = 53623, + [SMALL_STATE(1839)] = 53683, + [SMALL_STATE(1840)] = 53797, + [SMALL_STATE(1841)] = 53869, + [SMALL_STATE(1842)] = 53927, + [SMALL_STATE(1843)] = 54041, + [SMALL_STATE(1844)] = 54113, + [SMALL_STATE(1845)] = 54227, + [SMALL_STATE(1846)] = 54341, + [SMALL_STATE(1847)] = 54455, + [SMALL_STATE(1848)] = 54569, + [SMALL_STATE(1849)] = 54683, + [SMALL_STATE(1850)] = 54797, + [SMALL_STATE(1851)] = 54911, + [SMALL_STATE(1852)] = 55025, + [SMALL_STATE(1853)] = 55099, + [SMALL_STATE(1854)] = 55213, + [SMALL_STATE(1855)] = 55265, + [SMALL_STATE(1856)] = 55343, + [SMALL_STATE(1857)] = 55457, + [SMALL_STATE(1858)] = 55567, + [SMALL_STATE(1859)] = 55677, + [SMALL_STATE(1860)] = 55787, + [SMALL_STATE(1861)] = 55897, + [SMALL_STATE(1862)] = 56007, + [SMALL_STATE(1863)] = 56091, + [SMALL_STATE(1864)] = 56165, + [SMALL_STATE(1865)] = 56263, + [SMALL_STATE(1866)] = 56363, + [SMALL_STATE(1867)] = 56443, + [SMALL_STATE(1868)] = 56535, + [SMALL_STATE(1869)] = 56629, + [SMALL_STATE(1870)] = 56725, + [SMALL_STATE(1871)] = 56803, + [SMALL_STATE(1872)] = 56883, + [SMALL_STATE(1873)] = 56971, + [SMALL_STATE(1874)] = 57073, + [SMALL_STATE(1875)] = 57183, + [SMALL_STATE(1876)] = 57293, + [SMALL_STATE(1877)] = 57403, + [SMALL_STATE(1878)] = 57513, + [SMALL_STATE(1879)] = 57623, + [SMALL_STATE(1880)] = 57733, + [SMALL_STATE(1881)] = 57843, + [SMALL_STATE(1882)] = 57953, + [SMALL_STATE(1883)] = 58067, + [SMALL_STATE(1884)] = 58181, + [SMALL_STATE(1885)] = 58295, + [SMALL_STATE(1886)] = 58409, + [SMALL_STATE(1887)] = 58523, + [SMALL_STATE(1888)] = 58637, + [SMALL_STATE(1889)] = 58709, + [SMALL_STATE(1890)] = 58787, + [SMALL_STATE(1891)] = 58857, + [SMALL_STATE(1892)] = 58912, + [SMALL_STATE(1893)] = 58969, + [SMALL_STATE(1894)] = 59020, + [SMALL_STATE(1895)] = 59071, + [SMALL_STATE(1896)] = 59128, + [SMALL_STATE(1897)] = 59179, + [SMALL_STATE(1898)] = 59230, + [SMALL_STATE(1899)] = 59281, + [SMALL_STATE(1900)] = 59332, + [SMALL_STATE(1901)] = 59383, + [SMALL_STATE(1902)] = 59434, + [SMALL_STATE(1903)] = 59485, + [SMALL_STATE(1904)] = 59536, + [SMALL_STATE(1905)] = 59587, + [SMALL_STATE(1906)] = 59638, + [SMALL_STATE(1907)] = 59689, + [SMALL_STATE(1908)] = 59740, + [SMALL_STATE(1909)] = 59791, + [SMALL_STATE(1910)] = 59842, + [SMALL_STATE(1911)] = 59893, + [SMALL_STATE(1912)] = 59944, + [SMALL_STATE(1913)] = 59995, + [SMALL_STATE(1914)] = 60046, + [SMALL_STATE(1915)] = 60097, + [SMALL_STATE(1916)] = 60148, + [SMALL_STATE(1917)] = 60199, + [SMALL_STATE(1918)] = 60250, + [SMALL_STATE(1919)] = 60301, + [SMALL_STATE(1920)] = 60352, + [SMALL_STATE(1921)] = 60403, + [SMALL_STATE(1922)] = 60454, + [SMALL_STATE(1923)] = 60505, + [SMALL_STATE(1924)] = 60562, + [SMALL_STATE(1925)] = 60617, + [SMALL_STATE(1926)] = 60726, + [SMALL_STATE(1927)] = 60809, + [SMALL_STATE(1928)] = 60866, + [SMALL_STATE(1929)] = 60919, + [SMALL_STATE(1930)] = 60970, + [SMALL_STATE(1931)] = 61033, + [SMALL_STATE(1932)] = 61086, + [SMALL_STATE(1933)] = 61137, + [SMALL_STATE(1934)] = 61200, + [SMALL_STATE(1935)] = 61253, + [SMALL_STATE(1936)] = 61304, + [SMALL_STATE(1937)] = 61355, + [SMALL_STATE(1938)] = 61406, + [SMALL_STATE(1939)] = 61459, + [SMALL_STATE(1940)] = 61516, + [SMALL_STATE(1941)] = 61573, + [SMALL_STATE(1942)] = 61630, + [SMALL_STATE(1943)] = 61683, + [SMALL_STATE(1944)] = 61736, + [SMALL_STATE(1945)] = 61819, + [SMALL_STATE(1946)] = 61876, + [SMALL_STATE(1947)] = 61935, + [SMALL_STATE(1948)] = 61986, + [SMALL_STATE(1949)] = 62059, + [SMALL_STATE(1950)] = 62168, + [SMALL_STATE(1951)] = 62227, + [SMALL_STATE(1952)] = 62284, + [SMALL_STATE(1953)] = 62339, + [SMALL_STATE(1954)] = 62396, + [SMALL_STATE(1955)] = 62469, + [SMALL_STATE(1956)] = 62538, + [SMALL_STATE(1957)] = 62595, + [SMALL_STATE(1958)] = 62668, + [SMALL_STATE(1959)] = 62737, + [SMALL_STATE(1960)] = 62796, + [SMALL_STATE(1961)] = 62869, + [SMALL_STATE(1962)] = 62932, + [SMALL_STATE(1963)] = 62995, + [SMALL_STATE(1964)] = 63078, + [SMALL_STATE(1965)] = 63141, + [SMALL_STATE(1966)] = 63204, + [SMALL_STATE(1967)] = 63257, + [SMALL_STATE(1968)] = 63310, + [SMALL_STATE(1969)] = 63393, + [SMALL_STATE(1970)] = 63458, + [SMALL_STATE(1971)] = 63523, + [SMALL_STATE(1972)] = 63606, + [SMALL_STATE(1973)] = 63663, + [SMALL_STATE(1974)] = 63720, + [SMALL_STATE(1975)] = 63777, + [SMALL_STATE(1976)] = 63832, + [SMALL_STATE(1977)] = 63883, + [SMALL_STATE(1978)] = 63936, + [SMALL_STATE(1979)] = 63989, + [SMALL_STATE(1980)] = 64062, + [SMALL_STATE(1981)] = 64119, + [SMALL_STATE(1982)] = 64172, + [SMALL_STATE(1983)] = 64281, + [SMALL_STATE(1984)] = 64390, + [SMALL_STATE(1985)] = 64499, + [SMALL_STATE(1986)] = 64552, + [SMALL_STATE(1987)] = 64661, + [SMALL_STATE(1988)] = 64712, + [SMALL_STATE(1989)] = 64821, + [SMALL_STATE(1990)] = 64930, + [SMALL_STATE(1991)] = 65013, + [SMALL_STATE(1992)] = 65076, + [SMALL_STATE(1993)] = 65149, + [SMALL_STATE(1994)] = 65212, + [SMALL_STATE(1995)] = 65309, + [SMALL_STATE(1996)] = 65408, + [SMALL_STATE(1997)] = 65487, + [SMALL_STATE(1998)] = 65578, + [SMALL_STATE(1999)] = 65671, + [SMALL_STATE(2000)] = 65766, + [SMALL_STATE(2001)] = 65843, + [SMALL_STATE(2002)] = 65922, + [SMALL_STATE(2003)] = 66009, + [SMALL_STATE(2004)] = 66110, + [SMALL_STATE(2005)] = 66161, + [SMALL_STATE(2006)] = 66270, + [SMALL_STATE(2007)] = 66379, + [SMALL_STATE(2008)] = 66430, + [SMALL_STATE(2009)] = 66489, + [SMALL_STATE(2010)] = 66598, + [SMALL_STATE(2011)] = 66707, + [SMALL_STATE(2012)] = 66816, + [SMALL_STATE(2013)] = 66925, + [SMALL_STATE(2014)] = 67034, + [SMALL_STATE(2015)] = 67085, + [SMALL_STATE(2016)] = 67138, + [SMALL_STATE(2017)] = 67189, + [SMALL_STATE(2018)] = 67300, + [SMALL_STATE(2019)] = 67369, + [SMALL_STATE(2020)] = 67420, + [SMALL_STATE(2021)] = 67477, + [SMALL_STATE(2022)] = 67530, + [SMALL_STATE(2023)] = 67581, + [SMALL_STATE(2024)] = 67692, + [SMALL_STATE(2025)] = 67743, + [SMALL_STATE(2026)] = 67800, + [SMALL_STATE(2027)] = 67909, + [SMALL_STATE(2028)] = 67966, + [SMALL_STATE(2029)] = 68075, + [SMALL_STATE(2030)] = 68128, + [SMALL_STATE(2031)] = 68181, + [SMALL_STATE(2032)] = 68238, + [SMALL_STATE(2033)] = 68289, + [SMALL_STATE(2034)] = 68340, + [SMALL_STATE(2035)] = 68391, + [SMALL_STATE(2036)] = 68442, + [SMALL_STATE(2037)] = 68525, + [SMALL_STATE(2038)] = 68576, + [SMALL_STATE(2039)] = 68629, + [SMALL_STATE(2040)] = 68712, + [SMALL_STATE(2041)] = 68783, + [SMALL_STATE(2042)] = 68860, + [SMALL_STATE(2043)] = 68969, + [SMALL_STATE(2044)] = 69038, + [SMALL_STATE(2045)] = 69111, + [SMALL_STATE(2046)] = 69180, + [SMALL_STATE(2047)] = 69231, + [SMALL_STATE(2048)] = 69290, + [SMALL_STATE(2049)] = 69363, + [SMALL_STATE(2050)] = 69414, + [SMALL_STATE(2051)] = 69477, + [SMALL_STATE(2052)] = 69586, + [SMALL_STATE(2053)] = 69695, + [SMALL_STATE(2054)] = 69804, + [SMALL_STATE(2055)] = 69913, + [SMALL_STATE(2056)] = 70022, + [SMALL_STATE(2057)] = 70105, + [SMALL_STATE(2058)] = 70178, + [SMALL_STATE(2059)] = 70275, + [SMALL_STATE(2060)] = 70374, + [SMALL_STATE(2061)] = 70453, + [SMALL_STATE(2062)] = 70544, + [SMALL_STATE(2063)] = 70637, + [SMALL_STATE(2064)] = 70732, + [SMALL_STATE(2065)] = 70809, + [SMALL_STATE(2066)] = 70888, + [SMALL_STATE(2067)] = 70975, + [SMALL_STATE(2068)] = 71076, + [SMALL_STATE(2069)] = 71185, + [SMALL_STATE(2070)] = 71294, + [SMALL_STATE(2071)] = 71403, + [SMALL_STATE(2072)] = 71512, + [SMALL_STATE(2073)] = 71621, + [SMALL_STATE(2074)] = 71730, + [SMALL_STATE(2075)] = 71839, + [SMALL_STATE(2076)] = 71948, + [SMALL_STATE(2077)] = 71999, + [SMALL_STATE(2078)] = 72068, + [SMALL_STATE(2079)] = 72119, + [SMALL_STATE(2080)] = 72190, + [SMALL_STATE(2081)] = 72263, + [SMALL_STATE(2082)] = 72316, + [SMALL_STATE(2083)] = 72387, + [SMALL_STATE(2084)] = 72464, + [SMALL_STATE(2085)] = 72573, + [SMALL_STATE(2086)] = 72642, + [SMALL_STATE(2087)] = 72693, + [SMALL_STATE(2088)] = 72802, + [SMALL_STATE(2089)] = 72853, + [SMALL_STATE(2090)] = 72904, + [SMALL_STATE(2091)] = 72955, + [SMALL_STATE(2092)] = 73006, + [SMALL_STATE(2093)] = 73059, + [SMALL_STATE(2094)] = 73110, + [SMALL_STATE(2095)] = 73161, + [SMALL_STATE(2096)] = 73214, + [SMALL_STATE(2097)] = 73265, + [SMALL_STATE(2098)] = 73322, + [SMALL_STATE(2099)] = 73373, + [SMALL_STATE(2100)] = 73424, + [SMALL_STATE(2101)] = 73475, + [SMALL_STATE(2102)] = 73526, + [SMALL_STATE(2103)] = 73577, + [SMALL_STATE(2104)] = 73630, + [SMALL_STATE(2105)] = 73681, + [SMALL_STATE(2106)] = 73732, + [SMALL_STATE(2107)] = 73783, + [SMALL_STATE(2108)] = 73834, + [SMALL_STATE(2109)] = 73885, + [SMALL_STATE(2110)] = 73936, + [SMALL_STATE(2111)] = 73987, + [SMALL_STATE(2112)] = 74038, + [SMALL_STATE(2113)] = 74089, + [SMALL_STATE(2114)] = 74140, + [SMALL_STATE(2115)] = 74193, + [SMALL_STATE(2116)] = 74244, + [SMALL_STATE(2117)] = 74295, + [SMALL_STATE(2118)] = 74346, + [SMALL_STATE(2119)] = 74397, + [SMALL_STATE(2120)] = 74448, + [SMALL_STATE(2121)] = 74499, + [SMALL_STATE(2122)] = 74550, + [SMALL_STATE(2123)] = 74601, + [SMALL_STATE(2124)] = 74710, + [SMALL_STATE(2125)] = 74760, + [SMALL_STATE(2126)] = 74814, + [SMALL_STATE(2127)] = 74868, + [SMALL_STATE(2128)] = 74920, + [SMALL_STATE(2129)] = 74970, + [SMALL_STATE(2130)] = 75028, + [SMALL_STATE(2131)] = 75082, + [SMALL_STATE(2132)] = 75192, + [SMALL_STATE(2133)] = 75242, + [SMALL_STATE(2134)] = 75292, + [SMALL_STATE(2135)] = 75346, + [SMALL_STATE(2136)] = 75400, + [SMALL_STATE(2137)] = 75464, + [SMALL_STATE(2138)] = 75530, + [SMALL_STATE(2139)] = 75594, + [SMALL_STATE(2140)] = 75648, + [SMALL_STATE(2141)] = 75712, + [SMALL_STATE(2142)] = 75762, + [SMALL_STATE(2143)] = 75812, + [SMALL_STATE(2144)] = 75870, + [SMALL_STATE(2145)] = 75934, + [SMALL_STATE(2146)] = 75984, + [SMALL_STATE(2147)] = 76050, + [SMALL_STATE(2148)] = 76100, + [SMALL_STATE(2149)] = 76150, + [SMALL_STATE(2150)] = 76200, + [SMALL_STATE(2151)] = 76256, + [SMALL_STATE(2152)] = 76312, + [SMALL_STATE(2153)] = 76368, + [SMALL_STATE(2154)] = 76442, + [SMALL_STATE(2155)] = 76518, + [SMALL_STATE(2156)] = 76574, + [SMALL_STATE(2157)] = 76630, + [SMALL_STATE(2158)] = 76692, + [SMALL_STATE(2159)] = 76742, + [SMALL_STATE(2160)] = 76792, + [SMALL_STATE(2161)] = 76842, + [SMALL_STATE(2162)] = 76892, + [SMALL_STATE(2163)] = 76966, + [SMALL_STATE(2164)] = 77018, + [SMALL_STATE(2165)] = 77094, + [SMALL_STATE(2166)] = 77156, + [SMALL_STATE(2167)] = 77218, + [SMALL_STATE(2168)] = 77268, + [SMALL_STATE(2169)] = 77318, + [SMALL_STATE(2170)] = 77368, + [SMALL_STATE(2171)] = 77442, + [SMALL_STATE(2172)] = 77506, + [SMALL_STATE(2173)] = 77582, + [SMALL_STATE(2174)] = 77640, + [SMALL_STATE(2175)] = 77698, + [SMALL_STATE(2176)] = 77772, + [SMALL_STATE(2177)] = 77832, + [SMALL_STATE(2178)] = 77892, + [SMALL_STATE(2179)] = 77954, + [SMALL_STATE(2180)] = 78016, + [SMALL_STATE(2181)] = 78078, + [SMALL_STATE(2182)] = 78140, + [SMALL_STATE(2183)] = 78206, + [SMALL_STATE(2184)] = 78282, + [SMALL_STATE(2185)] = 78344, + [SMALL_STATE(2186)] = 78406, + [SMALL_STATE(2187)] = 78468, + [SMALL_STATE(2188)] = 78530, + [SMALL_STATE(2189)] = 78580, + [SMALL_STATE(2190)] = 78630, + [SMALL_STATE(2191)] = 78680, + [SMALL_STATE(2192)] = 78730, + [SMALL_STATE(2193)] = 78780, + [SMALL_STATE(2194)] = 78830, + [SMALL_STATE(2195)] = 78880, + [SMALL_STATE(2196)] = 78938, + [SMALL_STATE(2197)] = 78992, + [SMALL_STATE(2198)] = 79046, + [SMALL_STATE(2199)] = 79096, + [SMALL_STATE(2200)] = 79204, + [SMALL_STATE(2201)] = 79258, + [SMALL_STATE(2202)] = 79312, + [SMALL_STATE(2203)] = 79376, + [SMALL_STATE(2204)] = 79484, + [SMALL_STATE(2205)] = 79542, + [SMALL_STATE(2206)] = 79592, + [SMALL_STATE(2207)] = 79646, + [SMALL_STATE(2208)] = 79710, + [SMALL_STATE(2209)] = 79760, + [SMALL_STATE(2210)] = 79810, + [SMALL_STATE(2211)] = 79876, + [SMALL_STATE(2212)] = 79942, + [SMALL_STATE(2213)] = 80050, + [SMALL_STATE(2214)] = 80100, + [SMALL_STATE(2215)] = 80164, + [SMALL_STATE(2216)] = 80214, + [SMALL_STATE(2217)] = 80268, + [SMALL_STATE(2218)] = 80318, + [SMALL_STATE(2219)] = 80372, + [SMALL_STATE(2220)] = 80422, + [SMALL_STATE(2221)] = 80472, + [SMALL_STATE(2222)] = 80522, + [SMALL_STATE(2223)] = 80572, + [SMALL_STATE(2224)] = 80622, + [SMALL_STATE(2225)] = 80672, + [SMALL_STATE(2226)] = 80726, + [SMALL_STATE(2227)] = 80834, + [SMALL_STATE(2228)] = 80884, + [SMALL_STATE(2229)] = 80934, + [SMALL_STATE(2230)] = 80984, + [SMALL_STATE(2231)] = 81034, + [SMALL_STATE(2232)] = 81102, + [SMALL_STATE(2233)] = 81152, + [SMALL_STATE(2234)] = 81202, + [SMALL_STATE(2235)] = 81252, + [SMALL_STATE(2236)] = 81306, + [SMALL_STATE(2237)] = 81360, + [SMALL_STATE(2238)] = 81414, + [SMALL_STATE(2239)] = 81468, + [SMALL_STATE(2240)] = 81532, + [SMALL_STATE(2241)] = 81596, + [SMALL_STATE(2242)] = 81662, + [SMALL_STATE(2243)] = 81736, + [SMALL_STATE(2244)] = 81812, + [SMALL_STATE(2245)] = 81876, + [SMALL_STATE(2246)] = 81942, + [SMALL_STATE(2247)] = 82050, + [SMALL_STATE(2248)] = 82104, + [SMALL_STATE(2249)] = 82170, + [SMALL_STATE(2250)] = 82224, + [SMALL_STATE(2251)] = 82288, + [SMALL_STATE(2252)] = 82354, + [SMALL_STATE(2253)] = 82418, + [SMALL_STATE(2254)] = 82482, + [SMALL_STATE(2255)] = 82546, + [SMALL_STATE(2256)] = 82610, + [SMALL_STATE(2257)] = 82670, + [SMALL_STATE(2258)] = 82720, + [SMALL_STATE(2259)] = 82828, + [SMALL_STATE(2260)] = 82878, + [SMALL_STATE(2261)] = 82928, + [SMALL_STATE(2262)] = 82980, + [SMALL_STATE(2263)] = 83030, + [SMALL_STATE(2264)] = 83080, + [SMALL_STATE(2265)] = 83154, + [SMALL_STATE(2266)] = 83230, + [SMALL_STATE(2267)] = 83280, + [SMALL_STATE(2268)] = 83332, + [SMALL_STATE(2269)] = 83396, + [SMALL_STATE(2270)] = 83462, + [SMALL_STATE(2271)] = 83512, + [SMALL_STATE(2272)] = 83570, + [SMALL_STATE(2273)] = 83624, + [SMALL_STATE(2274)] = 83674, + [SMALL_STATE(2275)] = 83724, + [SMALL_STATE(2276)] = 83774, + [SMALL_STATE(2277)] = 83824, + [SMALL_STATE(2278)] = 83874, + [SMALL_STATE(2279)] = 83982, + [SMALL_STATE(2280)] = 84090, + [SMALL_STATE(2281)] = 84198, + [SMALL_STATE(2282)] = 84306, + [SMALL_STATE(2283)] = 84414, + [SMALL_STATE(2284)] = 84522, + [SMALL_STATE(2285)] = 84604, + [SMALL_STATE(2286)] = 84676, + [SMALL_STATE(2287)] = 84772, + [SMALL_STATE(2288)] = 84870, + [SMALL_STATE(2289)] = 84948, + [SMALL_STATE(2290)] = 85038, + [SMALL_STATE(2291)] = 85130, + [SMALL_STATE(2292)] = 85224, + [SMALL_STATE(2293)] = 85300, + [SMALL_STATE(2294)] = 85378, + [SMALL_STATE(2295)] = 85464, + [SMALL_STATE(2296)] = 85564, + [SMALL_STATE(2297)] = 85672, + [SMALL_STATE(2298)] = 85780, + [SMALL_STATE(2299)] = 85888, + [SMALL_STATE(2300)] = 85996, + [SMALL_STATE(2301)] = 86104, + [SMALL_STATE(2302)] = 86212, + [SMALL_STATE(2303)] = 86320, + [SMALL_STATE(2304)] = 86428, + [SMALL_STATE(2305)] = 86480, + [SMALL_STATE(2306)] = 86550, + [SMALL_STATE(2307)] = 86626, + [SMALL_STATE(2308)] = 86682, + [SMALL_STATE(2309)] = 86790, + [SMALL_STATE(2310)] = 86858, + [SMALL_STATE(2311)] = 86908, + [SMALL_STATE(2312)] = 86962, + [SMALL_STATE(2313)] = 87016, + [SMALL_STATE(2314)] = 87124, + [SMALL_STATE(2315)] = 87188, + [SMALL_STATE(2316)] = 87240, + [SMALL_STATE(2317)] = 87306, + [SMALL_STATE(2318)] = 87372, + [SMALL_STATE(2319)] = 87480, + [SMALL_STATE(2320)] = 87546, + [SMALL_STATE(2321)] = 87612, + [SMALL_STATE(2322)] = 87664, + [SMALL_STATE(2323)] = 87772, + [SMALL_STATE(2324)] = 87836, + [SMALL_STATE(2325)] = 87902, + [SMALL_STATE(2326)] = 87962, + [SMALL_STATE(2327)] = 88016, + [SMALL_STATE(2328)] = 88102, + [SMALL_STATE(2329)] = 88160, + [SMALL_STATE(2330)] = 88224, + [SMALL_STATE(2331)] = 88278, + [SMALL_STATE(2332)] = 88336, + [SMALL_STATE(2333)] = 88388, + [SMALL_STATE(2334)] = 88440, + [SMALL_STATE(2335)] = 88498, + [SMALL_STATE(2336)] = 88550, + [SMALL_STATE(2337)] = 88604, + [SMALL_STATE(2338)] = 88658, + [SMALL_STATE(2339)] = 88708, + [SMALL_STATE(2340)] = 88758, + [SMALL_STATE(2341)] = 88810, + [SMALL_STATE(2342)] = 88862, + [SMALL_STATE(2343)] = 88912, + [SMALL_STATE(2344)] = 88966, + [SMALL_STATE(2345)] = 89024, + [SMALL_STATE(2346)] = 89132, + [SMALL_STATE(2347)] = 89240, + [SMALL_STATE(2348)] = 89348, + [SMALL_STATE(2349)] = 89456, + [SMALL_STATE(2350)] = 89564, + [SMALL_STATE(2351)] = 89672, + [SMALL_STATE(2352)] = 89754, + [SMALL_STATE(2353)] = 89826, + [SMALL_STATE(2354)] = 89922, + [SMALL_STATE(2355)] = 90020, + [SMALL_STATE(2356)] = 90098, + [SMALL_STATE(2357)] = 90188, + [SMALL_STATE(2358)] = 90280, + [SMALL_STATE(2359)] = 90374, + [SMALL_STATE(2360)] = 90450, + [SMALL_STATE(2361)] = 90528, + [SMALL_STATE(2362)] = 90614, + [SMALL_STATE(2363)] = 90714, + [SMALL_STATE(2364)] = 90822, + [SMALL_STATE(2365)] = 90930, + [SMALL_STATE(2366)] = 91038, + [SMALL_STATE(2367)] = 91146, + [SMALL_STATE(2368)] = 91254, + [SMALL_STATE(2369)] = 91362, + [SMALL_STATE(2370)] = 91470, + [SMALL_STATE(2371)] = 91578, + [SMALL_STATE(2372)] = 91632, + [SMALL_STATE(2373)] = 91684, + [SMALL_STATE(2374)] = 91754, + [SMALL_STATE(2375)] = 91830, + [SMALL_STATE(2376)] = 91938, + [SMALL_STATE(2377)] = 92006, + [SMALL_STATE(2378)] = 92058, + [SMALL_STATE(2379)] = 92108, + [SMALL_STATE(2380)] = 92158, + [SMALL_STATE(2381)] = 92224, + [SMALL_STATE(2382)] = 92332, + [SMALL_STATE(2383)] = 92382, + [SMALL_STATE(2384)] = 92432, + [SMALL_STATE(2385)] = 92482, + [SMALL_STATE(2386)] = 92536, + [SMALL_STATE(2387)] = 92610, + [SMALL_STATE(2388)] = 92686, + [SMALL_STATE(2389)] = 92736, + [SMALL_STATE(2390)] = 92813, + [SMALL_STATE(2391)] = 92882, + [SMALL_STATE(2392)] = 92933, + [SMALL_STATE(2393)] = 92988, + [SMALL_STATE(2394)] = 93047, + [SMALL_STATE(2395)] = 93116, + [SMALL_STATE(2396)] = 93175, + [SMALL_STATE(2397)] = 93244, + [SMALL_STATE(2398)] = 93303, + [SMALL_STATE(2399)] = 93360, + [SMALL_STATE(2400)] = 93419, + [SMALL_STATE(2401)] = 93478, + [SMALL_STATE(2402)] = 93535, + [SMALL_STATE(2403)] = 93590, + [SMALL_STATE(2404)] = 93647, + [SMALL_STATE(2405)] = 93716, + [SMALL_STATE(2406)] = 93785, + [SMALL_STATE(2407)] = 93860, + [SMALL_STATE(2408)] = 93965, + [SMALL_STATE(2409)] = 94032, + [SMALL_STATE(2410)] = 94089, + [SMALL_STATE(2411)] = 94142, [SMALL_STATE(2412)] = 94247, - [SMALL_STATE(2413)] = 94302, - [SMALL_STATE(2414)] = 94359, - [SMALL_STATE(2415)] = 94416, - [SMALL_STATE(2416)] = 94473, - [SMALL_STATE(2417)] = 94532, - [SMALL_STATE(2418)] = 94591, - [SMALL_STATE(2419)] = 94644, - [SMALL_STATE(2420)] = 94701, - [SMALL_STATE(2421)] = 94754, - [SMALL_STATE(2422)] = 94813, - [SMALL_STATE(2423)] = 94864, - [SMALL_STATE(2424)] = 94923, - [SMALL_STATE(2425)] = 94992, - [SMALL_STATE(2426)] = 95067, - [SMALL_STATE(2427)] = 95136, - [SMALL_STATE(2428)] = 95241, - [SMALL_STATE(2429)] = 95308, - [SMALL_STATE(2430)] = 95367, - [SMALL_STATE(2431)] = 95426, - [SMALL_STATE(2432)] = 95485, - [SMALL_STATE(2433)] = 95544, - [SMALL_STATE(2434)] = 95633, - [SMALL_STATE(2435)] = 95692, - [SMALL_STATE(2436)] = 95751, - [SMALL_STATE(2437)] = 95820, - [SMALL_STATE(2438)] = 95889, - [SMALL_STATE(2439)] = 95994, - [SMALL_STATE(2440)] = 96099, - [SMALL_STATE(2441)] = 96158, - [SMALL_STATE(2442)] = 96209, - [SMALL_STATE(2443)] = 96314, - [SMALL_STATE(2444)] = 96419, - [SMALL_STATE(2445)] = 96488, - [SMALL_STATE(2446)] = 96593, - [SMALL_STATE(2447)] = 96674, - [SMALL_STATE(2448)] = 96745, - [SMALL_STATE(2449)] = 96840, - [SMALL_STATE(2450)] = 96937, - [SMALL_STATE(2451)] = 97014, - [SMALL_STATE(2452)] = 97103, - [SMALL_STATE(2453)] = 97194, - [SMALL_STATE(2454)] = 97253, - [SMALL_STATE(2455)] = 97346, - [SMALL_STATE(2456)] = 97421, - [SMALL_STATE(2457)] = 97498, - [SMALL_STATE(2458)] = 97583, - [SMALL_STATE(2459)] = 97682, - [SMALL_STATE(2460)] = 97787, - [SMALL_STATE(2461)] = 97892, - [SMALL_STATE(2462)] = 97951, - [SMALL_STATE(2463)] = 98010, - [SMALL_STATE(2464)] = 98115, - [SMALL_STATE(2465)] = 98220, - [SMALL_STATE(2466)] = 98325, - [SMALL_STATE(2467)] = 98430, - [SMALL_STATE(2468)] = 98535, - [SMALL_STATE(2469)] = 98592, - [SMALL_STATE(2470)] = 98649, - [SMALL_STATE(2471)] = 98730, - [SMALL_STATE(2472)] = 98794, - [SMALL_STATE(2473)] = 98858, - [SMALL_STATE(2474)] = 98918, - [SMALL_STATE(2475)] = 98978, - [SMALL_STATE(2476)] = 99032, - [SMALL_STATE(2477)] = 99086, - [SMALL_STATE(2478)] = 99140, - [SMALL_STATE(2479)] = 99206, - [SMALL_STATE(2480)] = 99260, - [SMALL_STATE(2481)] = 99314, - [SMALL_STATE(2482)] = 99382, - [SMALL_STATE(2483)] = 99438, - [SMALL_STATE(2484)] = 99502, - [SMALL_STATE(2485)] = 99552, - [SMALL_STATE(2486)] = 99602, - [SMALL_STATE(2487)] = 99652, - [SMALL_STATE(2488)] = 99712, - [SMALL_STATE(2489)] = 99776, - [SMALL_STATE(2490)] = 99836, - [SMALL_STATE(2491)] = 99900, - [SMALL_STATE(2492)] = 99954, - [SMALL_STATE(2493)] = 100004, - [SMALL_STATE(2494)] = 100054, - [SMALL_STATE(2495)] = 100108, - [SMALL_STATE(2496)] = 100162, - [SMALL_STATE(2497)] = 100216, - [SMALL_STATE(2498)] = 100266, - [SMALL_STATE(2499)] = 100314, - [SMALL_STATE(2500)] = 100368, - [SMALL_STATE(2501)] = 100416, - [SMALL_STATE(2502)] = 100466, - [SMALL_STATE(2503)] = 100514, - [SMALL_STATE(2504)] = 100564, - [SMALL_STATE(2505)] = 100636, - [SMALL_STATE(2506)] = 100704, - [SMALL_STATE(2507)] = 100774, - [SMALL_STATE(2508)] = 100824, - [SMALL_STATE(2509)] = 100874, - [SMALL_STATE(2510)] = 100924, - [SMALL_STATE(2511)] = 100974, - [SMALL_STATE(2512)] = 101034, - [SMALL_STATE(2513)] = 101091, - [SMALL_STATE(2514)] = 101148, - [SMALL_STATE(2515)] = 101205, - [SMALL_STATE(2516)] = 101262, - [SMALL_STATE(2517)] = 101319, - [SMALL_STATE(2518)] = 101378, - [SMALL_STATE(2519)] = 101437, - [SMALL_STATE(2520)] = 101494, - [SMALL_STATE(2521)] = 101553, + [SMALL_STATE(2413)] = 94306, + [SMALL_STATE(2414)] = 94375, + [SMALL_STATE(2415)] = 94426, + [SMALL_STATE(2416)] = 94531, + [SMALL_STATE(2417)] = 94582, + [SMALL_STATE(2418)] = 94657, + [SMALL_STATE(2419)] = 94716, + [SMALL_STATE(2420)] = 94775, + [SMALL_STATE(2421)] = 94844, + [SMALL_STATE(2422)] = 94903, + [SMALL_STATE(2423)] = 94960, + [SMALL_STATE(2424)] = 95019, + [SMALL_STATE(2425)] = 95078, + [SMALL_STATE(2426)] = 95133, + [SMALL_STATE(2427)] = 95192, + [SMALL_STATE(2428)] = 95247, + [SMALL_STATE(2429)] = 95298, + [SMALL_STATE(2430)] = 95403, + [SMALL_STATE(2431)] = 95508, + [SMALL_STATE(2432)] = 95613, + [SMALL_STATE(2433)] = 95718, + [SMALL_STATE(2434)] = 95823, + [SMALL_STATE(2435)] = 95904, + [SMALL_STATE(2436)] = 95975, + [SMALL_STATE(2437)] = 96064, + [SMALL_STATE(2438)] = 96159, + [SMALL_STATE(2439)] = 96256, + [SMALL_STATE(2440)] = 96333, + [SMALL_STATE(2441)] = 96422, + [SMALL_STATE(2442)] = 96513, + [SMALL_STATE(2443)] = 96606, + [SMALL_STATE(2444)] = 96681, + [SMALL_STATE(2445)] = 96758, + [SMALL_STATE(2446)] = 96843, + [SMALL_STATE(2447)] = 96942, + [SMALL_STATE(2448)] = 97047, + [SMALL_STATE(2449)] = 97152, + [SMALL_STATE(2450)] = 97211, + [SMALL_STATE(2451)] = 97316, + [SMALL_STATE(2452)] = 97421, + [SMALL_STATE(2453)] = 97526, + [SMALL_STATE(2454)] = 97631, + [SMALL_STATE(2455)] = 97736, + [SMALL_STATE(2456)] = 97795, + [SMALL_STATE(2457)] = 97854, + [SMALL_STATE(2458)] = 97959, + [SMALL_STATE(2459)] = 98018, + [SMALL_STATE(2460)] = 98077, + [SMALL_STATE(2461)] = 98136, + [SMALL_STATE(2462)] = 98195, + [SMALL_STATE(2463)] = 98248, + [SMALL_STATE(2464)] = 98307, + [SMALL_STATE(2465)] = 98376, + [SMALL_STATE(2466)] = 98435, + [SMALL_STATE(2467)] = 98516, + [SMALL_STATE(2468)] = 98573, + [SMALL_STATE(2469)] = 98630, + [SMALL_STATE(2470)] = 98681, + [SMALL_STATE(2471)] = 98740, + [SMALL_STATE(2472)] = 98799, + [SMALL_STATE(2473)] = 98863, + [SMALL_STATE(2474)] = 98913, + [SMALL_STATE(2475)] = 98969, + [SMALL_STATE(2476)] = 99023, + [SMALL_STATE(2477)] = 99077, + [SMALL_STATE(2478)] = 99143, + [SMALL_STATE(2479)] = 99197, + [SMALL_STATE(2480)] = 99265, + [SMALL_STATE(2481)] = 99329, + [SMALL_STATE(2482)] = 99393, + [SMALL_STATE(2483)] = 99453, + [SMALL_STATE(2484)] = 99513, + [SMALL_STATE(2485)] = 99561, + [SMALL_STATE(2486)] = 99615, + [SMALL_STATE(2487)] = 99669, + [SMALL_STATE(2488)] = 99717, + [SMALL_STATE(2489)] = 99767, + [SMALL_STATE(2490)] = 99817, + [SMALL_STATE(2491)] = 99867, + [SMALL_STATE(2492)] = 99917, + [SMALL_STATE(2493)] = 99977, + [SMALL_STATE(2494)] = 100027, + [SMALL_STATE(2495)] = 100077, + [SMALL_STATE(2496)] = 100137, + [SMALL_STATE(2497)] = 100187, + [SMALL_STATE(2498)] = 100251, + [SMALL_STATE(2499)] = 100311, + [SMALL_STATE(2500)] = 100361, + [SMALL_STATE(2501)] = 100415, + [SMALL_STATE(2502)] = 100465, + [SMALL_STATE(2503)] = 100519, + [SMALL_STATE(2504)] = 100573, + [SMALL_STATE(2505)] = 100623, + [SMALL_STATE(2506)] = 100695, + [SMALL_STATE(2507)] = 100749, + [SMALL_STATE(2508)] = 100817, + [SMALL_STATE(2509)] = 100887, + [SMALL_STATE(2510)] = 100937, + [SMALL_STATE(2511)] = 100991, + [SMALL_STATE(2512)] = 101055, + [SMALL_STATE(2513)] = 101103, + [SMALL_STATE(2514)] = 101162, + [SMALL_STATE(2515)] = 101221, + [SMALL_STATE(2516)] = 101278, + [SMALL_STATE(2517)] = 101337, + [SMALL_STATE(2518)] = 101394, + [SMALL_STATE(2519)] = 101447, + [SMALL_STATE(2520)] = 101500, + [SMALL_STATE(2521)] = 101549, [SMALL_STATE(2522)] = 101602, [SMALL_STATE(2523)] = 101659, - [SMALL_STATE(2524)] = 101718, - [SMALL_STATE(2525)] = 101775, - [SMALL_STATE(2526)] = 101832, - [SMALL_STATE(2527)] = 101889, - [SMALL_STATE(2528)] = 101946, + [SMALL_STATE(2524)] = 101716, + [SMALL_STATE(2525)] = 101773, + [SMALL_STATE(2526)] = 101830, + [SMALL_STATE(2527)] = 101887, + [SMALL_STATE(2528)] = 101944, [SMALL_STATE(2529)] = 102003, - [SMALL_STATE(2530)] = 102060, + [SMALL_STATE(2530)] = 102062, [SMALL_STATE(2531)] = 102119, [SMALL_STATE(2532)] = 102178, - [SMALL_STATE(2533)] = 102235, - [SMALL_STATE(2534)] = 102294, - [SMALL_STATE(2535)] = 102351, - [SMALL_STATE(2536)] = 102410, - [SMALL_STATE(2537)] = 102467, - [SMALL_STATE(2538)] = 102526, + [SMALL_STATE(2533)] = 102231, + [SMALL_STATE(2534)] = 102290, + [SMALL_STATE(2535)] = 102353, + [SMALL_STATE(2536)] = 102406, + [SMALL_STATE(2537)] = 102471, + [SMALL_STATE(2538)] = 102530, [SMALL_STATE(2539)] = 102589, - [SMALL_STATE(2540)] = 102648, - [SMALL_STATE(2541)] = 102701, - [SMALL_STATE(2542)] = 102754, - [SMALL_STATE(2543)] = 102807, - [SMALL_STATE(2544)] = 102868, - [SMALL_STATE(2545)] = 102931, - [SMALL_STATE(2546)] = 102990, + [SMALL_STATE(2540)] = 102646, + [SMALL_STATE(2541)] = 102703, + [SMALL_STATE(2542)] = 102762, + [SMALL_STATE(2543)] = 102819, + [SMALL_STATE(2544)] = 102882, + [SMALL_STATE(2545)] = 102939, + [SMALL_STATE(2546)] = 103000, [SMALL_STATE(2547)] = 103049, [SMALL_STATE(2548)] = 103108, - [SMALL_STATE(2549)] = 103167, - [SMALL_STATE(2550)] = 103220, - [SMALL_STATE(2551)] = 103269, - [SMALL_STATE(2552)] = 103318, - [SMALL_STATE(2553)] = 103383, - [SMALL_STATE(2554)] = 103436, - [SMALL_STATE(2555)] = 103482, - [SMALL_STATE(2556)] = 103530, - [SMALL_STATE(2557)] = 103576, - [SMALL_STATE(2558)] = 103622, - [SMALL_STATE(2559)] = 103668, - [SMALL_STATE(2560)] = 103714, - [SMALL_STATE(2561)] = 103760, - [SMALL_STATE(2562)] = 103808, - [SMALL_STATE(2563)] = 103856, - [SMALL_STATE(2564)] = 103902, - [SMALL_STATE(2565)] = 103948, - [SMALL_STATE(2566)] = 103994, - [SMALL_STATE(2567)] = 104042, - [SMALL_STATE(2568)] = 104088, - [SMALL_STATE(2569)] = 104134, - [SMALL_STATE(2570)] = 104180, - [SMALL_STATE(2571)] = 104226, - [SMALL_STATE(2572)] = 104272, - [SMALL_STATE(2573)] = 104318, - [SMALL_STATE(2574)] = 104368, - [SMALL_STATE(2575)] = 104414, - [SMALL_STATE(2576)] = 104460, - [SMALL_STATE(2577)] = 104506, - [SMALL_STATE(2578)] = 104552, - [SMALL_STATE(2579)] = 104598, - [SMALL_STATE(2580)] = 104646, - [SMALL_STATE(2581)] = 104694, - [SMALL_STATE(2582)] = 104740, - [SMALL_STATE(2583)] = 104786, - [SMALL_STATE(2584)] = 104832, - [SMALL_STATE(2585)] = 104878, - [SMALL_STATE(2586)] = 104924, - [SMALL_STATE(2587)] = 104972, - [SMALL_STATE(2588)] = 105018, - [SMALL_STATE(2589)] = 105064, - [SMALL_STATE(2590)] = 105110, - [SMALL_STATE(2591)] = 105156, - [SMALL_STATE(2592)] = 105202, - [SMALL_STATE(2593)] = 105248, - [SMALL_STATE(2594)] = 105294, - [SMALL_STATE(2595)] = 105340, - [SMALL_STATE(2596)] = 105396, - [SMALL_STATE(2597)] = 105446, - [SMALL_STATE(2598)] = 105492, - [SMALL_STATE(2599)] = 105540, - [SMALL_STATE(2600)] = 105598, - [SMALL_STATE(2601)] = 105644, - [SMALL_STATE(2602)] = 105692, - [SMALL_STATE(2603)] = 105738, - [SMALL_STATE(2604)] = 105784, - [SMALL_STATE(2605)] = 105830, - [SMALL_STATE(2606)] = 105876, - [SMALL_STATE(2607)] = 105922, - [SMALL_STATE(2608)] = 105970, - [SMALL_STATE(2609)] = 106018, - [SMALL_STATE(2610)] = 106064, - [SMALL_STATE(2611)] = 106110, - [SMALL_STATE(2612)] = 106158, - [SMALL_STATE(2613)] = 106204, - [SMALL_STATE(2614)] = 106250, - [SMALL_STATE(2615)] = 106298, - [SMALL_STATE(2616)] = 106344, - [SMALL_STATE(2617)] = 106390, - [SMALL_STATE(2618)] = 106435, - [SMALL_STATE(2619)] = 106486, - [SMALL_STATE(2620)] = 106553, - [SMALL_STATE(2621)] = 106598, - [SMALL_STATE(2622)] = 106643, - [SMALL_STATE(2623)] = 106688, - [SMALL_STATE(2624)] = 106733, - [SMALL_STATE(2625)] = 106786, - [SMALL_STATE(2626)] = 106837, - [SMALL_STATE(2627)] = 106890, - [SMALL_STATE(2628)] = 106935, - [SMALL_STATE(2629)] = 106980, - [SMALL_STATE(2630)] = 107025, - [SMALL_STATE(2631)] = 107083, - [SMALL_STATE(2632)] = 107141, - [SMALL_STATE(2633)] = 107197, - [SMALL_STATE(2634)] = 107245, - [SMALL_STATE(2635)] = 107305, - [SMALL_STATE(2636)] = 107363, - [SMALL_STATE(2637)] = 107435, - [SMALL_STATE(2638)] = 107483, - [SMALL_STATE(2639)] = 107555, - [SMALL_STATE(2640)] = 107615, - [SMALL_STATE(2641)] = 107673, - [SMALL_STATE(2642)] = 107733, - [SMALL_STATE(2643)] = 107786, - [SMALL_STATE(2644)] = 107839, - [SMALL_STATE(2645)] = 107892, - [SMALL_STATE(2646)] = 107945, - [SMALL_STATE(2647)] = 107998, - [SMALL_STATE(2648)] = 108051, - [SMALL_STATE(2649)] = 108104, - [SMALL_STATE(2650)] = 108157, - [SMALL_STATE(2651)] = 108210, - [SMALL_STATE(2652)] = 108263, - [SMALL_STATE(2653)] = 108316, - [SMALL_STATE(2654)] = 108369, - [SMALL_STATE(2655)] = 108422, - [SMALL_STATE(2656)] = 108485, - [SMALL_STATE(2657)] = 108538, - [SMALL_STATE(2658)] = 108591, - [SMALL_STATE(2659)] = 108644, - [SMALL_STATE(2660)] = 108697, - [SMALL_STATE(2661)] = 108750, - [SMALL_STATE(2662)] = 108803, - [SMALL_STATE(2663)] = 108866, - [SMALL_STATE(2664)] = 108919, - [SMALL_STATE(2665)] = 108972, - [SMALL_STATE(2666)] = 109025, - [SMALL_STATE(2667)] = 109078, - [SMALL_STATE(2668)] = 109131, - [SMALL_STATE(2669)] = 109184, - [SMALL_STATE(2670)] = 109237, - [SMALL_STATE(2671)] = 109290, - [SMALL_STATE(2672)] = 109339, - [SMALL_STATE(2673)] = 109393, - [SMALL_STATE(2674)] = 109473, + [SMALL_STATE(2549)] = 103157, + [SMALL_STATE(2550)] = 103216, + [SMALL_STATE(2551)] = 103273, + [SMALL_STATE(2552)] = 103330, + [SMALL_STATE(2553)] = 103389, + [SMALL_STATE(2554)] = 103448, + [SMALL_STATE(2555)] = 103505, + [SMALL_STATE(2556)] = 103553, + [SMALL_STATE(2557)] = 103599, + [SMALL_STATE(2558)] = 103647, + [SMALL_STATE(2559)] = 103693, + [SMALL_STATE(2560)] = 103739, + [SMALL_STATE(2561)] = 103785, + [SMALL_STATE(2562)] = 103831, + [SMALL_STATE(2563)] = 103877, + [SMALL_STATE(2564)] = 103923, + [SMALL_STATE(2565)] = 103973, + [SMALL_STATE(2566)] = 104019, + [SMALL_STATE(2567)] = 104065, + [SMALL_STATE(2568)] = 104111, + [SMALL_STATE(2569)] = 104157, + [SMALL_STATE(2570)] = 104203, + [SMALL_STATE(2571)] = 104251, + [SMALL_STATE(2572)] = 104297, + [SMALL_STATE(2573)] = 104343, + [SMALL_STATE(2574)] = 104389, + [SMALL_STATE(2575)] = 104435, + [SMALL_STATE(2576)] = 104485, + [SMALL_STATE(2577)] = 104533, + [SMALL_STATE(2578)] = 104579, + [SMALL_STATE(2579)] = 104625, + [SMALL_STATE(2580)] = 104671, + [SMALL_STATE(2581)] = 104719, + [SMALL_STATE(2582)] = 104765, + [SMALL_STATE(2583)] = 104813, + [SMALL_STATE(2584)] = 104859, + [SMALL_STATE(2585)] = 104905, + [SMALL_STATE(2586)] = 104951, + [SMALL_STATE(2587)] = 104997, + [SMALL_STATE(2588)] = 105043, + [SMALL_STATE(2589)] = 105089, + [SMALL_STATE(2590)] = 105135, + [SMALL_STATE(2591)] = 105181, + [SMALL_STATE(2592)] = 105229, + [SMALL_STATE(2593)] = 105275, + [SMALL_STATE(2594)] = 105333, + [SMALL_STATE(2595)] = 105379, + [SMALL_STATE(2596)] = 105425, + [SMALL_STATE(2597)] = 105471, + [SMALL_STATE(2598)] = 105517, + [SMALL_STATE(2599)] = 105565, + [SMALL_STATE(2600)] = 105613, + [SMALL_STATE(2601)] = 105659, + [SMALL_STATE(2602)] = 105715, + [SMALL_STATE(2603)] = 105761, + [SMALL_STATE(2604)] = 105807, + [SMALL_STATE(2605)] = 105855, + [SMALL_STATE(2606)] = 105901, + [SMALL_STATE(2607)] = 105947, + [SMALL_STATE(2608)] = 105995, + [SMALL_STATE(2609)] = 106043, + [SMALL_STATE(2610)] = 106089, + [SMALL_STATE(2611)] = 106135, + [SMALL_STATE(2612)] = 106181, + [SMALL_STATE(2613)] = 106227, + [SMALL_STATE(2614)] = 106273, + [SMALL_STATE(2615)] = 106319, + [SMALL_STATE(2616)] = 106365, + [SMALL_STATE(2617)] = 106411, + [SMALL_STATE(2618)] = 106459, + [SMALL_STATE(2619)] = 106505, + [SMALL_STATE(2620)] = 106556, + [SMALL_STATE(2621)] = 106623, + [SMALL_STATE(2622)] = 106668, + [SMALL_STATE(2623)] = 106721, + [SMALL_STATE(2624)] = 106774, + [SMALL_STATE(2625)] = 106819, + [SMALL_STATE(2626)] = 106864, + [SMALL_STATE(2627)] = 106909, + [SMALL_STATE(2628)] = 106954, + [SMALL_STATE(2629)] = 106999, + [SMALL_STATE(2630)] = 107050, + [SMALL_STATE(2631)] = 107095, + [SMALL_STATE(2632)] = 107153, + [SMALL_STATE(2633)] = 107201, + [SMALL_STATE(2634)] = 107273, + [SMALL_STATE(2635)] = 107333, + [SMALL_STATE(2636)] = 107391, + [SMALL_STATE(2637)] = 107451, + [SMALL_STATE(2638)] = 107507, + [SMALL_STATE(2639)] = 107579, + [SMALL_STATE(2640)] = 107637, + [SMALL_STATE(2641)] = 107695, + [SMALL_STATE(2642)] = 107755, + [SMALL_STATE(2643)] = 107803, + [SMALL_STATE(2644)] = 107856, + [SMALL_STATE(2645)] = 107919, + [SMALL_STATE(2646)] = 107972, + [SMALL_STATE(2647)] = 108025, + [SMALL_STATE(2648)] = 108078, + [SMALL_STATE(2649)] = 108131, + [SMALL_STATE(2650)] = 108184, + [SMALL_STATE(2651)] = 108237, + [SMALL_STATE(2652)] = 108290, + [SMALL_STATE(2653)] = 108343, + [SMALL_STATE(2654)] = 108396, + [SMALL_STATE(2655)] = 108449, + [SMALL_STATE(2656)] = 108512, + [SMALL_STATE(2657)] = 108565, + [SMALL_STATE(2658)] = 108618, + [SMALL_STATE(2659)] = 108671, + [SMALL_STATE(2660)] = 108724, + [SMALL_STATE(2661)] = 108777, + [SMALL_STATE(2662)] = 108830, + [SMALL_STATE(2663)] = 108883, + [SMALL_STATE(2664)] = 108936, + [SMALL_STATE(2665)] = 108989, + [SMALL_STATE(2666)] = 109042, + [SMALL_STATE(2667)] = 109095, + [SMALL_STATE(2668)] = 109148, + [SMALL_STATE(2669)] = 109201, + [SMALL_STATE(2670)] = 109254, + [SMALL_STATE(2671)] = 109307, + [SMALL_STATE(2672)] = 109356, + [SMALL_STATE(2673)] = 109409, + [SMALL_STATE(2674)] = 109463, [SMALL_STATE(2675)] = 109527, - [SMALL_STATE(2676)] = 109607, - [SMALL_STATE(2677)] = 109667, - [SMALL_STATE(2678)] = 109731, - [SMALL_STATE(2679)] = 109785, - [SMALL_STATE(2680)] = 109865, - [SMALL_STATE(2681)] = 109945, - [SMALL_STATE(2682)] = 110009, - [SMALL_STATE(2683)] = 110063, - [SMALL_STATE(2684)] = 110117, - [SMALL_STATE(2685)] = 110177, - [SMALL_STATE(2686)] = 110231, - [SMALL_STATE(2687)] = 110311, - [SMALL_STATE(2688)] = 110375, - [SMALL_STATE(2689)] = 110429, - [SMALL_STATE(2690)] = 110509, - [SMALL_STATE(2691)] = 110563, - [SMALL_STATE(2692)] = 110643, - [SMALL_STATE(2693)] = 110697, - [SMALL_STATE(2694)] = 110751, - [SMALL_STATE(2695)] = 110808, - [SMALL_STATE(2696)] = 110849, - [SMALL_STATE(2697)] = 110892, - [SMALL_STATE(2698)] = 110949, - [SMALL_STATE(2699)] = 111006, - [SMALL_STATE(2700)] = 111063, - [SMALL_STATE(2701)] = 111120, - [SMALL_STATE(2702)] = 111177, - [SMALL_STATE(2703)] = 111218, - [SMALL_STATE(2704)] = 111269, - [SMALL_STATE(2705)] = 111322, - [SMALL_STATE(2706)] = 111379, - [SMALL_STATE(2707)] = 111432, - [SMALL_STATE(2708)] = 111489, - [SMALL_STATE(2709)] = 111546, - [SMALL_STATE(2710)] = 111603, - [SMALL_STATE(2711)] = 111644, - [SMALL_STATE(2712)] = 111701, - [SMALL_STATE(2713)] = 111758, - [SMALL_STATE(2714)] = 111815, - [SMALL_STATE(2715)] = 111856, - [SMALL_STATE(2716)] = 111913, - [SMALL_STATE(2717)] = 111970, - [SMALL_STATE(2718)] = 112027, - [SMALL_STATE(2719)] = 112077, - [SMALL_STATE(2720)] = 112127, - [SMALL_STATE(2721)] = 112175, - [SMALL_STATE(2722)] = 112223, - [SMALL_STATE(2723)] = 112271, - [SMALL_STATE(2724)] = 112319, - [SMALL_STATE(2725)] = 112367, - [SMALL_STATE(2726)] = 112415, - [SMALL_STATE(2727)] = 112463, - [SMALL_STATE(2728)] = 112513, - [SMALL_STATE(2729)] = 112561, - [SMALL_STATE(2730)] = 112609, - [SMALL_STATE(2731)] = 112657, - [SMALL_STATE(2732)] = 112707, - [SMALL_STATE(2733)] = 112755, - [SMALL_STATE(2734)] = 112805, - [SMALL_STATE(2735)] = 112855, - [SMALL_STATE(2736)] = 112903, - [SMALL_STATE(2737)] = 112951, - [SMALL_STATE(2738)] = 112999, - [SMALL_STATE(2739)] = 113047, - [SMALL_STATE(2740)] = 113095, - [SMALL_STATE(2741)] = 113143, - [SMALL_STATE(2742)] = 113191, - [SMALL_STATE(2743)] = 113239, - [SMALL_STATE(2744)] = 113287, - [SMALL_STATE(2745)] = 113335, - [SMALL_STATE(2746)] = 113383, - [SMALL_STATE(2747)] = 113433, - [SMALL_STATE(2748)] = 113481, - [SMALL_STATE(2749)] = 113529, - [SMALL_STATE(2750)] = 113579, - [SMALL_STATE(2751)] = 113627, - [SMALL_STATE(2752)] = 113677, - [SMALL_STATE(2753)] = 113725, - [SMALL_STATE(2754)] = 113773, - [SMALL_STATE(2755)] = 113823, - [SMALL_STATE(2756)] = 113871, - [SMALL_STATE(2757)] = 113921, - [SMALL_STATE(2758)] = 113969, - [SMALL_STATE(2759)] = 114017, - [SMALL_STATE(2760)] = 114065, - [SMALL_STATE(2761)] = 114113, - [SMALL_STATE(2762)] = 114161, - [SMALL_STATE(2763)] = 114209, - [SMALL_STATE(2764)] = 114257, - [SMALL_STATE(2765)] = 114305, - [SMALL_STATE(2766)] = 114353, - [SMALL_STATE(2767)] = 114401, - [SMALL_STATE(2768)] = 114449, - [SMALL_STATE(2769)] = 114497, - [SMALL_STATE(2770)] = 114545, - [SMALL_STATE(2771)] = 114593, - [SMALL_STATE(2772)] = 114643, - [SMALL_STATE(2773)] = 114691, - [SMALL_STATE(2774)] = 114741, - [SMALL_STATE(2775)] = 114789, - [SMALL_STATE(2776)] = 114837, - [SMALL_STATE(2777)] = 114887, - [SMALL_STATE(2778)] = 114935, - [SMALL_STATE(2779)] = 114983, - [SMALL_STATE(2780)] = 115018, - [SMALL_STATE(2781)] = 115059, - [SMALL_STATE(2782)] = 115100, - [SMALL_STATE(2783)] = 115141, - [SMALL_STATE(2784)] = 115169, - [SMALL_STATE(2785)] = 115197, - [SMALL_STATE(2786)] = 115225, - [SMALL_STATE(2787)] = 115253, - [SMALL_STATE(2788)] = 115281, - [SMALL_STATE(2789)] = 115309, - [SMALL_STATE(2790)] = 115337, - [SMALL_STATE(2791)] = 115365, - [SMALL_STATE(2792)] = 115393, - [SMALL_STATE(2793)] = 115421, - [SMALL_STATE(2794)] = 115449, - [SMALL_STATE(2795)] = 115477, - [SMALL_STATE(2796)] = 115505, - [SMALL_STATE(2797)] = 115533, - [SMALL_STATE(2798)] = 115561, - [SMALL_STATE(2799)] = 115589, - [SMALL_STATE(2800)] = 115617, - [SMALL_STATE(2801)] = 115645, - [SMALL_STATE(2802)] = 115673, - [SMALL_STATE(2803)] = 115701, - [SMALL_STATE(2804)] = 115729, - [SMALL_STATE(2805)] = 115757, - [SMALL_STATE(2806)] = 115785, - [SMALL_STATE(2807)] = 115813, - [SMALL_STATE(2808)] = 115841, - [SMALL_STATE(2809)] = 115869, - [SMALL_STATE(2810)] = 115897, - [SMALL_STATE(2811)] = 115925, - [SMALL_STATE(2812)] = 115953, - [SMALL_STATE(2813)] = 115981, - [SMALL_STATE(2814)] = 116009, - [SMALL_STATE(2815)] = 116037, - [SMALL_STATE(2816)] = 116065, - [SMALL_STATE(2817)] = 116093, - [SMALL_STATE(2818)] = 116150, - [SMALL_STATE(2819)] = 116183, - [SMALL_STATE(2820)] = 116232, - [SMALL_STATE(2821)] = 116289, - [SMALL_STATE(2822)] = 116327, - [SMALL_STATE(2823)] = 116353, - [SMALL_STATE(2824)] = 116379, - [SMALL_STATE(2825)] = 116417, - [SMALL_STATE(2826)] = 116443, - [SMALL_STATE(2827)] = 116481, - [SMALL_STATE(2828)] = 116511, - [SMALL_STATE(2829)] = 116537, - [SMALL_STATE(2830)] = 116563, - [SMALL_STATE(2831)] = 116593, - [SMALL_STATE(2832)] = 116619, - [SMALL_STATE(2833)] = 116645, - [SMALL_STATE(2834)] = 116675, - [SMALL_STATE(2835)] = 116703, - [SMALL_STATE(2836)] = 116729, - [SMALL_STATE(2837)] = 116755, - [SMALL_STATE(2838)] = 116783, - [SMALL_STATE(2839)] = 116809, - [SMALL_STATE(2840)] = 116835, - [SMALL_STATE(2841)] = 116861, - [SMALL_STATE(2842)] = 116887, - [SMALL_STATE(2843)] = 116921, - [SMALL_STATE(2844)] = 116947, - [SMALL_STATE(2845)] = 116972, - [SMALL_STATE(2846)] = 116997, - [SMALL_STATE(2847)] = 117022, - [SMALL_STATE(2848)] = 117047, - [SMALL_STATE(2849)] = 117078, - [SMALL_STATE(2850)] = 117105, - [SMALL_STATE(2851)] = 117129, - [SMALL_STATE(2852)] = 117153, - [SMALL_STATE(2853)] = 117177, - [SMALL_STATE(2854)] = 117201, - [SMALL_STATE(2855)] = 117225, - [SMALL_STATE(2856)] = 117249, - [SMALL_STATE(2857)] = 117273, - [SMALL_STATE(2858)] = 117297, - [SMALL_STATE(2859)] = 117319, - [SMALL_STATE(2860)] = 117343, - [SMALL_STATE(2861)] = 117371, - [SMALL_STATE(2862)] = 117397, - [SMALL_STATE(2863)] = 117421, - [SMALL_STATE(2864)] = 117447, - [SMALL_STATE(2865)] = 117471, - [SMALL_STATE(2866)] = 117495, - [SMALL_STATE(2867)] = 117519, - [SMALL_STATE(2868)] = 117543, - [SMALL_STATE(2869)] = 117567, - [SMALL_STATE(2870)] = 117591, - [SMALL_STATE(2871)] = 117625, - [SMALL_STATE(2872)] = 117659, - [SMALL_STATE(2873)] = 117683, - [SMALL_STATE(2874)] = 117717, - [SMALL_STATE(2875)] = 117741, - [SMALL_STATE(2876)] = 117765, - [SMALL_STATE(2877)] = 117789, - [SMALL_STATE(2878)] = 117813, - [SMALL_STATE(2879)] = 117837, - [SMALL_STATE(2880)] = 117861, - [SMALL_STATE(2881)] = 117885, - [SMALL_STATE(2882)] = 117909, - [SMALL_STATE(2883)] = 117941, - [SMALL_STATE(2884)] = 117975, - [SMALL_STATE(2885)] = 118009, - [SMALL_STATE(2886)] = 118043, - [SMALL_STATE(2887)] = 118065, - [SMALL_STATE(2888)] = 118089, - [SMALL_STATE(2889)] = 118121, - [SMALL_STATE(2890)] = 118155, - [SMALL_STATE(2891)] = 118189, - [SMALL_STATE(2892)] = 118223, - [SMALL_STATE(2893)] = 118245, - [SMALL_STATE(2894)] = 118269, - [SMALL_STATE(2895)] = 118301, - [SMALL_STATE(2896)] = 118335, - [SMALL_STATE(2897)] = 118369, - [SMALL_STATE(2898)] = 118393, - [SMALL_STATE(2899)] = 118417, - [SMALL_STATE(2900)] = 118441, - [SMALL_STATE(2901)] = 118465, - [SMALL_STATE(2902)] = 118489, - [SMALL_STATE(2903)] = 118513, - [SMALL_STATE(2904)] = 118537, - [SMALL_STATE(2905)] = 118559, - [SMALL_STATE(2906)] = 118583, - [SMALL_STATE(2907)] = 118607, - [SMALL_STATE(2908)] = 118631, - [SMALL_STATE(2909)] = 118655, - [SMALL_STATE(2910)] = 118679, - [SMALL_STATE(2911)] = 118703, - [SMALL_STATE(2912)] = 118735, - [SMALL_STATE(2913)] = 118769, - [SMALL_STATE(2914)] = 118803, - [SMALL_STATE(2915)] = 118837, - [SMALL_STATE(2916)] = 118861, - [SMALL_STATE(2917)] = 118883, - [SMALL_STATE(2918)] = 118915, - [SMALL_STATE(2919)] = 118949, - [SMALL_STATE(2920)] = 118983, - [SMALL_STATE(2921)] = 119005, - [SMALL_STATE(2922)] = 119029, - [SMALL_STATE(2923)] = 119063, - [SMALL_STATE(2924)] = 119087, - [SMALL_STATE(2925)] = 119111, - [SMALL_STATE(2926)] = 119135, - [SMALL_STATE(2927)] = 119159, - [SMALL_STATE(2928)] = 119183, - [SMALL_STATE(2929)] = 119207, - [SMALL_STATE(2930)] = 119231, - [SMALL_STATE(2931)] = 119255, - [SMALL_STATE(2932)] = 119279, - [SMALL_STATE(2933)] = 119303, - [SMALL_STATE(2934)] = 119327, - [SMALL_STATE(2935)] = 119351, - [SMALL_STATE(2936)] = 119375, - [SMALL_STATE(2937)] = 119399, - [SMALL_STATE(2938)] = 119423, - [SMALL_STATE(2939)] = 119447, - [SMALL_STATE(2940)] = 119471, - [SMALL_STATE(2941)] = 119495, - [SMALL_STATE(2942)] = 119519, - [SMALL_STATE(2943)] = 119543, - [SMALL_STATE(2944)] = 119567, - [SMALL_STATE(2945)] = 119591, - [SMALL_STATE(2946)] = 119613, - [SMALL_STATE(2947)] = 119635, - [SMALL_STATE(2948)] = 119659, - [SMALL_STATE(2949)] = 119681, - [SMALL_STATE(2950)] = 119713, - [SMALL_STATE(2951)] = 119747, - [SMALL_STATE(2952)] = 119792, - [SMALL_STATE(2953)] = 119835, - [SMALL_STATE(2954)] = 119860, - [SMALL_STATE(2955)] = 119903, - [SMALL_STATE(2956)] = 119942, - [SMALL_STATE(2957)] = 119985, - [SMALL_STATE(2958)] = 120014, - [SMALL_STATE(2959)] = 120041, - [SMALL_STATE(2960)] = 120066, - [SMALL_STATE(2961)] = 120105, - [SMALL_STATE(2962)] = 120134, - [SMALL_STATE(2963)] = 120177, - [SMALL_STATE(2964)] = 120220, - [SMALL_STATE(2965)] = 120249, - [SMALL_STATE(2966)] = 120278, - [SMALL_STATE(2967)] = 120321, - [SMALL_STATE(2968)] = 120350, - [SMALL_STATE(2969)] = 120389, - [SMALL_STATE(2970)] = 120424, - [SMALL_STATE(2971)] = 120467, - [SMALL_STATE(2972)] = 120510, - [SMALL_STATE(2973)] = 120539, - [SMALL_STATE(2974)] = 120568, - [SMALL_STATE(2975)] = 120611, - [SMALL_STATE(2976)] = 120640, - [SMALL_STATE(2977)] = 120683, - [SMALL_STATE(2978)] = 120726, - [SMALL_STATE(2979)] = 120755, - [SMALL_STATE(2980)] = 120798, - [SMALL_STATE(2981)] = 120841, - [SMALL_STATE(2982)] = 120884, - [SMALL_STATE(2983)] = 120927, - [SMALL_STATE(2984)] = 120970, - [SMALL_STATE(2985)] = 121009, - [SMALL_STATE(2986)] = 121048, - [SMALL_STATE(2987)] = 121091, - [SMALL_STATE(2988)] = 121116, - [SMALL_STATE(2989)] = 121159, - [SMALL_STATE(2990)] = 121202, - [SMALL_STATE(2991)] = 121245, - [SMALL_STATE(2992)] = 121288, - [SMALL_STATE(2993)] = 121331, - [SMALL_STATE(2994)] = 121374, - [SMALL_STATE(2995)] = 121396, - [SMALL_STATE(2996)] = 121420, - [SMALL_STATE(2997)] = 121446, - [SMALL_STATE(2998)] = 121482, - [SMALL_STATE(2999)] = 121518, - [SMALL_STATE(3000)] = 121554, - [SMALL_STATE(3001)] = 121582, - [SMALL_STATE(3002)] = 121610, - [SMALL_STATE(3003)] = 121636, - [SMALL_STATE(3004)] = 121656, - [SMALL_STATE(3005)] = 121676, - [SMALL_STATE(3006)] = 121702, - [SMALL_STATE(3007)] = 121722, - [SMALL_STATE(3008)] = 121744, - [SMALL_STATE(3009)] = 121766, - [SMALL_STATE(3010)] = 121786, - [SMALL_STATE(3011)] = 121814, - [SMALL_STATE(3012)] = 121850, - [SMALL_STATE(3013)] = 121870, - [SMALL_STATE(3014)] = 121890, - [SMALL_STATE(3015)] = 121914, - [SMALL_STATE(3016)] = 121936, - [SMALL_STATE(3017)] = 121956, - [SMALL_STATE(3018)] = 121976, - [SMALL_STATE(3019)] = 121996, - [SMALL_STATE(3020)] = 122018, - [SMALL_STATE(3021)] = 122042, - [SMALL_STATE(3022)] = 122064, - [SMALL_STATE(3023)] = 122086, - [SMALL_STATE(3024)] = 122110, - [SMALL_STATE(3025)] = 122132, - [SMALL_STATE(3026)] = 122154, - [SMALL_STATE(3027)] = 122176, - [SMALL_STATE(3028)] = 122198, - [SMALL_STATE(3029)] = 122234, - [SMALL_STATE(3030)] = 122256, - [SMALL_STATE(3031)] = 122292, - [SMALL_STATE(3032)] = 122320, - [SMALL_STATE(3033)] = 122340, - [SMALL_STATE(3034)] = 122360, - [SMALL_STATE(3035)] = 122396, - [SMALL_STATE(3036)] = 122416, - [SMALL_STATE(3037)] = 122436, - [SMALL_STATE(3038)] = 122472, - [SMALL_STATE(3039)] = 122494, - [SMALL_STATE(3040)] = 122514, - [SMALL_STATE(3041)] = 122534, - [SMALL_STATE(3042)] = 122554, - [SMALL_STATE(3043)] = 122596, - [SMALL_STATE(3044)] = 122616, - [SMALL_STATE(3045)] = 122652, - [SMALL_STATE(3046)] = 122688, - [SMALL_STATE(3047)] = 122708, - [SMALL_STATE(3048)] = 122728, - [SMALL_STATE(3049)] = 122748, - [SMALL_STATE(3050)] = 122768, - [SMALL_STATE(3051)] = 122788, - [SMALL_STATE(3052)] = 122808, - [SMALL_STATE(3053)] = 122828, - [SMALL_STATE(3054)] = 122848, - [SMALL_STATE(3055)] = 122868, - [SMALL_STATE(3056)] = 122888, - [SMALL_STATE(3057)] = 122908, - [SMALL_STATE(3058)] = 122928, - [SMALL_STATE(3059)] = 122948, - [SMALL_STATE(3060)] = 122968, - [SMALL_STATE(3061)] = 122988, - [SMALL_STATE(3062)] = 123016, - [SMALL_STATE(3063)] = 123044, - [SMALL_STATE(3064)] = 123064, - [SMALL_STATE(3065)] = 123092, - [SMALL_STATE(3066)] = 123128, - [SMALL_STATE(3067)] = 123156, - [SMALL_STATE(3068)] = 123198, - [SMALL_STATE(3069)] = 123234, - [SMALL_STATE(3070)] = 123270, - [SMALL_STATE(3071)] = 123306, - [SMALL_STATE(3072)] = 123330, - [SMALL_STATE(3073)] = 123366, - [SMALL_STATE(3074)] = 123402, - [SMALL_STATE(3075)] = 123438, - [SMALL_STATE(3076)] = 123460, - [SMALL_STATE(3077)] = 123488, - [SMALL_STATE(3078)] = 123510, - [SMALL_STATE(3079)] = 123546, - [SMALL_STATE(3080)] = 123566, - [SMALL_STATE(3081)] = 123603, - [SMALL_STATE(3082)] = 123636, - [SMALL_STATE(3083)] = 123665, - [SMALL_STATE(3084)] = 123702, - [SMALL_STATE(3085)] = 123741, - [SMALL_STATE(3086)] = 123772, - [SMALL_STATE(3087)] = 123811, - [SMALL_STATE(3088)] = 123842, - [SMALL_STATE(3089)] = 123879, - [SMALL_STATE(3090)] = 123910, - [SMALL_STATE(3091)] = 123949, - [SMALL_STATE(3092)] = 123986, - [SMALL_STATE(3093)] = 124011, - [SMALL_STATE(3094)] = 124048, - [SMALL_STATE(3095)] = 124085, - [SMALL_STATE(3096)] = 124122, - [SMALL_STATE(3097)] = 124159, - [SMALL_STATE(3098)] = 124196, - [SMALL_STATE(3099)] = 124221, - [SMALL_STATE(3100)] = 124258, - [SMALL_STATE(3101)] = 124291, - [SMALL_STATE(3102)] = 124312, - [SMALL_STATE(3103)] = 124333, - [SMALL_STATE(3104)] = 124370, - [SMALL_STATE(3105)] = 124391, - [SMALL_STATE(3106)] = 124428, - [SMALL_STATE(3107)] = 124465, - [SMALL_STATE(3108)] = 124488, - [SMALL_STATE(3109)] = 124519, - [SMALL_STATE(3110)] = 124558, - [SMALL_STATE(3111)] = 124595, - [SMALL_STATE(3112)] = 124634, - [SMALL_STATE(3113)] = 124667, - [SMALL_STATE(3114)] = 124700, - [SMALL_STATE(3115)] = 124719, - [SMALL_STATE(3116)] = 124752, - [SMALL_STATE(3117)] = 124781, - [SMALL_STATE(3118)] = 124810, - [SMALL_STATE(3119)] = 124829, - [SMALL_STATE(3120)] = 124862, - [SMALL_STATE(3121)] = 124885, - [SMALL_STATE(3122)] = 124922, - [SMALL_STATE(3123)] = 124955, - [SMALL_STATE(3124)] = 124984, - [SMALL_STATE(3125)] = 125017, - [SMALL_STATE(3126)] = 125038, - [SMALL_STATE(3127)] = 125071, - [SMALL_STATE(3128)] = 125104, - [SMALL_STATE(3129)] = 125133, - [SMALL_STATE(3130)] = 125170, - [SMALL_STATE(3131)] = 125207, - [SMALL_STATE(3132)] = 125244, - [SMALL_STATE(3133)] = 125281, - [SMALL_STATE(3134)] = 125318, - [SMALL_STATE(3135)] = 125355, - [SMALL_STATE(3136)] = 125392, - [SMALL_STATE(3137)] = 125429, - [SMALL_STATE(3138)] = 125452, - [SMALL_STATE(3139)] = 125475, - [SMALL_STATE(3140)] = 125508, - [SMALL_STATE(3141)] = 125539, - [SMALL_STATE(3142)] = 125559, - [SMALL_STATE(3143)] = 125579, - [SMALL_STATE(3144)] = 125603, - [SMALL_STATE(3145)] = 125627, - [SMALL_STATE(3146)] = 125647, - [SMALL_STATE(3147)] = 125671, - [SMALL_STATE(3148)] = 125691, - [SMALL_STATE(3149)] = 125711, - [SMALL_STATE(3150)] = 125735, - [SMALL_STATE(3151)] = 125757, - [SMALL_STATE(3152)] = 125779, - [SMALL_STATE(3153)] = 125805, - [SMALL_STATE(3154)] = 125823, - [SMALL_STATE(3155)] = 125843, - [SMALL_STATE(3156)] = 125861, - [SMALL_STATE(3157)] = 125881, - [SMALL_STATE(3158)] = 125899, - [SMALL_STATE(3159)] = 125917, - [SMALL_STATE(3160)] = 125937, - [SMALL_STATE(3161)] = 125957, - [SMALL_STATE(3162)] = 125977, - [SMALL_STATE(3163)] = 125999, - [SMALL_STATE(3164)] = 126019, - [SMALL_STATE(3165)] = 126043, - [SMALL_STATE(3166)] = 126065, - [SMALL_STATE(3167)] = 126083, - [SMALL_STATE(3168)] = 126109, - [SMALL_STATE(3169)] = 126129, - [SMALL_STATE(3170)] = 126149, - [SMALL_STATE(3171)] = 126169, - [SMALL_STATE(3172)] = 126189, - [SMALL_STATE(3173)] = 126209, - [SMALL_STATE(3174)] = 126229, - [SMALL_STATE(3175)] = 126253, - [SMALL_STATE(3176)] = 126273, - [SMALL_STATE(3177)] = 126293, - [SMALL_STATE(3178)] = 126313, - [SMALL_STATE(3179)] = 126333, - [SMALL_STATE(3180)] = 126353, - [SMALL_STATE(3181)] = 126373, - [SMALL_STATE(3182)] = 126397, - [SMALL_STATE(3183)] = 126433, - [SMALL_STATE(3184)] = 126455, - [SMALL_STATE(3185)] = 126475, - [SMALL_STATE(3186)] = 126495, - [SMALL_STATE(3187)] = 126515, - [SMALL_STATE(3188)] = 126535, - [SMALL_STATE(3189)] = 126555, - [SMALL_STATE(3190)] = 126575, - [SMALL_STATE(3191)] = 126599, - [SMALL_STATE(3192)] = 126621, - [SMALL_STATE(3193)] = 126639, - [SMALL_STATE(3194)] = 126657, - [SMALL_STATE(3195)] = 126675, - [SMALL_STATE(3196)] = 126693, - [SMALL_STATE(3197)] = 126715, - [SMALL_STATE(3198)] = 126733, - [SMALL_STATE(3199)] = 126751, - [SMALL_STATE(3200)] = 126771, - [SMALL_STATE(3201)] = 126791, - [SMALL_STATE(3202)] = 126811, - [SMALL_STATE(3203)] = 126831, - [SMALL_STATE(3204)] = 126849, - [SMALL_STATE(3205)] = 126871, - [SMALL_STATE(3206)] = 126889, - [SMALL_STATE(3207)] = 126909, - [SMALL_STATE(3208)] = 126929, - [SMALL_STATE(3209)] = 126949, - [SMALL_STATE(3210)] = 126967, - [SMALL_STATE(3211)] = 126987, - [SMALL_STATE(3212)] = 127007, - [SMALL_STATE(3213)] = 127036, - [SMALL_STATE(3214)] = 127071, - [SMALL_STATE(3215)] = 127106, - [SMALL_STATE(3216)] = 127139, - [SMALL_STATE(3217)] = 127156, - [SMALL_STATE(3218)] = 127191, - [SMALL_STATE(3219)] = 127224, - [SMALL_STATE(3220)] = 127247, - [SMALL_STATE(3221)] = 127270, - [SMALL_STATE(3222)] = 127287, - [SMALL_STATE(3223)] = 127304, - [SMALL_STATE(3224)] = 127339, - [SMALL_STATE(3225)] = 127370, - [SMALL_STATE(3226)] = 127405, - [SMALL_STATE(3227)] = 127430, - [SMALL_STATE(3228)] = 127449, - [SMALL_STATE(3229)] = 127482, - [SMALL_STATE(3230)] = 127503, - [SMALL_STATE(3231)] = 127524, - [SMALL_STATE(3232)] = 127559, - [SMALL_STATE(3233)] = 127590, - [SMALL_STATE(3234)] = 127619, - [SMALL_STATE(3235)] = 127638, - [SMALL_STATE(3236)] = 127673, - [SMALL_STATE(3237)] = 127708, - [SMALL_STATE(3238)] = 127741, - [SMALL_STATE(3239)] = 127764, - [SMALL_STATE(3240)] = 127799, - [SMALL_STATE(3241)] = 127832, - [SMALL_STATE(3242)] = 127851, - [SMALL_STATE(3243)] = 127886, - [SMALL_STATE(3244)] = 127919, - [SMALL_STATE(3245)] = 127940, - [SMALL_STATE(3246)] = 127957, - [SMALL_STATE(3247)] = 127992, - [SMALL_STATE(3248)] = 128011, - [SMALL_STATE(3249)] = 128037, - [SMALL_STATE(3250)] = 128053, - [SMALL_STATE(3251)] = 128083, - [SMALL_STATE(3252)] = 128113, - [SMALL_STATE(3253)] = 128143, - [SMALL_STATE(3254)] = 128173, - [SMALL_STATE(3255)] = 128203, - [SMALL_STATE(3256)] = 128233, - [SMALL_STATE(3257)] = 128263, - [SMALL_STATE(3258)] = 128295, - [SMALL_STATE(3259)] = 128327, - [SMALL_STATE(3260)] = 128357, - [SMALL_STATE(3261)] = 128387, - [SMALL_STATE(3262)] = 128419, - [SMALL_STATE(3263)] = 128435, - [SMALL_STATE(3264)] = 128451, - [SMALL_STATE(3265)] = 128479, - [SMALL_STATE(3266)] = 128495, - [SMALL_STATE(3267)] = 128511, - [SMALL_STATE(3268)] = 128527, - [SMALL_STATE(3269)] = 128543, - [SMALL_STATE(3270)] = 128573, - [SMALL_STATE(3271)] = 128601, - [SMALL_STATE(3272)] = 128631, - [SMALL_STATE(3273)] = 128661, - [SMALL_STATE(3274)] = 128691, - [SMALL_STATE(3275)] = 128721, - [SMALL_STATE(3276)] = 128751, - [SMALL_STATE(3277)] = 128781, - [SMALL_STATE(3278)] = 128813, - [SMALL_STATE(3279)] = 128843, - [SMALL_STATE(3280)] = 128873, - [SMALL_STATE(3281)] = 128905, - [SMALL_STATE(3282)] = 128931, - [SMALL_STATE(3283)] = 128947, - [SMALL_STATE(3284)] = 128965, - [SMALL_STATE(3285)] = 128981, - [SMALL_STATE(3286)] = 129005, - [SMALL_STATE(3287)] = 129021, - [SMALL_STATE(3288)] = 129053, - [SMALL_STATE(3289)] = 129075, - [SMALL_STATE(3290)] = 129107, - [SMALL_STATE(3291)] = 129135, - [SMALL_STATE(3292)] = 129165, - [SMALL_STATE(3293)] = 129195, - [SMALL_STATE(3294)] = 129227, - [SMALL_STATE(3295)] = 129253, - [SMALL_STATE(3296)] = 129281, - [SMALL_STATE(3297)] = 129309, - [SMALL_STATE(3298)] = 129337, - [SMALL_STATE(3299)] = 129365, - [SMALL_STATE(3300)] = 129397, - [SMALL_STATE(3301)] = 129427, - [SMALL_STATE(3302)] = 129459, - [SMALL_STATE(3303)] = 129489, - [SMALL_STATE(3304)] = 129505, - [SMALL_STATE(3305)] = 129535, - [SMALL_STATE(3306)] = 129567, - [SMALL_STATE(3307)] = 129583, - [SMALL_STATE(3308)] = 129609, - [SMALL_STATE(3309)] = 129625, - [SMALL_STATE(3310)] = 129655, - [SMALL_STATE(3311)] = 129683, - [SMALL_STATE(3312)] = 129709, - [SMALL_STATE(3313)] = 129737, - [SMALL_STATE(3314)] = 129769, - [SMALL_STATE(3315)] = 129785, - [SMALL_STATE(3316)] = 129801, - [SMALL_STATE(3317)] = 129817, - [SMALL_STATE(3318)] = 129843, - [SMALL_STATE(3319)] = 129871, - [SMALL_STATE(3320)] = 129887, - [SMALL_STATE(3321)] = 129915, - [SMALL_STATE(3322)] = 129931, - [SMALL_STATE(3323)] = 129947, - [SMALL_STATE(3324)] = 129963, - [SMALL_STATE(3325)] = 129989, - [SMALL_STATE(3326)] = 130005, - [SMALL_STATE(3327)] = 130035, - [SMALL_STATE(3328)] = 130053, - [SMALL_STATE(3329)] = 130069, - [SMALL_STATE(3330)] = 130085, - [SMALL_STATE(3331)] = 130107, - [SMALL_STATE(3332)] = 130127, - [SMALL_STATE(3333)] = 130147, - [SMALL_STATE(3334)] = 130165, - [SMALL_STATE(3335)] = 130183, - [SMALL_STATE(3336)] = 130199, - [SMALL_STATE(3337)] = 130227, - [SMALL_STATE(3338)] = 130255, - [SMALL_STATE(3339)] = 130287, - [SMALL_STATE(3340)] = 130319, - [SMALL_STATE(3341)] = 130349, - [SMALL_STATE(3342)] = 130365, - [SMALL_STATE(3343)] = 130393, - [SMALL_STATE(3344)] = 130409, - [SMALL_STATE(3345)] = 130441, - [SMALL_STATE(3346)] = 130457, - [SMALL_STATE(3347)] = 130473, - [SMALL_STATE(3348)] = 130505, - [SMALL_STATE(3349)] = 130535, - [SMALL_STATE(3350)] = 130561, - [SMALL_STATE(3351)] = 130591, - [SMALL_STATE(3352)] = 130613, - [SMALL_STATE(3353)] = 130629, - [SMALL_STATE(3354)] = 130661, - [SMALL_STATE(3355)] = 130677, - [SMALL_STATE(3356)] = 130709, - [SMALL_STATE(3357)] = 130725, - [SMALL_STATE(3358)] = 130741, - [SMALL_STATE(3359)] = 130767, - [SMALL_STATE(3360)] = 130795, - [SMALL_STATE(3361)] = 130823, - [SMALL_STATE(3362)] = 130839, - [SMALL_STATE(3363)] = 130869, - [SMALL_STATE(3364)] = 130885, - [SMALL_STATE(3365)] = 130907, - [SMALL_STATE(3366)] = 130939, - [SMALL_STATE(3367)] = 130961, - [SMALL_STATE(3368)] = 130993, - [SMALL_STATE(3369)] = 131025, - [SMALL_STATE(3370)] = 131047, - [SMALL_STATE(3371)] = 131075, - [SMALL_STATE(3372)] = 131091, - [SMALL_STATE(3373)] = 131117, - [SMALL_STATE(3374)] = 131149, - [SMALL_STATE(3375)] = 131175, - [SMALL_STATE(3376)] = 131205, - [SMALL_STATE(3377)] = 131235, - [SMALL_STATE(3378)] = 131263, - [SMALL_STATE(3379)] = 131293, - [SMALL_STATE(3380)] = 131323, - [SMALL_STATE(3381)] = 131353, - [SMALL_STATE(3382)] = 131383, - [SMALL_STATE(3383)] = 131411, - [SMALL_STATE(3384)] = 131439, - [SMALL_STATE(3385)] = 131467, - [SMALL_STATE(3386)] = 131499, - [SMALL_STATE(3387)] = 131527, - [SMALL_STATE(3388)] = 131555, - [SMALL_STATE(3389)] = 131583, - [SMALL_STATE(3390)] = 131611, - [SMALL_STATE(3391)] = 131639, - [SMALL_STATE(3392)] = 131667, - [SMALL_STATE(3393)] = 131695, - [SMALL_STATE(3394)] = 131723, - [SMALL_STATE(3395)] = 131755, - [SMALL_STATE(3396)] = 131771, - [SMALL_STATE(3397)] = 131799, - [SMALL_STATE(3398)] = 131827, - [SMALL_STATE(3399)] = 131855, - [SMALL_STATE(3400)] = 131873, - [SMALL_STATE(3401)] = 131905, - [SMALL_STATE(3402)] = 131937, - [SMALL_STATE(3403)] = 131969, - [SMALL_STATE(3404)] = 131985, - [SMALL_STATE(3405)] = 132013, - [SMALL_STATE(3406)] = 132043, - [SMALL_STATE(3407)] = 132073, - [SMALL_STATE(3408)] = 132105, - [SMALL_STATE(3409)] = 132121, - [SMALL_STATE(3410)] = 132153, - [SMALL_STATE(3411)] = 132169, - [SMALL_STATE(3412)] = 132185, - [SMALL_STATE(3413)] = 132217, - [SMALL_STATE(3414)] = 132247, - [SMALL_STATE(3415)] = 132275, - [SMALL_STATE(3416)] = 132295, - [SMALL_STATE(3417)] = 132321, - [SMALL_STATE(3418)] = 132349, - [SMALL_STATE(3419)] = 132375, - [SMALL_STATE(3420)] = 132401, - [SMALL_STATE(3421)] = 132427, - [SMALL_STATE(3422)] = 132443, - [SMALL_STATE(3423)] = 132469, - [SMALL_STATE(3424)] = 132485, - [SMALL_STATE(3425)] = 132511, - [SMALL_STATE(3426)] = 132539, - [SMALL_STATE(3427)] = 132561, - [SMALL_STATE(3428)] = 132589, - [SMALL_STATE(3429)] = 132605, - [SMALL_STATE(3430)] = 132633, - [SMALL_STATE(3431)] = 132649, - [SMALL_STATE(3432)] = 132671, - [SMALL_STATE(3433)] = 132687, - [SMALL_STATE(3434)] = 132703, - [SMALL_STATE(3435)] = 132731, - [SMALL_STATE(3436)] = 132759, - [SMALL_STATE(3437)] = 132787, - [SMALL_STATE(3438)] = 132815, - [SMALL_STATE(3439)] = 132847, - [SMALL_STATE(3440)] = 132875, - [SMALL_STATE(3441)] = 132903, - [SMALL_STATE(3442)] = 132933, - [SMALL_STATE(3443)] = 132965, - [SMALL_STATE(3444)] = 132993, - [SMALL_STATE(3445)] = 133021, - [SMALL_STATE(3446)] = 133049, - [SMALL_STATE(3447)] = 133081, - [SMALL_STATE(3448)] = 133104, - [SMALL_STATE(3449)] = 133119, - [SMALL_STATE(3450)] = 133148, - [SMALL_STATE(3451)] = 133177, - [SMALL_STATE(3452)] = 133200, - [SMALL_STATE(3453)] = 133223, - [SMALL_STATE(3454)] = 133246, - [SMALL_STATE(3455)] = 133267, - [SMALL_STATE(3456)] = 133288, - [SMALL_STATE(3457)] = 133309, - [SMALL_STATE(3458)] = 133332, - [SMALL_STATE(3459)] = 133355, - [SMALL_STATE(3460)] = 133372, - [SMALL_STATE(3461)] = 133395, - [SMALL_STATE(3462)] = 133420, - [SMALL_STATE(3463)] = 133449, - [SMALL_STATE(3464)] = 133470, - [SMALL_STATE(3465)] = 133495, - [SMALL_STATE(3466)] = 133520, - [SMALL_STATE(3467)] = 133543, - [SMALL_STATE(3468)] = 133572, - [SMALL_STATE(3469)] = 133597, - [SMALL_STATE(3470)] = 133622, - [SMALL_STATE(3471)] = 133651, - [SMALL_STATE(3472)] = 133676, - [SMALL_STATE(3473)] = 133705, - [SMALL_STATE(3474)] = 133730, - [SMALL_STATE(3475)] = 133759, - [SMALL_STATE(3476)] = 133784, - [SMALL_STATE(3477)] = 133805, - [SMALL_STATE(3478)] = 133820, - [SMALL_STATE(3479)] = 133845, - [SMALL_STATE(3480)] = 133870, - [SMALL_STATE(3481)] = 133887, - [SMALL_STATE(3482)] = 133908, - [SMALL_STATE(3483)] = 133925, - [SMALL_STATE(3484)] = 133950, - [SMALL_STATE(3485)] = 133965, - [SMALL_STATE(3486)] = 133990, - [SMALL_STATE(3487)] = 134019, - [SMALL_STATE(3488)] = 134036, - [SMALL_STATE(3489)] = 134053, - [SMALL_STATE(3490)] = 134076, - [SMALL_STATE(3491)] = 134098, - [SMALL_STATE(3492)] = 134120, - [SMALL_STATE(3493)] = 134142, - [SMALL_STATE(3494)] = 134164, - [SMALL_STATE(3495)] = 134186, - [SMALL_STATE(3496)] = 134206, - [SMALL_STATE(3497)] = 134222, - [SMALL_STATE(3498)] = 134244, - [SMALL_STATE(3499)] = 134262, - [SMALL_STATE(3500)] = 134280, - [SMALL_STATE(3501)] = 134306, - [SMALL_STATE(3502)] = 134324, - [SMALL_STATE(3503)] = 134338, - [SMALL_STATE(3504)] = 134360, - [SMALL_STATE(3505)] = 134382, - [SMALL_STATE(3506)] = 134404, - [SMALL_STATE(3507)] = 134418, - [SMALL_STATE(3508)] = 134440, - [SMALL_STATE(3509)] = 134466, - [SMALL_STATE(3510)] = 134492, - [SMALL_STATE(3511)] = 134514, - [SMALL_STATE(3512)] = 134536, - [SMALL_STATE(3513)] = 134556, - [SMALL_STATE(3514)] = 134578, - [SMALL_STATE(3515)] = 134592, - [SMALL_STATE(3516)] = 134618, - [SMALL_STATE(3517)] = 134642, - [SMALL_STATE(3518)] = 134664, - [SMALL_STATE(3519)] = 134690, - [SMALL_STATE(3520)] = 134712, - [SMALL_STATE(3521)] = 134734, - [SMALL_STATE(3522)] = 134760, - [SMALL_STATE(3523)] = 134776, - [SMALL_STATE(3524)] = 134798, - [SMALL_STATE(3525)] = 134820, - [SMALL_STATE(3526)] = 134842, - [SMALL_STATE(3527)] = 134864, - [SMALL_STATE(3528)] = 134886, - [SMALL_STATE(3529)] = 134908, - [SMALL_STATE(3530)] = 134930, - [SMALL_STATE(3531)] = 134944, - [SMALL_STATE(3532)] = 134958, - [SMALL_STATE(3533)] = 134980, - [SMALL_STATE(3534)] = 135002, - [SMALL_STATE(3535)] = 135028, - [SMALL_STATE(3536)] = 135046, - [SMALL_STATE(3537)] = 135068, - [SMALL_STATE(3538)] = 135090, - [SMALL_STATE(3539)] = 135112, - [SMALL_STATE(3540)] = 135126, - [SMALL_STATE(3541)] = 135144, - [SMALL_STATE(3542)] = 135170, - [SMALL_STATE(3543)] = 135192, - [SMALL_STATE(3544)] = 135214, - [SMALL_STATE(3545)] = 135240, - [SMALL_STATE(3546)] = 135266, - [SMALL_STATE(3547)] = 135292, - [SMALL_STATE(3548)] = 135314, - [SMALL_STATE(3549)] = 135336, - [SMALL_STATE(3550)] = 135350, - [SMALL_STATE(3551)] = 135364, - [SMALL_STATE(3552)] = 135386, - [SMALL_STATE(3553)] = 135408, - [SMALL_STATE(3554)] = 135430, - [SMALL_STATE(3555)] = 135444, - [SMALL_STATE(3556)] = 135458, - [SMALL_STATE(3557)] = 135480, - [SMALL_STATE(3558)] = 135502, - [SMALL_STATE(3559)] = 135524, - [SMALL_STATE(3560)] = 135546, - [SMALL_STATE(3561)] = 135572, - [SMALL_STATE(3562)] = 135594, - [SMALL_STATE(3563)] = 135620, - [SMALL_STATE(3564)] = 135642, - [SMALL_STATE(3565)] = 135664, - [SMALL_STATE(3566)] = 135682, - [SMALL_STATE(3567)] = 135704, - [SMALL_STATE(3568)] = 135726, - [SMALL_STATE(3569)] = 135752, - [SMALL_STATE(3570)] = 135770, - [SMALL_STATE(3571)] = 135792, - [SMALL_STATE(3572)] = 135806, - [SMALL_STATE(3573)] = 135828, - [SMALL_STATE(3574)] = 135850, - [SMALL_STATE(3575)] = 135872, - [SMALL_STATE(3576)] = 135890, - [SMALL_STATE(3577)] = 135912, - [SMALL_STATE(3578)] = 135930, - [SMALL_STATE(3579)] = 135954, - [SMALL_STATE(3580)] = 135968, - [SMALL_STATE(3581)] = 135986, - [SMALL_STATE(3582)] = 136002, - [SMALL_STATE(3583)] = 136024, - [SMALL_STATE(3584)] = 136046, - [SMALL_STATE(3585)] = 136068, - [SMALL_STATE(3586)] = 136090, - [SMALL_STATE(3587)] = 136112, - [SMALL_STATE(3588)] = 136134, - [SMALL_STATE(3589)] = 136156, - [SMALL_STATE(3590)] = 136178, - [SMALL_STATE(3591)] = 136200, - [SMALL_STATE(3592)] = 136226, - [SMALL_STATE(3593)] = 136248, - [SMALL_STATE(3594)] = 136274, - [SMALL_STATE(3595)] = 136296, - [SMALL_STATE(3596)] = 136318, - [SMALL_STATE(3597)] = 136332, - [SMALL_STATE(3598)] = 136354, - [SMALL_STATE(3599)] = 136376, - [SMALL_STATE(3600)] = 136398, - [SMALL_STATE(3601)] = 136420, - [SMALL_STATE(3602)] = 136442, - [SMALL_STATE(3603)] = 136468, - [SMALL_STATE(3604)] = 136490, - [SMALL_STATE(3605)] = 136512, - [SMALL_STATE(3606)] = 136530, - [SMALL_STATE(3607)] = 136556, - [SMALL_STATE(3608)] = 136578, - [SMALL_STATE(3609)] = 136600, - [SMALL_STATE(3610)] = 136622, - [SMALL_STATE(3611)] = 136640, - [SMALL_STATE(3612)] = 136662, - [SMALL_STATE(3613)] = 136684, - [SMALL_STATE(3614)] = 136706, - [SMALL_STATE(3615)] = 136732, - [SMALL_STATE(3616)] = 136754, - [SMALL_STATE(3617)] = 136780, - [SMALL_STATE(3618)] = 136802, - [SMALL_STATE(3619)] = 136818, - [SMALL_STATE(3620)] = 136844, - [SMALL_STATE(3621)] = 136870, - [SMALL_STATE(3622)] = 136896, - [SMALL_STATE(3623)] = 136922, - [SMALL_STATE(3624)] = 136948, - [SMALL_STATE(3625)] = 136974, - [SMALL_STATE(3626)] = 136990, - [SMALL_STATE(3627)] = 137016, - [SMALL_STATE(3628)] = 137034, - [SMALL_STATE(3629)] = 137052, - [SMALL_STATE(3630)] = 137078, - [SMALL_STATE(3631)] = 137096, - [SMALL_STATE(3632)] = 137114, - [SMALL_STATE(3633)] = 137132, - [SMALL_STATE(3634)] = 137148, - [SMALL_STATE(3635)] = 137174, - [SMALL_STATE(3636)] = 137192, - [SMALL_STATE(3637)] = 137214, - [SMALL_STATE(3638)] = 137240, - [SMALL_STATE(3639)] = 137262, - [SMALL_STATE(3640)] = 137288, - [SMALL_STATE(3641)] = 137304, - [SMALL_STATE(3642)] = 137324, - [SMALL_STATE(3643)] = 137340, - [SMALL_STATE(3644)] = 137362, - [SMALL_STATE(3645)] = 137384, - [SMALL_STATE(3646)] = 137398, - [SMALL_STATE(3647)] = 137420, - [SMALL_STATE(3648)] = 137436, - [SMALL_STATE(3649)] = 137458, - [SMALL_STATE(3650)] = 137474, - [SMALL_STATE(3651)] = 137496, - [SMALL_STATE(3652)] = 137522, - [SMALL_STATE(3653)] = 137548, - [SMALL_STATE(3654)] = 137566, - [SMALL_STATE(3655)] = 137582, - [SMALL_STATE(3656)] = 137604, - [SMALL_STATE(3657)] = 137622, - [SMALL_STATE(3658)] = 137640, - [SMALL_STATE(3659)] = 137658, - [SMALL_STATE(3660)] = 137676, - [SMALL_STATE(3661)] = 137690, - [SMALL_STATE(3662)] = 137712, - [SMALL_STATE(3663)] = 137730, - [SMALL_STATE(3664)] = 137752, - [SMALL_STATE(3665)] = 137774, - [SMALL_STATE(3666)] = 137796, - [SMALL_STATE(3667)] = 137818, - [SMALL_STATE(3668)] = 137832, - [SMALL_STATE(3669)] = 137854, - [SMALL_STATE(3670)] = 137876, - [SMALL_STATE(3671)] = 137902, - [SMALL_STATE(3672)] = 137924, - [SMALL_STATE(3673)] = 137950, - [SMALL_STATE(3674)] = 137976, - [SMALL_STATE(3675)] = 137998, - [SMALL_STATE(3676)] = 138020, - [SMALL_STATE(3677)] = 138042, - [SMALL_STATE(3678)] = 138064, - [SMALL_STATE(3679)] = 138086, - [SMALL_STATE(3680)] = 138106, - [SMALL_STATE(3681)] = 138128, - [SMALL_STATE(3682)] = 138154, - [SMALL_STATE(3683)] = 138176, - [SMALL_STATE(3684)] = 138198, - [SMALL_STATE(3685)] = 138214, - [SMALL_STATE(3686)] = 138236, - [SMALL_STATE(3687)] = 138256, - [SMALL_STATE(3688)] = 138278, - [SMALL_STATE(3689)] = 138300, - [SMALL_STATE(3690)] = 138318, - [SMALL_STATE(3691)] = 138344, - [SMALL_STATE(3692)] = 138366, - [SMALL_STATE(3693)] = 138384, - [SMALL_STATE(3694)] = 138406, - [SMALL_STATE(3695)] = 138432, - [SMALL_STATE(3696)] = 138454, - [SMALL_STATE(3697)] = 138476, - [SMALL_STATE(3698)] = 138494, - [SMALL_STATE(3699)] = 138514, - [SMALL_STATE(3700)] = 138534, - [SMALL_STATE(3701)] = 138556, - [SMALL_STATE(3702)] = 138578, - [SMALL_STATE(3703)] = 138604, - [SMALL_STATE(3704)] = 138626, - [SMALL_STATE(3705)] = 138648, - [SMALL_STATE(3706)] = 138670, - [SMALL_STATE(3707)] = 138692, - [SMALL_STATE(3708)] = 138714, - [SMALL_STATE(3709)] = 138736, - [SMALL_STATE(3710)] = 138758, - [SMALL_STATE(3711)] = 138780, - [SMALL_STATE(3712)] = 138802, - [SMALL_STATE(3713)] = 138824, - [SMALL_STATE(3714)] = 138846, - [SMALL_STATE(3715)] = 138864, - [SMALL_STATE(3716)] = 138884, - [SMALL_STATE(3717)] = 138906, - [SMALL_STATE(3718)] = 138932, - [SMALL_STATE(3719)] = 138952, - [SMALL_STATE(3720)] = 138974, - [SMALL_STATE(3721)] = 139000, - [SMALL_STATE(3722)] = 139015, - [SMALL_STATE(3723)] = 139028, - [SMALL_STATE(3724)] = 139051, - [SMALL_STATE(3725)] = 139074, - [SMALL_STATE(3726)] = 139093, - [SMALL_STATE(3727)] = 139116, - [SMALL_STATE(3728)] = 139131, - [SMALL_STATE(3729)] = 139144, - [SMALL_STATE(3730)] = 139161, - [SMALL_STATE(3731)] = 139184, - [SMALL_STATE(3732)] = 139201, - [SMALL_STATE(3733)] = 139216, - [SMALL_STATE(3734)] = 139231, - [SMALL_STATE(3735)] = 139246, - [SMALL_STATE(3736)] = 139261, - [SMALL_STATE(3737)] = 139284, - [SMALL_STATE(3738)] = 139307, - [SMALL_STATE(3739)] = 139330, - [SMALL_STATE(3740)] = 139347, - [SMALL_STATE(3741)] = 139364, - [SMALL_STATE(3742)] = 139381, - [SMALL_STATE(3743)] = 139398, - [SMALL_STATE(3744)] = 139415, - [SMALL_STATE(3745)] = 139430, - [SMALL_STATE(3746)] = 139453, - [SMALL_STATE(3747)] = 139470, - [SMALL_STATE(3748)] = 139489, - [SMALL_STATE(3749)] = 139504, - [SMALL_STATE(3750)] = 139527, - [SMALL_STATE(3751)] = 139544, - [SMALL_STATE(3752)] = 139559, - [SMALL_STATE(3753)] = 139574, - [SMALL_STATE(3754)] = 139597, - [SMALL_STATE(3755)] = 139620, - [SMALL_STATE(3756)] = 139639, - [SMALL_STATE(3757)] = 139658, - [SMALL_STATE(3758)] = 139673, - [SMALL_STATE(3759)] = 139690, - [SMALL_STATE(3760)] = 139707, - [SMALL_STATE(3761)] = 139730, - [SMALL_STATE(3762)] = 139753, - [SMALL_STATE(3763)] = 139772, - [SMALL_STATE(3764)] = 139795, - [SMALL_STATE(3765)] = 139812, - [SMALL_STATE(3766)] = 139831, - [SMALL_STATE(3767)] = 139848, - [SMALL_STATE(3768)] = 139871, - [SMALL_STATE(3769)] = 139886, - [SMALL_STATE(3770)] = 139903, - [SMALL_STATE(3771)] = 139926, - [SMALL_STATE(3772)] = 139945, - [SMALL_STATE(3773)] = 139964, - [SMALL_STATE(3774)] = 139987, - [SMALL_STATE(3775)] = 140010, - [SMALL_STATE(3776)] = 140033, - [SMALL_STATE(3777)] = 140054, - [SMALL_STATE(3778)] = 140071, - [SMALL_STATE(3779)] = 140094, - [SMALL_STATE(3780)] = 140117, - [SMALL_STATE(3781)] = 140140, - [SMALL_STATE(3782)] = 140159, - [SMALL_STATE(3783)] = 140176, - [SMALL_STATE(3784)] = 140191, - [SMALL_STATE(3785)] = 140206, - [SMALL_STATE(3786)] = 140229, - [SMALL_STATE(3787)] = 140246, - [SMALL_STATE(3788)] = 140259, - [SMALL_STATE(3789)] = 140274, - [SMALL_STATE(3790)] = 140287, - [SMALL_STATE(3791)] = 140300, - [SMALL_STATE(3792)] = 140315, - [SMALL_STATE(3793)] = 140338, - [SMALL_STATE(3794)] = 140355, - [SMALL_STATE(3795)] = 140378, - [SMALL_STATE(3796)] = 140393, - [SMALL_STATE(3797)] = 140416, - [SMALL_STATE(3798)] = 140431, - [SMALL_STATE(3799)] = 140454, - [SMALL_STATE(3800)] = 140477, - [SMALL_STATE(3801)] = 140500, - [SMALL_STATE(3802)] = 140515, - [SMALL_STATE(3803)] = 140528, - [SMALL_STATE(3804)] = 140543, - [SMALL_STATE(3805)] = 140560, - [SMALL_STATE(3806)] = 140579, - [SMALL_STATE(3807)] = 140594, - [SMALL_STATE(3808)] = 140617, - [SMALL_STATE(3809)] = 140640, - [SMALL_STATE(3810)] = 140661, - [SMALL_STATE(3811)] = 140678, - [SMALL_STATE(3812)] = 140701, - [SMALL_STATE(3813)] = 140720, - [SMALL_STATE(3814)] = 140735, - [SMALL_STATE(3815)] = 140752, - [SMALL_STATE(3816)] = 140775, - [SMALL_STATE(3817)] = 140792, - [SMALL_STATE(3818)] = 140811, - [SMALL_STATE(3819)] = 140830, - [SMALL_STATE(3820)] = 140853, - [SMALL_STATE(3821)] = 140872, - [SMALL_STATE(3822)] = 140885, - [SMALL_STATE(3823)] = 140900, - [SMALL_STATE(3824)] = 140921, - [SMALL_STATE(3825)] = 140934, - [SMALL_STATE(3826)] = 140951, - [SMALL_STATE(3827)] = 140966, - [SMALL_STATE(3828)] = 140979, - [SMALL_STATE(3829)] = 141002, - [SMALL_STATE(3830)] = 141017, - [SMALL_STATE(3831)] = 141034, - [SMALL_STATE(3832)] = 141051, - [SMALL_STATE(3833)] = 141074, - [SMALL_STATE(3834)] = 141089, - [SMALL_STATE(3835)] = 141104, - [SMALL_STATE(3836)] = 141123, - [SMALL_STATE(3837)] = 141146, - [SMALL_STATE(3838)] = 141165, - [SMALL_STATE(3839)] = 141188, - [SMALL_STATE(3840)] = 141205, - [SMALL_STATE(3841)] = 141222, - [SMALL_STATE(3842)] = 141241, - [SMALL_STATE(3843)] = 141264, - [SMALL_STATE(3844)] = 141287, - [SMALL_STATE(3845)] = 141304, - [SMALL_STATE(3846)] = 141321, - [SMALL_STATE(3847)] = 141338, - [SMALL_STATE(3848)] = 141353, - [SMALL_STATE(3849)] = 141366, - [SMALL_STATE(3850)] = 141383, - [SMALL_STATE(3851)] = 141402, - [SMALL_STATE(3852)] = 141419, - [SMALL_STATE(3853)] = 141442, - [SMALL_STATE(3854)] = 141465, - [SMALL_STATE(3855)] = 141482, - [SMALL_STATE(3856)] = 141499, - [SMALL_STATE(3857)] = 141518, - [SMALL_STATE(3858)] = 141535, - [SMALL_STATE(3859)] = 141558, - [SMALL_STATE(3860)] = 141575, - [SMALL_STATE(3861)] = 141592, - [SMALL_STATE(3862)] = 141615, - [SMALL_STATE(3863)] = 141638, - [SMALL_STATE(3864)] = 141655, - [SMALL_STATE(3865)] = 141670, - [SMALL_STATE(3866)] = 141687, - [SMALL_STATE(3867)] = 141700, - [SMALL_STATE(3868)] = 141717, - [SMALL_STATE(3869)] = 141730, - [SMALL_STATE(3870)] = 141743, - [SMALL_STATE(3871)] = 141766, - [SMALL_STATE(3872)] = 141783, - [SMALL_STATE(3873)] = 141806, - [SMALL_STATE(3874)] = 141829, - [SMALL_STATE(3875)] = 141852, - [SMALL_STATE(3876)] = 141867, - [SMALL_STATE(3877)] = 141884, - [SMALL_STATE(3878)] = 141907, - [SMALL_STATE(3879)] = 141924, - [SMALL_STATE(3880)] = 141941, - [SMALL_STATE(3881)] = 141964, - [SMALL_STATE(3882)] = 141987, - [SMALL_STATE(3883)] = 142010, - [SMALL_STATE(3884)] = 142027, - [SMALL_STATE(3885)] = 142050, - [SMALL_STATE(3886)] = 142067, - [SMALL_STATE(3887)] = 142090, - [SMALL_STATE(3888)] = 142105, - [SMALL_STATE(3889)] = 142120, - [SMALL_STATE(3890)] = 142135, - [SMALL_STATE(3891)] = 142154, - [SMALL_STATE(3892)] = 142173, - [SMALL_STATE(3893)] = 142188, - [SMALL_STATE(3894)] = 142211, - [SMALL_STATE(3895)] = 142228, - [SMALL_STATE(3896)] = 142243, - [SMALL_STATE(3897)] = 142266, - [SMALL_STATE(3898)] = 142289, - [SMALL_STATE(3899)] = 142304, - [SMALL_STATE(3900)] = 142321, - [SMALL_STATE(3901)] = 142338, - [SMALL_STATE(3902)] = 142351, - [SMALL_STATE(3903)] = 142368, - [SMALL_STATE(3904)] = 142383, - [SMALL_STATE(3905)] = 142400, - [SMALL_STATE(3906)] = 142423, - [SMALL_STATE(3907)] = 142446, - [SMALL_STATE(3908)] = 142469, - [SMALL_STATE(3909)] = 142486, - [SMALL_STATE(3910)] = 142509, - [SMALL_STATE(3911)] = 142532, - [SMALL_STATE(3912)] = 142548, - [SMALL_STATE(3913)] = 142564, - [SMALL_STATE(3914)] = 142578, - [SMALL_STATE(3915)] = 142594, - [SMALL_STATE(3916)] = 142610, - [SMALL_STATE(3917)] = 142622, - [SMALL_STATE(3918)] = 142634, - [SMALL_STATE(3919)] = 142646, - [SMALL_STATE(3920)] = 142658, - [SMALL_STATE(3921)] = 142670, - [SMALL_STATE(3922)] = 142682, - [SMALL_STATE(3923)] = 142694, - [SMALL_STATE(3924)] = 142706, - [SMALL_STATE(3925)] = 142718, - [SMALL_STATE(3926)] = 142730, - [SMALL_STATE(3927)] = 142742, - [SMALL_STATE(3928)] = 142754, - [SMALL_STATE(3929)] = 142766, - [SMALL_STATE(3930)] = 142782, - [SMALL_STATE(3931)] = 142798, - [SMALL_STATE(3932)] = 142814, - [SMALL_STATE(3933)] = 142826, - [SMALL_STATE(3934)] = 142842, - [SMALL_STATE(3935)] = 142854, - [SMALL_STATE(3936)] = 142866, - [SMALL_STATE(3937)] = 142878, - [SMALL_STATE(3938)] = 142894, - [SMALL_STATE(3939)] = 142910, - [SMALL_STATE(3940)] = 142930, - [SMALL_STATE(3941)] = 142948, - [SMALL_STATE(3942)] = 142964, - [SMALL_STATE(3943)] = 142980, - [SMALL_STATE(3944)] = 142996, - [SMALL_STATE(3945)] = 143012, - [SMALL_STATE(3946)] = 143028, - [SMALL_STATE(3947)] = 143044, - [SMALL_STATE(3948)] = 143064, - [SMALL_STATE(3949)] = 143084, - [SMALL_STATE(3950)] = 143104, - [SMALL_STATE(3951)] = 143124, - [SMALL_STATE(3952)] = 143138, - [SMALL_STATE(3953)] = 143156, - [SMALL_STATE(3954)] = 143168, - [SMALL_STATE(3955)] = 143180, - [SMALL_STATE(3956)] = 143192, - [SMALL_STATE(3957)] = 143204, - [SMALL_STATE(3958)] = 143224, - [SMALL_STATE(3959)] = 143236, - [SMALL_STATE(3960)] = 143256, - [SMALL_STATE(3961)] = 143276, - [SMALL_STATE(3962)] = 143288, - [SMALL_STATE(3963)] = 143300, - [SMALL_STATE(3964)] = 143316, - [SMALL_STATE(3965)] = 143332, - [SMALL_STATE(3966)] = 143344, - [SMALL_STATE(3967)] = 143356, - [SMALL_STATE(3968)] = 143368, - [SMALL_STATE(3969)] = 143380, - [SMALL_STATE(3970)] = 143396, - [SMALL_STATE(3971)] = 143412, - [SMALL_STATE(3972)] = 143430, - [SMALL_STATE(3973)] = 143442, - [SMALL_STATE(3974)] = 143454, - [SMALL_STATE(3975)] = 143466, - [SMALL_STATE(3976)] = 143478, - [SMALL_STATE(3977)] = 143490, - [SMALL_STATE(3978)] = 143510, - [SMALL_STATE(3979)] = 143522, - [SMALL_STATE(3980)] = 143542, - [SMALL_STATE(3981)] = 143558, - [SMALL_STATE(3982)] = 143572, - [SMALL_STATE(3983)] = 143588, - [SMALL_STATE(3984)] = 143604, - [SMALL_STATE(3985)] = 143624, - [SMALL_STATE(3986)] = 143636, - [SMALL_STATE(3987)] = 143648, - [SMALL_STATE(3988)] = 143660, - [SMALL_STATE(3989)] = 143672, - [SMALL_STATE(3990)] = 143684, - [SMALL_STATE(3991)] = 143696, - [SMALL_STATE(3992)] = 143714, - [SMALL_STATE(3993)] = 143726, - [SMALL_STATE(3994)] = 143738, - [SMALL_STATE(3995)] = 143758, - [SMALL_STATE(3996)] = 143770, - [SMALL_STATE(3997)] = 143790, - [SMALL_STATE(3998)] = 143810, - [SMALL_STATE(3999)] = 143828, - [SMALL_STATE(4000)] = 143848, - [SMALL_STATE(4001)] = 143868, - [SMALL_STATE(4002)] = 143888, - [SMALL_STATE(4003)] = 143900, - [SMALL_STATE(4004)] = 143916, - [SMALL_STATE(4005)] = 143928, - [SMALL_STATE(4006)] = 143940, - [SMALL_STATE(4007)] = 143960, - [SMALL_STATE(4008)] = 143976, - [SMALL_STATE(4009)] = 143992, - [SMALL_STATE(4010)] = 144008, - [SMALL_STATE(4011)] = 144024, - [SMALL_STATE(4012)] = 144042, - [SMALL_STATE(4013)] = 144062, - [SMALL_STATE(4014)] = 144078, - [SMALL_STATE(4015)] = 144098, - [SMALL_STATE(4016)] = 144114, - [SMALL_STATE(4017)] = 144134, - [SMALL_STATE(4018)] = 144150, - [SMALL_STATE(4019)] = 144168, - [SMALL_STATE(4020)] = 144184, - [SMALL_STATE(4021)] = 144202, - [SMALL_STATE(4022)] = 144214, - [SMALL_STATE(4023)] = 144226, - [SMALL_STATE(4024)] = 144246, - [SMALL_STATE(4025)] = 144258, - [SMALL_STATE(4026)] = 144278, - [SMALL_STATE(4027)] = 144290, - [SMALL_STATE(4028)] = 144302, - [SMALL_STATE(4029)] = 144314, - [SMALL_STATE(4030)] = 144334, - [SMALL_STATE(4031)] = 144346, - [SMALL_STATE(4032)] = 144358, - [SMALL_STATE(4033)] = 144370, - [SMALL_STATE(4034)] = 144386, - [SMALL_STATE(4035)] = 144402, - [SMALL_STATE(4036)] = 144414, - [SMALL_STATE(4037)] = 144430, - [SMALL_STATE(4038)] = 144450, - [SMALL_STATE(4039)] = 144464, - [SMALL_STATE(4040)] = 144482, - [SMALL_STATE(4041)] = 144502, - [SMALL_STATE(4042)] = 144518, - [SMALL_STATE(4043)] = 144530, - [SMALL_STATE(4044)] = 144542, - [SMALL_STATE(4045)] = 144558, - [SMALL_STATE(4046)] = 144570, - [SMALL_STATE(4047)] = 144590, - [SMALL_STATE(4048)] = 144602, - [SMALL_STATE(4049)] = 144614, - [SMALL_STATE(4050)] = 144626, - [SMALL_STATE(4051)] = 144638, - [SMALL_STATE(4052)] = 144654, - [SMALL_STATE(4053)] = 144670, - [SMALL_STATE(4054)] = 144684, - [SMALL_STATE(4055)] = 144698, - [SMALL_STATE(4056)] = 144718, - [SMALL_STATE(4057)] = 144734, - [SMALL_STATE(4058)] = 144752, - [SMALL_STATE(4059)] = 144766, - [SMALL_STATE(4060)] = 144786, - [SMALL_STATE(4061)] = 144802, - [SMALL_STATE(4062)] = 144822, - [SMALL_STATE(4063)] = 144842, - [SMALL_STATE(4064)] = 144858, - [SMALL_STATE(4065)] = 144878, - [SMALL_STATE(4066)] = 144898, - [SMALL_STATE(4067)] = 144914, - [SMALL_STATE(4068)] = 144930, - [SMALL_STATE(4069)] = 144946, - [SMALL_STATE(4070)] = 144966, - [SMALL_STATE(4071)] = 144982, - [SMALL_STATE(4072)] = 144998, - [SMALL_STATE(4073)] = 145010, - [SMALL_STATE(4074)] = 145022, - [SMALL_STATE(4075)] = 145034, - [SMALL_STATE(4076)] = 145046, - [SMALL_STATE(4077)] = 145058, - [SMALL_STATE(4078)] = 145070, - [SMALL_STATE(4079)] = 145082, - [SMALL_STATE(4080)] = 145098, - [SMALL_STATE(4081)] = 145110, - [SMALL_STATE(4082)] = 145130, - [SMALL_STATE(4083)] = 145142, - [SMALL_STATE(4084)] = 145154, - [SMALL_STATE(4085)] = 145170, - [SMALL_STATE(4086)] = 145186, - [SMALL_STATE(4087)] = 145202, - [SMALL_STATE(4088)] = 145218, - [SMALL_STATE(4089)] = 145234, - [SMALL_STATE(4090)] = 145250, - [SMALL_STATE(4091)] = 145266, - [SMALL_STATE(4092)] = 145282, - [SMALL_STATE(4093)] = 145302, - [SMALL_STATE(4094)] = 145318, - [SMALL_STATE(4095)] = 145334, - [SMALL_STATE(4096)] = 145352, - [SMALL_STATE(4097)] = 145372, - [SMALL_STATE(4098)] = 145384, - [SMALL_STATE(4099)] = 145396, - [SMALL_STATE(4100)] = 145408, - [SMALL_STATE(4101)] = 145420, - [SMALL_STATE(4102)] = 145432, - [SMALL_STATE(4103)] = 145444, - [SMALL_STATE(4104)] = 145460, - [SMALL_STATE(4105)] = 145478, - [SMALL_STATE(4106)] = 145494, - [SMALL_STATE(4107)] = 145514, - [SMALL_STATE(4108)] = 145530, - [SMALL_STATE(4109)] = 145546, - [SMALL_STATE(4110)] = 145562, - [SMALL_STATE(4111)] = 145574, - [SMALL_STATE(4112)] = 145586, - [SMALL_STATE(4113)] = 145598, - [SMALL_STATE(4114)] = 145618, - [SMALL_STATE(4115)] = 145634, - [SMALL_STATE(4116)] = 145650, - [SMALL_STATE(4117)] = 145662, - [SMALL_STATE(4118)] = 145674, - [SMALL_STATE(4119)] = 145694, - [SMALL_STATE(4120)] = 145710, - [SMALL_STATE(4121)] = 145728, - [SMALL_STATE(4122)] = 145744, - [SMALL_STATE(4123)] = 145760, - [SMALL_STATE(4124)] = 145776, - [SMALL_STATE(4125)] = 145794, - [SMALL_STATE(4126)] = 145810, - [SMALL_STATE(4127)] = 145828, - [SMALL_STATE(4128)] = 145844, - [SMALL_STATE(4129)] = 145860, - [SMALL_STATE(4130)] = 145878, - [SMALL_STATE(4131)] = 145894, - [SMALL_STATE(4132)] = 145910, - [SMALL_STATE(4133)] = 145926, - [SMALL_STATE(4134)] = 145942, - [SMALL_STATE(4135)] = 145960, - [SMALL_STATE(4136)] = 145976, - [SMALL_STATE(4137)] = 145992, - [SMALL_STATE(4138)] = 146008, - [SMALL_STATE(4139)] = 146024, - [SMALL_STATE(4140)] = 146040, - [SMALL_STATE(4141)] = 146056, - [SMALL_STATE(4142)] = 146072, - [SMALL_STATE(4143)] = 146088, - [SMALL_STATE(4144)] = 146104, - [SMALL_STATE(4145)] = 146120, - [SMALL_STATE(4146)] = 146136, - [SMALL_STATE(4147)] = 146152, - [SMALL_STATE(4148)] = 146168, - [SMALL_STATE(4149)] = 146184, - [SMALL_STATE(4150)] = 146200, - [SMALL_STATE(4151)] = 146216, - [SMALL_STATE(4152)] = 146232, - [SMALL_STATE(4153)] = 146252, - [SMALL_STATE(4154)] = 146268, - [SMALL_STATE(4155)] = 146288, - [SMALL_STATE(4156)] = 146300, - [SMALL_STATE(4157)] = 146316, - [SMALL_STATE(4158)] = 146332, - [SMALL_STATE(4159)] = 146344, - [SMALL_STATE(4160)] = 146356, - [SMALL_STATE(4161)] = 146372, - [SMALL_STATE(4162)] = 146388, - [SMALL_STATE(4163)] = 146408, - [SMALL_STATE(4164)] = 146420, - [SMALL_STATE(4165)] = 146440, - [SMALL_STATE(4166)] = 146452, - [SMALL_STATE(4167)] = 146464, - [SMALL_STATE(4168)] = 146482, - [SMALL_STATE(4169)] = 146494, - [SMALL_STATE(4170)] = 146514, - [SMALL_STATE(4171)] = 146534, - [SMALL_STATE(4172)] = 146554, - [SMALL_STATE(4173)] = 146566, - [SMALL_STATE(4174)] = 146586, - [SMALL_STATE(4175)] = 146602, - [SMALL_STATE(4176)] = 146614, - [SMALL_STATE(4177)] = 146630, - [SMALL_STATE(4178)] = 146650, - [SMALL_STATE(4179)] = 146668, - [SMALL_STATE(4180)] = 146688, - [SMALL_STATE(4181)] = 146704, - [SMALL_STATE(4182)] = 146716, - [SMALL_STATE(4183)] = 146728, - [SMALL_STATE(4184)] = 146740, - [SMALL_STATE(4185)] = 146752, - [SMALL_STATE(4186)] = 146770, - [SMALL_STATE(4187)] = 146786, - [SMALL_STATE(4188)] = 146798, - [SMALL_STATE(4189)] = 146814, - [SMALL_STATE(4190)] = 146834, - [SMALL_STATE(4191)] = 146850, - [SMALL_STATE(4192)] = 146870, - [SMALL_STATE(4193)] = 146890, - [SMALL_STATE(4194)] = 146910, - [SMALL_STATE(4195)] = 146930, - [SMALL_STATE(4196)] = 146946, - [SMALL_STATE(4197)] = 146962, - [SMALL_STATE(4198)] = 146976, - [SMALL_STATE(4199)] = 146990, - [SMALL_STATE(4200)] = 147010, - [SMALL_STATE(4201)] = 147022, - [SMALL_STATE(4202)] = 147042, - [SMALL_STATE(4203)] = 147058, - [SMALL_STATE(4204)] = 147078, - [SMALL_STATE(4205)] = 147094, - [SMALL_STATE(4206)] = 147106, - [SMALL_STATE(4207)] = 147122, - [SMALL_STATE(4208)] = 147142, - [SMALL_STATE(4209)] = 147158, - [SMALL_STATE(4210)] = 147174, - [SMALL_STATE(4211)] = 147190, - [SMALL_STATE(4212)] = 147210, - [SMALL_STATE(4213)] = 147226, - [SMALL_STATE(4214)] = 147246, - [SMALL_STATE(4215)] = 147262, - [SMALL_STATE(4216)] = 147278, - [SMALL_STATE(4217)] = 147298, - [SMALL_STATE(4218)] = 147314, - [SMALL_STATE(4219)] = 147330, - [SMALL_STATE(4220)] = 147350, - [SMALL_STATE(4221)] = 147362, - [SMALL_STATE(4222)] = 147378, - [SMALL_STATE(4223)] = 147394, - [SMALL_STATE(4224)] = 147406, - [SMALL_STATE(4225)] = 147422, - [SMALL_STATE(4226)] = 147434, - [SMALL_STATE(4227)] = 147450, - [SMALL_STATE(4228)] = 147466, - [SMALL_STATE(4229)] = 147482, - [SMALL_STATE(4230)] = 147498, - [SMALL_STATE(4231)] = 147514, - [SMALL_STATE(4232)] = 147530, - [SMALL_STATE(4233)] = 147546, - [SMALL_STATE(4234)] = 147562, - [SMALL_STATE(4235)] = 147578, - [SMALL_STATE(4236)] = 147592, - [SMALL_STATE(4237)] = 147606, - [SMALL_STATE(4238)] = 147622, - [SMALL_STATE(4239)] = 147642, - [SMALL_STATE(4240)] = 147662, - [SMALL_STATE(4241)] = 147678, - [SMALL_STATE(4242)] = 147694, - [SMALL_STATE(4243)] = 147706, - [SMALL_STATE(4244)] = 147726, - [SMALL_STATE(4245)] = 147746, - [SMALL_STATE(4246)] = 147766, - [SMALL_STATE(4247)] = 147778, - [SMALL_STATE(4248)] = 147798, - [SMALL_STATE(4249)] = 147810, - [SMALL_STATE(4250)] = 147822, - [SMALL_STATE(4251)] = 147842, - [SMALL_STATE(4252)] = 147854, - [SMALL_STATE(4253)] = 147866, - [SMALL_STATE(4254)] = 147886, - [SMALL_STATE(4255)] = 147902, - [SMALL_STATE(4256)] = 147914, - [SMALL_STATE(4257)] = 147926, - [SMALL_STATE(4258)] = 147946, - [SMALL_STATE(4259)] = 147960, - [SMALL_STATE(4260)] = 147976, - [SMALL_STATE(4261)] = 147992, - [SMALL_STATE(4262)] = 148006, - [SMALL_STATE(4263)] = 148022, - [SMALL_STATE(4264)] = 148038, - [SMALL_STATE(4265)] = 148052, - [SMALL_STATE(4266)] = 148066, - [SMALL_STATE(4267)] = 148086, - [SMALL_STATE(4268)] = 148102, - [SMALL_STATE(4269)] = 148118, - [SMALL_STATE(4270)] = 148130, - [SMALL_STATE(4271)] = 148144, - [SMALL_STATE(4272)] = 148160, - [SMALL_STATE(4273)] = 148174, - [SMALL_STATE(4274)] = 148188, - [SMALL_STATE(4275)] = 148202, - [SMALL_STATE(4276)] = 148216, - [SMALL_STATE(4277)] = 148230, - [SMALL_STATE(4278)] = 148242, - [SMALL_STATE(4279)] = 148262, - [SMALL_STATE(4280)] = 148274, - [SMALL_STATE(4281)] = 148290, - [SMALL_STATE(4282)] = 148304, - [SMALL_STATE(4283)] = 148318, - [SMALL_STATE(4284)] = 148330, - [SMALL_STATE(4285)] = 148346, - [SMALL_STATE(4286)] = 148362, - [SMALL_STATE(4287)] = 148374, - [SMALL_STATE(4288)] = 148390, - [SMALL_STATE(4289)] = 148404, - [SMALL_STATE(4290)] = 148420, - [SMALL_STATE(4291)] = 148436, - [SMALL_STATE(4292)] = 148452, - [SMALL_STATE(4293)] = 148468, - [SMALL_STATE(4294)] = 148484, - [SMALL_STATE(4295)] = 148496, - [SMALL_STATE(4296)] = 148508, - [SMALL_STATE(4297)] = 148526, - [SMALL_STATE(4298)] = 148540, - [SMALL_STATE(4299)] = 148554, - [SMALL_STATE(4300)] = 148570, - [SMALL_STATE(4301)] = 148582, - [SMALL_STATE(4302)] = 148598, - [SMALL_STATE(4303)] = 148614, - [SMALL_STATE(4304)] = 148630, - [SMALL_STATE(4305)] = 148646, - [SMALL_STATE(4306)] = 148662, - [SMALL_STATE(4307)] = 148682, - [SMALL_STATE(4308)] = 148694, - [SMALL_STATE(4309)] = 148706, - [SMALL_STATE(4310)] = 148722, - [SMALL_STATE(4311)] = 148738, - [SMALL_STATE(4312)] = 148750, - [SMALL_STATE(4313)] = 148762, - [SMALL_STATE(4314)] = 148782, - [SMALL_STATE(4315)] = 148794, - [SMALL_STATE(4316)] = 148806, - [SMALL_STATE(4317)] = 148826, - [SMALL_STATE(4318)] = 148838, - [SMALL_STATE(4319)] = 148858, - [SMALL_STATE(4320)] = 148878, - [SMALL_STATE(4321)] = 148898, - [SMALL_STATE(4322)] = 148914, - [SMALL_STATE(4323)] = 148930, - [SMALL_STATE(4324)] = 148950, - [SMALL_STATE(4325)] = 148968, - [SMALL_STATE(4326)] = 148982, - [SMALL_STATE(4327)] = 148998, - [SMALL_STATE(4328)] = 149010, - [SMALL_STATE(4329)] = 149022, - [SMALL_STATE(4330)] = 149034, - [SMALL_STATE(4331)] = 149050, - [SMALL_STATE(4332)] = 149062, - [SMALL_STATE(4333)] = 149078, - [SMALL_STATE(4334)] = 149092, - [SMALL_STATE(4335)] = 149110, - [SMALL_STATE(4336)] = 149126, - [SMALL_STATE(4337)] = 149142, - [SMALL_STATE(4338)] = 149154, - [SMALL_STATE(4339)] = 149174, - [SMALL_STATE(4340)] = 149190, - [SMALL_STATE(4341)] = 149206, - [SMALL_STATE(4342)] = 149222, - [SMALL_STATE(4343)] = 149242, - [SMALL_STATE(4344)] = 149254, - [SMALL_STATE(4345)] = 149270, - [SMALL_STATE(4346)] = 149286, - [SMALL_STATE(4347)] = 149298, - [SMALL_STATE(4348)] = 149314, - [SMALL_STATE(4349)] = 149326, - [SMALL_STATE(4350)] = 149342, - [SMALL_STATE(4351)] = 149360, - [SMALL_STATE(4352)] = 149376, - [SMALL_STATE(4353)] = 149392, - [SMALL_STATE(4354)] = 149404, - [SMALL_STATE(4355)] = 149424, - [SMALL_STATE(4356)] = 149440, - [SMALL_STATE(4357)] = 149456, - [SMALL_STATE(4358)] = 149476, - [SMALL_STATE(4359)] = 149492, - [SMALL_STATE(4360)] = 149508, - [SMALL_STATE(4361)] = 149520, - [SMALL_STATE(4362)] = 149532, - [SMALL_STATE(4363)] = 149552, - [SMALL_STATE(4364)] = 149568, - [SMALL_STATE(4365)] = 149580, - [SMALL_STATE(4366)] = 149592, - [SMALL_STATE(4367)] = 149608, - [SMALL_STATE(4368)] = 149624, - [SMALL_STATE(4369)] = 149636, - [SMALL_STATE(4370)] = 149652, - [SMALL_STATE(4371)] = 149672, - [SMALL_STATE(4372)] = 149688, - [SMALL_STATE(4373)] = 149704, - [SMALL_STATE(4374)] = 149720, - [SMALL_STATE(4375)] = 149736, - [SMALL_STATE(4376)] = 149752, - [SMALL_STATE(4377)] = 149768, - [SMALL_STATE(4378)] = 149784, - [SMALL_STATE(4379)] = 149800, - [SMALL_STATE(4380)] = 149816, - [SMALL_STATE(4381)] = 149832, - [SMALL_STATE(4382)] = 149848, - [SMALL_STATE(4383)] = 149864, - [SMALL_STATE(4384)] = 149880, - [SMALL_STATE(4385)] = 149896, - [SMALL_STATE(4386)] = 149912, - [SMALL_STATE(4387)] = 149928, - [SMALL_STATE(4388)] = 149944, - [SMALL_STATE(4389)] = 149960, - [SMALL_STATE(4390)] = 149976, - [SMALL_STATE(4391)] = 149988, - [SMALL_STATE(4392)] = 150000, - [SMALL_STATE(4393)] = 150016, - [SMALL_STATE(4394)] = 150028, - [SMALL_STATE(4395)] = 150044, - [SMALL_STATE(4396)] = 150058, - [SMALL_STATE(4397)] = 150070, - [SMALL_STATE(4398)] = 150086, - [SMALL_STATE(4399)] = 150102, - [SMALL_STATE(4400)] = 150118, - [SMALL_STATE(4401)] = 150134, - [SMALL_STATE(4402)] = 150150, - [SMALL_STATE(4403)] = 150166, - [SMALL_STATE(4404)] = 150186, - [SMALL_STATE(4405)] = 150202, - [SMALL_STATE(4406)] = 150218, - [SMALL_STATE(4407)] = 150234, - [SMALL_STATE(4408)] = 150245, - [SMALL_STATE(4409)] = 150262, - [SMALL_STATE(4410)] = 150277, - [SMALL_STATE(4411)] = 150292, - [SMALL_STATE(4412)] = 150309, - [SMALL_STATE(4413)] = 150324, - [SMALL_STATE(4414)] = 150341, - [SMALL_STATE(4415)] = 150356, - [SMALL_STATE(4416)] = 150373, - [SMALL_STATE(4417)] = 150390, - [SMALL_STATE(4418)] = 150407, - [SMALL_STATE(4419)] = 150424, - [SMALL_STATE(4420)] = 150441, - [SMALL_STATE(4421)] = 150458, - [SMALL_STATE(4422)] = 150475, - [SMALL_STATE(4423)] = 150490, - [SMALL_STATE(4424)] = 150507, - [SMALL_STATE(4425)] = 150524, - [SMALL_STATE(4426)] = 150537, - [SMALL_STATE(4427)] = 150554, - [SMALL_STATE(4428)] = 150571, - [SMALL_STATE(4429)] = 150588, - [SMALL_STATE(4430)] = 150603, - [SMALL_STATE(4431)] = 150618, - [SMALL_STATE(4432)] = 150633, - [SMALL_STATE(4433)] = 150650, - [SMALL_STATE(4434)] = 150665, - [SMALL_STATE(4435)] = 150682, - [SMALL_STATE(4436)] = 150697, - [SMALL_STATE(4437)] = 150712, - [SMALL_STATE(4438)] = 150729, - [SMALL_STATE(4439)] = 150746, - [SMALL_STATE(4440)] = 150763, - [SMALL_STATE(4441)] = 150780, - [SMALL_STATE(4442)] = 150797, - [SMALL_STATE(4443)] = 150814, - [SMALL_STATE(4444)] = 150831, - [SMALL_STATE(4445)] = 150846, - [SMALL_STATE(4446)] = 150861, - [SMALL_STATE(4447)] = 150878, - [SMALL_STATE(4448)] = 150895, - [SMALL_STATE(4449)] = 150910, - [SMALL_STATE(4450)] = 150929, - [SMALL_STATE(4451)] = 150948, - [SMALL_STATE(4452)] = 150965, - [SMALL_STATE(4453)] = 150980, - [SMALL_STATE(4454)] = 150995, - [SMALL_STATE(4455)] = 151012, - [SMALL_STATE(4456)] = 151029, - [SMALL_STATE(4457)] = 151046, - [SMALL_STATE(4458)] = 151061, - [SMALL_STATE(4459)] = 151078, - [SMALL_STATE(4460)] = 151095, - [SMALL_STATE(4461)] = 151110, - [SMALL_STATE(4462)] = 151127, - [SMALL_STATE(4463)] = 151144, - [SMALL_STATE(4464)] = 151161, - [SMALL_STATE(4465)] = 151178, - [SMALL_STATE(4466)] = 151195, - [SMALL_STATE(4467)] = 151212, - [SMALL_STATE(4468)] = 151229, - [SMALL_STATE(4469)] = 151246, - [SMALL_STATE(4470)] = 151261, - [SMALL_STATE(4471)] = 151278, - [SMALL_STATE(4472)] = 151295, - [SMALL_STATE(4473)] = 151312, - [SMALL_STATE(4474)] = 151327, - [SMALL_STATE(4475)] = 151344, - [SMALL_STATE(4476)] = 151361, - [SMALL_STATE(4477)] = 151378, - [SMALL_STATE(4478)] = 151391, - [SMALL_STATE(4479)] = 151408, - [SMALL_STATE(4480)] = 151425, - [SMALL_STATE(4481)] = 151442, - [SMALL_STATE(4482)] = 151459, - [SMALL_STATE(4483)] = 151476, - [SMALL_STATE(4484)] = 151493, - [SMALL_STATE(4485)] = 151510, - [SMALL_STATE(4486)] = 151527, - [SMALL_STATE(4487)] = 151544, - [SMALL_STATE(4488)] = 151561, - [SMALL_STATE(4489)] = 151578, - [SMALL_STATE(4490)] = 151595, - [SMALL_STATE(4491)] = 151612, - [SMALL_STATE(4492)] = 151629, - [SMALL_STATE(4493)] = 151644, - [SMALL_STATE(4494)] = 151655, - [SMALL_STATE(4495)] = 151672, - [SMALL_STATE(4496)] = 151687, - [SMALL_STATE(4497)] = 151700, - [SMALL_STATE(4498)] = 151717, - [SMALL_STATE(4499)] = 151734, - [SMALL_STATE(4500)] = 151751, - [SMALL_STATE(4501)] = 151768, - [SMALL_STATE(4502)] = 151783, - [SMALL_STATE(4503)] = 151798, - [SMALL_STATE(4504)] = 151815, - [SMALL_STATE(4505)] = 151830, - [SMALL_STATE(4506)] = 151847, - [SMALL_STATE(4507)] = 151862, - [SMALL_STATE(4508)] = 151879, - [SMALL_STATE(4509)] = 151894, - [SMALL_STATE(4510)] = 151911, - [SMALL_STATE(4511)] = 151928, - [SMALL_STATE(4512)] = 151945, - [SMALL_STATE(4513)] = 151960, - [SMALL_STATE(4514)] = 151977, - [SMALL_STATE(4515)] = 151994, - [SMALL_STATE(4516)] = 152007, - [SMALL_STATE(4517)] = 152024, - [SMALL_STATE(4518)] = 152041, - [SMALL_STATE(4519)] = 152058, - [SMALL_STATE(4520)] = 152073, - [SMALL_STATE(4521)] = 152092, - [SMALL_STATE(4522)] = 152109, - [SMALL_STATE(4523)] = 152124, - [SMALL_STATE(4524)] = 152141, - [SMALL_STATE(4525)] = 152158, - [SMALL_STATE(4526)] = 152175, - [SMALL_STATE(4527)] = 152192, - [SMALL_STATE(4528)] = 152211, - [SMALL_STATE(4529)] = 152228, - [SMALL_STATE(4530)] = 152245, - [SMALL_STATE(4531)] = 152262, - [SMALL_STATE(4532)] = 152277, - [SMALL_STATE(4533)] = 152294, - [SMALL_STATE(4534)] = 152311, - [SMALL_STATE(4535)] = 152328, - [SMALL_STATE(4536)] = 152347, - [SMALL_STATE(4537)] = 152366, - [SMALL_STATE(4538)] = 152383, - [SMALL_STATE(4539)] = 152398, - [SMALL_STATE(4540)] = 152415, - [SMALL_STATE(4541)] = 152430, - [SMALL_STATE(4542)] = 152447, - [SMALL_STATE(4543)] = 152464, - [SMALL_STATE(4544)] = 152481, - [SMALL_STATE(4545)] = 152498, - [SMALL_STATE(4546)] = 152515, - [SMALL_STATE(4547)] = 152532, - [SMALL_STATE(4548)] = 152549, - [SMALL_STATE(4549)] = 152566, - [SMALL_STATE(4550)] = 152583, - [SMALL_STATE(4551)] = 152600, - [SMALL_STATE(4552)] = 152617, - [SMALL_STATE(4553)] = 152634, - [SMALL_STATE(4554)] = 152649, - [SMALL_STATE(4555)] = 152666, - [SMALL_STATE(4556)] = 152676, - [SMALL_STATE(4557)] = 152690, - [SMALL_STATE(4558)] = 152704, - [SMALL_STATE(4559)] = 152714, - [SMALL_STATE(4560)] = 152728, - [SMALL_STATE(4561)] = 152742, - [SMALL_STATE(4562)] = 152752, - [SMALL_STATE(4563)] = 152762, - [SMALL_STATE(4564)] = 152772, - [SMALL_STATE(4565)] = 152782, - [SMALL_STATE(4566)] = 152796, - [SMALL_STATE(4567)] = 152810, - [SMALL_STATE(4568)] = 152824, - [SMALL_STATE(4569)] = 152838, - [SMALL_STATE(4570)] = 152848, - [SMALL_STATE(4571)] = 152862, - [SMALL_STATE(4572)] = 152878, - [SMALL_STATE(4573)] = 152888, - [SMALL_STATE(4574)] = 152898, - [SMALL_STATE(4575)] = 152908, - [SMALL_STATE(4576)] = 152918, - [SMALL_STATE(4577)] = 152928, - [SMALL_STATE(4578)] = 152940, - [SMALL_STATE(4579)] = 152954, - [SMALL_STATE(4580)] = 152964, - [SMALL_STATE(4581)] = 152974, - [SMALL_STATE(4582)] = 152988, - [SMALL_STATE(4583)] = 153002, - [SMALL_STATE(4584)] = 153016, - [SMALL_STATE(4585)] = 153026, - [SMALL_STATE(4586)] = 153040, - [SMALL_STATE(4587)] = 153050, - [SMALL_STATE(4588)] = 153060, - [SMALL_STATE(4589)] = 153074, - [SMALL_STATE(4590)] = 153084, - [SMALL_STATE(4591)] = 153094, - [SMALL_STATE(4592)] = 153108, - [SMALL_STATE(4593)] = 153122, - [SMALL_STATE(4594)] = 153132, - [SMALL_STATE(4595)] = 153146, - [SMALL_STATE(4596)] = 153156, - [SMALL_STATE(4597)] = 153166, - [SMALL_STATE(4598)] = 153180, - [SMALL_STATE(4599)] = 153190, - [SMALL_STATE(4600)] = 153204, - [SMALL_STATE(4601)] = 153218, - [SMALL_STATE(4602)] = 153228, - [SMALL_STATE(4603)] = 153238, - [SMALL_STATE(4604)] = 153248, - [SMALL_STATE(4605)] = 153262, - [SMALL_STATE(4606)] = 153272, - [SMALL_STATE(4607)] = 153282, - [SMALL_STATE(4608)] = 153296, - [SMALL_STATE(4609)] = 153310, - [SMALL_STATE(4610)] = 153324, - [SMALL_STATE(4611)] = 153334, - [SMALL_STATE(4612)] = 153344, - [SMALL_STATE(4613)] = 153358, - [SMALL_STATE(4614)] = 153372, - [SMALL_STATE(4615)] = 153382, - [SMALL_STATE(4616)] = 153396, - [SMALL_STATE(4617)] = 153410, - [SMALL_STATE(4618)] = 153424, - [SMALL_STATE(4619)] = 153434, - [SMALL_STATE(4620)] = 153448, - [SMALL_STATE(4621)] = 153458, - [SMALL_STATE(4622)] = 153468, - [SMALL_STATE(4623)] = 153478, - [SMALL_STATE(4624)] = 153492, - [SMALL_STATE(4625)] = 153502, - [SMALL_STATE(4626)] = 153512, - [SMALL_STATE(4627)] = 153522, - [SMALL_STATE(4628)] = 153532, - [SMALL_STATE(4629)] = 153542, - [SMALL_STATE(4630)] = 153552, - [SMALL_STATE(4631)] = 153566, - [SMALL_STATE(4632)] = 153580, - [SMALL_STATE(4633)] = 153594, - [SMALL_STATE(4634)] = 153604, - [SMALL_STATE(4635)] = 153614, - [SMALL_STATE(4636)] = 153624, - [SMALL_STATE(4637)] = 153634, - [SMALL_STATE(4638)] = 153648, - [SMALL_STATE(4639)] = 153658, - [SMALL_STATE(4640)] = 153668, - [SMALL_STATE(4641)] = 153682, - [SMALL_STATE(4642)] = 153692, - [SMALL_STATE(4643)] = 153706, - [SMALL_STATE(4644)] = 153716, - [SMALL_STATE(4645)] = 153730, - [SMALL_STATE(4646)] = 153744, - [SMALL_STATE(4647)] = 153754, - [SMALL_STATE(4648)] = 153764, - [SMALL_STATE(4649)] = 153778, - [SMALL_STATE(4650)] = 153792, - [SMALL_STATE(4651)] = 153806, - [SMALL_STATE(4652)] = 153820, - [SMALL_STATE(4653)] = 153830, - [SMALL_STATE(4654)] = 153844, - [SMALL_STATE(4655)] = 153858, - [SMALL_STATE(4656)] = 153868, - [SMALL_STATE(4657)] = 153878, - [SMALL_STATE(4658)] = 153888, - [SMALL_STATE(4659)] = 153898, - [SMALL_STATE(4660)] = 153912, - [SMALL_STATE(4661)] = 153922, - [SMALL_STATE(4662)] = 153936, - [SMALL_STATE(4663)] = 153946, - [SMALL_STATE(4664)] = 153956, - [SMALL_STATE(4665)] = 153966, - [SMALL_STATE(4666)] = 153976, - [SMALL_STATE(4667)] = 153986, - [SMALL_STATE(4668)] = 153996, - [SMALL_STATE(4669)] = 154006, - [SMALL_STATE(4670)] = 154016, - [SMALL_STATE(4671)] = 154030, - [SMALL_STATE(4672)] = 154044, - [SMALL_STATE(4673)] = 154054, - [SMALL_STATE(4674)] = 154064, - [SMALL_STATE(4675)] = 154074, - [SMALL_STATE(4676)] = 154084, - [SMALL_STATE(4677)] = 154094, - [SMALL_STATE(4678)] = 154108, - [SMALL_STATE(4679)] = 154118, - [SMALL_STATE(4680)] = 154132, - [SMALL_STATE(4681)] = 154142, - [SMALL_STATE(4682)] = 154152, - [SMALL_STATE(4683)] = 154162, - [SMALL_STATE(4684)] = 154172, - [SMALL_STATE(4685)] = 154182, - [SMALL_STATE(4686)] = 154192, - [SMALL_STATE(4687)] = 154202, - [SMALL_STATE(4688)] = 154212, - [SMALL_STATE(4689)] = 154222, - [SMALL_STATE(4690)] = 154232, - [SMALL_STATE(4691)] = 154242, - [SMALL_STATE(4692)] = 154252, - [SMALL_STATE(4693)] = 154262, - [SMALL_STATE(4694)] = 154272, - [SMALL_STATE(4695)] = 154282, - [SMALL_STATE(4696)] = 154296, - [SMALL_STATE(4697)] = 154310, - [SMALL_STATE(4698)] = 154320, - [SMALL_STATE(4699)] = 154330, - [SMALL_STATE(4700)] = 154344, - [SMALL_STATE(4701)] = 154354, - [SMALL_STATE(4702)] = 154368, - [SMALL_STATE(4703)] = 154382, - [SMALL_STATE(4704)] = 154392, - [SMALL_STATE(4705)] = 154406, - [SMALL_STATE(4706)] = 154416, - [SMALL_STATE(4707)] = 154426, - [SMALL_STATE(4708)] = 154440, - [SMALL_STATE(4709)] = 154450, - [SMALL_STATE(4710)] = 154460, - [SMALL_STATE(4711)] = 154470, - [SMALL_STATE(4712)] = 154480, - [SMALL_STATE(4713)] = 154490, - [SMALL_STATE(4714)] = 154500, - [SMALL_STATE(4715)] = 154510, - [SMALL_STATE(4716)] = 154520, - [SMALL_STATE(4717)] = 154530, - [SMALL_STATE(4718)] = 154540, - [SMALL_STATE(4719)] = 154554, - [SMALL_STATE(4720)] = 154568, - [SMALL_STATE(4721)] = 154578, - [SMALL_STATE(4722)] = 154588, - [SMALL_STATE(4723)] = 154602, - [SMALL_STATE(4724)] = 154612, - [SMALL_STATE(4725)] = 154622, - [SMALL_STATE(4726)] = 154632, - [SMALL_STATE(4727)] = 154646, - [SMALL_STATE(4728)] = 154656, - [SMALL_STATE(4729)] = 154670, - [SMALL_STATE(4730)] = 154680, - [SMALL_STATE(4731)] = 154690, - [SMALL_STATE(4732)] = 154700, - [SMALL_STATE(4733)] = 154714, - [SMALL_STATE(4734)] = 154724, - [SMALL_STATE(4735)] = 154734, - [SMALL_STATE(4736)] = 154748, - [SMALL_STATE(4737)] = 154758, - [SMALL_STATE(4738)] = 154768, - [SMALL_STATE(4739)] = 154778, - [SMALL_STATE(4740)] = 154788, - [SMALL_STATE(4741)] = 154798, - [SMALL_STATE(4742)] = 154812, - [SMALL_STATE(4743)] = 154822, - [SMALL_STATE(4744)] = 154832, - [SMALL_STATE(4745)] = 154842, - [SMALL_STATE(4746)] = 154852, - [SMALL_STATE(4747)] = 154862, - [SMALL_STATE(4748)] = 154876, - [SMALL_STATE(4749)] = 154888, - [SMALL_STATE(4750)] = 154900, - [SMALL_STATE(4751)] = 154914, - [SMALL_STATE(4752)] = 154924, - [SMALL_STATE(4753)] = 154934, - [SMALL_STATE(4754)] = 154946, - [SMALL_STATE(4755)] = 154960, - [SMALL_STATE(4756)] = 154974, - [SMALL_STATE(4757)] = 154988, - [SMALL_STATE(4758)] = 154998, - [SMALL_STATE(4759)] = 155008, - [SMALL_STATE(4760)] = 155018, - [SMALL_STATE(4761)] = 155028, - [SMALL_STATE(4762)] = 155040, - [SMALL_STATE(4763)] = 155050, - [SMALL_STATE(4764)] = 155060, - [SMALL_STATE(4765)] = 155070, - [SMALL_STATE(4766)] = 155084, - [SMALL_STATE(4767)] = 155094, - [SMALL_STATE(4768)] = 155104, - [SMALL_STATE(4769)] = 155114, - [SMALL_STATE(4770)] = 155124, - [SMALL_STATE(4771)] = 155134, - [SMALL_STATE(4772)] = 155148, - [SMALL_STATE(4773)] = 155158, - [SMALL_STATE(4774)] = 155172, - [SMALL_STATE(4775)] = 155182, - [SMALL_STATE(4776)] = 155192, - [SMALL_STATE(4777)] = 155206, - [SMALL_STATE(4778)] = 155216, - [SMALL_STATE(4779)] = 155228, - [SMALL_STATE(4780)] = 155238, - [SMALL_STATE(4781)] = 155248, - [SMALL_STATE(4782)] = 155262, - [SMALL_STATE(4783)] = 155272, - [SMALL_STATE(4784)] = 155284, - [SMALL_STATE(4785)] = 155294, - [SMALL_STATE(4786)] = 155308, - [SMALL_STATE(4787)] = 155322, - [SMALL_STATE(4788)] = 155336, - [SMALL_STATE(4789)] = 155346, - [SMALL_STATE(4790)] = 155356, - [SMALL_STATE(4791)] = 155366, - [SMALL_STATE(4792)] = 155380, - [SMALL_STATE(4793)] = 155394, - [SMALL_STATE(4794)] = 155408, - [SMALL_STATE(4795)] = 155418, - [SMALL_STATE(4796)] = 155428, - [SMALL_STATE(4797)] = 155442, - [SMALL_STATE(4798)] = 155452, - [SMALL_STATE(4799)] = 155464, - [SMALL_STATE(4800)] = 155474, - [SMALL_STATE(4801)] = 155484, - [SMALL_STATE(4802)] = 155494, - [SMALL_STATE(4803)] = 155504, - [SMALL_STATE(4804)] = 155514, - [SMALL_STATE(4805)] = 155528, - [SMALL_STATE(4806)] = 155538, - [SMALL_STATE(4807)] = 155548, - [SMALL_STATE(4808)] = 155558, - [SMALL_STATE(4809)] = 155572, - [SMALL_STATE(4810)] = 155582, - [SMALL_STATE(4811)] = 155592, - [SMALL_STATE(4812)] = 155604, - [SMALL_STATE(4813)] = 155618, - [SMALL_STATE(4814)] = 155632, - [SMALL_STATE(4815)] = 155642, - [SMALL_STATE(4816)] = 155652, - [SMALL_STATE(4817)] = 155662, - [SMALL_STATE(4818)] = 155672, - [SMALL_STATE(4819)] = 155682, - [SMALL_STATE(4820)] = 155692, - [SMALL_STATE(4821)] = 155702, - [SMALL_STATE(4822)] = 155716, - [SMALL_STATE(4823)] = 155726, - [SMALL_STATE(4824)] = 155736, - [SMALL_STATE(4825)] = 155748, - [SMALL_STATE(4826)] = 155758, - [SMALL_STATE(4827)] = 155768, - [SMALL_STATE(4828)] = 155778, - [SMALL_STATE(4829)] = 155788, - [SMALL_STATE(4830)] = 155798, - [SMALL_STATE(4831)] = 155808, - [SMALL_STATE(4832)] = 155818, - [SMALL_STATE(4833)] = 155828, - [SMALL_STATE(4834)] = 155838, - [SMALL_STATE(4835)] = 155848, - [SMALL_STATE(4836)] = 155858, - [SMALL_STATE(4837)] = 155870, - [SMALL_STATE(4838)] = 155884, - [SMALL_STATE(4839)] = 155894, - [SMALL_STATE(4840)] = 155904, - [SMALL_STATE(4841)] = 155916, - [SMALL_STATE(4842)] = 155930, - [SMALL_STATE(4843)] = 155940, - [SMALL_STATE(4844)] = 155950, - [SMALL_STATE(4845)] = 155960, - [SMALL_STATE(4846)] = 155970, - [SMALL_STATE(4847)] = 155984, - [SMALL_STATE(4848)] = 155994, - [SMALL_STATE(4849)] = 156004, - [SMALL_STATE(4850)] = 156014, - [SMALL_STATE(4851)] = 156024, - [SMALL_STATE(4852)] = 156034, - [SMALL_STATE(4853)] = 156044, - [SMALL_STATE(4854)] = 156054, - [SMALL_STATE(4855)] = 156066, - [SMALL_STATE(4856)] = 156080, - [SMALL_STATE(4857)] = 156090, - [SMALL_STATE(4858)] = 156100, - [SMALL_STATE(4859)] = 156110, - [SMALL_STATE(4860)] = 156120, - [SMALL_STATE(4861)] = 156130, - [SMALL_STATE(4862)] = 156140, - [SMALL_STATE(4863)] = 156150, - [SMALL_STATE(4864)] = 156160, - [SMALL_STATE(4865)] = 156172, - [SMALL_STATE(4866)] = 156182, - [SMALL_STATE(4867)] = 156192, - [SMALL_STATE(4868)] = 156202, - [SMALL_STATE(4869)] = 156212, - [SMALL_STATE(4870)] = 156222, - [SMALL_STATE(4871)] = 156232, - [SMALL_STATE(4872)] = 156242, - [SMALL_STATE(4873)] = 156252, - [SMALL_STATE(4874)] = 156262, - [SMALL_STATE(4875)] = 156272, - [SMALL_STATE(4876)] = 156282, - [SMALL_STATE(4877)] = 156292, - [SMALL_STATE(4878)] = 156306, - [SMALL_STATE(4879)] = 156316, - [SMALL_STATE(4880)] = 156326, - [SMALL_STATE(4881)] = 156336, - [SMALL_STATE(4882)] = 156346, - [SMALL_STATE(4883)] = 156356, - [SMALL_STATE(4884)] = 156366, - [SMALL_STATE(4885)] = 156376, - [SMALL_STATE(4886)] = 156390, - [SMALL_STATE(4887)] = 156404, - [SMALL_STATE(4888)] = 156414, - [SMALL_STATE(4889)] = 156428, - [SMALL_STATE(4890)] = 156442, - [SMALL_STATE(4891)] = 156456, - [SMALL_STATE(4892)] = 156466, - [SMALL_STATE(4893)] = 156480, - [SMALL_STATE(4894)] = 156490, - [SMALL_STATE(4895)] = 156504, - [SMALL_STATE(4896)] = 156514, - [SMALL_STATE(4897)] = 156528, - [SMALL_STATE(4898)] = 156542, - [SMALL_STATE(4899)] = 156558, - [SMALL_STATE(4900)] = 156572, - [SMALL_STATE(4901)] = 156582, - [SMALL_STATE(4902)] = 156592, - [SMALL_STATE(4903)] = 156606, - [SMALL_STATE(4904)] = 156620, - [SMALL_STATE(4905)] = 156634, - [SMALL_STATE(4906)] = 156644, - [SMALL_STATE(4907)] = 156654, - [SMALL_STATE(4908)] = 156668, - [SMALL_STATE(4909)] = 156678, - [SMALL_STATE(4910)] = 156688, - [SMALL_STATE(4911)] = 156698, - [SMALL_STATE(4912)] = 156712, - [SMALL_STATE(4913)] = 156722, - [SMALL_STATE(4914)] = 156732, - [SMALL_STATE(4915)] = 156742, - [SMALL_STATE(4916)] = 156752, - [SMALL_STATE(4917)] = 156762, - [SMALL_STATE(4918)] = 156772, - [SMALL_STATE(4919)] = 156782, - [SMALL_STATE(4920)] = 156792, - [SMALL_STATE(4921)] = 156802, - [SMALL_STATE(4922)] = 156812, - [SMALL_STATE(4923)] = 156822, - [SMALL_STATE(4924)] = 156832, - [SMALL_STATE(4925)] = 156842, - [SMALL_STATE(4926)] = 156852, - [SMALL_STATE(4927)] = 156862, - [SMALL_STATE(4928)] = 156872, - [SMALL_STATE(4929)] = 156882, - [SMALL_STATE(4930)] = 156892, - [SMALL_STATE(4931)] = 156902, - [SMALL_STATE(4932)] = 156912, - [SMALL_STATE(4933)] = 156922, - [SMALL_STATE(4934)] = 156932, - [SMALL_STATE(4935)] = 156942, - [SMALL_STATE(4936)] = 156952, - [SMALL_STATE(4937)] = 156962, - [SMALL_STATE(4938)] = 156972, - [SMALL_STATE(4939)] = 156982, - [SMALL_STATE(4940)] = 156992, - [SMALL_STATE(4941)] = 157002, - [SMALL_STATE(4942)] = 157012, - [SMALL_STATE(4943)] = 157022, - [SMALL_STATE(4944)] = 157032, - [SMALL_STATE(4945)] = 157042, - [SMALL_STATE(4946)] = 157052, - [SMALL_STATE(4947)] = 157062, - [SMALL_STATE(4948)] = 157072, - [SMALL_STATE(4949)] = 157082, - [SMALL_STATE(4950)] = 157092, - [SMALL_STATE(4951)] = 157102, - [SMALL_STATE(4952)] = 157112, - [SMALL_STATE(4953)] = 157122, - [SMALL_STATE(4954)] = 157132, - [SMALL_STATE(4955)] = 157142, - [SMALL_STATE(4956)] = 157152, - [SMALL_STATE(4957)] = 157162, - [SMALL_STATE(4958)] = 157176, - [SMALL_STATE(4959)] = 157186, - [SMALL_STATE(4960)] = 157196, - [SMALL_STATE(4961)] = 157206, - [SMALL_STATE(4962)] = 157216, - [SMALL_STATE(4963)] = 157226, - [SMALL_STATE(4964)] = 157236, - [SMALL_STATE(4965)] = 157246, - [SMALL_STATE(4966)] = 157256, - [SMALL_STATE(4967)] = 157266, - [SMALL_STATE(4968)] = 157276, - [SMALL_STATE(4969)] = 157286, - [SMALL_STATE(4970)] = 157296, - [SMALL_STATE(4971)] = 157306, - [SMALL_STATE(4972)] = 157316, - [SMALL_STATE(4973)] = 157330, - [SMALL_STATE(4974)] = 157344, - [SMALL_STATE(4975)] = 157354, - [SMALL_STATE(4976)] = 157368, - [SMALL_STATE(4977)] = 157378, - [SMALL_STATE(4978)] = 157388, - [SMALL_STATE(4979)] = 157398, - [SMALL_STATE(4980)] = 157408, - [SMALL_STATE(4981)] = 157418, - [SMALL_STATE(4982)] = 157428, - [SMALL_STATE(4983)] = 157442, - [SMALL_STATE(4984)] = 157452, - [SMALL_STATE(4985)] = 157462, - [SMALL_STATE(4986)] = 157472, - [SMALL_STATE(4987)] = 157486, - [SMALL_STATE(4988)] = 157496, - [SMALL_STATE(4989)] = 157506, - [SMALL_STATE(4990)] = 157516, - [SMALL_STATE(4991)] = 157526, - [SMALL_STATE(4992)] = 157536, - [SMALL_STATE(4993)] = 157546, - [SMALL_STATE(4994)] = 157556, - [SMALL_STATE(4995)] = 157566, - [SMALL_STATE(4996)] = 157576, - [SMALL_STATE(4997)] = 157588, - [SMALL_STATE(4998)] = 157598, - [SMALL_STATE(4999)] = 157608, - [SMALL_STATE(5000)] = 157618, - [SMALL_STATE(5001)] = 157632, - [SMALL_STATE(5002)] = 157642, - [SMALL_STATE(5003)] = 157652, - [SMALL_STATE(5004)] = 157666, - [SMALL_STATE(5005)] = 157680, - [SMALL_STATE(5006)] = 157690, - [SMALL_STATE(5007)] = 157700, - [SMALL_STATE(5008)] = 157710, - [SMALL_STATE(5009)] = 157720, - [SMALL_STATE(5010)] = 157730, - [SMALL_STATE(5011)] = 157740, - [SMALL_STATE(5012)] = 157750, - [SMALL_STATE(5013)] = 157760, - [SMALL_STATE(5014)] = 157770, - [SMALL_STATE(5015)] = 157780, - [SMALL_STATE(5016)] = 157790, - [SMALL_STATE(5017)] = 157800, - [SMALL_STATE(5018)] = 157810, - [SMALL_STATE(5019)] = 157824, - [SMALL_STATE(5020)] = 157838, - [SMALL_STATE(5021)] = 157850, - [SMALL_STATE(5022)] = 157860, - [SMALL_STATE(5023)] = 157870, - [SMALL_STATE(5024)] = 157884, - [SMALL_STATE(5025)] = 157894, - [SMALL_STATE(5026)] = 157904, - [SMALL_STATE(5027)] = 157918, - [SMALL_STATE(5028)] = 157928, - [SMALL_STATE(5029)] = 157938, - [SMALL_STATE(5030)] = 157952, - [SMALL_STATE(5031)] = 157962, - [SMALL_STATE(5032)] = 157976, - [SMALL_STATE(5033)] = 157986, - [SMALL_STATE(5034)] = 157996, - [SMALL_STATE(5035)] = 158010, - [SMALL_STATE(5036)] = 158024, - [SMALL_STATE(5037)] = 158034, - [SMALL_STATE(5038)] = 158044, - [SMALL_STATE(5039)] = 158058, - [SMALL_STATE(5040)] = 158068, - [SMALL_STATE(5041)] = 158078, - [SMALL_STATE(5042)] = 158088, - [SMALL_STATE(5043)] = 158102, - [SMALL_STATE(5044)] = 158116, - [SMALL_STATE(5045)] = 158126, - [SMALL_STATE(5046)] = 158140, - [SMALL_STATE(5047)] = 158154, - [SMALL_STATE(5048)] = 158164, - [SMALL_STATE(5049)] = 158174, - [SMALL_STATE(5050)] = 158184, - [SMALL_STATE(5051)] = 158196, - [SMALL_STATE(5052)] = 158206, - [SMALL_STATE(5053)] = 158216, - [SMALL_STATE(5054)] = 158230, - [SMALL_STATE(5055)] = 158240, - [SMALL_STATE(5056)] = 158252, - [SMALL_STATE(5057)] = 158266, - [SMALL_STATE(5058)] = 158282, - [SMALL_STATE(5059)] = 158292, - [SMALL_STATE(5060)] = 158306, - [SMALL_STATE(5061)] = 158316, - [SMALL_STATE(5062)] = 158326, - [SMALL_STATE(5063)] = 158336, - [SMALL_STATE(5064)] = 158350, - [SMALL_STATE(5065)] = 158360, - [SMALL_STATE(5066)] = 158370, - [SMALL_STATE(5067)] = 158380, - [SMALL_STATE(5068)] = 158390, - [SMALL_STATE(5069)] = 158404, - [SMALL_STATE(5070)] = 158414, - [SMALL_STATE(5071)] = 158426, - [SMALL_STATE(5072)] = 158436, - [SMALL_STATE(5073)] = 158446, - [SMALL_STATE(5074)] = 158456, - [SMALL_STATE(5075)] = 158466, - [SMALL_STATE(5076)] = 158476, - [SMALL_STATE(5077)] = 158490, - [SMALL_STATE(5078)] = 158500, - [SMALL_STATE(5079)] = 158510, - [SMALL_STATE(5080)] = 158522, - [SMALL_STATE(5081)] = 158532, - [SMALL_STATE(5082)] = 158542, - [SMALL_STATE(5083)] = 158552, - [SMALL_STATE(5084)] = 158566, - [SMALL_STATE(5085)] = 158578, - [SMALL_STATE(5086)] = 158588, - [SMALL_STATE(5087)] = 158602, - [SMALL_STATE(5088)] = 158616, - [SMALL_STATE(5089)] = 158628, - [SMALL_STATE(5090)] = 158638, - [SMALL_STATE(5091)] = 158648, - [SMALL_STATE(5092)] = 158662, - [SMALL_STATE(5093)] = 158672, - [SMALL_STATE(5094)] = 158682, - [SMALL_STATE(5095)] = 158692, - [SMALL_STATE(5096)] = 158706, - [SMALL_STATE(5097)] = 158720, - [SMALL_STATE(5098)] = 158730, - [SMALL_STATE(5099)] = 158740, - [SMALL_STATE(5100)] = 158750, - [SMALL_STATE(5101)] = 158760, - [SMALL_STATE(5102)] = 158772, - [SMALL_STATE(5103)] = 158782, - [SMALL_STATE(5104)] = 158792, - [SMALL_STATE(5105)] = 158802, - [SMALL_STATE(5106)] = 158812, - [SMALL_STATE(5107)] = 158826, - [SMALL_STATE(5108)] = 158836, - [SMALL_STATE(5109)] = 158846, - [SMALL_STATE(5110)] = 158856, - [SMALL_STATE(5111)] = 158866, - [SMALL_STATE(5112)] = 158876, - [SMALL_STATE(5113)] = 158890, - [SMALL_STATE(5114)] = 158904, - [SMALL_STATE(5115)] = 158914, - [SMALL_STATE(5116)] = 158924, - [SMALL_STATE(5117)] = 158934, - [SMALL_STATE(5118)] = 158948, - [SMALL_STATE(5119)] = 158958, - [SMALL_STATE(5120)] = 158968, - [SMALL_STATE(5121)] = 158982, - [SMALL_STATE(5122)] = 158996, - [SMALL_STATE(5123)] = 159006, - [SMALL_STATE(5124)] = 159016, - [SMALL_STATE(5125)] = 159030, - [SMALL_STATE(5126)] = 159040, - [SMALL_STATE(5127)] = 159054, - [SMALL_STATE(5128)] = 159064, - [SMALL_STATE(5129)] = 159078, - [SMALL_STATE(5130)] = 159088, - [SMALL_STATE(5131)] = 159098, - [SMALL_STATE(5132)] = 159108, - [SMALL_STATE(5133)] = 159118, - [SMALL_STATE(5134)] = 159128, - [SMALL_STATE(5135)] = 159138, - [SMALL_STATE(5136)] = 159152, - [SMALL_STATE(5137)] = 159164, - [SMALL_STATE(5138)] = 159174, - [SMALL_STATE(5139)] = 159184, - [SMALL_STATE(5140)] = 159198, - [SMALL_STATE(5141)] = 159208, - [SMALL_STATE(5142)] = 159218, - [SMALL_STATE(5143)] = 159228, - [SMALL_STATE(5144)] = 159240, - [SMALL_STATE(5145)] = 159250, - [SMALL_STATE(5146)] = 159264, - [SMALL_STATE(5147)] = 159274, - [SMALL_STATE(5148)] = 159290, - [SMALL_STATE(5149)] = 159300, - [SMALL_STATE(5150)] = 159314, - [SMALL_STATE(5151)] = 159326, - [SMALL_STATE(5152)] = 159336, - [SMALL_STATE(5153)] = 159346, - [SMALL_STATE(5154)] = 159356, - [SMALL_STATE(5155)] = 159366, - [SMALL_STATE(5156)] = 159380, - [SMALL_STATE(5157)] = 159394, - [SMALL_STATE(5158)] = 159408, - [SMALL_STATE(5159)] = 159418, - [SMALL_STATE(5160)] = 159428, - [SMALL_STATE(5161)] = 159442, - [SMALL_STATE(5162)] = 159452, - [SMALL_STATE(5163)] = 159462, - [SMALL_STATE(5164)] = 159472, - [SMALL_STATE(5165)] = 159486, - [SMALL_STATE(5166)] = 159496, - [SMALL_STATE(5167)] = 159506, - [SMALL_STATE(5168)] = 159516, - [SMALL_STATE(5169)] = 159530, - [SMALL_STATE(5170)] = 159540, - [SMALL_STATE(5171)] = 159554, - [SMALL_STATE(5172)] = 159564, - [SMALL_STATE(5173)] = 159574, - [SMALL_STATE(5174)] = 159584, - [SMALL_STATE(5175)] = 159594, - [SMALL_STATE(5176)] = 159604, - [SMALL_STATE(5177)] = 159620, - [SMALL_STATE(5178)] = 159631, - [SMALL_STATE(5179)] = 159642, - [SMALL_STATE(5180)] = 159653, - [SMALL_STATE(5181)] = 159664, - [SMALL_STATE(5182)] = 159673, - [SMALL_STATE(5183)] = 159684, - [SMALL_STATE(5184)] = 159695, - [SMALL_STATE(5185)] = 159704, - [SMALL_STATE(5186)] = 159715, - [SMALL_STATE(5187)] = 159726, - [SMALL_STATE(5188)] = 159737, - [SMALL_STATE(5189)] = 159746, - [SMALL_STATE(5190)] = 159757, - [SMALL_STATE(5191)] = 159768, - [SMALL_STATE(5192)] = 159777, - [SMALL_STATE(5193)] = 159788, - [SMALL_STATE(5194)] = 159797, - [SMALL_STATE(5195)] = 159806, - [SMALL_STATE(5196)] = 159817, - [SMALL_STATE(5197)] = 159828, - [SMALL_STATE(5198)] = 159839, - [SMALL_STATE(5199)] = 159848, - [SMALL_STATE(5200)] = 159859, - [SMALL_STATE(5201)] = 159870, - [SMALL_STATE(5202)] = 159881, - [SMALL_STATE(5203)] = 159892, - [SMALL_STATE(5204)] = 159903, - [SMALL_STATE(5205)] = 159914, - [SMALL_STATE(5206)] = 159925, - [SMALL_STATE(5207)] = 159936, - [SMALL_STATE(5208)] = 159947, - [SMALL_STATE(5209)] = 159956, - [SMALL_STATE(5210)] = 159967, - [SMALL_STATE(5211)] = 159978, - [SMALL_STATE(5212)] = 159989, - [SMALL_STATE(5213)] = 160000, - [SMALL_STATE(5214)] = 160011, - [SMALL_STATE(5215)] = 160020, - [SMALL_STATE(5216)] = 160031, - [SMALL_STATE(5217)] = 160040, - [SMALL_STATE(5218)] = 160049, - [SMALL_STATE(5219)] = 160060, - [SMALL_STATE(5220)] = 160069, - [SMALL_STATE(5221)] = 160080, - [SMALL_STATE(5222)] = 160091, - [SMALL_STATE(5223)] = 160102, - [SMALL_STATE(5224)] = 160113, - [SMALL_STATE(5225)] = 160124, - [SMALL_STATE(5226)] = 160135, - [SMALL_STATE(5227)] = 160144, - [SMALL_STATE(5228)] = 160155, - [SMALL_STATE(5229)] = 160166, - [SMALL_STATE(5230)] = 160177, - [SMALL_STATE(5231)] = 160188, - [SMALL_STATE(5232)] = 160199, - [SMALL_STATE(5233)] = 160210, - [SMALL_STATE(5234)] = 160221, - [SMALL_STATE(5235)] = 160232, - [SMALL_STATE(5236)] = 160243, - [SMALL_STATE(5237)] = 160254, - [SMALL_STATE(5238)] = 160265, - [SMALL_STATE(5239)] = 160276, - [SMALL_STATE(5240)] = 160287, - [SMALL_STATE(5241)] = 160298, - [SMALL_STATE(5242)] = 160309, - [SMALL_STATE(5243)] = 160318, - [SMALL_STATE(5244)] = 160329, - [SMALL_STATE(5245)] = 160340, - [SMALL_STATE(5246)] = 160351, - [SMALL_STATE(5247)] = 160362, - [SMALL_STATE(5248)] = 160373, - [SMALL_STATE(5249)] = 160384, - [SMALL_STATE(5250)] = 160395, - [SMALL_STATE(5251)] = 160404, - [SMALL_STATE(5252)] = 160415, - [SMALL_STATE(5253)] = 160426, - [SMALL_STATE(5254)] = 160435, - [SMALL_STATE(5255)] = 160446, - [SMALL_STATE(5256)] = 160455, - [SMALL_STATE(5257)] = 160466, - [SMALL_STATE(5258)] = 160477, - [SMALL_STATE(5259)] = 160486, - [SMALL_STATE(5260)] = 160497, - [SMALL_STATE(5261)] = 160508, - [SMALL_STATE(5262)] = 160519, - [SMALL_STATE(5263)] = 160530, - [SMALL_STATE(5264)] = 160541, - [SMALL_STATE(5265)] = 160552, - [SMALL_STATE(5266)] = 160563, - [SMALL_STATE(5267)] = 160574, - [SMALL_STATE(5268)] = 160585, - [SMALL_STATE(5269)] = 160594, - [SMALL_STATE(5270)] = 160605, - [SMALL_STATE(5271)] = 160616, - [SMALL_STATE(5272)] = 160625, - [SMALL_STATE(5273)] = 160636, - [SMALL_STATE(5274)] = 160647, - [SMALL_STATE(5275)] = 160658, - [SMALL_STATE(5276)] = 160669, - [SMALL_STATE(5277)] = 160678, - [SMALL_STATE(5278)] = 160689, - [SMALL_STATE(5279)] = 160700, - [SMALL_STATE(5280)] = 160711, - [SMALL_STATE(5281)] = 160722, - [SMALL_STATE(5282)] = 160733, - [SMALL_STATE(5283)] = 160742, - [SMALL_STATE(5284)] = 160753, - [SMALL_STATE(5285)] = 160764, - [SMALL_STATE(5286)] = 160775, - [SMALL_STATE(5287)] = 160784, - [SMALL_STATE(5288)] = 160795, - [SMALL_STATE(5289)] = 160806, - [SMALL_STATE(5290)] = 160817, - [SMALL_STATE(5291)] = 160828, - [SMALL_STATE(5292)] = 160839, - [SMALL_STATE(5293)] = 160850, - [SMALL_STATE(5294)] = 160861, - [SMALL_STATE(5295)] = 160872, - [SMALL_STATE(5296)] = 160883, - [SMALL_STATE(5297)] = 160894, - [SMALL_STATE(5298)] = 160905, - [SMALL_STATE(5299)] = 160916, - [SMALL_STATE(5300)] = 160927, - [SMALL_STATE(5301)] = 160938, - [SMALL_STATE(5302)] = 160949, - [SMALL_STATE(5303)] = 160960, - [SMALL_STATE(5304)] = 160971, - [SMALL_STATE(5305)] = 160982, - [SMALL_STATE(5306)] = 160993, - [SMALL_STATE(5307)] = 161004, - [SMALL_STATE(5308)] = 161013, - [SMALL_STATE(5309)] = 161024, - [SMALL_STATE(5310)] = 161035, - [SMALL_STATE(5311)] = 161044, - [SMALL_STATE(5312)] = 161053, - [SMALL_STATE(5313)] = 161062, - [SMALL_STATE(5314)] = 161073, - [SMALL_STATE(5315)] = 161084, - [SMALL_STATE(5316)] = 161095, - [SMALL_STATE(5317)] = 161106, - [SMALL_STATE(5318)] = 161117, - [SMALL_STATE(5319)] = 161128, - [SMALL_STATE(5320)] = 161139, - [SMALL_STATE(5321)] = 161150, - [SMALL_STATE(5322)] = 161161, - [SMALL_STATE(5323)] = 161172, - [SMALL_STATE(5324)] = 161183, - [SMALL_STATE(5325)] = 161194, - [SMALL_STATE(5326)] = 161205, - [SMALL_STATE(5327)] = 161216, - [SMALL_STATE(5328)] = 161227, - [SMALL_STATE(5329)] = 161238, - [SMALL_STATE(5330)] = 161249, - [SMALL_STATE(5331)] = 161260, - [SMALL_STATE(5332)] = 161271, - [SMALL_STATE(5333)] = 161282, - [SMALL_STATE(5334)] = 161293, - [SMALL_STATE(5335)] = 161304, - [SMALL_STATE(5336)] = 161315, - [SMALL_STATE(5337)] = 161326, - [SMALL_STATE(5338)] = 161337, - [SMALL_STATE(5339)] = 161348, - [SMALL_STATE(5340)] = 161357, - [SMALL_STATE(5341)] = 161366, - [SMALL_STATE(5342)] = 161377, - [SMALL_STATE(5343)] = 161388, - [SMALL_STATE(5344)] = 161399, - [SMALL_STATE(5345)] = 161410, - [SMALL_STATE(5346)] = 161421, - [SMALL_STATE(5347)] = 161432, - [SMALL_STATE(5348)] = 161443, - [SMALL_STATE(5349)] = 161454, - [SMALL_STATE(5350)] = 161465, - [SMALL_STATE(5351)] = 161474, - [SMALL_STATE(5352)] = 161485, - [SMALL_STATE(5353)] = 161496, - [SMALL_STATE(5354)] = 161505, - [SMALL_STATE(5355)] = 161514, - [SMALL_STATE(5356)] = 161525, - [SMALL_STATE(5357)] = 161536, - [SMALL_STATE(5358)] = 161547, - [SMALL_STATE(5359)] = 161556, - [SMALL_STATE(5360)] = 161567, - [SMALL_STATE(5361)] = 161578, - [SMALL_STATE(5362)] = 161589, - [SMALL_STATE(5363)] = 161600, - [SMALL_STATE(5364)] = 161609, - [SMALL_STATE(5365)] = 161620, - [SMALL_STATE(5366)] = 161631, - [SMALL_STATE(5367)] = 161640, - [SMALL_STATE(5368)] = 161649, - [SMALL_STATE(5369)] = 161658, - [SMALL_STATE(5370)] = 161667, - [SMALL_STATE(5371)] = 161678, - [SMALL_STATE(5372)] = 161689, - [SMALL_STATE(5373)] = 161700, - [SMALL_STATE(5374)] = 161711, - [SMALL_STATE(5375)] = 161722, - [SMALL_STATE(5376)] = 161733, - [SMALL_STATE(5377)] = 161744, - [SMALL_STATE(5378)] = 161753, - [SMALL_STATE(5379)] = 161762, - [SMALL_STATE(5380)] = 161773, - [SMALL_STATE(5381)] = 161784, - [SMALL_STATE(5382)] = 161795, - [SMALL_STATE(5383)] = 161806, - [SMALL_STATE(5384)] = 161817, - [SMALL_STATE(5385)] = 161828, - [SMALL_STATE(5386)] = 161839, - [SMALL_STATE(5387)] = 161848, - [SMALL_STATE(5388)] = 161859, - [SMALL_STATE(5389)] = 161870, - [SMALL_STATE(5390)] = 161881, - [SMALL_STATE(5391)] = 161890, - [SMALL_STATE(5392)] = 161901, - [SMALL_STATE(5393)] = 161912, - [SMALL_STATE(5394)] = 161923, - [SMALL_STATE(5395)] = 161934, - [SMALL_STATE(5396)] = 161945, - [SMALL_STATE(5397)] = 161956, - [SMALL_STATE(5398)] = 161967, - [SMALL_STATE(5399)] = 161978, - [SMALL_STATE(5400)] = 161989, - [SMALL_STATE(5401)] = 162000, - [SMALL_STATE(5402)] = 162009, - [SMALL_STATE(5403)] = 162020, - [SMALL_STATE(5404)] = 162029, - [SMALL_STATE(5405)] = 162038, - [SMALL_STATE(5406)] = 162047, - [SMALL_STATE(5407)] = 162058, - [SMALL_STATE(5408)] = 162067, - [SMALL_STATE(5409)] = 162076, - [SMALL_STATE(5410)] = 162085, - [SMALL_STATE(5411)] = 162094, - [SMALL_STATE(5412)] = 162105, - [SMALL_STATE(5413)] = 162116, - [SMALL_STATE(5414)] = 162127, - [SMALL_STATE(5415)] = 162136, - [SMALL_STATE(5416)] = 162147, - [SMALL_STATE(5417)] = 162158, - [SMALL_STATE(5418)] = 162167, - [SMALL_STATE(5419)] = 162178, - [SMALL_STATE(5420)] = 162187, - [SMALL_STATE(5421)] = 162198, - [SMALL_STATE(5422)] = 162207, - [SMALL_STATE(5423)] = 162218, - [SMALL_STATE(5424)] = 162227, - [SMALL_STATE(5425)] = 162238, - [SMALL_STATE(5426)] = 162249, - [SMALL_STATE(5427)] = 162260, - [SMALL_STATE(5428)] = 162271, - [SMALL_STATE(5429)] = 162282, - [SMALL_STATE(5430)] = 162291, - [SMALL_STATE(5431)] = 162302, - [SMALL_STATE(5432)] = 162311, - [SMALL_STATE(5433)] = 162320, - [SMALL_STATE(5434)] = 162331, - [SMALL_STATE(5435)] = 162342, - [SMALL_STATE(5436)] = 162353, - [SMALL_STATE(5437)] = 162364, - [SMALL_STATE(5438)] = 162375, - [SMALL_STATE(5439)] = 162386, - [SMALL_STATE(5440)] = 162397, - [SMALL_STATE(5441)] = 162408, - [SMALL_STATE(5442)] = 162419, - [SMALL_STATE(5443)] = 162430, - [SMALL_STATE(5444)] = 162441, - [SMALL_STATE(5445)] = 162450, - [SMALL_STATE(5446)] = 162461, - [SMALL_STATE(5447)] = 162472, - [SMALL_STATE(5448)] = 162483, - [SMALL_STATE(5449)] = 162494, - [SMALL_STATE(5450)] = 162505, - [SMALL_STATE(5451)] = 162516, - [SMALL_STATE(5452)] = 162527, - [SMALL_STATE(5453)] = 162536, - [SMALL_STATE(5454)] = 162545, - [SMALL_STATE(5455)] = 162556, - [SMALL_STATE(5456)] = 162567, - [SMALL_STATE(5457)] = 162578, - [SMALL_STATE(5458)] = 162589, - [SMALL_STATE(5459)] = 162598, - [SMALL_STATE(5460)] = 162609, - [SMALL_STATE(5461)] = 162620, - [SMALL_STATE(5462)] = 162631, - [SMALL_STATE(5463)] = 162642, - [SMALL_STATE(5464)] = 162653, - [SMALL_STATE(5465)] = 162664, - [SMALL_STATE(5466)] = 162675, - [SMALL_STATE(5467)] = 162684, - [SMALL_STATE(5468)] = 162695, - [SMALL_STATE(5469)] = 162706, - [SMALL_STATE(5470)] = 162717, - [SMALL_STATE(5471)] = 162728, - [SMALL_STATE(5472)] = 162737, - [SMALL_STATE(5473)] = 162748, - [SMALL_STATE(5474)] = 162759, - [SMALL_STATE(5475)] = 162770, - [SMALL_STATE(5476)] = 162779, - [SMALL_STATE(5477)] = 162788, - [SMALL_STATE(5478)] = 162799, - [SMALL_STATE(5479)] = 162810, - [SMALL_STATE(5480)] = 162821, - [SMALL_STATE(5481)] = 162832, - [SMALL_STATE(5482)] = 162843, - [SMALL_STATE(5483)] = 162854, - [SMALL_STATE(5484)] = 162865, - [SMALL_STATE(5485)] = 162876, - [SMALL_STATE(5486)] = 162887, - [SMALL_STATE(5487)] = 162898, - [SMALL_STATE(5488)] = 162909, - [SMALL_STATE(5489)] = 162920, - [SMALL_STATE(5490)] = 162929, - [SMALL_STATE(5491)] = 162940, - [SMALL_STATE(5492)] = 162951, - [SMALL_STATE(5493)] = 162962, - [SMALL_STATE(5494)] = 162973, - [SMALL_STATE(5495)] = 162984, - [SMALL_STATE(5496)] = 162993, - [SMALL_STATE(5497)] = 163004, - [SMALL_STATE(5498)] = 163013, - [SMALL_STATE(5499)] = 163024, - [SMALL_STATE(5500)] = 163033, - [SMALL_STATE(5501)] = 163044, - [SMALL_STATE(5502)] = 163055, - [SMALL_STATE(5503)] = 163066, - [SMALL_STATE(5504)] = 163077, - [SMALL_STATE(5505)] = 163086, - [SMALL_STATE(5506)] = 163097, - [SMALL_STATE(5507)] = 163108, - [SMALL_STATE(5508)] = 163117, - [SMALL_STATE(5509)] = 163126, - [SMALL_STATE(5510)] = 163135, - [SMALL_STATE(5511)] = 163146, - [SMALL_STATE(5512)] = 163157, - [SMALL_STATE(5513)] = 163168, - [SMALL_STATE(5514)] = 163179, - [SMALL_STATE(5515)] = 163190, - [SMALL_STATE(5516)] = 163201, - [SMALL_STATE(5517)] = 163212, - [SMALL_STATE(5518)] = 163223, - [SMALL_STATE(5519)] = 163234, - [SMALL_STATE(5520)] = 163245, - [SMALL_STATE(5521)] = 163256, - [SMALL_STATE(5522)] = 163267, - [SMALL_STATE(5523)] = 163278, - [SMALL_STATE(5524)] = 163289, - [SMALL_STATE(5525)] = 163298, - [SMALL_STATE(5526)] = 163309, - [SMALL_STATE(5527)] = 163320, - [SMALL_STATE(5528)] = 163331, - [SMALL_STATE(5529)] = 163339, - [SMALL_STATE(5530)] = 163347, - [SMALL_STATE(5531)] = 163355, - [SMALL_STATE(5532)] = 163363, - [SMALL_STATE(5533)] = 163371, - [SMALL_STATE(5534)] = 163379, - [SMALL_STATE(5535)] = 163387, - [SMALL_STATE(5536)] = 163397, - [SMALL_STATE(5537)] = 163405, - [SMALL_STATE(5538)] = 163413, - [SMALL_STATE(5539)] = 163421, - [SMALL_STATE(5540)] = 163429, - [SMALL_STATE(5541)] = 163437, - [SMALL_STATE(5542)] = 163445, - [SMALL_STATE(5543)] = 163453, - [SMALL_STATE(5544)] = 163461, - [SMALL_STATE(5545)] = 163469, - [SMALL_STATE(5546)] = 163477, - [SMALL_STATE(5547)] = 163485, - [SMALL_STATE(5548)] = 163493, - [SMALL_STATE(5549)] = 163501, - [SMALL_STATE(5550)] = 163509, - [SMALL_STATE(5551)] = 163517, - [SMALL_STATE(5552)] = 163525, - [SMALL_STATE(5553)] = 163533, - [SMALL_STATE(5554)] = 163541, - [SMALL_STATE(5555)] = 163549, - [SMALL_STATE(5556)] = 163557, - [SMALL_STATE(5557)] = 163565, - [SMALL_STATE(5558)] = 163573, - [SMALL_STATE(5559)] = 163581, - [SMALL_STATE(5560)] = 163589, - [SMALL_STATE(5561)] = 163597, - [SMALL_STATE(5562)] = 163605, - [SMALL_STATE(5563)] = 163613, - [SMALL_STATE(5564)] = 163621, - [SMALL_STATE(5565)] = 163629, - [SMALL_STATE(5566)] = 163637, - [SMALL_STATE(5567)] = 163645, - [SMALL_STATE(5568)] = 163653, - [SMALL_STATE(5569)] = 163661, - [SMALL_STATE(5570)] = 163669, - [SMALL_STATE(5571)] = 163677, - [SMALL_STATE(5572)] = 163685, - [SMALL_STATE(5573)] = 163693, - [SMALL_STATE(5574)] = 163701, - [SMALL_STATE(5575)] = 163709, - [SMALL_STATE(5576)] = 163717, - [SMALL_STATE(5577)] = 163725, - [SMALL_STATE(5578)] = 163733, - [SMALL_STATE(5579)] = 163741, - [SMALL_STATE(5580)] = 163749, - [SMALL_STATE(5581)] = 163757, - [SMALL_STATE(5582)] = 163765, - [SMALL_STATE(5583)] = 163773, - [SMALL_STATE(5584)] = 163781, - [SMALL_STATE(5585)] = 163789, - [SMALL_STATE(5586)] = 163797, - [SMALL_STATE(5587)] = 163805, - [SMALL_STATE(5588)] = 163813, - [SMALL_STATE(5589)] = 163821, - [SMALL_STATE(5590)] = 163829, - [SMALL_STATE(5591)] = 163837, - [SMALL_STATE(5592)] = 163845, - [SMALL_STATE(5593)] = 163853, - [SMALL_STATE(5594)] = 163861, - [SMALL_STATE(5595)] = 163869, - [SMALL_STATE(5596)] = 163877, - [SMALL_STATE(5597)] = 163887, - [SMALL_STATE(5598)] = 163895, - [SMALL_STATE(5599)] = 163903, - [SMALL_STATE(5600)] = 163911, - [SMALL_STATE(5601)] = 163919, - [SMALL_STATE(5602)] = 163927, - [SMALL_STATE(5603)] = 163935, - [SMALL_STATE(5604)] = 163943, - [SMALL_STATE(5605)] = 163951, - [SMALL_STATE(5606)] = 163959, - [SMALL_STATE(5607)] = 163967, - [SMALL_STATE(5608)] = 163975, - [SMALL_STATE(5609)] = 163983, - [SMALL_STATE(5610)] = 163991, - [SMALL_STATE(5611)] = 163999, - [SMALL_STATE(5612)] = 164007, - [SMALL_STATE(5613)] = 164015, - [SMALL_STATE(5614)] = 164025, - [SMALL_STATE(5615)] = 164033, - [SMALL_STATE(5616)] = 164041, - [SMALL_STATE(5617)] = 164049, - [SMALL_STATE(5618)] = 164057, - [SMALL_STATE(5619)] = 164065, - [SMALL_STATE(5620)] = 164073, - [SMALL_STATE(5621)] = 164081, - [SMALL_STATE(5622)] = 164089, - [SMALL_STATE(5623)] = 164097, - [SMALL_STATE(5624)] = 164105, - [SMALL_STATE(5625)] = 164115, - [SMALL_STATE(5626)] = 164123, - [SMALL_STATE(5627)] = 164131, - [SMALL_STATE(5628)] = 164139, - [SMALL_STATE(5629)] = 164147, - [SMALL_STATE(5630)] = 164155, - [SMALL_STATE(5631)] = 164163, - [SMALL_STATE(5632)] = 164171, - [SMALL_STATE(5633)] = 164179, - [SMALL_STATE(5634)] = 164187, - [SMALL_STATE(5635)] = 164195, - [SMALL_STATE(5636)] = 164203, - [SMALL_STATE(5637)] = 164211, - [SMALL_STATE(5638)] = 164219, - [SMALL_STATE(5639)] = 164227, - [SMALL_STATE(5640)] = 164237, - [SMALL_STATE(5641)] = 164245, - [SMALL_STATE(5642)] = 164253, - [SMALL_STATE(5643)] = 164261, - [SMALL_STATE(5644)] = 164269, - [SMALL_STATE(5645)] = 164277, - [SMALL_STATE(5646)] = 164285, - [SMALL_STATE(5647)] = 164293, - [SMALL_STATE(5648)] = 164301, - [SMALL_STATE(5649)] = 164309, - [SMALL_STATE(5650)] = 164317, - [SMALL_STATE(5651)] = 164325, - [SMALL_STATE(5652)] = 164333, - [SMALL_STATE(5653)] = 164341, - [SMALL_STATE(5654)] = 164349, - [SMALL_STATE(5655)] = 164357, - [SMALL_STATE(5656)] = 164365, - [SMALL_STATE(5657)] = 164373, - [SMALL_STATE(5658)] = 164381, - [SMALL_STATE(5659)] = 164389, - [SMALL_STATE(5660)] = 164397, - [SMALL_STATE(5661)] = 164405, - [SMALL_STATE(5662)] = 164413, - [SMALL_STATE(5663)] = 164421, - [SMALL_STATE(5664)] = 164429, - [SMALL_STATE(5665)] = 164437, - [SMALL_STATE(5666)] = 164445, - [SMALL_STATE(5667)] = 164453, - [SMALL_STATE(5668)] = 164461, - [SMALL_STATE(5669)] = 164469, - [SMALL_STATE(5670)] = 164477, - [SMALL_STATE(5671)] = 164485, - [SMALL_STATE(5672)] = 164493, - [SMALL_STATE(5673)] = 164501, - [SMALL_STATE(5674)] = 164509, - [SMALL_STATE(5675)] = 164517, - [SMALL_STATE(5676)] = 164525, - [SMALL_STATE(5677)] = 164535, - [SMALL_STATE(5678)] = 164543, - [SMALL_STATE(5679)] = 164551, - [SMALL_STATE(5680)] = 164559, - [SMALL_STATE(5681)] = 164567, - [SMALL_STATE(5682)] = 164575, - [SMALL_STATE(5683)] = 164583, - [SMALL_STATE(5684)] = 164591, - [SMALL_STATE(5685)] = 164599, - [SMALL_STATE(5686)] = 164607, - [SMALL_STATE(5687)] = 164615, - [SMALL_STATE(5688)] = 164623, - [SMALL_STATE(5689)] = 164631, - [SMALL_STATE(5690)] = 164639, - [SMALL_STATE(5691)] = 164647, - [SMALL_STATE(5692)] = 164655, - [SMALL_STATE(5693)] = 164663, - [SMALL_STATE(5694)] = 164671, - [SMALL_STATE(5695)] = 164679, - [SMALL_STATE(5696)] = 164687, - [SMALL_STATE(5697)] = 164695, - [SMALL_STATE(5698)] = 164703, - [SMALL_STATE(5699)] = 164711, - [SMALL_STATE(5700)] = 164719, - [SMALL_STATE(5701)] = 164727, - [SMALL_STATE(5702)] = 164735, - [SMALL_STATE(5703)] = 164743, - [SMALL_STATE(5704)] = 164751, - [SMALL_STATE(5705)] = 164759, - [SMALL_STATE(5706)] = 164767, - [SMALL_STATE(5707)] = 164775, - [SMALL_STATE(5708)] = 164783, - [SMALL_STATE(5709)] = 164791, - [SMALL_STATE(5710)] = 164799, - [SMALL_STATE(5711)] = 164807, - [SMALL_STATE(5712)] = 164815, - [SMALL_STATE(5713)] = 164823, - [SMALL_STATE(5714)] = 164831, - [SMALL_STATE(5715)] = 164839, - [SMALL_STATE(5716)] = 164847, - [SMALL_STATE(5717)] = 164855, - [SMALL_STATE(5718)] = 164863, - [SMALL_STATE(5719)] = 164871, - [SMALL_STATE(5720)] = 164879, - [SMALL_STATE(5721)] = 164887, - [SMALL_STATE(5722)] = 164895, - [SMALL_STATE(5723)] = 164903, - [SMALL_STATE(5724)] = 164911, - [SMALL_STATE(5725)] = 164919, - [SMALL_STATE(5726)] = 164927, - [SMALL_STATE(5727)] = 164935, - [SMALL_STATE(5728)] = 164943, - [SMALL_STATE(5729)] = 164951, - [SMALL_STATE(5730)] = 164959, - [SMALL_STATE(5731)] = 164967, - [SMALL_STATE(5732)] = 164975, - [SMALL_STATE(5733)] = 164983, - [SMALL_STATE(5734)] = 164991, - [SMALL_STATE(5735)] = 164999, - [SMALL_STATE(5736)] = 165007, - [SMALL_STATE(5737)] = 165015, - [SMALL_STATE(5738)] = 165023, - [SMALL_STATE(5739)] = 165031, - [SMALL_STATE(5740)] = 165039, - [SMALL_STATE(5741)] = 165047, - [SMALL_STATE(5742)] = 165055, - [SMALL_STATE(5743)] = 165063, - [SMALL_STATE(5744)] = 165071, - [SMALL_STATE(5745)] = 165079, - [SMALL_STATE(5746)] = 165087, - [SMALL_STATE(5747)] = 165095, - [SMALL_STATE(5748)] = 165103, - [SMALL_STATE(5749)] = 165113, - [SMALL_STATE(5750)] = 165121, - [SMALL_STATE(5751)] = 165129, - [SMALL_STATE(5752)] = 165137, - [SMALL_STATE(5753)] = 165145, - [SMALL_STATE(5754)] = 165153, - [SMALL_STATE(5755)] = 165161, - [SMALL_STATE(5756)] = 165169, - [SMALL_STATE(5757)] = 165177, - [SMALL_STATE(5758)] = 165185, - [SMALL_STATE(5759)] = 165193, - [SMALL_STATE(5760)] = 165201, - [SMALL_STATE(5761)] = 165209, - [SMALL_STATE(5762)] = 165217, - [SMALL_STATE(5763)] = 165225, - [SMALL_STATE(5764)] = 165233, - [SMALL_STATE(5765)] = 165241, - [SMALL_STATE(5766)] = 165249, - [SMALL_STATE(5767)] = 165257, - [SMALL_STATE(5768)] = 165265, - [SMALL_STATE(5769)] = 165273, - [SMALL_STATE(5770)] = 165281, - [SMALL_STATE(5771)] = 165289, - [SMALL_STATE(5772)] = 165297, - [SMALL_STATE(5773)] = 165307, - [SMALL_STATE(5774)] = 165317, - [SMALL_STATE(5775)] = 165325, - [SMALL_STATE(5776)] = 165333, - [SMALL_STATE(5777)] = 165341, - [SMALL_STATE(5778)] = 165349, - [SMALL_STATE(5779)] = 165357, - [SMALL_STATE(5780)] = 165365, - [SMALL_STATE(5781)] = 165373, - [SMALL_STATE(5782)] = 165381, - [SMALL_STATE(5783)] = 165389, - [SMALL_STATE(5784)] = 165397, - [SMALL_STATE(5785)] = 165405, - [SMALL_STATE(5786)] = 165413, - [SMALL_STATE(5787)] = 165421, - [SMALL_STATE(5788)] = 165429, - [SMALL_STATE(5789)] = 165437, - [SMALL_STATE(5790)] = 165445, - [SMALL_STATE(5791)] = 165453, - [SMALL_STATE(5792)] = 165461, - [SMALL_STATE(5793)] = 165469, - [SMALL_STATE(5794)] = 165477, - [SMALL_STATE(5795)] = 165485, - [SMALL_STATE(5796)] = 165493, - [SMALL_STATE(5797)] = 165501, - [SMALL_STATE(5798)] = 165509, - [SMALL_STATE(5799)] = 165517, - [SMALL_STATE(5800)] = 165525, - [SMALL_STATE(5801)] = 165533, - [SMALL_STATE(5802)] = 165541, - [SMALL_STATE(5803)] = 165549, - [SMALL_STATE(5804)] = 165557, - [SMALL_STATE(5805)] = 165565, - [SMALL_STATE(5806)] = 165573, - [SMALL_STATE(5807)] = 165581, - [SMALL_STATE(5808)] = 165589, - [SMALL_STATE(5809)] = 165597, - [SMALL_STATE(5810)] = 165605, - [SMALL_STATE(5811)] = 165613, - [SMALL_STATE(5812)] = 165621, - [SMALL_STATE(5813)] = 165629, - [SMALL_STATE(5814)] = 165637, - [SMALL_STATE(5815)] = 165645, - [SMALL_STATE(5816)] = 165653, - [SMALL_STATE(5817)] = 165661, - [SMALL_STATE(5818)] = 165669, - [SMALL_STATE(5819)] = 165677, - [SMALL_STATE(5820)] = 165685, - [SMALL_STATE(5821)] = 165693, - [SMALL_STATE(5822)] = 165701, - [SMALL_STATE(5823)] = 165709, - [SMALL_STATE(5824)] = 165717, - [SMALL_STATE(5825)] = 165725, - [SMALL_STATE(5826)] = 165733, - [SMALL_STATE(5827)] = 165741, - [SMALL_STATE(5828)] = 165749, - [SMALL_STATE(5829)] = 165757, - [SMALL_STATE(5830)] = 165765, - [SMALL_STATE(5831)] = 165773, - [SMALL_STATE(5832)] = 165781, - [SMALL_STATE(5833)] = 165789, - [SMALL_STATE(5834)] = 165797, - [SMALL_STATE(5835)] = 165805, - [SMALL_STATE(5836)] = 165813, - [SMALL_STATE(5837)] = 165821, - [SMALL_STATE(5838)] = 165829, - [SMALL_STATE(5839)] = 165837, - [SMALL_STATE(5840)] = 165845, - [SMALL_STATE(5841)] = 165853, - [SMALL_STATE(5842)] = 165861, - [SMALL_STATE(5843)] = 165869, - [SMALL_STATE(5844)] = 165877, - [SMALL_STATE(5845)] = 165885, - [SMALL_STATE(5846)] = 165893, - [SMALL_STATE(5847)] = 165901, - [SMALL_STATE(5848)] = 165909, - [SMALL_STATE(5849)] = 165917, - [SMALL_STATE(5850)] = 165925, - [SMALL_STATE(5851)] = 165933, - [SMALL_STATE(5852)] = 165941, - [SMALL_STATE(5853)] = 165949, - [SMALL_STATE(5854)] = 165957, - [SMALL_STATE(5855)] = 165965, - [SMALL_STATE(5856)] = 165973, - [SMALL_STATE(5857)] = 165981, - [SMALL_STATE(5858)] = 165989, - [SMALL_STATE(5859)] = 165997, - [SMALL_STATE(5860)] = 166005, - [SMALL_STATE(5861)] = 166013, - [SMALL_STATE(5862)] = 166021, - [SMALL_STATE(5863)] = 166029, - [SMALL_STATE(5864)] = 166037, - [SMALL_STATE(5865)] = 166045, - [SMALL_STATE(5866)] = 166053, - [SMALL_STATE(5867)] = 166061, - [SMALL_STATE(5868)] = 166069, - [SMALL_STATE(5869)] = 166077, - [SMALL_STATE(5870)] = 166085, - [SMALL_STATE(5871)] = 166093, - [SMALL_STATE(5872)] = 166101, - [SMALL_STATE(5873)] = 166109, - [SMALL_STATE(5874)] = 166117, - [SMALL_STATE(5875)] = 166125, - [SMALL_STATE(5876)] = 166133, - [SMALL_STATE(5877)] = 166141, - [SMALL_STATE(5878)] = 166149, - [SMALL_STATE(5879)] = 166157, - [SMALL_STATE(5880)] = 166165, - [SMALL_STATE(5881)] = 166173, - [SMALL_STATE(5882)] = 166181, - [SMALL_STATE(5883)] = 166189, - [SMALL_STATE(5884)] = 166197, - [SMALL_STATE(5885)] = 166205, - [SMALL_STATE(5886)] = 166213, - [SMALL_STATE(5887)] = 166221, - [SMALL_STATE(5888)] = 166229, - [SMALL_STATE(5889)] = 166237, - [SMALL_STATE(5890)] = 166245, - [SMALL_STATE(5891)] = 166253, - [SMALL_STATE(5892)] = 166261, - [SMALL_STATE(5893)] = 166269, - [SMALL_STATE(5894)] = 166277, - [SMALL_STATE(5895)] = 166285, - [SMALL_STATE(5896)] = 166293, - [SMALL_STATE(5897)] = 166301, - [SMALL_STATE(5898)] = 166309, - [SMALL_STATE(5899)] = 166317, - [SMALL_STATE(5900)] = 166325, - [SMALL_STATE(5901)] = 166333, - [SMALL_STATE(5902)] = 166341, - [SMALL_STATE(5903)] = 166349, - [SMALL_STATE(5904)] = 166357, - [SMALL_STATE(5905)] = 166365, - [SMALL_STATE(5906)] = 166373, - [SMALL_STATE(5907)] = 166383, - [SMALL_STATE(5908)] = 166391, - [SMALL_STATE(5909)] = 166399, - [SMALL_STATE(5910)] = 166407, - [SMALL_STATE(5911)] = 166415, - [SMALL_STATE(5912)] = 166423, - [SMALL_STATE(5913)] = 166431, - [SMALL_STATE(5914)] = 166439, - [SMALL_STATE(5915)] = 166447, - [SMALL_STATE(5916)] = 166455, + [SMALL_STATE(2676)] = 109587, + [SMALL_STATE(2677)] = 109641, + [SMALL_STATE(2678)] = 109701, + [SMALL_STATE(2679)] = 109755, + [SMALL_STATE(2680)] = 109809, + [SMALL_STATE(2681)] = 109889, + [SMALL_STATE(2682)] = 109969, + [SMALL_STATE(2683)] = 110033, + [SMALL_STATE(2684)] = 110113, + [SMALL_STATE(2685)] = 110193, + [SMALL_STATE(2686)] = 110273, + [SMALL_STATE(2687)] = 110327, + [SMALL_STATE(2688)] = 110391, + [SMALL_STATE(2689)] = 110445, + [SMALL_STATE(2690)] = 110525, + [SMALL_STATE(2691)] = 110579, + [SMALL_STATE(2692)] = 110659, + [SMALL_STATE(2693)] = 110713, + [SMALL_STATE(2694)] = 110767, + [SMALL_STATE(2695)] = 110821, + [SMALL_STATE(2696)] = 110878, + [SMALL_STATE(2697)] = 110935, + [SMALL_STATE(2698)] = 110976, + [SMALL_STATE(2699)] = 111033, + [SMALL_STATE(2700)] = 111090, + [SMALL_STATE(2701)] = 111147, + [SMALL_STATE(2702)] = 111204, + [SMALL_STATE(2703)] = 111261, + [SMALL_STATE(2704)] = 111302, + [SMALL_STATE(2705)] = 111343, + [SMALL_STATE(2706)] = 111400, + [SMALL_STATE(2707)] = 111457, + [SMALL_STATE(2708)] = 111510, + [SMALL_STATE(2709)] = 111567, + [SMALL_STATE(2710)] = 111608, + [SMALL_STATE(2711)] = 111665, + [SMALL_STATE(2712)] = 111722, + [SMALL_STATE(2713)] = 111779, + [SMALL_STATE(2714)] = 111832, + [SMALL_STATE(2715)] = 111873, + [SMALL_STATE(2716)] = 111930, + [SMALL_STATE(2717)] = 111981, + [SMALL_STATE(2718)] = 112038, + [SMALL_STATE(2719)] = 112081, + [SMALL_STATE(2720)] = 112138, + [SMALL_STATE(2721)] = 112186, + [SMALL_STATE(2722)] = 112234, + [SMALL_STATE(2723)] = 112282, + [SMALL_STATE(2724)] = 112332, + [SMALL_STATE(2725)] = 112380, + [SMALL_STATE(2726)] = 112428, + [SMALL_STATE(2727)] = 112476, + [SMALL_STATE(2728)] = 112524, + [SMALL_STATE(2729)] = 112574, + [SMALL_STATE(2730)] = 112622, + [SMALL_STATE(2731)] = 112670, + [SMALL_STATE(2732)] = 112718, + [SMALL_STATE(2733)] = 112766, + [SMALL_STATE(2734)] = 112816, + [SMALL_STATE(2735)] = 112864, + [SMALL_STATE(2736)] = 112914, + [SMALL_STATE(2737)] = 112962, + [SMALL_STATE(2738)] = 113012, + [SMALL_STATE(2739)] = 113060, + [SMALL_STATE(2740)] = 113108, + [SMALL_STATE(2741)] = 113156, + [SMALL_STATE(2742)] = 113206, + [SMALL_STATE(2743)] = 113254, + [SMALL_STATE(2744)] = 113302, + [SMALL_STATE(2745)] = 113350, + [SMALL_STATE(2746)] = 113398, + [SMALL_STATE(2747)] = 113446, + [SMALL_STATE(2748)] = 113494, + [SMALL_STATE(2749)] = 113542, + [SMALL_STATE(2750)] = 113590, + [SMALL_STATE(2751)] = 113638, + [SMALL_STATE(2752)] = 113686, + [SMALL_STATE(2753)] = 113734, + [SMALL_STATE(2754)] = 113782, + [SMALL_STATE(2755)] = 113832, + [SMALL_STATE(2756)] = 113882, + [SMALL_STATE(2757)] = 113930, + [SMALL_STATE(2758)] = 113978, + [SMALL_STATE(2759)] = 114028, + [SMALL_STATE(2760)] = 114076, + [SMALL_STATE(2761)] = 114126, + [SMALL_STATE(2762)] = 114174, + [SMALL_STATE(2763)] = 114224, + [SMALL_STATE(2764)] = 114272, + [SMALL_STATE(2765)] = 114320, + [SMALL_STATE(2766)] = 114368, + [SMALL_STATE(2767)] = 114418, + [SMALL_STATE(2768)] = 114466, + [SMALL_STATE(2769)] = 114516, + [SMALL_STATE(2770)] = 114564, + [SMALL_STATE(2771)] = 114612, + [SMALL_STATE(2772)] = 114660, + [SMALL_STATE(2773)] = 114708, + [SMALL_STATE(2774)] = 114756, + [SMALL_STATE(2775)] = 114804, + [SMALL_STATE(2776)] = 114852, + [SMALL_STATE(2777)] = 114902, + [SMALL_STATE(2778)] = 114950, + [SMALL_STATE(2779)] = 114998, + [SMALL_STATE(2780)] = 115046, + [SMALL_STATE(2781)] = 115094, + [SMALL_STATE(2782)] = 115129, + [SMALL_STATE(2783)] = 115170, + [SMALL_STATE(2784)] = 115211, + [SMALL_STATE(2785)] = 115252, + [SMALL_STATE(2786)] = 115280, + [SMALL_STATE(2787)] = 115308, + [SMALL_STATE(2788)] = 115336, + [SMALL_STATE(2789)] = 115364, + [SMALL_STATE(2790)] = 115392, + [SMALL_STATE(2791)] = 115420, + [SMALL_STATE(2792)] = 115448, + [SMALL_STATE(2793)] = 115476, + [SMALL_STATE(2794)] = 115504, + [SMALL_STATE(2795)] = 115532, + [SMALL_STATE(2796)] = 115560, + [SMALL_STATE(2797)] = 115588, + [SMALL_STATE(2798)] = 115616, + [SMALL_STATE(2799)] = 115644, + [SMALL_STATE(2800)] = 115672, + [SMALL_STATE(2801)] = 115700, + [SMALL_STATE(2802)] = 115728, + [SMALL_STATE(2803)] = 115756, + [SMALL_STATE(2804)] = 115784, + [SMALL_STATE(2805)] = 115812, + [SMALL_STATE(2806)] = 115840, + [SMALL_STATE(2807)] = 115868, + [SMALL_STATE(2808)] = 115896, + [SMALL_STATE(2809)] = 115924, + [SMALL_STATE(2810)] = 115952, + [SMALL_STATE(2811)] = 115980, + [SMALL_STATE(2812)] = 116008, + [SMALL_STATE(2813)] = 116036, + [SMALL_STATE(2814)] = 116064, + [SMALL_STATE(2815)] = 116092, + [SMALL_STATE(2816)] = 116120, + [SMALL_STATE(2817)] = 116148, + [SMALL_STATE(2818)] = 116176, + [SMALL_STATE(2819)] = 116204, + [SMALL_STATE(2820)] = 116261, + [SMALL_STATE(2821)] = 116288, + [SMALL_STATE(2822)] = 116345, + [SMALL_STATE(2823)] = 116372, + [SMALL_STATE(2824)] = 116421, + [SMALL_STATE(2825)] = 116454, + [SMALL_STATE(2826)] = 116480, + [SMALL_STATE(2827)] = 116508, + [SMALL_STATE(2828)] = 116546, + [SMALL_STATE(2829)] = 116576, + [SMALL_STATE(2830)] = 116602, + [SMALL_STATE(2831)] = 116628, + [SMALL_STATE(2832)] = 116658, + [SMALL_STATE(2833)] = 116696, + [SMALL_STATE(2834)] = 116726, + [SMALL_STATE(2835)] = 116752, + [SMALL_STATE(2836)] = 116780, + [SMALL_STATE(2837)] = 116806, + [SMALL_STATE(2838)] = 116832, + [SMALL_STATE(2839)] = 116858, + [SMALL_STATE(2840)] = 116896, + [SMALL_STATE(2841)] = 116930, + [SMALL_STATE(2842)] = 116956, + [SMALL_STATE(2843)] = 116982, + [SMALL_STATE(2844)] = 117008, + [SMALL_STATE(2845)] = 117034, + [SMALL_STATE(2846)] = 117060, + [SMALL_STATE(2847)] = 117091, + [SMALL_STATE(2848)] = 117116, + [SMALL_STATE(2849)] = 117141, + [SMALL_STATE(2850)] = 117166, + [SMALL_STATE(2851)] = 117193, + [SMALL_STATE(2852)] = 117218, + [SMALL_STATE(2853)] = 117242, + [SMALL_STATE(2854)] = 117266, + [SMALL_STATE(2855)] = 117290, + [SMALL_STATE(2856)] = 117314, + [SMALL_STATE(2857)] = 117338, + [SMALL_STATE(2858)] = 117362, + [SMALL_STATE(2859)] = 117390, + [SMALL_STATE(2860)] = 117414, + [SMALL_STATE(2861)] = 117440, + [SMALL_STATE(2862)] = 117464, + [SMALL_STATE(2863)] = 117498, + [SMALL_STATE(2864)] = 117532, + [SMALL_STATE(2865)] = 117566, + [SMALL_STATE(2866)] = 117590, + [SMALL_STATE(2867)] = 117614, + [SMALL_STATE(2868)] = 117646, + [SMALL_STATE(2869)] = 117680, + [SMALL_STATE(2870)] = 117714, + [SMALL_STATE(2871)] = 117748, + [SMALL_STATE(2872)] = 117772, + [SMALL_STATE(2873)] = 117796, + [SMALL_STATE(2874)] = 117820, + [SMALL_STATE(2875)] = 117844, + [SMALL_STATE(2876)] = 117866, + [SMALL_STATE(2877)] = 117890, + [SMALL_STATE(2878)] = 117914, + [SMALL_STATE(2879)] = 117936, + [SMALL_STATE(2880)] = 117968, + [SMALL_STATE(2881)] = 118002, + [SMALL_STATE(2882)] = 118036, + [SMALL_STATE(2883)] = 118070, + [SMALL_STATE(2884)] = 118094, + [SMALL_STATE(2885)] = 118116, + [SMALL_STATE(2886)] = 118140, + [SMALL_STATE(2887)] = 118174, + [SMALL_STATE(2888)] = 118208, + [SMALL_STATE(2889)] = 118242, + [SMALL_STATE(2890)] = 118266, + [SMALL_STATE(2891)] = 118290, + [SMALL_STATE(2892)] = 118312, + [SMALL_STATE(2893)] = 118344, + [SMALL_STATE(2894)] = 118378, + [SMALL_STATE(2895)] = 118412, + [SMALL_STATE(2896)] = 118446, + [SMALL_STATE(2897)] = 118470, + [SMALL_STATE(2898)] = 118496, + [SMALL_STATE(2899)] = 118518, + [SMALL_STATE(2900)] = 118540, + [SMALL_STATE(2901)] = 118562, + [SMALL_STATE(2902)] = 118594, + [SMALL_STATE(2903)] = 118626, + [SMALL_STATE(2904)] = 118650, + [SMALL_STATE(2905)] = 118684, + [SMALL_STATE(2906)] = 118708, + [SMALL_STATE(2907)] = 118732, + [SMALL_STATE(2908)] = 118756, + [SMALL_STATE(2909)] = 118790, + [SMALL_STATE(2910)] = 118814, + [SMALL_STATE(2911)] = 118838, + [SMALL_STATE(2912)] = 118862, + [SMALL_STATE(2913)] = 118886, + [SMALL_STATE(2914)] = 118910, + [SMALL_STATE(2915)] = 118934, + [SMALL_STATE(2916)] = 118958, + [SMALL_STATE(2917)] = 118982, + [SMALL_STATE(2918)] = 119016, + [SMALL_STATE(2919)] = 119040, + [SMALL_STATE(2920)] = 119062, + [SMALL_STATE(2921)] = 119086, + [SMALL_STATE(2922)] = 119110, + [SMALL_STATE(2923)] = 119134, + [SMALL_STATE(2924)] = 119158, + [SMALL_STATE(2925)] = 119182, + [SMALL_STATE(2926)] = 119206, + [SMALL_STATE(2927)] = 119230, + [SMALL_STATE(2928)] = 119254, + [SMALL_STATE(2929)] = 119278, + [SMALL_STATE(2930)] = 119302, + [SMALL_STATE(2931)] = 119326, + [SMALL_STATE(2932)] = 119350, + [SMALL_STATE(2933)] = 119374, + [SMALL_STATE(2934)] = 119398, + [SMALL_STATE(2935)] = 119422, + [SMALL_STATE(2936)] = 119446, + [SMALL_STATE(2937)] = 119470, + [SMALL_STATE(2938)] = 119494, + [SMALL_STATE(2939)] = 119518, + [SMALL_STATE(2940)] = 119542, + [SMALL_STATE(2941)] = 119566, + [SMALL_STATE(2942)] = 119590, + [SMALL_STATE(2943)] = 119614, + [SMALL_STATE(2944)] = 119636, + [SMALL_STATE(2945)] = 119660, + [SMALL_STATE(2946)] = 119684, + [SMALL_STATE(2947)] = 119708, + [SMALL_STATE(2948)] = 119732, + [SMALL_STATE(2949)] = 119756, + [SMALL_STATE(2950)] = 119780, + [SMALL_STATE(2951)] = 119804, + [SMALL_STATE(2952)] = 119828, + [SMALL_STATE(2953)] = 119860, + [SMALL_STATE(2954)] = 119889, + [SMALL_STATE(2955)] = 119934, + [SMALL_STATE(2956)] = 119977, + [SMALL_STATE(2957)] = 120020, + [SMALL_STATE(2958)] = 120049, + [SMALL_STATE(2959)] = 120078, + [SMALL_STATE(2960)] = 120121, + [SMALL_STATE(2961)] = 120150, + [SMALL_STATE(2962)] = 120189, + [SMALL_STATE(2963)] = 120218, + [SMALL_STATE(2964)] = 120257, + [SMALL_STATE(2965)] = 120300, + [SMALL_STATE(2966)] = 120343, + [SMALL_STATE(2967)] = 120386, + [SMALL_STATE(2968)] = 120429, + [SMALL_STATE(2969)] = 120472, + [SMALL_STATE(2970)] = 120515, + [SMALL_STATE(2971)] = 120540, + [SMALL_STATE(2972)] = 120583, + [SMALL_STATE(2973)] = 120612, + [SMALL_STATE(2974)] = 120651, + [SMALL_STATE(2975)] = 120694, + [SMALL_STATE(2976)] = 120729, + [SMALL_STATE(2977)] = 120772, + [SMALL_STATE(2978)] = 120815, + [SMALL_STATE(2979)] = 120844, + [SMALL_STATE(2980)] = 120883, + [SMALL_STATE(2981)] = 120926, + [SMALL_STATE(2982)] = 120969, + [SMALL_STATE(2983)] = 121008, + [SMALL_STATE(2984)] = 121037, + [SMALL_STATE(2985)] = 121080, + [SMALL_STATE(2986)] = 121123, + [SMALL_STATE(2987)] = 121166, + [SMALL_STATE(2988)] = 121209, + [SMALL_STATE(2989)] = 121236, + [SMALL_STATE(2990)] = 121279, + [SMALL_STATE(2991)] = 121322, + [SMALL_STATE(2992)] = 121351, + [SMALL_STATE(2993)] = 121394, + [SMALL_STATE(2994)] = 121419, + [SMALL_STATE(2995)] = 121462, + [SMALL_STATE(2996)] = 121487, + [SMALL_STATE(2997)] = 121507, + [SMALL_STATE(2998)] = 121543, + [SMALL_STATE(2999)] = 121579, + [SMALL_STATE(3000)] = 121601, + [SMALL_STATE(3001)] = 121629, + [SMALL_STATE(3002)] = 121657, + [SMALL_STATE(3003)] = 121677, + [SMALL_STATE(3004)] = 121703, + [SMALL_STATE(3005)] = 121731, + [SMALL_STATE(3006)] = 121757, + [SMALL_STATE(3007)] = 121785, + [SMALL_STATE(3008)] = 121807, + [SMALL_STATE(3009)] = 121827, + [SMALL_STATE(3010)] = 121863, + [SMALL_STATE(3011)] = 121883, + [SMALL_STATE(3012)] = 121903, + [SMALL_STATE(3013)] = 121925, + [SMALL_STATE(3014)] = 121945, + [SMALL_STATE(3015)] = 121973, + [SMALL_STATE(3016)] = 121995, + [SMALL_STATE(3017)] = 122037, + [SMALL_STATE(3018)] = 122061, + [SMALL_STATE(3019)] = 122083, + [SMALL_STATE(3020)] = 122111, + [SMALL_STATE(3021)] = 122133, + [SMALL_STATE(3022)] = 122155, + [SMALL_STATE(3023)] = 122175, + [SMALL_STATE(3024)] = 122197, + [SMALL_STATE(3025)] = 122217, + [SMALL_STATE(3026)] = 122237, + [SMALL_STATE(3027)] = 122273, + [SMALL_STATE(3028)] = 122293, + [SMALL_STATE(3029)] = 122329, + [SMALL_STATE(3030)] = 122365, + [SMALL_STATE(3031)] = 122385, + [SMALL_STATE(3032)] = 122409, + [SMALL_STATE(3033)] = 122431, + [SMALL_STATE(3034)] = 122451, + [SMALL_STATE(3035)] = 122473, + [SMALL_STATE(3036)] = 122495, + [SMALL_STATE(3037)] = 122519, + [SMALL_STATE(3038)] = 122555, + [SMALL_STATE(3039)] = 122591, + [SMALL_STATE(3040)] = 122627, + [SMALL_STATE(3041)] = 122647, + [SMALL_STATE(3042)] = 122667, + [SMALL_STATE(3043)] = 122689, + [SMALL_STATE(3044)] = 122711, + [SMALL_STATE(3045)] = 122733, + [SMALL_STATE(3046)] = 122775, + [SMALL_STATE(3047)] = 122797, + [SMALL_STATE(3048)] = 122823, + [SMALL_STATE(3049)] = 122843, + [SMALL_STATE(3050)] = 122879, + [SMALL_STATE(3051)] = 122903, + [SMALL_STATE(3052)] = 122939, + [SMALL_STATE(3053)] = 122967, + [SMALL_STATE(3054)] = 122987, + [SMALL_STATE(3055)] = 123015, + [SMALL_STATE(3056)] = 123035, + [SMALL_STATE(3057)] = 123055, + [SMALL_STATE(3058)] = 123091, + [SMALL_STATE(3059)] = 123111, + [SMALL_STATE(3060)] = 123139, + [SMALL_STATE(3061)] = 123159, + [SMALL_STATE(3062)] = 123179, + [SMALL_STATE(3063)] = 123215, + [SMALL_STATE(3064)] = 123251, + [SMALL_STATE(3065)] = 123271, + [SMALL_STATE(3066)] = 123291, + [SMALL_STATE(3067)] = 123311, + [SMALL_STATE(3068)] = 123331, + [SMALL_STATE(3069)] = 123355, + [SMALL_STATE(3070)] = 123375, + [SMALL_STATE(3071)] = 123411, + [SMALL_STATE(3072)] = 123431, + [SMALL_STATE(3073)] = 123451, + [SMALL_STATE(3074)] = 123471, + [SMALL_STATE(3075)] = 123507, + [SMALL_STATE(3076)] = 123543, + [SMALL_STATE(3077)] = 123563, + [SMALL_STATE(3078)] = 123583, + [SMALL_STATE(3079)] = 123603, + [SMALL_STATE(3080)] = 123623, + [SMALL_STATE(3081)] = 123643, + [SMALL_STATE(3082)] = 123679, + [SMALL_STATE(3083)] = 123712, + [SMALL_STATE(3084)] = 123745, + [SMALL_STATE(3085)] = 123766, + [SMALL_STATE(3086)] = 123803, + [SMALL_STATE(3087)] = 123824, + [SMALL_STATE(3088)] = 123845, + [SMALL_STATE(3089)] = 123884, + [SMALL_STATE(3090)] = 123921, + [SMALL_STATE(3091)] = 123958, + [SMALL_STATE(3092)] = 123995, + [SMALL_STATE(3093)] = 124028, + [SMALL_STATE(3094)] = 124061, + [SMALL_STATE(3095)] = 124098, + [SMALL_STATE(3096)] = 124135, + [SMALL_STATE(3097)] = 124158, + [SMALL_STATE(3098)] = 124179, + [SMALL_STATE(3099)] = 124216, + [SMALL_STATE(3100)] = 124255, + [SMALL_STATE(3101)] = 124294, + [SMALL_STATE(3102)] = 124317, + [SMALL_STATE(3103)] = 124354, + [SMALL_STATE(3104)] = 124387, + [SMALL_STATE(3105)] = 124416, + [SMALL_STATE(3106)] = 124453, + [SMALL_STATE(3107)] = 124490, + [SMALL_STATE(3108)] = 124527, + [SMALL_STATE(3109)] = 124566, + [SMALL_STATE(3110)] = 124585, + [SMALL_STATE(3111)] = 124618, + [SMALL_STATE(3112)] = 124655, + [SMALL_STATE(3113)] = 124678, + [SMALL_STATE(3114)] = 124701, + [SMALL_STATE(3115)] = 124738, + [SMALL_STATE(3116)] = 124775, + [SMALL_STATE(3117)] = 124812, + [SMALL_STATE(3118)] = 124849, + [SMALL_STATE(3119)] = 124886, + [SMALL_STATE(3120)] = 124919, + [SMALL_STATE(3121)] = 124956, + [SMALL_STATE(3122)] = 124985, + [SMALL_STATE(3123)] = 125004, + [SMALL_STATE(3124)] = 125041, + [SMALL_STATE(3125)] = 125070, + [SMALL_STATE(3126)] = 125107, + [SMALL_STATE(3127)] = 125138, + [SMALL_STATE(3128)] = 125169, + [SMALL_STATE(3129)] = 125206, + [SMALL_STATE(3130)] = 125239, + [SMALL_STATE(3131)] = 125276, + [SMALL_STATE(3132)] = 125307, + [SMALL_STATE(3133)] = 125340, + [SMALL_STATE(3134)] = 125369, + [SMALL_STATE(3135)] = 125402, + [SMALL_STATE(3136)] = 125439, + [SMALL_STATE(3137)] = 125468, + [SMALL_STATE(3138)] = 125507, + [SMALL_STATE(3139)] = 125532, + [SMALL_STATE(3140)] = 125565, + [SMALL_STATE(3141)] = 125596, + [SMALL_STATE(3142)] = 125621, + [SMALL_STATE(3143)] = 125652, + [SMALL_STATE(3144)] = 125672, + [SMALL_STATE(3145)] = 125690, + [SMALL_STATE(3146)] = 125710, + [SMALL_STATE(3147)] = 125732, + [SMALL_STATE(3148)] = 125750, + [SMALL_STATE(3149)] = 125768, + [SMALL_STATE(3150)] = 125788, + [SMALL_STATE(3151)] = 125810, + [SMALL_STATE(3152)] = 125828, + [SMALL_STATE(3153)] = 125852, + [SMALL_STATE(3154)] = 125870, + [SMALL_STATE(3155)] = 125890, + [SMALL_STATE(3156)] = 125910, + [SMALL_STATE(3157)] = 125932, + [SMALL_STATE(3158)] = 125952, + [SMALL_STATE(3159)] = 125972, + [SMALL_STATE(3160)] = 125992, + [SMALL_STATE(3161)] = 126012, + [SMALL_STATE(3162)] = 126032, + [SMALL_STATE(3163)] = 126058, + [SMALL_STATE(3164)] = 126078, + [SMALL_STATE(3165)] = 126098, + [SMALL_STATE(3166)] = 126118, + [SMALL_STATE(3167)] = 126138, + [SMALL_STATE(3168)] = 126174, + [SMALL_STATE(3169)] = 126198, + [SMALL_STATE(3170)] = 126218, + [SMALL_STATE(3171)] = 126238, + [SMALL_STATE(3172)] = 126258, + [SMALL_STATE(3173)] = 126282, + [SMALL_STATE(3174)] = 126302, + [SMALL_STATE(3175)] = 126322, + [SMALL_STATE(3176)] = 126346, + [SMALL_STATE(3177)] = 126368, + [SMALL_STATE(3178)] = 126390, + [SMALL_STATE(3179)] = 126408, + [SMALL_STATE(3180)] = 126426, + [SMALL_STATE(3181)] = 126446, + [SMALL_STATE(3182)] = 126464, + [SMALL_STATE(3183)] = 126482, + [SMALL_STATE(3184)] = 126500, + [SMALL_STATE(3185)] = 126526, + [SMALL_STATE(3186)] = 126544, + [SMALL_STATE(3187)] = 126564, + [SMALL_STATE(3188)] = 126584, + [SMALL_STATE(3189)] = 126604, + [SMALL_STATE(3190)] = 126624, + [SMALL_STATE(3191)] = 126644, + [SMALL_STATE(3192)] = 126664, + [SMALL_STATE(3193)] = 126684, + [SMALL_STATE(3194)] = 126704, + [SMALL_STATE(3195)] = 126724, + [SMALL_STATE(3196)] = 126744, + [SMALL_STATE(3197)] = 126764, + [SMALL_STATE(3198)] = 126784, + [SMALL_STATE(3199)] = 126806, + [SMALL_STATE(3200)] = 126828, + [SMALL_STATE(3201)] = 126846, + [SMALL_STATE(3202)] = 126870, + [SMALL_STATE(3203)] = 126888, + [SMALL_STATE(3204)] = 126912, + [SMALL_STATE(3205)] = 126936, + [SMALL_STATE(3206)] = 126956, + [SMALL_STATE(3207)] = 126976, + [SMALL_STATE(3208)] = 126998, + [SMALL_STATE(3209)] = 127018, + [SMALL_STATE(3210)] = 127036, + [SMALL_STATE(3211)] = 127056, + [SMALL_STATE(3212)] = 127080, + [SMALL_STATE(3213)] = 127100, + [SMALL_STATE(3214)] = 127120, + [SMALL_STATE(3215)] = 127149, + [SMALL_STATE(3216)] = 127182, + [SMALL_STATE(3217)] = 127215, + [SMALL_STATE(3218)] = 127248, + [SMALL_STATE(3219)] = 127281, + [SMALL_STATE(3220)] = 127316, + [SMALL_STATE(3221)] = 127351, + [SMALL_STATE(3222)] = 127368, + [SMALL_STATE(3223)] = 127403, + [SMALL_STATE(3224)] = 127422, + [SMALL_STATE(3225)] = 127457, + [SMALL_STATE(3226)] = 127476, + [SMALL_STATE(3227)] = 127499, + [SMALL_STATE(3228)] = 127518, + [SMALL_STATE(3229)] = 127541, + [SMALL_STATE(3230)] = 127562, + [SMALL_STATE(3231)] = 127583, + [SMALL_STATE(3232)] = 127618, + [SMALL_STATE(3233)] = 127649, + [SMALL_STATE(3234)] = 127670, + [SMALL_STATE(3235)] = 127705, + [SMALL_STATE(3236)] = 127740, + [SMALL_STATE(3237)] = 127763, + [SMALL_STATE(3238)] = 127796, + [SMALL_STATE(3239)] = 127813, + [SMALL_STATE(3240)] = 127830, + [SMALL_STATE(3241)] = 127865, + [SMALL_STATE(3242)] = 127882, + [SMALL_STATE(3243)] = 127915, + [SMALL_STATE(3244)] = 127934, + [SMALL_STATE(3245)] = 127969, + [SMALL_STATE(3246)] = 128000, + [SMALL_STATE(3247)] = 128035, + [SMALL_STATE(3248)] = 128070, + [SMALL_STATE(3249)] = 128099, + [SMALL_STATE(3250)] = 128124, + [SMALL_STATE(3251)] = 128150, + [SMALL_STATE(3252)] = 128166, + [SMALL_STATE(3253)] = 128196, + [SMALL_STATE(3254)] = 128226, + [SMALL_STATE(3255)] = 128258, + [SMALL_STATE(3256)] = 128286, + [SMALL_STATE(3257)] = 128302, + [SMALL_STATE(3258)] = 128318, + [SMALL_STATE(3259)] = 128346, + [SMALL_STATE(3260)] = 128378, + [SMALL_STATE(3261)] = 128400, + [SMALL_STATE(3262)] = 128432, + [SMALL_STATE(3263)] = 128460, + [SMALL_STATE(3264)] = 128492, + [SMALL_STATE(3265)] = 128524, + [SMALL_STATE(3266)] = 128540, + [SMALL_STATE(3267)] = 128572, + [SMALL_STATE(3268)] = 128598, + [SMALL_STATE(3269)] = 128614, + [SMALL_STATE(3270)] = 128630, + [SMALL_STATE(3271)] = 128660, + [SMALL_STATE(3272)] = 128676, + [SMALL_STATE(3273)] = 128692, + [SMALL_STATE(3274)] = 128722, + [SMALL_STATE(3275)] = 128750, + [SMALL_STATE(3276)] = 128782, + [SMALL_STATE(3277)] = 128798, + [SMALL_STATE(3278)] = 128824, + [SMALL_STATE(3279)] = 128840, + [SMALL_STATE(3280)] = 128870, + [SMALL_STATE(3281)] = 128886, + [SMALL_STATE(3282)] = 128904, + [SMALL_STATE(3283)] = 128920, + [SMALL_STATE(3284)] = 128946, + [SMALL_STATE(3285)] = 128968, + [SMALL_STATE(3286)] = 128984, + [SMALL_STATE(3287)] = 129014, + [SMALL_STATE(3288)] = 129044, + [SMALL_STATE(3289)] = 129072, + [SMALL_STATE(3290)] = 129102, + [SMALL_STATE(3291)] = 129134, + [SMALL_STATE(3292)] = 129162, + [SMALL_STATE(3293)] = 129178, + [SMALL_STATE(3294)] = 129206, + [SMALL_STATE(3295)] = 129238, + [SMALL_STATE(3296)] = 129254, + [SMALL_STATE(3297)] = 129282, + [SMALL_STATE(3298)] = 129310, + [SMALL_STATE(3299)] = 129342, + [SMALL_STATE(3300)] = 129358, + [SMALL_STATE(3301)] = 129374, + [SMALL_STATE(3302)] = 129390, + [SMALL_STATE(3303)] = 129418, + [SMALL_STATE(3304)] = 129450, + [SMALL_STATE(3305)] = 129480, + [SMALL_STATE(3306)] = 129508, + [SMALL_STATE(3307)] = 129538, + [SMALL_STATE(3308)] = 129554, + [SMALL_STATE(3309)] = 129580, + [SMALL_STATE(3310)] = 129606, + [SMALL_STATE(3311)] = 129636, + [SMALL_STATE(3312)] = 129652, + [SMALL_STATE(3313)] = 129682, + [SMALL_STATE(3314)] = 129698, + [SMALL_STATE(3315)] = 129726, + [SMALL_STATE(3316)] = 129752, + [SMALL_STATE(3317)] = 129780, + [SMALL_STATE(3318)] = 129802, + [SMALL_STATE(3319)] = 129834, + [SMALL_STATE(3320)] = 129860, + [SMALL_STATE(3321)] = 129880, + [SMALL_STATE(3322)] = 129908, + [SMALL_STATE(3323)] = 129940, + [SMALL_STATE(3324)] = 129968, + [SMALL_STATE(3325)] = 129996, + [SMALL_STATE(3326)] = 130012, + [SMALL_STATE(3327)] = 130040, + [SMALL_STATE(3328)] = 130056, + [SMALL_STATE(3329)] = 130088, + [SMALL_STATE(3330)] = 130104, + [SMALL_STATE(3331)] = 130122, + [SMALL_STATE(3332)] = 130138, + [SMALL_STATE(3333)] = 130160, + [SMALL_STATE(3334)] = 130184, + [SMALL_STATE(3335)] = 130214, + [SMALL_STATE(3336)] = 130230, + [SMALL_STATE(3337)] = 130246, + [SMALL_STATE(3338)] = 130268, + [SMALL_STATE(3339)] = 130288, + [SMALL_STATE(3340)] = 130316, + [SMALL_STATE(3341)] = 130344, + [SMALL_STATE(3342)] = 130370, + [SMALL_STATE(3343)] = 130398, + [SMALL_STATE(3344)] = 130414, + [SMALL_STATE(3345)] = 130432, + [SMALL_STATE(3346)] = 130460, + [SMALL_STATE(3347)] = 130478, + [SMALL_STATE(3348)] = 130508, + [SMALL_STATE(3349)] = 130540, + [SMALL_STATE(3350)] = 130570, + [SMALL_STATE(3351)] = 130602, + [SMALL_STATE(3352)] = 130618, + [SMALL_STATE(3353)] = 130648, + [SMALL_STATE(3354)] = 130678, + [SMALL_STATE(3355)] = 130704, + [SMALL_STATE(3356)] = 130736, + [SMALL_STATE(3357)] = 130766, + [SMALL_STATE(3358)] = 130796, + [SMALL_STATE(3359)] = 130824, + [SMALL_STATE(3360)] = 130840, + [SMALL_STATE(3361)] = 130870, + [SMALL_STATE(3362)] = 130898, + [SMALL_STATE(3363)] = 130928, + [SMALL_STATE(3364)] = 130960, + [SMALL_STATE(3365)] = 130976, + [SMALL_STATE(3366)] = 131004, + [SMALL_STATE(3367)] = 131030, + [SMALL_STATE(3368)] = 131062, + [SMALL_STATE(3369)] = 131092, + [SMALL_STATE(3370)] = 131122, + [SMALL_STATE(3371)] = 131150, + [SMALL_STATE(3372)] = 131178, + [SMALL_STATE(3373)] = 131206, + [SMALL_STATE(3374)] = 131236, + [SMALL_STATE(3375)] = 131264, + [SMALL_STATE(3376)] = 131292, + [SMALL_STATE(3377)] = 131322, + [SMALL_STATE(3378)] = 131352, + [SMALL_STATE(3379)] = 131382, + [SMALL_STATE(3380)] = 131412, + [SMALL_STATE(3381)] = 131442, + [SMALL_STATE(3382)] = 131470, + [SMALL_STATE(3383)] = 131498, + [SMALL_STATE(3384)] = 131526, + [SMALL_STATE(3385)] = 131558, + [SMALL_STATE(3386)] = 131574, + [SMALL_STATE(3387)] = 131604, + [SMALL_STATE(3388)] = 131632, + [SMALL_STATE(3389)] = 131660, + [SMALL_STATE(3390)] = 131688, + [SMALL_STATE(3391)] = 131716, + [SMALL_STATE(3392)] = 131744, + [SMALL_STATE(3393)] = 131772, + [SMALL_STATE(3394)] = 131800, + [SMALL_STATE(3395)] = 131816, + [SMALL_STATE(3396)] = 131848, + [SMALL_STATE(3397)] = 131876, + [SMALL_STATE(3398)] = 131902, + [SMALL_STATE(3399)] = 131934, + [SMALL_STATE(3400)] = 131950, + [SMALL_STATE(3401)] = 131982, + [SMALL_STATE(3402)] = 132014, + [SMALL_STATE(3403)] = 132042, + [SMALL_STATE(3404)] = 132074, + [SMALL_STATE(3405)] = 132090, + [SMALL_STATE(3406)] = 132106, + [SMALL_STATE(3407)] = 132136, + [SMALL_STATE(3408)] = 132164, + [SMALL_STATE(3409)] = 132194, + [SMALL_STATE(3410)] = 132224, + [SMALL_STATE(3411)] = 132256, + [SMALL_STATE(3412)] = 132288, + [SMALL_STATE(3413)] = 132314, + [SMALL_STATE(3414)] = 132342, + [SMALL_STATE(3415)] = 132374, + [SMALL_STATE(3416)] = 132394, + [SMALL_STATE(3417)] = 132410, + [SMALL_STATE(3418)] = 132426, + [SMALL_STATE(3419)] = 132456, + [SMALL_STATE(3420)] = 132472, + [SMALL_STATE(3421)] = 132500, + [SMALL_STATE(3422)] = 132522, + [SMALL_STATE(3423)] = 132554, + [SMALL_STATE(3424)] = 132570, + [SMALL_STATE(3425)] = 132600, + [SMALL_STATE(3426)] = 132622, + [SMALL_STATE(3427)] = 132644, + [SMALL_STATE(3428)] = 132660, + [SMALL_STATE(3429)] = 132678, + [SMALL_STATE(3430)] = 132694, + [SMALL_STATE(3431)] = 132724, + [SMALL_STATE(3432)] = 132740, + [SMALL_STATE(3433)] = 132770, + [SMALL_STATE(3434)] = 132802, + [SMALL_STATE(3435)] = 132818, + [SMALL_STATE(3436)] = 132848, + [SMALL_STATE(3437)] = 132880, + [SMALL_STATE(3438)] = 132906, + [SMALL_STATE(3439)] = 132922, + [SMALL_STATE(3440)] = 132954, + [SMALL_STATE(3441)] = 132970, + [SMALL_STATE(3442)] = 132996, + [SMALL_STATE(3443)] = 133022, + [SMALL_STATE(3444)] = 133050, + [SMALL_STATE(3445)] = 133076, + [SMALL_STATE(3446)] = 133108, + [SMALL_STATE(3447)] = 133136, + [SMALL_STATE(3448)] = 133164, + [SMALL_STATE(3449)] = 133194, + [SMALL_STATE(3450)] = 133223, + [SMALL_STATE(3451)] = 133248, + [SMALL_STATE(3452)] = 133273, + [SMALL_STATE(3453)] = 133302, + [SMALL_STATE(3454)] = 133327, + [SMALL_STATE(3455)] = 133348, + [SMALL_STATE(3456)] = 133373, + [SMALL_STATE(3457)] = 133394, + [SMALL_STATE(3458)] = 133423, + [SMALL_STATE(3459)] = 133448, + [SMALL_STATE(3460)] = 133477, + [SMALL_STATE(3461)] = 133502, + [SMALL_STATE(3462)] = 133531, + [SMALL_STATE(3463)] = 133554, + [SMALL_STATE(3464)] = 133583, + [SMALL_STATE(3465)] = 133600, + [SMALL_STATE(3466)] = 133617, + [SMALL_STATE(3467)] = 133646, + [SMALL_STATE(3468)] = 133671, + [SMALL_STATE(3469)] = 133696, + [SMALL_STATE(3470)] = 133717, + [SMALL_STATE(3471)] = 133734, + [SMALL_STATE(3472)] = 133751, + [SMALL_STATE(3473)] = 133768, + [SMALL_STATE(3474)] = 133791, + [SMALL_STATE(3475)] = 133814, + [SMALL_STATE(3476)] = 133835, + [SMALL_STATE(3477)] = 133850, + [SMALL_STATE(3478)] = 133875, + [SMALL_STATE(3479)] = 133900, + [SMALL_STATE(3480)] = 133915, + [SMALL_STATE(3481)] = 133930, + [SMALL_STATE(3482)] = 133953, + [SMALL_STATE(3483)] = 133974, + [SMALL_STATE(3484)] = 133995, + [SMALL_STATE(3485)] = 134018, + [SMALL_STATE(3486)] = 134041, + [SMALL_STATE(3487)] = 134066, + [SMALL_STATE(3488)] = 134089, + [SMALL_STATE(3489)] = 134114, + [SMALL_STATE(3490)] = 134137, + [SMALL_STATE(3491)] = 134160, + [SMALL_STATE(3492)] = 134189, + [SMALL_STATE(3493)] = 134211, + [SMALL_STATE(3494)] = 134235, + [SMALL_STATE(3495)] = 134257, + [SMALL_STATE(3496)] = 134275, + [SMALL_STATE(3497)] = 134297, + [SMALL_STATE(3498)] = 134311, + [SMALL_STATE(3499)] = 134333, + [SMALL_STATE(3500)] = 134351, + [SMALL_STATE(3501)] = 134369, + [SMALL_STATE(3502)] = 134391, + [SMALL_STATE(3503)] = 134413, + [SMALL_STATE(3504)] = 134435, + [SMALL_STATE(3505)] = 134453, + [SMALL_STATE(3506)] = 134479, + [SMALL_STATE(3507)] = 134501, + [SMALL_STATE(3508)] = 134527, + [SMALL_STATE(3509)] = 134549, + [SMALL_STATE(3510)] = 134571, + [SMALL_STATE(3511)] = 134593, + [SMALL_STATE(3512)] = 134615, + [SMALL_STATE(3513)] = 134641, + [SMALL_STATE(3514)] = 134663, + [SMALL_STATE(3515)] = 134677, + [SMALL_STATE(3516)] = 134703, + [SMALL_STATE(3517)] = 134725, + [SMALL_STATE(3518)] = 134747, + [SMALL_STATE(3519)] = 134769, + [SMALL_STATE(3520)] = 134791, + [SMALL_STATE(3521)] = 134809, + [SMALL_STATE(3522)] = 134831, + [SMALL_STATE(3523)] = 134845, + [SMALL_STATE(3524)] = 134871, + [SMALL_STATE(3525)] = 134889, + [SMALL_STATE(3526)] = 134915, + [SMALL_STATE(3527)] = 134941, + [SMALL_STATE(3528)] = 134955, + [SMALL_STATE(3529)] = 134981, + [SMALL_STATE(3530)] = 135007, + [SMALL_STATE(3531)] = 135033, + [SMALL_STATE(3532)] = 135059, + [SMALL_STATE(3533)] = 135085, + [SMALL_STATE(3534)] = 135107, + [SMALL_STATE(3535)] = 135129, + [SMALL_STATE(3536)] = 135151, + [SMALL_STATE(3537)] = 135169, + [SMALL_STATE(3538)] = 135187, + [SMALL_STATE(3539)] = 135209, + [SMALL_STATE(3540)] = 135231, + [SMALL_STATE(3541)] = 135253, + [SMALL_STATE(3542)] = 135271, + [SMALL_STATE(3543)] = 135293, + [SMALL_STATE(3544)] = 135311, + [SMALL_STATE(3545)] = 135333, + [SMALL_STATE(3546)] = 135359, + [SMALL_STATE(3547)] = 135381, + [SMALL_STATE(3548)] = 135397, + [SMALL_STATE(3549)] = 135419, + [SMALL_STATE(3550)] = 135445, + [SMALL_STATE(3551)] = 135467, + [SMALL_STATE(3552)] = 135489, + [SMALL_STATE(3553)] = 135503, + [SMALL_STATE(3554)] = 135525, + [SMALL_STATE(3555)] = 135547, + [SMALL_STATE(3556)] = 135569, + [SMALL_STATE(3557)] = 135591, + [SMALL_STATE(3558)] = 135613, + [SMALL_STATE(3559)] = 135635, + [SMALL_STATE(3560)] = 135653, + [SMALL_STATE(3561)] = 135667, + [SMALL_STATE(3562)] = 135689, + [SMALL_STATE(3563)] = 135711, + [SMALL_STATE(3564)] = 135725, + [SMALL_STATE(3565)] = 135747, + [SMALL_STATE(3566)] = 135769, + [SMALL_STATE(3567)] = 135791, + [SMALL_STATE(3568)] = 135805, + [SMALL_STATE(3569)] = 135831, + [SMALL_STATE(3570)] = 135853, + [SMALL_STATE(3571)] = 135879, + [SMALL_STATE(3572)] = 135901, + [SMALL_STATE(3573)] = 135919, + [SMALL_STATE(3574)] = 135933, + [SMALL_STATE(3575)] = 135951, + [SMALL_STATE(3576)] = 135969, + [SMALL_STATE(3577)] = 135991, + [SMALL_STATE(3578)] = 136013, + [SMALL_STATE(3579)] = 136035, + [SMALL_STATE(3580)] = 136057, + [SMALL_STATE(3581)] = 136079, + [SMALL_STATE(3582)] = 136101, + [SMALL_STATE(3583)] = 136127, + [SMALL_STATE(3584)] = 136149, + [SMALL_STATE(3585)] = 136171, + [SMALL_STATE(3586)] = 136187, + [SMALL_STATE(3587)] = 136209, + [SMALL_STATE(3588)] = 136231, + [SMALL_STATE(3589)] = 136247, + [SMALL_STATE(3590)] = 136273, + [SMALL_STATE(3591)] = 136289, + [SMALL_STATE(3592)] = 136315, + [SMALL_STATE(3593)] = 136337, + [SMALL_STATE(3594)] = 136355, + [SMALL_STATE(3595)] = 136377, + [SMALL_STATE(3596)] = 136399, + [SMALL_STATE(3597)] = 136417, + [SMALL_STATE(3598)] = 136439, + [SMALL_STATE(3599)] = 136453, + [SMALL_STATE(3600)] = 136475, + [SMALL_STATE(3601)] = 136501, + [SMALL_STATE(3602)] = 136519, + [SMALL_STATE(3603)] = 136541, + [SMALL_STATE(3604)] = 136563, + [SMALL_STATE(3605)] = 136585, + [SMALL_STATE(3606)] = 136607, + [SMALL_STATE(3607)] = 136623, + [SMALL_STATE(3608)] = 136641, + [SMALL_STATE(3609)] = 136663, + [SMALL_STATE(3610)] = 136679, + [SMALL_STATE(3611)] = 136695, + [SMALL_STATE(3612)] = 136721, + [SMALL_STATE(3613)] = 136743, + [SMALL_STATE(3614)] = 136765, + [SMALL_STATE(3615)] = 136787, + [SMALL_STATE(3616)] = 136809, + [SMALL_STATE(3617)] = 136831, + [SMALL_STATE(3618)] = 136857, + [SMALL_STATE(3619)] = 136873, + [SMALL_STATE(3620)] = 136893, + [SMALL_STATE(3621)] = 136909, + [SMALL_STATE(3622)] = 136935, + [SMALL_STATE(3623)] = 136961, + [SMALL_STATE(3624)] = 136981, + [SMALL_STATE(3625)] = 137007, + [SMALL_STATE(3626)] = 137023, + [SMALL_STATE(3627)] = 137045, + [SMALL_STATE(3628)] = 137063, + [SMALL_STATE(3629)] = 137085, + [SMALL_STATE(3630)] = 137105, + [SMALL_STATE(3631)] = 137125, + [SMALL_STATE(3632)] = 137143, + [SMALL_STATE(3633)] = 137165, + [SMALL_STATE(3634)] = 137187, + [SMALL_STATE(3635)] = 137209, + [SMALL_STATE(3636)] = 137223, + [SMALL_STATE(3637)] = 137245, + [SMALL_STATE(3638)] = 137267, + [SMALL_STATE(3639)] = 137281, + [SMALL_STATE(3640)] = 137299, + [SMALL_STATE(3641)] = 137325, + [SMALL_STATE(3642)] = 137343, + [SMALL_STATE(3643)] = 137361, + [SMALL_STATE(3644)] = 137383, + [SMALL_STATE(3645)] = 137405, + [SMALL_STATE(3646)] = 137427, + [SMALL_STATE(3647)] = 137447, + [SMALL_STATE(3648)] = 137469, + [SMALL_STATE(3649)] = 137485, + [SMALL_STATE(3650)] = 137507, + [SMALL_STATE(3651)] = 137533, + [SMALL_STATE(3652)] = 137553, + [SMALL_STATE(3653)] = 137575, + [SMALL_STATE(3654)] = 137601, + [SMALL_STATE(3655)] = 137627, + [SMALL_STATE(3656)] = 137649, + [SMALL_STATE(3657)] = 137663, + [SMALL_STATE(3658)] = 137685, + [SMALL_STATE(3659)] = 137707, + [SMALL_STATE(3660)] = 137727, + [SMALL_STATE(3661)] = 137753, + [SMALL_STATE(3662)] = 137775, + [SMALL_STATE(3663)] = 137801, + [SMALL_STATE(3664)] = 137827, + [SMALL_STATE(3665)] = 137849, + [SMALL_STATE(3666)] = 137875, + [SMALL_STATE(3667)] = 137895, + [SMALL_STATE(3668)] = 137917, + [SMALL_STATE(3669)] = 137939, + [SMALL_STATE(3670)] = 137953, + [SMALL_STATE(3671)] = 137975, + [SMALL_STATE(3672)] = 138001, + [SMALL_STATE(3673)] = 138023, + [SMALL_STATE(3674)] = 138045, + [SMALL_STATE(3675)] = 138059, + [SMALL_STATE(3676)] = 138081, + [SMALL_STATE(3677)] = 138103, + [SMALL_STATE(3678)] = 138125, + [SMALL_STATE(3679)] = 138143, + [SMALL_STATE(3680)] = 138161, + [SMALL_STATE(3681)] = 138183, + [SMALL_STATE(3682)] = 138201, + [SMALL_STATE(3683)] = 138219, + [SMALL_STATE(3684)] = 138241, + [SMALL_STATE(3685)] = 138263, + [SMALL_STATE(3686)] = 138285, + [SMALL_STATE(3687)] = 138307, + [SMALL_STATE(3688)] = 138329, + [SMALL_STATE(3689)] = 138351, + [SMALL_STATE(3690)] = 138373, + [SMALL_STATE(3691)] = 138399, + [SMALL_STATE(3692)] = 138421, + [SMALL_STATE(3693)] = 138443, + [SMALL_STATE(3694)] = 138465, + [SMALL_STATE(3695)] = 138491, + [SMALL_STATE(3696)] = 138507, + [SMALL_STATE(3697)] = 138527, + [SMALL_STATE(3698)] = 138545, + [SMALL_STATE(3699)] = 138571, + [SMALL_STATE(3700)] = 138597, + [SMALL_STATE(3701)] = 138611, + [SMALL_STATE(3702)] = 138633, + [SMALL_STATE(3703)] = 138655, + [SMALL_STATE(3704)] = 138681, + [SMALL_STATE(3705)] = 138705, + [SMALL_STATE(3706)] = 138727, + [SMALL_STATE(3707)] = 138749, + [SMALL_STATE(3708)] = 138771, + [SMALL_STATE(3709)] = 138793, + [SMALL_STATE(3710)] = 138819, + [SMALL_STATE(3711)] = 138845, + [SMALL_STATE(3712)] = 138867, + [SMALL_STATE(3713)] = 138889, + [SMALL_STATE(3714)] = 138911, + [SMALL_STATE(3715)] = 138933, + [SMALL_STATE(3716)] = 138955, + [SMALL_STATE(3717)] = 138977, + [SMALL_STATE(3718)] = 138999, + [SMALL_STATE(3719)] = 139021, + [SMALL_STATE(3720)] = 139043, + [SMALL_STATE(3721)] = 139069, + [SMALL_STATE(3722)] = 139091, + [SMALL_STATE(3723)] = 139113, + [SMALL_STATE(3724)] = 139132, + [SMALL_STATE(3725)] = 139147, + [SMALL_STATE(3726)] = 139170, + [SMALL_STATE(3727)] = 139185, + [SMALL_STATE(3728)] = 139200, + [SMALL_STATE(3729)] = 139223, + [SMALL_STATE(3730)] = 139236, + [SMALL_STATE(3731)] = 139249, + [SMALL_STATE(3732)] = 139272, + [SMALL_STATE(3733)] = 139285, + [SMALL_STATE(3734)] = 139308, + [SMALL_STATE(3735)] = 139331, + [SMALL_STATE(3736)] = 139348, + [SMALL_STATE(3737)] = 139365, + [SMALL_STATE(3738)] = 139388, + [SMALL_STATE(3739)] = 139407, + [SMALL_STATE(3740)] = 139420, + [SMALL_STATE(3741)] = 139435, + [SMALL_STATE(3742)] = 139450, + [SMALL_STATE(3743)] = 139467, + [SMALL_STATE(3744)] = 139484, + [SMALL_STATE(3745)] = 139499, + [SMALL_STATE(3746)] = 139516, + [SMALL_STATE(3747)] = 139531, + [SMALL_STATE(3748)] = 139554, + [SMALL_STATE(3749)] = 139571, + [SMALL_STATE(3750)] = 139594, + [SMALL_STATE(3751)] = 139613, + [SMALL_STATE(3752)] = 139628, + [SMALL_STATE(3753)] = 139645, + [SMALL_STATE(3754)] = 139662, + [SMALL_STATE(3755)] = 139677, + [SMALL_STATE(3756)] = 139692, + [SMALL_STATE(3757)] = 139715, + [SMALL_STATE(3758)] = 139738, + [SMALL_STATE(3759)] = 139761, + [SMALL_STATE(3760)] = 139778, + [SMALL_STATE(3761)] = 139791, + [SMALL_STATE(3762)] = 139806, + [SMALL_STATE(3763)] = 139823, + [SMALL_STATE(3764)] = 139838, + [SMALL_STATE(3765)] = 139853, + [SMALL_STATE(3766)] = 139868, + [SMALL_STATE(3767)] = 139885, + [SMALL_STATE(3768)] = 139908, + [SMALL_STATE(3769)] = 139923, + [SMALL_STATE(3770)] = 139940, + [SMALL_STATE(3771)] = 139963, + [SMALL_STATE(3772)] = 139980, + [SMALL_STATE(3773)] = 140003, + [SMALL_STATE(3774)] = 140026, + [SMALL_STATE(3775)] = 140045, + [SMALL_STATE(3776)] = 140068, + [SMALL_STATE(3777)] = 140085, + [SMALL_STATE(3778)] = 140102, + [SMALL_STATE(3779)] = 140117, + [SMALL_STATE(3780)] = 140136, + [SMALL_STATE(3781)] = 140151, + [SMALL_STATE(3782)] = 140170, + [SMALL_STATE(3783)] = 140185, + [SMALL_STATE(3784)] = 140204, + [SMALL_STATE(3785)] = 140223, + [SMALL_STATE(3786)] = 140238, + [SMALL_STATE(3787)] = 140255, + [SMALL_STATE(3788)] = 140272, + [SMALL_STATE(3789)] = 140295, + [SMALL_STATE(3790)] = 140308, + [SMALL_STATE(3791)] = 140325, + [SMALL_STATE(3792)] = 140342, + [SMALL_STATE(3793)] = 140357, + [SMALL_STATE(3794)] = 140372, + [SMALL_STATE(3795)] = 140387, + [SMALL_STATE(3796)] = 140404, + [SMALL_STATE(3797)] = 140427, + [SMALL_STATE(3798)] = 140450, + [SMALL_STATE(3799)] = 140473, + [SMALL_STATE(3800)] = 140490, + [SMALL_STATE(3801)] = 140513, + [SMALL_STATE(3802)] = 140536, + [SMALL_STATE(3803)] = 140553, + [SMALL_STATE(3804)] = 140570, + [SMALL_STATE(3805)] = 140587, + [SMALL_STATE(3806)] = 140604, + [SMALL_STATE(3807)] = 140627, + [SMALL_STATE(3808)] = 140644, + [SMALL_STATE(3809)] = 140667, + [SMALL_STATE(3810)] = 140684, + [SMALL_STATE(3811)] = 140701, + [SMALL_STATE(3812)] = 140716, + [SMALL_STATE(3813)] = 140735, + [SMALL_STATE(3814)] = 140750, + [SMALL_STATE(3815)] = 140769, + [SMALL_STATE(3816)] = 140784, + [SMALL_STATE(3817)] = 140799, + [SMALL_STATE(3818)] = 140822, + [SMALL_STATE(3819)] = 140845, + [SMALL_STATE(3820)] = 140864, + [SMALL_STATE(3821)] = 140883, + [SMALL_STATE(3822)] = 140900, + [SMALL_STATE(3823)] = 140923, + [SMALL_STATE(3824)] = 140946, + [SMALL_STATE(3825)] = 140969, + [SMALL_STATE(3826)] = 140986, + [SMALL_STATE(3827)] = 141003, + [SMALL_STATE(3828)] = 141024, + [SMALL_STATE(3829)] = 141043, + [SMALL_STATE(3830)] = 141062, + [SMALL_STATE(3831)] = 141079, + [SMALL_STATE(3832)] = 141096, + [SMALL_STATE(3833)] = 141119, + [SMALL_STATE(3834)] = 141142, + [SMALL_STATE(3835)] = 141165, + [SMALL_STATE(3836)] = 141178, + [SMALL_STATE(3837)] = 141201, + [SMALL_STATE(3838)] = 141220, + [SMALL_STATE(3839)] = 141235, + [SMALL_STATE(3840)] = 141258, + [SMALL_STATE(3841)] = 141281, + [SMALL_STATE(3842)] = 141304, + [SMALL_STATE(3843)] = 141327, + [SMALL_STATE(3844)] = 141350, + [SMALL_STATE(3845)] = 141373, + [SMALL_STATE(3846)] = 141388, + [SMALL_STATE(3847)] = 141401, + [SMALL_STATE(3848)] = 141418, + [SMALL_STATE(3849)] = 141441, + [SMALL_STATE(3850)] = 141458, + [SMALL_STATE(3851)] = 141481, + [SMALL_STATE(3852)] = 141496, + [SMALL_STATE(3853)] = 141519, + [SMALL_STATE(3854)] = 141542, + [SMALL_STATE(3855)] = 141565, + [SMALL_STATE(3856)] = 141580, + [SMALL_STATE(3857)] = 141593, + [SMALL_STATE(3858)] = 141606, + [SMALL_STATE(3859)] = 141625, + [SMALL_STATE(3860)] = 141646, + [SMALL_STATE(3861)] = 141669, + [SMALL_STATE(3862)] = 141682, + [SMALL_STATE(3863)] = 141703, + [SMALL_STATE(3864)] = 141726, + [SMALL_STATE(3865)] = 141743, + [SMALL_STATE(3866)] = 141762, + [SMALL_STATE(3867)] = 141781, + [SMALL_STATE(3868)] = 141798, + [SMALL_STATE(3869)] = 141817, + [SMALL_STATE(3870)] = 141832, + [SMALL_STATE(3871)] = 141849, + [SMALL_STATE(3872)] = 141866, + [SMALL_STATE(3873)] = 141883, + [SMALL_STATE(3874)] = 141900, + [SMALL_STATE(3875)] = 141917, + [SMALL_STATE(3876)] = 141934, + [SMALL_STATE(3877)] = 141957, + [SMALL_STATE(3878)] = 141972, + [SMALL_STATE(3879)] = 141995, + [SMALL_STATE(3880)] = 142018, + [SMALL_STATE(3881)] = 142041, + [SMALL_STATE(3882)] = 142064, + [SMALL_STATE(3883)] = 142081, + [SMALL_STATE(3884)] = 142096, + [SMALL_STATE(3885)] = 142119, + [SMALL_STATE(3886)] = 142136, + [SMALL_STATE(3887)] = 142153, + [SMALL_STATE(3888)] = 142168, + [SMALL_STATE(3889)] = 142181, + [SMALL_STATE(3890)] = 142204, + [SMALL_STATE(3891)] = 142227, + [SMALL_STATE(3892)] = 142250, + [SMALL_STATE(3893)] = 142273, + [SMALL_STATE(3894)] = 142290, + [SMALL_STATE(3895)] = 142305, + [SMALL_STATE(3896)] = 142328, + [SMALL_STATE(3897)] = 142341, + [SMALL_STATE(3898)] = 142364, + [SMALL_STATE(3899)] = 142387, + [SMALL_STATE(3900)] = 142402, + [SMALL_STATE(3901)] = 142415, + [SMALL_STATE(3902)] = 142432, + [SMALL_STATE(3903)] = 142451, + [SMALL_STATE(3904)] = 142466, + [SMALL_STATE(3905)] = 142489, + [SMALL_STATE(3906)] = 142512, + [SMALL_STATE(3907)] = 142535, + [SMALL_STATE(3908)] = 142552, + [SMALL_STATE(3909)] = 142575, + [SMALL_STATE(3910)] = 142592, + [SMALL_STATE(3911)] = 142615, + [SMALL_STATE(3912)] = 142632, + [SMALL_STATE(3913)] = 142649, + [SMALL_STATE(3914)] = 142668, + [SMALL_STATE(3915)] = 142691, + [SMALL_STATE(3916)] = 142707, + [SMALL_STATE(3917)] = 142723, + [SMALL_STATE(3918)] = 142739, + [SMALL_STATE(3919)] = 142753, + [SMALL_STATE(3920)] = 142769, + [SMALL_STATE(3921)] = 142781, + [SMALL_STATE(3922)] = 142793, + [SMALL_STATE(3923)] = 142805, + [SMALL_STATE(3924)] = 142821, + [SMALL_STATE(3925)] = 142837, + [SMALL_STATE(3926)] = 142853, + [SMALL_STATE(3927)] = 142869, + [SMALL_STATE(3928)] = 142885, + [SMALL_STATE(3929)] = 142901, + [SMALL_STATE(3930)] = 142917, + [SMALL_STATE(3931)] = 142933, + [SMALL_STATE(3932)] = 142947, + [SMALL_STATE(3933)] = 142963, + [SMALL_STATE(3934)] = 142975, + [SMALL_STATE(3935)] = 142991, + [SMALL_STATE(3936)] = 143003, + [SMALL_STATE(3937)] = 143015, + [SMALL_STATE(3938)] = 143027, + [SMALL_STATE(3939)] = 143043, + [SMALL_STATE(3940)] = 143055, + [SMALL_STATE(3941)] = 143067, + [SMALL_STATE(3942)] = 143079, + [SMALL_STATE(3943)] = 143091, + [SMALL_STATE(3944)] = 143103, + [SMALL_STATE(3945)] = 143115, + [SMALL_STATE(3946)] = 143127, + [SMALL_STATE(3947)] = 143139, + [SMALL_STATE(3948)] = 143151, + [SMALL_STATE(3949)] = 143167, + [SMALL_STATE(3950)] = 143183, + [SMALL_STATE(3951)] = 143203, + [SMALL_STATE(3952)] = 143219, + [SMALL_STATE(3953)] = 143235, + [SMALL_STATE(3954)] = 143247, + [SMALL_STATE(3955)] = 143259, + [SMALL_STATE(3956)] = 143271, + [SMALL_STATE(3957)] = 143283, + [SMALL_STATE(3958)] = 143301, + [SMALL_STATE(3959)] = 143317, + [SMALL_STATE(3960)] = 143333, + [SMALL_STATE(3961)] = 143349, + [SMALL_STATE(3962)] = 143367, + [SMALL_STATE(3963)] = 143383, + [SMALL_STATE(3964)] = 143399, + [SMALL_STATE(3965)] = 143415, + [SMALL_STATE(3966)] = 143431, + [SMALL_STATE(3967)] = 143447, + [SMALL_STATE(3968)] = 143463, + [SMALL_STATE(3969)] = 143475, + [SMALL_STATE(3970)] = 143491, + [SMALL_STATE(3971)] = 143507, + [SMALL_STATE(3972)] = 143523, + [SMALL_STATE(3973)] = 143539, + [SMALL_STATE(3974)] = 143555, + [SMALL_STATE(3975)] = 143571, + [SMALL_STATE(3976)] = 143583, + [SMALL_STATE(3977)] = 143603, + [SMALL_STATE(3978)] = 143615, + [SMALL_STATE(3979)] = 143627, + [SMALL_STATE(3980)] = 143639, + [SMALL_STATE(3981)] = 143659, + [SMALL_STATE(3982)] = 143675, + [SMALL_STATE(3983)] = 143695, + [SMALL_STATE(3984)] = 143715, + [SMALL_STATE(3985)] = 143731, + [SMALL_STATE(3986)] = 143747, + [SMALL_STATE(3987)] = 143759, + [SMALL_STATE(3988)] = 143771, + [SMALL_STATE(3989)] = 143783, + [SMALL_STATE(3990)] = 143795, + [SMALL_STATE(3991)] = 143813, + [SMALL_STATE(3992)] = 143833, + [SMALL_STATE(3993)] = 143849, + [SMALL_STATE(3994)] = 143865, + [SMALL_STATE(3995)] = 143881, + [SMALL_STATE(3996)] = 143901, + [SMALL_STATE(3997)] = 143915, + [SMALL_STATE(3998)] = 143933, + [SMALL_STATE(3999)] = 143945, + [SMALL_STATE(4000)] = 143957, + [SMALL_STATE(4001)] = 143969, + [SMALL_STATE(4002)] = 143985, + [SMALL_STATE(4003)] = 143997, + [SMALL_STATE(4004)] = 144009, + [SMALL_STATE(4005)] = 144021, + [SMALL_STATE(4006)] = 144033, + [SMALL_STATE(4007)] = 144045, + [SMALL_STATE(4008)] = 144057, + [SMALL_STATE(4009)] = 144069, + [SMALL_STATE(4010)] = 144089, + [SMALL_STATE(4011)] = 144105, + [SMALL_STATE(4012)] = 144123, + [SMALL_STATE(4013)] = 144143, + [SMALL_STATE(4014)] = 144163, + [SMALL_STATE(4015)] = 144183, + [SMALL_STATE(4016)] = 144195, + [SMALL_STATE(4017)] = 144211, + [SMALL_STATE(4018)] = 144229, + [SMALL_STATE(4019)] = 144245, + [SMALL_STATE(4020)] = 144261, + [SMALL_STATE(4021)] = 144281, + [SMALL_STATE(4022)] = 144297, + [SMALL_STATE(4023)] = 144313, + [SMALL_STATE(4024)] = 144333, + [SMALL_STATE(4025)] = 144349, + [SMALL_STATE(4026)] = 144365, + [SMALL_STATE(4027)] = 144377, + [SMALL_STATE(4028)] = 144389, + [SMALL_STATE(4029)] = 144409, + [SMALL_STATE(4030)] = 144421, + [SMALL_STATE(4031)] = 144441, + [SMALL_STATE(4032)] = 144455, + [SMALL_STATE(4033)] = 144467, + [SMALL_STATE(4034)] = 144485, + [SMALL_STATE(4035)] = 144497, + [SMALL_STATE(4036)] = 144509, + [SMALL_STATE(4037)] = 144529, + [SMALL_STATE(4038)] = 144541, + [SMALL_STATE(4039)] = 144553, + [SMALL_STATE(4040)] = 144569, + [SMALL_STATE(4041)] = 144581, + [SMALL_STATE(4042)] = 144593, + [SMALL_STATE(4043)] = 144605, + [SMALL_STATE(4044)] = 144621, + [SMALL_STATE(4045)] = 144633, + [SMALL_STATE(4046)] = 144649, + [SMALL_STATE(4047)] = 144665, + [SMALL_STATE(4048)] = 144683, + [SMALL_STATE(4049)] = 144695, + [SMALL_STATE(4050)] = 144707, + [SMALL_STATE(4051)] = 144721, + [SMALL_STATE(4052)] = 144735, + [SMALL_STATE(4053)] = 144747, + [SMALL_STATE(4054)] = 144767, + [SMALL_STATE(4055)] = 144779, + [SMALL_STATE(4056)] = 144791, + [SMALL_STATE(4057)] = 144807, + [SMALL_STATE(4058)] = 144823, + [SMALL_STATE(4059)] = 144841, + [SMALL_STATE(4060)] = 144853, + [SMALL_STATE(4061)] = 144867, + [SMALL_STATE(4062)] = 144887, + [SMALL_STATE(4063)] = 144899, + [SMALL_STATE(4064)] = 144911, + [SMALL_STATE(4065)] = 144931, + [SMALL_STATE(4066)] = 144943, + [SMALL_STATE(4067)] = 144955, + [SMALL_STATE(4068)] = 144975, + [SMALL_STATE(4069)] = 144995, + [SMALL_STATE(4070)] = 145015, + [SMALL_STATE(4071)] = 145031, + [SMALL_STATE(4072)] = 145043, + [SMALL_STATE(4073)] = 145055, + [SMALL_STATE(4074)] = 145067, + [SMALL_STATE(4075)] = 145079, + [SMALL_STATE(4076)] = 145091, + [SMALL_STATE(4077)] = 145103, + [SMALL_STATE(4078)] = 145115, + [SMALL_STATE(4079)] = 145135, + [SMALL_STATE(4080)] = 145155, + [SMALL_STATE(4081)] = 145171, + [SMALL_STATE(4082)] = 145183, + [SMALL_STATE(4083)] = 145195, + [SMALL_STATE(4084)] = 145211, + [SMALL_STATE(4085)] = 145227, + [SMALL_STATE(4086)] = 145245, + [SMALL_STATE(4087)] = 145263, + [SMALL_STATE(4088)] = 145279, + [SMALL_STATE(4089)] = 145293, + [SMALL_STATE(4090)] = 145313, + [SMALL_STATE(4091)] = 145333, + [SMALL_STATE(4092)] = 145349, + [SMALL_STATE(4093)] = 145365, + [SMALL_STATE(4094)] = 145385, + [SMALL_STATE(4095)] = 145403, + [SMALL_STATE(4096)] = 145415, + [SMALL_STATE(4097)] = 145427, + [SMALL_STATE(4098)] = 145439, + [SMALL_STATE(4099)] = 145451, + [SMALL_STATE(4100)] = 145469, + [SMALL_STATE(4101)] = 145489, + [SMALL_STATE(4102)] = 145501, + [SMALL_STATE(4103)] = 145513, + [SMALL_STATE(4104)] = 145525, + [SMALL_STATE(4105)] = 145541, + [SMALL_STATE(4106)] = 145553, + [SMALL_STATE(4107)] = 145565, + [SMALL_STATE(4108)] = 145577, + [SMALL_STATE(4109)] = 145593, + [SMALL_STATE(4110)] = 145613, + [SMALL_STATE(4111)] = 145631, + [SMALL_STATE(4112)] = 145651, + [SMALL_STATE(4113)] = 145667, + [SMALL_STATE(4114)] = 145683, + [SMALL_STATE(4115)] = 145699, + [SMALL_STATE(4116)] = 145715, + [SMALL_STATE(4117)] = 145731, + [SMALL_STATE(4118)] = 145751, + [SMALL_STATE(4119)] = 145767, + [SMALL_STATE(4120)] = 145783, + [SMALL_STATE(4121)] = 145795, + [SMALL_STATE(4122)] = 145807, + [SMALL_STATE(4123)] = 145819, + [SMALL_STATE(4124)] = 145831, + [SMALL_STATE(4125)] = 145843, + [SMALL_STATE(4126)] = 145863, + [SMALL_STATE(4127)] = 145881, + [SMALL_STATE(4128)] = 145897, + [SMALL_STATE(4129)] = 145913, + [SMALL_STATE(4130)] = 145929, + [SMALL_STATE(4131)] = 145945, + [SMALL_STATE(4132)] = 145963, + [SMALL_STATE(4133)] = 145977, + [SMALL_STATE(4134)] = 145993, + [SMALL_STATE(4135)] = 146009, + [SMALL_STATE(4136)] = 146025, + [SMALL_STATE(4137)] = 146041, + [SMALL_STATE(4138)] = 146057, + [SMALL_STATE(4139)] = 146075, + [SMALL_STATE(4140)] = 146091, + [SMALL_STATE(4141)] = 146111, + [SMALL_STATE(4142)] = 146127, + [SMALL_STATE(4143)] = 146143, + [SMALL_STATE(4144)] = 146161, + [SMALL_STATE(4145)] = 146177, + [SMALL_STATE(4146)] = 146193, + [SMALL_STATE(4147)] = 146209, + [SMALL_STATE(4148)] = 146221, + [SMALL_STATE(4149)] = 146237, + [SMALL_STATE(4150)] = 146253, + [SMALL_STATE(4151)] = 146269, + [SMALL_STATE(4152)] = 146281, + [SMALL_STATE(4153)] = 146297, + [SMALL_STATE(4154)] = 146309, + [SMALL_STATE(4155)] = 146321, + [SMALL_STATE(4156)] = 146341, + [SMALL_STATE(4157)] = 146357, + [SMALL_STATE(4158)] = 146373, + [SMALL_STATE(4159)] = 146393, + [SMALL_STATE(4160)] = 146413, + [SMALL_STATE(4161)] = 146429, + [SMALL_STATE(4162)] = 146445, + [SMALL_STATE(4163)] = 146461, + [SMALL_STATE(4164)] = 146477, + [SMALL_STATE(4165)] = 146495, + [SMALL_STATE(4166)] = 146511, + [SMALL_STATE(4167)] = 146527, + [SMALL_STATE(4168)] = 146543, + [SMALL_STATE(4169)] = 146559, + [SMALL_STATE(4170)] = 146575, + [SMALL_STATE(4171)] = 146595, + [SMALL_STATE(4172)] = 146611, + [SMALL_STATE(4173)] = 146627, + [SMALL_STATE(4174)] = 146643, + [SMALL_STATE(4175)] = 146663, + [SMALL_STATE(4176)] = 146683, + [SMALL_STATE(4177)] = 146699, + [SMALL_STATE(4178)] = 146719, + [SMALL_STATE(4179)] = 146739, + [SMALL_STATE(4180)] = 146755, + [SMALL_STATE(4181)] = 146775, + [SMALL_STATE(4182)] = 146791, + [SMALL_STATE(4183)] = 146811, + [SMALL_STATE(4184)] = 146827, + [SMALL_STATE(4185)] = 146843, + [SMALL_STATE(4186)] = 146859, + [SMALL_STATE(4187)] = 146875, + [SMALL_STATE(4188)] = 146891, + [SMALL_STATE(4189)] = 146907, + [SMALL_STATE(4190)] = 146923, + [SMALL_STATE(4191)] = 146939, + [SMALL_STATE(4192)] = 146955, + [SMALL_STATE(4193)] = 146975, + [SMALL_STATE(4194)] = 146995, + [SMALL_STATE(4195)] = 147011, + [SMALL_STATE(4196)] = 147031, + [SMALL_STATE(4197)] = 147051, + [SMALL_STATE(4198)] = 147067, + [SMALL_STATE(4199)] = 147083, + [SMALL_STATE(4200)] = 147099, + [SMALL_STATE(4201)] = 147115, + [SMALL_STATE(4202)] = 147131, + [SMALL_STATE(4203)] = 147151, + [SMALL_STATE(4204)] = 147171, + [SMALL_STATE(4205)] = 147183, + [SMALL_STATE(4206)] = 147195, + [SMALL_STATE(4207)] = 147215, + [SMALL_STATE(4208)] = 147235, + [SMALL_STATE(4209)] = 147251, + [SMALL_STATE(4210)] = 147267, + [SMALL_STATE(4211)] = 147287, + [SMALL_STATE(4212)] = 147299, + [SMALL_STATE(4213)] = 147319, + [SMALL_STATE(4214)] = 147331, + [SMALL_STATE(4215)] = 147343, + [SMALL_STATE(4216)] = 147355, + [SMALL_STATE(4217)] = 147367, + [SMALL_STATE(4218)] = 147379, + [SMALL_STATE(4219)] = 147391, + [SMALL_STATE(4220)] = 147411, + [SMALL_STATE(4221)] = 147423, + [SMALL_STATE(4222)] = 147435, + [SMALL_STATE(4223)] = 147455, + [SMALL_STATE(4224)] = 147467, + [SMALL_STATE(4225)] = 147487, + [SMALL_STATE(4226)] = 147507, + [SMALL_STATE(4227)] = 147519, + [SMALL_STATE(4228)] = 147537, + [SMALL_STATE(4229)] = 147553, + [SMALL_STATE(4230)] = 147569, + [SMALL_STATE(4231)] = 147585, + [SMALL_STATE(4232)] = 147601, + [SMALL_STATE(4233)] = 147617, + [SMALL_STATE(4234)] = 147635, + [SMALL_STATE(4235)] = 147655, + [SMALL_STATE(4236)] = 147675, + [SMALL_STATE(4237)] = 147691, + [SMALL_STATE(4238)] = 147707, + [SMALL_STATE(4239)] = 147721, + [SMALL_STATE(4240)] = 147735, + [SMALL_STATE(4241)] = 147751, + [SMALL_STATE(4242)] = 147767, + [SMALL_STATE(4243)] = 147783, + [SMALL_STATE(4244)] = 147799, + [SMALL_STATE(4245)] = 147815, + [SMALL_STATE(4246)] = 147831, + [SMALL_STATE(4247)] = 147847, + [SMALL_STATE(4248)] = 147863, + [SMALL_STATE(4249)] = 147879, + [SMALL_STATE(4250)] = 147895, + [SMALL_STATE(4251)] = 147907, + [SMALL_STATE(4252)] = 147925, + [SMALL_STATE(4253)] = 147945, + [SMALL_STATE(4254)] = 147961, + [SMALL_STATE(4255)] = 147977, + [SMALL_STATE(4256)] = 147997, + [SMALL_STATE(4257)] = 148017, + [SMALL_STATE(4258)] = 148033, + [SMALL_STATE(4259)] = 148053, + [SMALL_STATE(4260)] = 148067, + [SMALL_STATE(4261)] = 148081, + [SMALL_STATE(4262)] = 148101, + [SMALL_STATE(4263)] = 148113, + [SMALL_STATE(4264)] = 148133, + [SMALL_STATE(4265)] = 148149, + [SMALL_STATE(4266)] = 148165, + [SMALL_STATE(4267)] = 148181, + [SMALL_STATE(4268)] = 148197, + [SMALL_STATE(4269)] = 148209, + [SMALL_STATE(4270)] = 148225, + [SMALL_STATE(4271)] = 148245, + [SMALL_STATE(4272)] = 148265, + [SMALL_STATE(4273)] = 148281, + [SMALL_STATE(4274)] = 148293, + [SMALL_STATE(4275)] = 148305, + [SMALL_STATE(4276)] = 148319, + [SMALL_STATE(4277)] = 148333, + [SMALL_STATE(4278)] = 148349, + [SMALL_STATE(4279)] = 148365, + [SMALL_STATE(4280)] = 148379, + [SMALL_STATE(4281)] = 148393, + [SMALL_STATE(4282)] = 148409, + [SMALL_STATE(4283)] = 148425, + [SMALL_STATE(4284)] = 148443, + [SMALL_STATE(4285)] = 148455, + [SMALL_STATE(4286)] = 148471, + [SMALL_STATE(4287)] = 148487, + [SMALL_STATE(4288)] = 148503, + [SMALL_STATE(4289)] = 148519, + [SMALL_STATE(4290)] = 148535, + [SMALL_STATE(4291)] = 148551, + [SMALL_STATE(4292)] = 148567, + [SMALL_STATE(4293)] = 148581, + [SMALL_STATE(4294)] = 148595, + [SMALL_STATE(4295)] = 148609, + [SMALL_STATE(4296)] = 148623, + [SMALL_STATE(4297)] = 148635, + [SMALL_STATE(4298)] = 148649, + [SMALL_STATE(4299)] = 148669, + [SMALL_STATE(4300)] = 148683, + [SMALL_STATE(4301)] = 148695, + [SMALL_STATE(4302)] = 148707, + [SMALL_STATE(4303)] = 148727, + [SMALL_STATE(4304)] = 148739, + [SMALL_STATE(4305)] = 148759, + [SMALL_STATE(4306)] = 148775, + [SMALL_STATE(4307)] = 148791, + [SMALL_STATE(4308)] = 148803, + [SMALL_STATE(4309)] = 148817, + [SMALL_STATE(4310)] = 148831, + [SMALL_STATE(4311)] = 148843, + [SMALL_STATE(4312)] = 148855, + [SMALL_STATE(4313)] = 148871, + [SMALL_STATE(4314)] = 148891, + [SMALL_STATE(4315)] = 148907, + [SMALL_STATE(4316)] = 148923, + [SMALL_STATE(4317)] = 148939, + [SMALL_STATE(4318)] = 148959, + [SMALL_STATE(4319)] = 148975, + [SMALL_STATE(4320)] = 148989, + [SMALL_STATE(4321)] = 149003, + [SMALL_STATE(4322)] = 149019, + [SMALL_STATE(4323)] = 149035, + [SMALL_STATE(4324)] = 149051, + [SMALL_STATE(4325)] = 149069, + [SMALL_STATE(4326)] = 149085, + [SMALL_STATE(4327)] = 149101, + [SMALL_STATE(4328)] = 149117, + [SMALL_STATE(4329)] = 149133, + [SMALL_STATE(4330)] = 149145, + [SMALL_STATE(4331)] = 149157, + [SMALL_STATE(4332)] = 149177, + [SMALL_STATE(4333)] = 149189, + [SMALL_STATE(4334)] = 149209, + [SMALL_STATE(4335)] = 149221, + [SMALL_STATE(4336)] = 149237, + [SMALL_STATE(4337)] = 149249, + [SMALL_STATE(4338)] = 149269, + [SMALL_STATE(4339)] = 149285, + [SMALL_STATE(4340)] = 149301, + [SMALL_STATE(4341)] = 149317, + [SMALL_STATE(4342)] = 149333, + [SMALL_STATE(4343)] = 149345, + [SMALL_STATE(4344)] = 149357, + [SMALL_STATE(4345)] = 149373, + [SMALL_STATE(4346)] = 149389, + [SMALL_STATE(4347)] = 149401, + [SMALL_STATE(4348)] = 149419, + [SMALL_STATE(4349)] = 149439, + [SMALL_STATE(4350)] = 149451, + [SMALL_STATE(4351)] = 149471, + [SMALL_STATE(4352)] = 149487, + [SMALL_STATE(4353)] = 149503, + [SMALL_STATE(4354)] = 149523, + [SMALL_STATE(4355)] = 149543, + [SMALL_STATE(4356)] = 149559, + [SMALL_STATE(4357)] = 149575, + [SMALL_STATE(4358)] = 149587, + [SMALL_STATE(4359)] = 149599, + [SMALL_STATE(4360)] = 149615, + [SMALL_STATE(4361)] = 149627, + [SMALL_STATE(4362)] = 149639, + [SMALL_STATE(4363)] = 149655, + [SMALL_STATE(4364)] = 149667, + [SMALL_STATE(4365)] = 149679, + [SMALL_STATE(4366)] = 149691, + [SMALL_STATE(4367)] = 149709, + [SMALL_STATE(4368)] = 149725, + [SMALL_STATE(4369)] = 149741, + [SMALL_STATE(4370)] = 149753, + [SMALL_STATE(4371)] = 149765, + [SMALL_STATE(4372)] = 149781, + [SMALL_STATE(4373)] = 149793, + [SMALL_STATE(4374)] = 149809, + [SMALL_STATE(4375)] = 149825, + [SMALL_STATE(4376)] = 149845, + [SMALL_STATE(4377)] = 149865, + [SMALL_STATE(4378)] = 149885, + [SMALL_STATE(4379)] = 149905, + [SMALL_STATE(4380)] = 149917, + [SMALL_STATE(4381)] = 149933, + [SMALL_STATE(4382)] = 149945, + [SMALL_STATE(4383)] = 149961, + [SMALL_STATE(4384)] = 149973, + [SMALL_STATE(4385)] = 149989, + [SMALL_STATE(4386)] = 150005, + [SMALL_STATE(4387)] = 150021, + [SMALL_STATE(4388)] = 150037, + [SMALL_STATE(4389)] = 150053, + [SMALL_STATE(4390)] = 150069, + [SMALL_STATE(4391)] = 150085, + [SMALL_STATE(4392)] = 150099, + [SMALL_STATE(4393)] = 150113, + [SMALL_STATE(4394)] = 150131, + [SMALL_STATE(4395)] = 150149, + [SMALL_STATE(4396)] = 150165, + [SMALL_STATE(4397)] = 150183, + [SMALL_STATE(4398)] = 150199, + [SMALL_STATE(4399)] = 150219, + [SMALL_STATE(4400)] = 150231, + [SMALL_STATE(4401)] = 150247, + [SMALL_STATE(4402)] = 150263, + [SMALL_STATE(4403)] = 150275, + [SMALL_STATE(4404)] = 150287, + [SMALL_STATE(4405)] = 150299, + [SMALL_STATE(4406)] = 150311, + [SMALL_STATE(4407)] = 150327, + [SMALL_STATE(4408)] = 150343, + [SMALL_STATE(4409)] = 150363, + [SMALL_STATE(4410)] = 150379, + [SMALL_STATE(4411)] = 150399, + [SMALL_STATE(4412)] = 150419, + [SMALL_STATE(4413)] = 150431, + [SMALL_STATE(4414)] = 150447, + [SMALL_STATE(4415)] = 150463, + [SMALL_STATE(4416)] = 150479, + [SMALL_STATE(4417)] = 150495, + [SMALL_STATE(4418)] = 150511, + [SMALL_STATE(4419)] = 150527, + [SMALL_STATE(4420)] = 150547, + [SMALL_STATE(4421)] = 150562, + [SMALL_STATE(4422)] = 150579, + [SMALL_STATE(4423)] = 150594, + [SMALL_STATE(4424)] = 150611, + [SMALL_STATE(4425)] = 150628, + [SMALL_STATE(4426)] = 150641, + [SMALL_STATE(4427)] = 150658, + [SMALL_STATE(4428)] = 150675, + [SMALL_STATE(4429)] = 150692, + [SMALL_STATE(4430)] = 150709, + [SMALL_STATE(4431)] = 150726, + [SMALL_STATE(4432)] = 150743, + [SMALL_STATE(4433)] = 150760, + [SMALL_STATE(4434)] = 150775, + [SMALL_STATE(4435)] = 150792, + [SMALL_STATE(4436)] = 150807, + [SMALL_STATE(4437)] = 150822, + [SMALL_STATE(4438)] = 150835, + [SMALL_STATE(4439)] = 150852, + [SMALL_STATE(4440)] = 150867, + [SMALL_STATE(4441)] = 150884, + [SMALL_STATE(4442)] = 150899, + [SMALL_STATE(4443)] = 150914, + [SMALL_STATE(4444)] = 150931, + [SMALL_STATE(4445)] = 150948, + [SMALL_STATE(4446)] = 150963, + [SMALL_STATE(4447)] = 150980, + [SMALL_STATE(4448)] = 150999, + [SMALL_STATE(4449)] = 151016, + [SMALL_STATE(4450)] = 151035, + [SMALL_STATE(4451)] = 151052, + [SMALL_STATE(4452)] = 151069, + [SMALL_STATE(4453)] = 151084, + [SMALL_STATE(4454)] = 151101, + [SMALL_STATE(4455)] = 151118, + [SMALL_STATE(4456)] = 151135, + [SMALL_STATE(4457)] = 151150, + [SMALL_STATE(4458)] = 151167, + [SMALL_STATE(4459)] = 151184, + [SMALL_STATE(4460)] = 151201, + [SMALL_STATE(4461)] = 151218, + [SMALL_STATE(4462)] = 151235, + [SMALL_STATE(4463)] = 151246, + [SMALL_STATE(4464)] = 151263, + [SMALL_STATE(4465)] = 151274, + [SMALL_STATE(4466)] = 151291, + [SMALL_STATE(4467)] = 151308, + [SMALL_STATE(4468)] = 151325, + [SMALL_STATE(4469)] = 151342, + [SMALL_STATE(4470)] = 151359, + [SMALL_STATE(4471)] = 151374, + [SMALL_STATE(4472)] = 151391, + [SMALL_STATE(4473)] = 151408, + [SMALL_STATE(4474)] = 151425, + [SMALL_STATE(4475)] = 151442, + [SMALL_STATE(4476)] = 151457, + [SMALL_STATE(4477)] = 151474, + [SMALL_STATE(4478)] = 151491, + [SMALL_STATE(4479)] = 151508, + [SMALL_STATE(4480)] = 151525, + [SMALL_STATE(4481)] = 151542, + [SMALL_STATE(4482)] = 151557, + [SMALL_STATE(4483)] = 151574, + [SMALL_STATE(4484)] = 151591, + [SMALL_STATE(4485)] = 151608, + [SMALL_STATE(4486)] = 151625, + [SMALL_STATE(4487)] = 151642, + [SMALL_STATE(4488)] = 151655, + [SMALL_STATE(4489)] = 151674, + [SMALL_STATE(4490)] = 151691, + [SMALL_STATE(4491)] = 151710, + [SMALL_STATE(4492)] = 151727, + [SMALL_STATE(4493)] = 151744, + [SMALL_STATE(4494)] = 151761, + [SMALL_STATE(4495)] = 151778, + [SMALL_STATE(4496)] = 151795, + [SMALL_STATE(4497)] = 151812, + [SMALL_STATE(4498)] = 151829, + [SMALL_STATE(4499)] = 151844, + [SMALL_STATE(4500)] = 151861, + [SMALL_STATE(4501)] = 151876, + [SMALL_STATE(4502)] = 151891, + [SMALL_STATE(4503)] = 151906, + [SMALL_STATE(4504)] = 151923, + [SMALL_STATE(4505)] = 151940, + [SMALL_STATE(4506)] = 151957, + [SMALL_STATE(4507)] = 151972, + [SMALL_STATE(4508)] = 151989, + [SMALL_STATE(4509)] = 152006, + [SMALL_STATE(4510)] = 152023, + [SMALL_STATE(4511)] = 152038, + [SMALL_STATE(4512)] = 152053, + [SMALL_STATE(4513)] = 152070, + [SMALL_STATE(4514)] = 152085, + [SMALL_STATE(4515)] = 152102, + [SMALL_STATE(4516)] = 152119, + [SMALL_STATE(4517)] = 152134, + [SMALL_STATE(4518)] = 152151, + [SMALL_STATE(4519)] = 152168, + [SMALL_STATE(4520)] = 152185, + [SMALL_STATE(4521)] = 152198, + [SMALL_STATE(4522)] = 152213, + [SMALL_STATE(4523)] = 152232, + [SMALL_STATE(4524)] = 152251, + [SMALL_STATE(4525)] = 152268, + [SMALL_STATE(4526)] = 152285, + [SMALL_STATE(4527)] = 152302, + [SMALL_STATE(4528)] = 152319, + [SMALL_STATE(4529)] = 152336, + [SMALL_STATE(4530)] = 152353, + [SMALL_STATE(4531)] = 152370, + [SMALL_STATE(4532)] = 152385, + [SMALL_STATE(4533)] = 152400, + [SMALL_STATE(4534)] = 152415, + [SMALL_STATE(4535)] = 152432, + [SMALL_STATE(4536)] = 152447, + [SMALL_STATE(4537)] = 152464, + [SMALL_STATE(4538)] = 152481, + [SMALL_STATE(4539)] = 152498, + [SMALL_STATE(4540)] = 152515, + [SMALL_STATE(4541)] = 152530, + [SMALL_STATE(4542)] = 152547, + [SMALL_STATE(4543)] = 152564, + [SMALL_STATE(4544)] = 152581, + [SMALL_STATE(4545)] = 152598, + [SMALL_STATE(4546)] = 152615, + [SMALL_STATE(4547)] = 152632, + [SMALL_STATE(4548)] = 152649, + [SMALL_STATE(4549)] = 152666, + [SMALL_STATE(4550)] = 152683, + [SMALL_STATE(4551)] = 152700, + [SMALL_STATE(4552)] = 152711, + [SMALL_STATE(4553)] = 152728, + [SMALL_STATE(4554)] = 152745, + [SMALL_STATE(4555)] = 152762, + [SMALL_STATE(4556)] = 152779, + [SMALL_STATE(4557)] = 152796, + [SMALL_STATE(4558)] = 152813, + [SMALL_STATE(4559)] = 152830, + [SMALL_STATE(4560)] = 152841, + [SMALL_STATE(4561)] = 152856, + [SMALL_STATE(4562)] = 152873, + [SMALL_STATE(4563)] = 152890, + [SMALL_STATE(4564)] = 152907, + [SMALL_STATE(4565)] = 152917, + [SMALL_STATE(4566)] = 152931, + [SMALL_STATE(4567)] = 152945, + [SMALL_STATE(4568)] = 152959, + [SMALL_STATE(4569)] = 152969, + [SMALL_STATE(4570)] = 152983, + [SMALL_STATE(4571)] = 152993, + [SMALL_STATE(4572)] = 153007, + [SMALL_STATE(4573)] = 153021, + [SMALL_STATE(4574)] = 153031, + [SMALL_STATE(4575)] = 153041, + [SMALL_STATE(4576)] = 153051, + [SMALL_STATE(4577)] = 153061, + [SMALL_STATE(4578)] = 153075, + [SMALL_STATE(4579)] = 153089, + [SMALL_STATE(4580)] = 153103, + [SMALL_STATE(4581)] = 153117, + [SMALL_STATE(4582)] = 153131, + [SMALL_STATE(4583)] = 153145, + [SMALL_STATE(4584)] = 153159, + [SMALL_STATE(4585)] = 153169, + [SMALL_STATE(4586)] = 153179, + [SMALL_STATE(4587)] = 153189, + [SMALL_STATE(4588)] = 153199, + [SMALL_STATE(4589)] = 153209, + [SMALL_STATE(4590)] = 153219, + [SMALL_STATE(4591)] = 153231, + [SMALL_STATE(4592)] = 153245, + [SMALL_STATE(4593)] = 153255, + [SMALL_STATE(4594)] = 153269, + [SMALL_STATE(4595)] = 153283, + [SMALL_STATE(4596)] = 153297, + [SMALL_STATE(4597)] = 153307, + [SMALL_STATE(4598)] = 153321, + [SMALL_STATE(4599)] = 153331, + [SMALL_STATE(4600)] = 153341, + [SMALL_STATE(4601)] = 153351, + [SMALL_STATE(4602)] = 153361, + [SMALL_STATE(4603)] = 153375, + [SMALL_STATE(4604)] = 153389, + [SMALL_STATE(4605)] = 153399, + [SMALL_STATE(4606)] = 153409, + [SMALL_STATE(4607)] = 153423, + [SMALL_STATE(4608)] = 153433, + [SMALL_STATE(4609)] = 153443, + [SMALL_STATE(4610)] = 153453, + [SMALL_STATE(4611)] = 153467, + [SMALL_STATE(4612)] = 153481, + [SMALL_STATE(4613)] = 153491, + [SMALL_STATE(4614)] = 153501, + [SMALL_STATE(4615)] = 153515, + [SMALL_STATE(4616)] = 153525, + [SMALL_STATE(4617)] = 153539, + [SMALL_STATE(4618)] = 153549, + [SMALL_STATE(4619)] = 153563, + [SMALL_STATE(4620)] = 153577, + [SMALL_STATE(4621)] = 153591, + [SMALL_STATE(4622)] = 153605, + [SMALL_STATE(4623)] = 153619, + [SMALL_STATE(4624)] = 153633, + [SMALL_STATE(4625)] = 153647, + [SMALL_STATE(4626)] = 153661, + [SMALL_STATE(4627)] = 153671, + [SMALL_STATE(4628)] = 153681, + [SMALL_STATE(4629)] = 153695, + [SMALL_STATE(4630)] = 153705, + [SMALL_STATE(4631)] = 153715, + [SMALL_STATE(4632)] = 153725, + [SMALL_STATE(4633)] = 153735, + [SMALL_STATE(4634)] = 153745, + [SMALL_STATE(4635)] = 153755, + [SMALL_STATE(4636)] = 153765, + [SMALL_STATE(4637)] = 153779, + [SMALL_STATE(4638)] = 153793, + [SMALL_STATE(4639)] = 153803, + [SMALL_STATE(4640)] = 153813, + [SMALL_STATE(4641)] = 153823, + [SMALL_STATE(4642)] = 153833, + [SMALL_STATE(4643)] = 153847, + [SMALL_STATE(4644)] = 153857, + [SMALL_STATE(4645)] = 153871, + [SMALL_STATE(4646)] = 153885, + [SMALL_STATE(4647)] = 153895, + [SMALL_STATE(4648)] = 153909, + [SMALL_STATE(4649)] = 153919, + [SMALL_STATE(4650)] = 153929, + [SMALL_STATE(4651)] = 153943, + [SMALL_STATE(4652)] = 153957, + [SMALL_STATE(4653)] = 153971, + [SMALL_STATE(4654)] = 153985, + [SMALL_STATE(4655)] = 153995, + [SMALL_STATE(4656)] = 154009, + [SMALL_STATE(4657)] = 154023, + [SMALL_STATE(4658)] = 154033, + [SMALL_STATE(4659)] = 154045, + [SMALL_STATE(4660)] = 154059, + [SMALL_STATE(4661)] = 154073, + [SMALL_STATE(4662)] = 154087, + [SMALL_STATE(4663)] = 154101, + [SMALL_STATE(4664)] = 154115, + [SMALL_STATE(4665)] = 154125, + [SMALL_STATE(4666)] = 154135, + [SMALL_STATE(4667)] = 154145, + [SMALL_STATE(4668)] = 154155, + [SMALL_STATE(4669)] = 154169, + [SMALL_STATE(4670)] = 154179, + [SMALL_STATE(4671)] = 154189, + [SMALL_STATE(4672)] = 154203, + [SMALL_STATE(4673)] = 154217, + [SMALL_STATE(4674)] = 154227, + [SMALL_STATE(4675)] = 154241, + [SMALL_STATE(4676)] = 154253, + [SMALL_STATE(4677)] = 154267, + [SMALL_STATE(4678)] = 154281, + [SMALL_STATE(4679)] = 154291, + [SMALL_STATE(4680)] = 154307, + [SMALL_STATE(4681)] = 154317, + [SMALL_STATE(4682)] = 154331, + [SMALL_STATE(4683)] = 154345, + [SMALL_STATE(4684)] = 154359, + [SMALL_STATE(4685)] = 154369, + [SMALL_STATE(4686)] = 154379, + [SMALL_STATE(4687)] = 154389, + [SMALL_STATE(4688)] = 154399, + [SMALL_STATE(4689)] = 154409, + [SMALL_STATE(4690)] = 154419, + [SMALL_STATE(4691)] = 154433, + [SMALL_STATE(4692)] = 154447, + [SMALL_STATE(4693)] = 154461, + [SMALL_STATE(4694)] = 154471, + [SMALL_STATE(4695)] = 154485, + [SMALL_STATE(4696)] = 154499, + [SMALL_STATE(4697)] = 154509, + [SMALL_STATE(4698)] = 154519, + [SMALL_STATE(4699)] = 154533, + [SMALL_STATE(4700)] = 154543, + [SMALL_STATE(4701)] = 154553, + [SMALL_STATE(4702)] = 154567, + [SMALL_STATE(4703)] = 154577, + [SMALL_STATE(4704)] = 154591, + [SMALL_STATE(4705)] = 154601, + [SMALL_STATE(4706)] = 154615, + [SMALL_STATE(4707)] = 154625, + [SMALL_STATE(4708)] = 154635, + [SMALL_STATE(4709)] = 154645, + [SMALL_STATE(4710)] = 154655, + [SMALL_STATE(4711)] = 154665, + [SMALL_STATE(4712)] = 154675, + [SMALL_STATE(4713)] = 154689, + [SMALL_STATE(4714)] = 154699, + [SMALL_STATE(4715)] = 154709, + [SMALL_STATE(4716)] = 154719, + [SMALL_STATE(4717)] = 154729, + [SMALL_STATE(4718)] = 154739, + [SMALL_STATE(4719)] = 154749, + [SMALL_STATE(4720)] = 154759, + [SMALL_STATE(4721)] = 154773, + [SMALL_STATE(4722)] = 154787, + [SMALL_STATE(4723)] = 154797, + [SMALL_STATE(4724)] = 154813, + [SMALL_STATE(4725)] = 154823, + [SMALL_STATE(4726)] = 154833, + [SMALL_STATE(4727)] = 154843, + [SMALL_STATE(4728)] = 154853, + [SMALL_STATE(4729)] = 154865, + [SMALL_STATE(4730)] = 154875, + [SMALL_STATE(4731)] = 154889, + [SMALL_STATE(4732)] = 154899, + [SMALL_STATE(4733)] = 154909, + [SMALL_STATE(4734)] = 154919, + [SMALL_STATE(4735)] = 154933, + [SMALL_STATE(4736)] = 154947, + [SMALL_STATE(4737)] = 154957, + [SMALL_STATE(4738)] = 154967, + [SMALL_STATE(4739)] = 154977, + [SMALL_STATE(4740)] = 154987, + [SMALL_STATE(4741)] = 154997, + [SMALL_STATE(4742)] = 155007, + [SMALL_STATE(4743)] = 155021, + [SMALL_STATE(4744)] = 155031, + [SMALL_STATE(4745)] = 155045, + [SMALL_STATE(4746)] = 155055, + [SMALL_STATE(4747)] = 155069, + [SMALL_STATE(4748)] = 155079, + [SMALL_STATE(4749)] = 155089, + [SMALL_STATE(4750)] = 155099, + [SMALL_STATE(4751)] = 155109, + [SMALL_STATE(4752)] = 155123, + [SMALL_STATE(4753)] = 155135, + [SMALL_STATE(4754)] = 155149, + [SMALL_STATE(4755)] = 155161, + [SMALL_STATE(4756)] = 155171, + [SMALL_STATE(4757)] = 155183, + [SMALL_STATE(4758)] = 155193, + [SMALL_STATE(4759)] = 155203, + [SMALL_STATE(4760)] = 155217, + [SMALL_STATE(4761)] = 155227, + [SMALL_STATE(4762)] = 155239, + [SMALL_STATE(4763)] = 155249, + [SMALL_STATE(4764)] = 155259, + [SMALL_STATE(4765)] = 155269, + [SMALL_STATE(4766)] = 155279, + [SMALL_STATE(4767)] = 155293, + [SMALL_STATE(4768)] = 155303, + [SMALL_STATE(4769)] = 155315, + [SMALL_STATE(4770)] = 155325, + [SMALL_STATE(4771)] = 155339, + [SMALL_STATE(4772)] = 155349, + [SMALL_STATE(4773)] = 155363, + [SMALL_STATE(4774)] = 155373, + [SMALL_STATE(4775)] = 155383, + [SMALL_STATE(4776)] = 155393, + [SMALL_STATE(4777)] = 155403, + [SMALL_STATE(4778)] = 155413, + [SMALL_STATE(4779)] = 155423, + [SMALL_STATE(4780)] = 155437, + [SMALL_STATE(4781)] = 155447, + [SMALL_STATE(4782)] = 155461, + [SMALL_STATE(4783)] = 155471, + [SMALL_STATE(4784)] = 155481, + [SMALL_STATE(4785)] = 155491, + [SMALL_STATE(4786)] = 155501, + [SMALL_STATE(4787)] = 155511, + [SMALL_STATE(4788)] = 155521, + [SMALL_STATE(4789)] = 155531, + [SMALL_STATE(4790)] = 155541, + [SMALL_STATE(4791)] = 155551, + [SMALL_STATE(4792)] = 155565, + [SMALL_STATE(4793)] = 155575, + [SMALL_STATE(4794)] = 155585, + [SMALL_STATE(4795)] = 155595, + [SMALL_STATE(4796)] = 155605, + [SMALL_STATE(4797)] = 155615, + [SMALL_STATE(4798)] = 155625, + [SMALL_STATE(4799)] = 155635, + [SMALL_STATE(4800)] = 155649, + [SMALL_STATE(4801)] = 155659, + [SMALL_STATE(4802)] = 155669, + [SMALL_STATE(4803)] = 155679, + [SMALL_STATE(4804)] = 155693, + [SMALL_STATE(4805)] = 155703, + [SMALL_STATE(4806)] = 155713, + [SMALL_STATE(4807)] = 155723, + [SMALL_STATE(4808)] = 155733, + [SMALL_STATE(4809)] = 155743, + [SMALL_STATE(4810)] = 155753, + [SMALL_STATE(4811)] = 155763, + [SMALL_STATE(4812)] = 155773, + [SMALL_STATE(4813)] = 155787, + [SMALL_STATE(4814)] = 155797, + [SMALL_STATE(4815)] = 155807, + [SMALL_STATE(4816)] = 155817, + [SMALL_STATE(4817)] = 155827, + [SMALL_STATE(4818)] = 155837, + [SMALL_STATE(4819)] = 155851, + [SMALL_STATE(4820)] = 155861, + [SMALL_STATE(4821)] = 155875, + [SMALL_STATE(4822)] = 155889, + [SMALL_STATE(4823)] = 155899, + [SMALL_STATE(4824)] = 155913, + [SMALL_STATE(4825)] = 155927, + [SMALL_STATE(4826)] = 155937, + [SMALL_STATE(4827)] = 155947, + [SMALL_STATE(4828)] = 155957, + [SMALL_STATE(4829)] = 155969, + [SMALL_STATE(4830)] = 155985, + [SMALL_STATE(4831)] = 155999, + [SMALL_STATE(4832)] = 156009, + [SMALL_STATE(4833)] = 156021, + [SMALL_STATE(4834)] = 156031, + [SMALL_STATE(4835)] = 156045, + [SMALL_STATE(4836)] = 156059, + [SMALL_STATE(4837)] = 156069, + [SMALL_STATE(4838)] = 156079, + [SMALL_STATE(4839)] = 156093, + [SMALL_STATE(4840)] = 156107, + [SMALL_STATE(4841)] = 156117, + [SMALL_STATE(4842)] = 156127, + [SMALL_STATE(4843)] = 156137, + [SMALL_STATE(4844)] = 156147, + [SMALL_STATE(4845)] = 156157, + [SMALL_STATE(4846)] = 156167, + [SMALL_STATE(4847)] = 156177, + [SMALL_STATE(4848)] = 156187, + [SMALL_STATE(4849)] = 156201, + [SMALL_STATE(4850)] = 156211, + [SMALL_STATE(4851)] = 156221, + [SMALL_STATE(4852)] = 156231, + [SMALL_STATE(4853)] = 156241, + [SMALL_STATE(4854)] = 156251, + [SMALL_STATE(4855)] = 156261, + [SMALL_STATE(4856)] = 156271, + [SMALL_STATE(4857)] = 156281, + [SMALL_STATE(4858)] = 156293, + [SMALL_STATE(4859)] = 156307, + [SMALL_STATE(4860)] = 156317, + [SMALL_STATE(4861)] = 156327, + [SMALL_STATE(4862)] = 156341, + [SMALL_STATE(4863)] = 156351, + [SMALL_STATE(4864)] = 156361, + [SMALL_STATE(4865)] = 156371, + [SMALL_STATE(4866)] = 156381, + [SMALL_STATE(4867)] = 156391, + [SMALL_STATE(4868)] = 156401, + [SMALL_STATE(4869)] = 156411, + [SMALL_STATE(4870)] = 156421, + [SMALL_STATE(4871)] = 156431, + [SMALL_STATE(4872)] = 156441, + [SMALL_STATE(4873)] = 156455, + [SMALL_STATE(4874)] = 156465, + [SMALL_STATE(4875)] = 156475, + [SMALL_STATE(4876)] = 156485, + [SMALL_STATE(4877)] = 156495, + [SMALL_STATE(4878)] = 156505, + [SMALL_STATE(4879)] = 156515, + [SMALL_STATE(4880)] = 156525, + [SMALL_STATE(4881)] = 156535, + [SMALL_STATE(4882)] = 156545, + [SMALL_STATE(4883)] = 156555, + [SMALL_STATE(4884)] = 156565, + [SMALL_STATE(4885)] = 156575, + [SMALL_STATE(4886)] = 156585, + [SMALL_STATE(4887)] = 156595, + [SMALL_STATE(4888)] = 156609, + [SMALL_STATE(4889)] = 156623, + [SMALL_STATE(4890)] = 156637, + [SMALL_STATE(4891)] = 156651, + [SMALL_STATE(4892)] = 156661, + [SMALL_STATE(4893)] = 156675, + [SMALL_STATE(4894)] = 156689, + [SMALL_STATE(4895)] = 156699, + [SMALL_STATE(4896)] = 156713, + [SMALL_STATE(4897)] = 156723, + [SMALL_STATE(4898)] = 156737, + [SMALL_STATE(4899)] = 156751, + [SMALL_STATE(4900)] = 156761, + [SMALL_STATE(4901)] = 156771, + [SMALL_STATE(4902)] = 156781, + [SMALL_STATE(4903)] = 156791, + [SMALL_STATE(4904)] = 156805, + [SMALL_STATE(4905)] = 156815, + [SMALL_STATE(4906)] = 156825, + [SMALL_STATE(4907)] = 156839, + [SMALL_STATE(4908)] = 156853, + [SMALL_STATE(4909)] = 156863, + [SMALL_STATE(4910)] = 156873, + [SMALL_STATE(4911)] = 156883, + [SMALL_STATE(4912)] = 156893, + [SMALL_STATE(4913)] = 156907, + [SMALL_STATE(4914)] = 156917, + [SMALL_STATE(4915)] = 156927, + [SMALL_STATE(4916)] = 156937, + [SMALL_STATE(4917)] = 156947, + [SMALL_STATE(4918)] = 156957, + [SMALL_STATE(4919)] = 156967, + [SMALL_STATE(4920)] = 156977, + [SMALL_STATE(4921)] = 156987, + [SMALL_STATE(4922)] = 157001, + [SMALL_STATE(4923)] = 157011, + [SMALL_STATE(4924)] = 157025, + [SMALL_STATE(4925)] = 157035, + [SMALL_STATE(4926)] = 157051, + [SMALL_STATE(4927)] = 157061, + [SMALL_STATE(4928)] = 157071, + [SMALL_STATE(4929)] = 157081, + [SMALL_STATE(4930)] = 157091, + [SMALL_STATE(4931)] = 157101, + [SMALL_STATE(4932)] = 157111, + [SMALL_STATE(4933)] = 157121, + [SMALL_STATE(4934)] = 157131, + [SMALL_STATE(4935)] = 157141, + [SMALL_STATE(4936)] = 157151, + [SMALL_STATE(4937)] = 157161, + [SMALL_STATE(4938)] = 157171, + [SMALL_STATE(4939)] = 157185, + [SMALL_STATE(4940)] = 157195, + [SMALL_STATE(4941)] = 157207, + [SMALL_STATE(4942)] = 157221, + [SMALL_STATE(4943)] = 157231, + [SMALL_STATE(4944)] = 157241, + [SMALL_STATE(4945)] = 157251, + [SMALL_STATE(4946)] = 157263, + [SMALL_STATE(4947)] = 157273, + [SMALL_STATE(4948)] = 157283, + [SMALL_STATE(4949)] = 157293, + [SMALL_STATE(4950)] = 157303, + [SMALL_STATE(4951)] = 157313, + [SMALL_STATE(4952)] = 157327, + [SMALL_STATE(4953)] = 157337, + [SMALL_STATE(4954)] = 157347, + [SMALL_STATE(4955)] = 157361, + [SMALL_STATE(4956)] = 157371, + [SMALL_STATE(4957)] = 157381, + [SMALL_STATE(4958)] = 157391, + [SMALL_STATE(4959)] = 157401, + [SMALL_STATE(4960)] = 157411, + [SMALL_STATE(4961)] = 157421, + [SMALL_STATE(4962)] = 157431, + [SMALL_STATE(4963)] = 157441, + [SMALL_STATE(4964)] = 157453, + [SMALL_STATE(4965)] = 157465, + [SMALL_STATE(4966)] = 157475, + [SMALL_STATE(4967)] = 157485, + [SMALL_STATE(4968)] = 157495, + [SMALL_STATE(4969)] = 157505, + [SMALL_STATE(4970)] = 157515, + [SMALL_STATE(4971)] = 157525, + [SMALL_STATE(4972)] = 157535, + [SMALL_STATE(4973)] = 157545, + [SMALL_STATE(4974)] = 157555, + [SMALL_STATE(4975)] = 157565, + [SMALL_STATE(4976)] = 157575, + [SMALL_STATE(4977)] = 157585, + [SMALL_STATE(4978)] = 157595, + [SMALL_STATE(4979)] = 157605, + [SMALL_STATE(4980)] = 157615, + [SMALL_STATE(4981)] = 157625, + [SMALL_STATE(4982)] = 157635, + [SMALL_STATE(4983)] = 157645, + [SMALL_STATE(4984)] = 157655, + [SMALL_STATE(4985)] = 157665, + [SMALL_STATE(4986)] = 157675, + [SMALL_STATE(4987)] = 157685, + [SMALL_STATE(4988)] = 157695, + [SMALL_STATE(4989)] = 157705, + [SMALL_STATE(4990)] = 157715, + [SMALL_STATE(4991)] = 157725, + [SMALL_STATE(4992)] = 157735, + [SMALL_STATE(4993)] = 157745, + [SMALL_STATE(4994)] = 157755, + [SMALL_STATE(4995)] = 157765, + [SMALL_STATE(4996)] = 157775, + [SMALL_STATE(4997)] = 157785, + [SMALL_STATE(4998)] = 157795, + [SMALL_STATE(4999)] = 157805, + [SMALL_STATE(5000)] = 157815, + [SMALL_STATE(5001)] = 157825, + [SMALL_STATE(5002)] = 157835, + [SMALL_STATE(5003)] = 157845, + [SMALL_STATE(5004)] = 157855, + [SMALL_STATE(5005)] = 157865, + [SMALL_STATE(5006)] = 157875, + [SMALL_STATE(5007)] = 157885, + [SMALL_STATE(5008)] = 157895, + [SMALL_STATE(5009)] = 157905, + [SMALL_STATE(5010)] = 157915, + [SMALL_STATE(5011)] = 157925, + [SMALL_STATE(5012)] = 157935, + [SMALL_STATE(5013)] = 157945, + [SMALL_STATE(5014)] = 157955, + [SMALL_STATE(5015)] = 157965, + [SMALL_STATE(5016)] = 157975, + [SMALL_STATE(5017)] = 157985, + [SMALL_STATE(5018)] = 157995, + [SMALL_STATE(5019)] = 158005, + [SMALL_STATE(5020)] = 158015, + [SMALL_STATE(5021)] = 158029, + [SMALL_STATE(5022)] = 158039, + [SMALL_STATE(5023)] = 158051, + [SMALL_STATE(5024)] = 158061, + [SMALL_STATE(5025)] = 158071, + [SMALL_STATE(5026)] = 158083, + [SMALL_STATE(5027)] = 158093, + [SMALL_STATE(5028)] = 158103, + [SMALL_STATE(5029)] = 158113, + [SMALL_STATE(5030)] = 158123, + [SMALL_STATE(5031)] = 158137, + [SMALL_STATE(5032)] = 158147, + [SMALL_STATE(5033)] = 158161, + [SMALL_STATE(5034)] = 158171, + [SMALL_STATE(5035)] = 158181, + [SMALL_STATE(5036)] = 158191, + [SMALL_STATE(5037)] = 158201, + [SMALL_STATE(5038)] = 158211, + [SMALL_STATE(5039)] = 158221, + [SMALL_STATE(5040)] = 158235, + [SMALL_STATE(5041)] = 158245, + [SMALL_STATE(5042)] = 158255, + [SMALL_STATE(5043)] = 158265, + [SMALL_STATE(5044)] = 158275, + [SMALL_STATE(5045)] = 158285, + [SMALL_STATE(5046)] = 158295, + [SMALL_STATE(5047)] = 158305, + [SMALL_STATE(5048)] = 158315, + [SMALL_STATE(5049)] = 158325, + [SMALL_STATE(5050)] = 158339, + [SMALL_STATE(5051)] = 158349, + [SMALL_STATE(5052)] = 158359, + [SMALL_STATE(5053)] = 158369, + [SMALL_STATE(5054)] = 158379, + [SMALL_STATE(5055)] = 158389, + [SMALL_STATE(5056)] = 158399, + [SMALL_STATE(5057)] = 158409, + [SMALL_STATE(5058)] = 158419, + [SMALL_STATE(5059)] = 158429, + [SMALL_STATE(5060)] = 158439, + [SMALL_STATE(5061)] = 158453, + [SMALL_STATE(5062)] = 158463, + [SMALL_STATE(5063)] = 158473, + [SMALL_STATE(5064)] = 158483, + [SMALL_STATE(5065)] = 158493, + [SMALL_STATE(5066)] = 158503, + [SMALL_STATE(5067)] = 158513, + [SMALL_STATE(5068)] = 158523, + [SMALL_STATE(5069)] = 158533, + [SMALL_STATE(5070)] = 158543, + [SMALL_STATE(5071)] = 158557, + [SMALL_STATE(5072)] = 158571, + [SMALL_STATE(5073)] = 158581, + [SMALL_STATE(5074)] = 158591, + [SMALL_STATE(5075)] = 158601, + [SMALL_STATE(5076)] = 158611, + [SMALL_STATE(5077)] = 158625, + [SMALL_STATE(5078)] = 158635, + [SMALL_STATE(5079)] = 158645, + [SMALL_STATE(5080)] = 158655, + [SMALL_STATE(5081)] = 158669, + [SMALL_STATE(5082)] = 158683, + [SMALL_STATE(5083)] = 158695, + [SMALL_STATE(5084)] = 158705, + [SMALL_STATE(5085)] = 158715, + [SMALL_STATE(5086)] = 158725, + [SMALL_STATE(5087)] = 158739, + [SMALL_STATE(5088)] = 158753, + [SMALL_STATE(5089)] = 158763, + [SMALL_STATE(5090)] = 158777, + [SMALL_STATE(5091)] = 158787, + [SMALL_STATE(5092)] = 158797, + [SMALL_STATE(5093)] = 158811, + [SMALL_STATE(5094)] = 158821, + [SMALL_STATE(5095)] = 158833, + [SMALL_STATE(5096)] = 158843, + [SMALL_STATE(5097)] = 158853, + [SMALL_STATE(5098)] = 158863, + [SMALL_STATE(5099)] = 158875, + [SMALL_STATE(5100)] = 158885, + [SMALL_STATE(5101)] = 158895, + [SMALL_STATE(5102)] = 158909, + [SMALL_STATE(5103)] = 158919, + [SMALL_STATE(5104)] = 158929, + [SMALL_STATE(5105)] = 158939, + [SMALL_STATE(5106)] = 158949, + [SMALL_STATE(5107)] = 158959, + [SMALL_STATE(5108)] = 158969, + [SMALL_STATE(5109)] = 158979, + [SMALL_STATE(5110)] = 158989, + [SMALL_STATE(5111)] = 159003, + [SMALL_STATE(5112)] = 159013, + [SMALL_STATE(5113)] = 159023, + [SMALL_STATE(5114)] = 159033, + [SMALL_STATE(5115)] = 159043, + [SMALL_STATE(5116)] = 159053, + [SMALL_STATE(5117)] = 159067, + [SMALL_STATE(5118)] = 159077, + [SMALL_STATE(5119)] = 159087, + [SMALL_STATE(5120)] = 159097, + [SMALL_STATE(5121)] = 159107, + [SMALL_STATE(5122)] = 159117, + [SMALL_STATE(5123)] = 159127, + [SMALL_STATE(5124)] = 159137, + [SMALL_STATE(5125)] = 159151, + [SMALL_STATE(5126)] = 159161, + [SMALL_STATE(5127)] = 159175, + [SMALL_STATE(5128)] = 159185, + [SMALL_STATE(5129)] = 159197, + [SMALL_STATE(5130)] = 159211, + [SMALL_STATE(5131)] = 159225, + [SMALL_STATE(5132)] = 159235, + [SMALL_STATE(5133)] = 159245, + [SMALL_STATE(5134)] = 159257, + [SMALL_STATE(5135)] = 159271, + [SMALL_STATE(5136)] = 159281, + [SMALL_STATE(5137)] = 159295, + [SMALL_STATE(5138)] = 159305, + [SMALL_STATE(5139)] = 159315, + [SMALL_STATE(5140)] = 159329, + [SMALL_STATE(5141)] = 159341, + [SMALL_STATE(5142)] = 159355, + [SMALL_STATE(5143)] = 159365, + [SMALL_STATE(5144)] = 159375, + [SMALL_STATE(5145)] = 159387, + [SMALL_STATE(5146)] = 159397, + [SMALL_STATE(5147)] = 159407, + [SMALL_STATE(5148)] = 159417, + [SMALL_STATE(5149)] = 159431, + [SMALL_STATE(5150)] = 159441, + [SMALL_STATE(5151)] = 159455, + [SMALL_STATE(5152)] = 159469, + [SMALL_STATE(5153)] = 159483, + [SMALL_STATE(5154)] = 159497, + [SMALL_STATE(5155)] = 159509, + [SMALL_STATE(5156)] = 159523, + [SMALL_STATE(5157)] = 159537, + [SMALL_STATE(5158)] = 159551, + [SMALL_STATE(5159)] = 159565, + [SMALL_STATE(5160)] = 159575, + [SMALL_STATE(5161)] = 159585, + [SMALL_STATE(5162)] = 159595, + [SMALL_STATE(5163)] = 159605, + [SMALL_STATE(5164)] = 159615, + [SMALL_STATE(5165)] = 159625, + [SMALL_STATE(5166)] = 159639, + [SMALL_STATE(5167)] = 159653, + [SMALL_STATE(5168)] = 159663, + [SMALL_STATE(5169)] = 159673, + [SMALL_STATE(5170)] = 159683, + [SMALL_STATE(5171)] = 159697, + [SMALL_STATE(5172)] = 159711, + [SMALL_STATE(5173)] = 159721, + [SMALL_STATE(5174)] = 159731, + [SMALL_STATE(5175)] = 159741, + [SMALL_STATE(5176)] = 159751, + [SMALL_STATE(5177)] = 159767, + [SMALL_STATE(5178)] = 159777, + [SMALL_STATE(5179)] = 159787, + [SMALL_STATE(5180)] = 159797, + [SMALL_STATE(5181)] = 159807, + [SMALL_STATE(5182)] = 159817, + [SMALL_STATE(5183)] = 159827, + [SMALL_STATE(5184)] = 159838, + [SMALL_STATE(5185)] = 159849, + [SMALL_STATE(5186)] = 159858, + [SMALL_STATE(5187)] = 159869, + [SMALL_STATE(5188)] = 159880, + [SMALL_STATE(5189)] = 159889, + [SMALL_STATE(5190)] = 159898, + [SMALL_STATE(5191)] = 159909, + [SMALL_STATE(5192)] = 159918, + [SMALL_STATE(5193)] = 159929, + [SMALL_STATE(5194)] = 159940, + [SMALL_STATE(5195)] = 159951, + [SMALL_STATE(5196)] = 159962, + [SMALL_STATE(5197)] = 159973, + [SMALL_STATE(5198)] = 159982, + [SMALL_STATE(5199)] = 159991, + [SMALL_STATE(5200)] = 160002, + [SMALL_STATE(5201)] = 160013, + [SMALL_STATE(5202)] = 160024, + [SMALL_STATE(5203)] = 160035, + [SMALL_STATE(5204)] = 160046, + [SMALL_STATE(5205)] = 160055, + [SMALL_STATE(5206)] = 160066, + [SMALL_STATE(5207)] = 160077, + [SMALL_STATE(5208)] = 160088, + [SMALL_STATE(5209)] = 160099, + [SMALL_STATE(5210)] = 160110, + [SMALL_STATE(5211)] = 160121, + [SMALL_STATE(5212)] = 160130, + [SMALL_STATE(5213)] = 160141, + [SMALL_STATE(5214)] = 160152, + [SMALL_STATE(5215)] = 160161, + [SMALL_STATE(5216)] = 160172, + [SMALL_STATE(5217)] = 160183, + [SMALL_STATE(5218)] = 160194, + [SMALL_STATE(5219)] = 160203, + [SMALL_STATE(5220)] = 160212, + [SMALL_STATE(5221)] = 160223, + [SMALL_STATE(5222)] = 160234, + [SMALL_STATE(5223)] = 160243, + [SMALL_STATE(5224)] = 160252, + [SMALL_STATE(5225)] = 160263, + [SMALL_STATE(5226)] = 160274, + [SMALL_STATE(5227)] = 160285, + [SMALL_STATE(5228)] = 160294, + [SMALL_STATE(5229)] = 160305, + [SMALL_STATE(5230)] = 160316, + [SMALL_STATE(5231)] = 160327, + [SMALL_STATE(5232)] = 160338, + [SMALL_STATE(5233)] = 160347, + [SMALL_STATE(5234)] = 160358, + [SMALL_STATE(5235)] = 160369, + [SMALL_STATE(5236)] = 160380, + [SMALL_STATE(5237)] = 160391, + [SMALL_STATE(5238)] = 160402, + [SMALL_STATE(5239)] = 160413, + [SMALL_STATE(5240)] = 160424, + [SMALL_STATE(5241)] = 160435, + [SMALL_STATE(5242)] = 160446, + [SMALL_STATE(5243)] = 160457, + [SMALL_STATE(5244)] = 160468, + [SMALL_STATE(5245)] = 160479, + [SMALL_STATE(5246)] = 160490, + [SMALL_STATE(5247)] = 160501, + [SMALL_STATE(5248)] = 160512, + [SMALL_STATE(5249)] = 160523, + [SMALL_STATE(5250)] = 160534, + [SMALL_STATE(5251)] = 160545, + [SMALL_STATE(5252)] = 160554, + [SMALL_STATE(5253)] = 160565, + [SMALL_STATE(5254)] = 160576, + [SMALL_STATE(5255)] = 160587, + [SMALL_STATE(5256)] = 160598, + [SMALL_STATE(5257)] = 160609, + [SMALL_STATE(5258)] = 160618, + [SMALL_STATE(5259)] = 160629, + [SMALL_STATE(5260)] = 160640, + [SMALL_STATE(5261)] = 160649, + [SMALL_STATE(5262)] = 160658, + [SMALL_STATE(5263)] = 160669, + [SMALL_STATE(5264)] = 160680, + [SMALL_STATE(5265)] = 160691, + [SMALL_STATE(5266)] = 160702, + [SMALL_STATE(5267)] = 160713, + [SMALL_STATE(5268)] = 160722, + [SMALL_STATE(5269)] = 160733, + [SMALL_STATE(5270)] = 160742, + [SMALL_STATE(5271)] = 160753, + [SMALL_STATE(5272)] = 160764, + [SMALL_STATE(5273)] = 160775, + [SMALL_STATE(5274)] = 160786, + [SMALL_STATE(5275)] = 160795, + [SMALL_STATE(5276)] = 160804, + [SMALL_STATE(5277)] = 160815, + [SMALL_STATE(5278)] = 160826, + [SMALL_STATE(5279)] = 160837, + [SMALL_STATE(5280)] = 160848, + [SMALL_STATE(5281)] = 160859, + [SMALL_STATE(5282)] = 160870, + [SMALL_STATE(5283)] = 160881, + [SMALL_STATE(5284)] = 160892, + [SMALL_STATE(5285)] = 160903, + [SMALL_STATE(5286)] = 160914, + [SMALL_STATE(5287)] = 160925, + [SMALL_STATE(5288)] = 160936, + [SMALL_STATE(5289)] = 160947, + [SMALL_STATE(5290)] = 160958, + [SMALL_STATE(5291)] = 160969, + [SMALL_STATE(5292)] = 160978, + [SMALL_STATE(5293)] = 160989, + [SMALL_STATE(5294)] = 161000, + [SMALL_STATE(5295)] = 161011, + [SMALL_STATE(5296)] = 161022, + [SMALL_STATE(5297)] = 161033, + [SMALL_STATE(5298)] = 161044, + [SMALL_STATE(5299)] = 161055, + [SMALL_STATE(5300)] = 161066, + [SMALL_STATE(5301)] = 161077, + [SMALL_STATE(5302)] = 161086, + [SMALL_STATE(5303)] = 161097, + [SMALL_STATE(5304)] = 161106, + [SMALL_STATE(5305)] = 161117, + [SMALL_STATE(5306)] = 161128, + [SMALL_STATE(5307)] = 161137, + [SMALL_STATE(5308)] = 161146, + [SMALL_STATE(5309)] = 161157, + [SMALL_STATE(5310)] = 161168, + [SMALL_STATE(5311)] = 161179, + [SMALL_STATE(5312)] = 161190, + [SMALL_STATE(5313)] = 161199, + [SMALL_STATE(5314)] = 161210, + [SMALL_STATE(5315)] = 161221, + [SMALL_STATE(5316)] = 161230, + [SMALL_STATE(5317)] = 161241, + [SMALL_STATE(5318)] = 161252, + [SMALL_STATE(5319)] = 161263, + [SMALL_STATE(5320)] = 161274, + [SMALL_STATE(5321)] = 161285, + [SMALL_STATE(5322)] = 161294, + [SMALL_STATE(5323)] = 161305, + [SMALL_STATE(5324)] = 161314, + [SMALL_STATE(5325)] = 161325, + [SMALL_STATE(5326)] = 161336, + [SMALL_STATE(5327)] = 161347, + [SMALL_STATE(5328)] = 161358, + [SMALL_STATE(5329)] = 161369, + [SMALL_STATE(5330)] = 161378, + [SMALL_STATE(5331)] = 161387, + [SMALL_STATE(5332)] = 161396, + [SMALL_STATE(5333)] = 161405, + [SMALL_STATE(5334)] = 161416, + [SMALL_STATE(5335)] = 161425, + [SMALL_STATE(5336)] = 161436, + [SMALL_STATE(5337)] = 161447, + [SMALL_STATE(5338)] = 161458, + [SMALL_STATE(5339)] = 161469, + [SMALL_STATE(5340)] = 161480, + [SMALL_STATE(5341)] = 161491, + [SMALL_STATE(5342)] = 161502, + [SMALL_STATE(5343)] = 161513, + [SMALL_STATE(5344)] = 161524, + [SMALL_STATE(5345)] = 161535, + [SMALL_STATE(5346)] = 161544, + [SMALL_STATE(5347)] = 161553, + [SMALL_STATE(5348)] = 161564, + [SMALL_STATE(5349)] = 161575, + [SMALL_STATE(5350)] = 161586, + [SMALL_STATE(5351)] = 161597, + [SMALL_STATE(5352)] = 161606, + [SMALL_STATE(5353)] = 161615, + [SMALL_STATE(5354)] = 161626, + [SMALL_STATE(5355)] = 161637, + [SMALL_STATE(5356)] = 161648, + [SMALL_STATE(5357)] = 161659, + [SMALL_STATE(5358)] = 161670, + [SMALL_STATE(5359)] = 161681, + [SMALL_STATE(5360)] = 161692, + [SMALL_STATE(5361)] = 161701, + [SMALL_STATE(5362)] = 161712, + [SMALL_STATE(5363)] = 161723, + [SMALL_STATE(5364)] = 161734, + [SMALL_STATE(5365)] = 161743, + [SMALL_STATE(5366)] = 161754, + [SMALL_STATE(5367)] = 161765, + [SMALL_STATE(5368)] = 161776, + [SMALL_STATE(5369)] = 161787, + [SMALL_STATE(5370)] = 161798, + [SMALL_STATE(5371)] = 161809, + [SMALL_STATE(5372)] = 161820, + [SMALL_STATE(5373)] = 161831, + [SMALL_STATE(5374)] = 161842, + [SMALL_STATE(5375)] = 161853, + [SMALL_STATE(5376)] = 161864, + [SMALL_STATE(5377)] = 161875, + [SMALL_STATE(5378)] = 161886, + [SMALL_STATE(5379)] = 161897, + [SMALL_STATE(5380)] = 161908, + [SMALL_STATE(5381)] = 161919, + [SMALL_STATE(5382)] = 161928, + [SMALL_STATE(5383)] = 161939, + [SMALL_STATE(5384)] = 161948, + [SMALL_STATE(5385)] = 161957, + [SMALL_STATE(5386)] = 161966, + [SMALL_STATE(5387)] = 161977, + [SMALL_STATE(5388)] = 161988, + [SMALL_STATE(5389)] = 161999, + [SMALL_STATE(5390)] = 162010, + [SMALL_STATE(5391)] = 162021, + [SMALL_STATE(5392)] = 162032, + [SMALL_STATE(5393)] = 162043, + [SMALL_STATE(5394)] = 162054, + [SMALL_STATE(5395)] = 162065, + [SMALL_STATE(5396)] = 162076, + [SMALL_STATE(5397)] = 162087, + [SMALL_STATE(5398)] = 162098, + [SMALL_STATE(5399)] = 162109, + [SMALL_STATE(5400)] = 162120, + [SMALL_STATE(5401)] = 162131, + [SMALL_STATE(5402)] = 162142, + [SMALL_STATE(5403)] = 162153, + [SMALL_STATE(5404)] = 162164, + [SMALL_STATE(5405)] = 162175, + [SMALL_STATE(5406)] = 162184, + [SMALL_STATE(5407)] = 162195, + [SMALL_STATE(5408)] = 162206, + [SMALL_STATE(5409)] = 162217, + [SMALL_STATE(5410)] = 162228, + [SMALL_STATE(5411)] = 162239, + [SMALL_STATE(5412)] = 162250, + [SMALL_STATE(5413)] = 162261, + [SMALL_STATE(5414)] = 162272, + [SMALL_STATE(5415)] = 162283, + [SMALL_STATE(5416)] = 162292, + [SMALL_STATE(5417)] = 162303, + [SMALL_STATE(5418)] = 162314, + [SMALL_STATE(5419)] = 162325, + [SMALL_STATE(5420)] = 162334, + [SMALL_STATE(5421)] = 162345, + [SMALL_STATE(5422)] = 162356, + [SMALL_STATE(5423)] = 162367, + [SMALL_STATE(5424)] = 162378, + [SMALL_STATE(5425)] = 162389, + [SMALL_STATE(5426)] = 162400, + [SMALL_STATE(5427)] = 162409, + [SMALL_STATE(5428)] = 162420, + [SMALL_STATE(5429)] = 162431, + [SMALL_STATE(5430)] = 162442, + [SMALL_STATE(5431)] = 162453, + [SMALL_STATE(5432)] = 162464, + [SMALL_STATE(5433)] = 162475, + [SMALL_STATE(5434)] = 162486, + [SMALL_STATE(5435)] = 162497, + [SMALL_STATE(5436)] = 162508, + [SMALL_STATE(5437)] = 162519, + [SMALL_STATE(5438)] = 162530, + [SMALL_STATE(5439)] = 162541, + [SMALL_STATE(5440)] = 162552, + [SMALL_STATE(5441)] = 162563, + [SMALL_STATE(5442)] = 162574, + [SMALL_STATE(5443)] = 162585, + [SMALL_STATE(5444)] = 162596, + [SMALL_STATE(5445)] = 162607, + [SMALL_STATE(5446)] = 162618, + [SMALL_STATE(5447)] = 162627, + [SMALL_STATE(5448)] = 162636, + [SMALL_STATE(5449)] = 162647, + [SMALL_STATE(5450)] = 162658, + [SMALL_STATE(5451)] = 162667, + [SMALL_STATE(5452)] = 162676, + [SMALL_STATE(5453)] = 162687, + [SMALL_STATE(5454)] = 162696, + [SMALL_STATE(5455)] = 162707, + [SMALL_STATE(5456)] = 162718, + [SMALL_STATE(5457)] = 162729, + [SMALL_STATE(5458)] = 162740, + [SMALL_STATE(5459)] = 162751, + [SMALL_STATE(5460)] = 162762, + [SMALL_STATE(5461)] = 162773, + [SMALL_STATE(5462)] = 162784, + [SMALL_STATE(5463)] = 162795, + [SMALL_STATE(5464)] = 162806, + [SMALL_STATE(5465)] = 162817, + [SMALL_STATE(5466)] = 162828, + [SMALL_STATE(5467)] = 162839, + [SMALL_STATE(5468)] = 162850, + [SMALL_STATE(5469)] = 162859, + [SMALL_STATE(5470)] = 162870, + [SMALL_STATE(5471)] = 162881, + [SMALL_STATE(5472)] = 162892, + [SMALL_STATE(5473)] = 162903, + [SMALL_STATE(5474)] = 162914, + [SMALL_STATE(5475)] = 162925, + [SMALL_STATE(5476)] = 162936, + [SMALL_STATE(5477)] = 162947, + [SMALL_STATE(5478)] = 162956, + [SMALL_STATE(5479)] = 162967, + [SMALL_STATE(5480)] = 162978, + [SMALL_STATE(5481)] = 162989, + [SMALL_STATE(5482)] = 162998, + [SMALL_STATE(5483)] = 163007, + [SMALL_STATE(5484)] = 163018, + [SMALL_STATE(5485)] = 163027, + [SMALL_STATE(5486)] = 163036, + [SMALL_STATE(5487)] = 163045, + [SMALL_STATE(5488)] = 163054, + [SMALL_STATE(5489)] = 163065, + [SMALL_STATE(5490)] = 163076, + [SMALL_STATE(5491)] = 163087, + [SMALL_STATE(5492)] = 163098, + [SMALL_STATE(5493)] = 163107, + [SMALL_STATE(5494)] = 163116, + [SMALL_STATE(5495)] = 163125, + [SMALL_STATE(5496)] = 163134, + [SMALL_STATE(5497)] = 163145, + [SMALL_STATE(5498)] = 163156, + [SMALL_STATE(5499)] = 163167, + [SMALL_STATE(5500)] = 163178, + [SMALL_STATE(5501)] = 163189, + [SMALL_STATE(5502)] = 163200, + [SMALL_STATE(5503)] = 163211, + [SMALL_STATE(5504)] = 163222, + [SMALL_STATE(5505)] = 163231, + [SMALL_STATE(5506)] = 163242, + [SMALL_STATE(5507)] = 163251, + [SMALL_STATE(5508)] = 163262, + [SMALL_STATE(5509)] = 163273, + [SMALL_STATE(5510)] = 163282, + [SMALL_STATE(5511)] = 163293, + [SMALL_STATE(5512)] = 163302, + [SMALL_STATE(5513)] = 163311, + [SMALL_STATE(5514)] = 163322, + [SMALL_STATE(5515)] = 163333, + [SMALL_STATE(5516)] = 163344, + [SMALL_STATE(5517)] = 163355, + [SMALL_STATE(5518)] = 163366, + [SMALL_STATE(5519)] = 163377, + [SMALL_STATE(5520)] = 163388, + [SMALL_STATE(5521)] = 163399, + [SMALL_STATE(5522)] = 163410, + [SMALL_STATE(5523)] = 163421, + [SMALL_STATE(5524)] = 163432, + [SMALL_STATE(5525)] = 163443, + [SMALL_STATE(5526)] = 163454, + [SMALL_STATE(5527)] = 163465, + [SMALL_STATE(5528)] = 163476, + [SMALL_STATE(5529)] = 163487, + [SMALL_STATE(5530)] = 163498, + [SMALL_STATE(5531)] = 163509, + [SMALL_STATE(5532)] = 163520, + [SMALL_STATE(5533)] = 163529, + [SMALL_STATE(5534)] = 163538, + [SMALL_STATE(5535)] = 163546, + [SMALL_STATE(5536)] = 163554, + [SMALL_STATE(5537)] = 163562, + [SMALL_STATE(5538)] = 163570, + [SMALL_STATE(5539)] = 163578, + [SMALL_STATE(5540)] = 163586, + [SMALL_STATE(5541)] = 163594, + [SMALL_STATE(5542)] = 163602, + [SMALL_STATE(5543)] = 163610, + [SMALL_STATE(5544)] = 163618, + [SMALL_STATE(5545)] = 163626, + [SMALL_STATE(5546)] = 163634, + [SMALL_STATE(5547)] = 163642, + [SMALL_STATE(5548)] = 163650, + [SMALL_STATE(5549)] = 163658, + [SMALL_STATE(5550)] = 163666, + [SMALL_STATE(5551)] = 163674, + [SMALL_STATE(5552)] = 163682, + [SMALL_STATE(5553)] = 163690, + [SMALL_STATE(5554)] = 163698, + [SMALL_STATE(5555)] = 163706, + [SMALL_STATE(5556)] = 163714, + [SMALL_STATE(5557)] = 163722, + [SMALL_STATE(5558)] = 163730, + [SMALL_STATE(5559)] = 163738, + [SMALL_STATE(5560)] = 163746, + [SMALL_STATE(5561)] = 163754, + [SMALL_STATE(5562)] = 163764, + [SMALL_STATE(5563)] = 163772, + [SMALL_STATE(5564)] = 163780, + [SMALL_STATE(5565)] = 163788, + [SMALL_STATE(5566)] = 163796, + [SMALL_STATE(5567)] = 163804, + [SMALL_STATE(5568)] = 163812, + [SMALL_STATE(5569)] = 163820, + [SMALL_STATE(5570)] = 163828, + [SMALL_STATE(5571)] = 163836, + [SMALL_STATE(5572)] = 163844, + [SMALL_STATE(5573)] = 163852, + [SMALL_STATE(5574)] = 163860, + [SMALL_STATE(5575)] = 163868, + [SMALL_STATE(5576)] = 163876, + [SMALL_STATE(5577)] = 163884, + [SMALL_STATE(5578)] = 163892, + [SMALL_STATE(5579)] = 163900, + [SMALL_STATE(5580)] = 163908, + [SMALL_STATE(5581)] = 163916, + [SMALL_STATE(5582)] = 163924, + [SMALL_STATE(5583)] = 163932, + [SMALL_STATE(5584)] = 163940, + [SMALL_STATE(5585)] = 163948, + [SMALL_STATE(5586)] = 163956, + [SMALL_STATE(5587)] = 163964, + [SMALL_STATE(5588)] = 163972, + [SMALL_STATE(5589)] = 163980, + [SMALL_STATE(5590)] = 163988, + [SMALL_STATE(5591)] = 163996, + [SMALL_STATE(5592)] = 164004, + [SMALL_STATE(5593)] = 164012, + [SMALL_STATE(5594)] = 164020, + [SMALL_STATE(5595)] = 164028, + [SMALL_STATE(5596)] = 164036, + [SMALL_STATE(5597)] = 164044, + [SMALL_STATE(5598)] = 164052, + [SMALL_STATE(5599)] = 164060, + [SMALL_STATE(5600)] = 164068, + [SMALL_STATE(5601)] = 164076, + [SMALL_STATE(5602)] = 164084, + [SMALL_STATE(5603)] = 164092, + [SMALL_STATE(5604)] = 164100, + [SMALL_STATE(5605)] = 164110, + [SMALL_STATE(5606)] = 164118, + [SMALL_STATE(5607)] = 164126, + [SMALL_STATE(5608)] = 164134, + [SMALL_STATE(5609)] = 164142, + [SMALL_STATE(5610)] = 164150, + [SMALL_STATE(5611)] = 164158, + [SMALL_STATE(5612)] = 164166, + [SMALL_STATE(5613)] = 164174, + [SMALL_STATE(5614)] = 164182, + [SMALL_STATE(5615)] = 164190, + [SMALL_STATE(5616)] = 164198, + [SMALL_STATE(5617)] = 164206, + [SMALL_STATE(5618)] = 164214, + [SMALL_STATE(5619)] = 164222, + [SMALL_STATE(5620)] = 164230, + [SMALL_STATE(5621)] = 164238, + [SMALL_STATE(5622)] = 164246, + [SMALL_STATE(5623)] = 164254, + [SMALL_STATE(5624)] = 164262, + [SMALL_STATE(5625)] = 164270, + [SMALL_STATE(5626)] = 164278, + [SMALL_STATE(5627)] = 164286, + [SMALL_STATE(5628)] = 164294, + [SMALL_STATE(5629)] = 164302, + [SMALL_STATE(5630)] = 164310, + [SMALL_STATE(5631)] = 164318, + [SMALL_STATE(5632)] = 164326, + [SMALL_STATE(5633)] = 164334, + [SMALL_STATE(5634)] = 164342, + [SMALL_STATE(5635)] = 164350, + [SMALL_STATE(5636)] = 164358, + [SMALL_STATE(5637)] = 164366, + [SMALL_STATE(5638)] = 164374, + [SMALL_STATE(5639)] = 164382, + [SMALL_STATE(5640)] = 164390, + [SMALL_STATE(5641)] = 164398, + [SMALL_STATE(5642)] = 164406, + [SMALL_STATE(5643)] = 164414, + [SMALL_STATE(5644)] = 164422, + [SMALL_STATE(5645)] = 164432, + [SMALL_STATE(5646)] = 164440, + [SMALL_STATE(5647)] = 164448, + [SMALL_STATE(5648)] = 164456, + [SMALL_STATE(5649)] = 164464, + [SMALL_STATE(5650)] = 164472, + [SMALL_STATE(5651)] = 164480, + [SMALL_STATE(5652)] = 164488, + [SMALL_STATE(5653)] = 164496, + [SMALL_STATE(5654)] = 164504, + [SMALL_STATE(5655)] = 164512, + [SMALL_STATE(5656)] = 164520, + [SMALL_STATE(5657)] = 164528, + [SMALL_STATE(5658)] = 164536, + [SMALL_STATE(5659)] = 164544, + [SMALL_STATE(5660)] = 164552, + [SMALL_STATE(5661)] = 164560, + [SMALL_STATE(5662)] = 164568, + [SMALL_STATE(5663)] = 164576, + [SMALL_STATE(5664)] = 164584, + [SMALL_STATE(5665)] = 164592, + [SMALL_STATE(5666)] = 164600, + [SMALL_STATE(5667)] = 164608, + [SMALL_STATE(5668)] = 164616, + [SMALL_STATE(5669)] = 164624, + [SMALL_STATE(5670)] = 164632, + [SMALL_STATE(5671)] = 164640, + [SMALL_STATE(5672)] = 164648, + [SMALL_STATE(5673)] = 164656, + [SMALL_STATE(5674)] = 164664, + [SMALL_STATE(5675)] = 164672, + [SMALL_STATE(5676)] = 164680, + [SMALL_STATE(5677)] = 164688, + [SMALL_STATE(5678)] = 164696, + [SMALL_STATE(5679)] = 164704, + [SMALL_STATE(5680)] = 164712, + [SMALL_STATE(5681)] = 164720, + [SMALL_STATE(5682)] = 164728, + [SMALL_STATE(5683)] = 164736, + [SMALL_STATE(5684)] = 164744, + [SMALL_STATE(5685)] = 164752, + [SMALL_STATE(5686)] = 164760, + [SMALL_STATE(5687)] = 164768, + [SMALL_STATE(5688)] = 164776, + [SMALL_STATE(5689)] = 164784, + [SMALL_STATE(5690)] = 164792, + [SMALL_STATE(5691)] = 164800, + [SMALL_STATE(5692)] = 164808, + [SMALL_STATE(5693)] = 164816, + [SMALL_STATE(5694)] = 164824, + [SMALL_STATE(5695)] = 164832, + [SMALL_STATE(5696)] = 164840, + [SMALL_STATE(5697)] = 164848, + [SMALL_STATE(5698)] = 164856, + [SMALL_STATE(5699)] = 164864, + [SMALL_STATE(5700)] = 164872, + [SMALL_STATE(5701)] = 164880, + [SMALL_STATE(5702)] = 164888, + [SMALL_STATE(5703)] = 164896, + [SMALL_STATE(5704)] = 164904, + [SMALL_STATE(5705)] = 164912, + [SMALL_STATE(5706)] = 164920, + [SMALL_STATE(5707)] = 164930, + [SMALL_STATE(5708)] = 164938, + [SMALL_STATE(5709)] = 164946, + [SMALL_STATE(5710)] = 164954, + [SMALL_STATE(5711)] = 164962, + [SMALL_STATE(5712)] = 164970, + [SMALL_STATE(5713)] = 164978, + [SMALL_STATE(5714)] = 164986, + [SMALL_STATE(5715)] = 164994, + [SMALL_STATE(5716)] = 165002, + [SMALL_STATE(5717)] = 165010, + [SMALL_STATE(5718)] = 165018, + [SMALL_STATE(5719)] = 165026, + [SMALL_STATE(5720)] = 165034, + [SMALL_STATE(5721)] = 165042, + [SMALL_STATE(5722)] = 165050, + [SMALL_STATE(5723)] = 165058, + [SMALL_STATE(5724)] = 165066, + [SMALL_STATE(5725)] = 165074, + [SMALL_STATE(5726)] = 165082, + [SMALL_STATE(5727)] = 165090, + [SMALL_STATE(5728)] = 165098, + [SMALL_STATE(5729)] = 165106, + [SMALL_STATE(5730)] = 165114, + [SMALL_STATE(5731)] = 165122, + [SMALL_STATE(5732)] = 165130, + [SMALL_STATE(5733)] = 165138, + [SMALL_STATE(5734)] = 165146, + [SMALL_STATE(5735)] = 165154, + [SMALL_STATE(5736)] = 165162, + [SMALL_STATE(5737)] = 165170, + [SMALL_STATE(5738)] = 165178, + [SMALL_STATE(5739)] = 165186, + [SMALL_STATE(5740)] = 165194, + [SMALL_STATE(5741)] = 165202, + [SMALL_STATE(5742)] = 165210, + [SMALL_STATE(5743)] = 165218, + [SMALL_STATE(5744)] = 165226, + [SMALL_STATE(5745)] = 165234, + [SMALL_STATE(5746)] = 165242, + [SMALL_STATE(5747)] = 165250, + [SMALL_STATE(5748)] = 165258, + [SMALL_STATE(5749)] = 165266, + [SMALL_STATE(5750)] = 165274, + [SMALL_STATE(5751)] = 165282, + [SMALL_STATE(5752)] = 165290, + [SMALL_STATE(5753)] = 165298, + [SMALL_STATE(5754)] = 165306, + [SMALL_STATE(5755)] = 165314, + [SMALL_STATE(5756)] = 165322, + [SMALL_STATE(5757)] = 165330, + [SMALL_STATE(5758)] = 165338, + [SMALL_STATE(5759)] = 165346, + [SMALL_STATE(5760)] = 165356, + [SMALL_STATE(5761)] = 165364, + [SMALL_STATE(5762)] = 165372, + [SMALL_STATE(5763)] = 165382, + [SMALL_STATE(5764)] = 165390, + [SMALL_STATE(5765)] = 165398, + [SMALL_STATE(5766)] = 165406, + [SMALL_STATE(5767)] = 165414, + [SMALL_STATE(5768)] = 165422, + [SMALL_STATE(5769)] = 165430, + [SMALL_STATE(5770)] = 165438, + [SMALL_STATE(5771)] = 165446, + [SMALL_STATE(5772)] = 165454, + [SMALL_STATE(5773)] = 165462, + [SMALL_STATE(5774)] = 165470, + [SMALL_STATE(5775)] = 165478, + [SMALL_STATE(5776)] = 165486, + [SMALL_STATE(5777)] = 165494, + [SMALL_STATE(5778)] = 165502, + [SMALL_STATE(5779)] = 165510, + [SMALL_STATE(5780)] = 165518, + [SMALL_STATE(5781)] = 165526, + [SMALL_STATE(5782)] = 165534, + [SMALL_STATE(5783)] = 165542, + [SMALL_STATE(5784)] = 165550, + [SMALL_STATE(5785)] = 165558, + [SMALL_STATE(5786)] = 165566, + [SMALL_STATE(5787)] = 165574, + [SMALL_STATE(5788)] = 165582, + [SMALL_STATE(5789)] = 165590, + [SMALL_STATE(5790)] = 165598, + [SMALL_STATE(5791)] = 165606, + [SMALL_STATE(5792)] = 165614, + [SMALL_STATE(5793)] = 165622, + [SMALL_STATE(5794)] = 165630, + [SMALL_STATE(5795)] = 165638, + [SMALL_STATE(5796)] = 165646, + [SMALL_STATE(5797)] = 165656, + [SMALL_STATE(5798)] = 165664, + [SMALL_STATE(5799)] = 165672, + [SMALL_STATE(5800)] = 165680, + [SMALL_STATE(5801)] = 165688, + [SMALL_STATE(5802)] = 165696, + [SMALL_STATE(5803)] = 165704, + [SMALL_STATE(5804)] = 165712, + [SMALL_STATE(5805)] = 165720, + [SMALL_STATE(5806)] = 165728, + [SMALL_STATE(5807)] = 165736, + [SMALL_STATE(5808)] = 165744, + [SMALL_STATE(5809)] = 165752, + [SMALL_STATE(5810)] = 165760, + [SMALL_STATE(5811)] = 165768, + [SMALL_STATE(5812)] = 165776, + [SMALL_STATE(5813)] = 165784, + [SMALL_STATE(5814)] = 165792, + [SMALL_STATE(5815)] = 165800, + [SMALL_STATE(5816)] = 165808, + [SMALL_STATE(5817)] = 165816, + [SMALL_STATE(5818)] = 165824, + [SMALL_STATE(5819)] = 165832, + [SMALL_STATE(5820)] = 165840, + [SMALL_STATE(5821)] = 165848, + [SMALL_STATE(5822)] = 165856, + [SMALL_STATE(5823)] = 165864, + [SMALL_STATE(5824)] = 165872, + [SMALL_STATE(5825)] = 165880, + [SMALL_STATE(5826)] = 165888, + [SMALL_STATE(5827)] = 165896, + [SMALL_STATE(5828)] = 165904, + [SMALL_STATE(5829)] = 165912, + [SMALL_STATE(5830)] = 165920, + [SMALL_STATE(5831)] = 165928, + [SMALL_STATE(5832)] = 165936, + [SMALL_STATE(5833)] = 165944, + [SMALL_STATE(5834)] = 165952, + [SMALL_STATE(5835)] = 165960, + [SMALL_STATE(5836)] = 165968, + [SMALL_STATE(5837)] = 165976, + [SMALL_STATE(5838)] = 165984, + [SMALL_STATE(5839)] = 165992, + [SMALL_STATE(5840)] = 166000, + [SMALL_STATE(5841)] = 166008, + [SMALL_STATE(5842)] = 166016, + [SMALL_STATE(5843)] = 166024, + [SMALL_STATE(5844)] = 166032, + [SMALL_STATE(5845)] = 166040, + [SMALL_STATE(5846)] = 166048, + [SMALL_STATE(5847)] = 166056, + [SMALL_STATE(5848)] = 166064, + [SMALL_STATE(5849)] = 166072, + [SMALL_STATE(5850)] = 166080, + [SMALL_STATE(5851)] = 166088, + [SMALL_STATE(5852)] = 166096, + [SMALL_STATE(5853)] = 166104, + [SMALL_STATE(5854)] = 166112, + [SMALL_STATE(5855)] = 166120, + [SMALL_STATE(5856)] = 166128, + [SMALL_STATE(5857)] = 166136, + [SMALL_STATE(5858)] = 166144, + [SMALL_STATE(5859)] = 166152, + [SMALL_STATE(5860)] = 166160, + [SMALL_STATE(5861)] = 166168, + [SMALL_STATE(5862)] = 166176, + [SMALL_STATE(5863)] = 166184, + [SMALL_STATE(5864)] = 166192, + [SMALL_STATE(5865)] = 166200, + [SMALL_STATE(5866)] = 166208, + [SMALL_STATE(5867)] = 166216, + [SMALL_STATE(5868)] = 166226, + [SMALL_STATE(5869)] = 166234, + [SMALL_STATE(5870)] = 166242, + [SMALL_STATE(5871)] = 166250, + [SMALL_STATE(5872)] = 166258, + [SMALL_STATE(5873)] = 166266, + [SMALL_STATE(5874)] = 166274, + [SMALL_STATE(5875)] = 166284, + [SMALL_STATE(5876)] = 166292, + [SMALL_STATE(5877)] = 166300, + [SMALL_STATE(5878)] = 166308, + [SMALL_STATE(5879)] = 166316, + [SMALL_STATE(5880)] = 166324, + [SMALL_STATE(5881)] = 166332, + [SMALL_STATE(5882)] = 166340, + [SMALL_STATE(5883)] = 166348, + [SMALL_STATE(5884)] = 166356, + [SMALL_STATE(5885)] = 166364, + [SMALL_STATE(5886)] = 166372, + [SMALL_STATE(5887)] = 166380, + [SMALL_STATE(5888)] = 166388, + [SMALL_STATE(5889)] = 166396, + [SMALL_STATE(5890)] = 166404, + [SMALL_STATE(5891)] = 166412, + [SMALL_STATE(5892)] = 166420, + [SMALL_STATE(5893)] = 166428, + [SMALL_STATE(5894)] = 166436, + [SMALL_STATE(5895)] = 166444, + [SMALL_STATE(5896)] = 166452, + [SMALL_STATE(5897)] = 166460, + [SMALL_STATE(5898)] = 166468, + [SMALL_STATE(5899)] = 166476, + [SMALL_STATE(5900)] = 166484, + [SMALL_STATE(5901)] = 166492, + [SMALL_STATE(5902)] = 166500, + [SMALL_STATE(5903)] = 166508, + [SMALL_STATE(5904)] = 166516, + [SMALL_STATE(5905)] = 166524, + [SMALL_STATE(5906)] = 166532, + [SMALL_STATE(5907)] = 166540, + [SMALL_STATE(5908)] = 166548, + [SMALL_STATE(5909)] = 166556, + [SMALL_STATE(5910)] = 166564, + [SMALL_STATE(5911)] = 166572, + [SMALL_STATE(5912)] = 166580, + [SMALL_STATE(5913)] = 166588, + [SMALL_STATE(5914)] = 166596, + [SMALL_STATE(5915)] = 166606, + [SMALL_STATE(5916)] = 166614, + [SMALL_STATE(5917)] = 166622, + [SMALL_STATE(5918)] = 166630, + [SMALL_STATE(5919)] = 166638, + [SMALL_STATE(5920)] = 166646, + [SMALL_STATE(5921)] = 166654, + [SMALL_STATE(5922)] = 166662, + [SMALL_STATE(5923)] = 166670, + [SMALL_STATE(5924)] = 166678, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -274419,4781 +274648,4789 @@ 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(1269), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(520), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(448), [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(430), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(442), [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5906), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(404), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5604), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(420), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(405), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(421), [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), [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(1269), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(639), [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(1245), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5343), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5337), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5004), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(406), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5356), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5380), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4824), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4840), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5187), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5489), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5358), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4690), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5389), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5293), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5140), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(725), [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(156), [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4484), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3217), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3717), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5676), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(522), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5847), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2277), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5760), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4829), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4454), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4558), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3219), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(675), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5867), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3779), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4394), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5895), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 240), [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 240), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 88), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 88), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), [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(684), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(39), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(38), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(187), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(200), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3449), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3856), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(367), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(186), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(201), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3452), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3868), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(302), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(497), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(504), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 126), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 126), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1803] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2877), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 181), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 181), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 181), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 181), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1875] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3210), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 229), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 229), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 235), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 235), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 195), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 195), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1747] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3158), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 181), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 181), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 181), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 181), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 126), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 126), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 126), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 126), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1791] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2872), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 70), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 166), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 166), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 147), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 147), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 181), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 181), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [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(842), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 46), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 46), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 229), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 229), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 235), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 235), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 235), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 235), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [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}}, SHIFT(1148), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2720), - [2268] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(191), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(606), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [2281] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4911), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2752), + [2268] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(193), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(381), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [2281] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4779), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(191), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4911), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274), - [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_if_statement, 3, 0, 34), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 180), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 180), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 269), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 269), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 234), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 234), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 60), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 60), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(193), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4779), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 243), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 243), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 46), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 46), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 125), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 125), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 146), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 146), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 150), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 150), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), [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}}, REDUCE(sym_lexical_declaration, 3, 0, 33), [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [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_finally_clause, 2, 0, 11), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 125), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 125), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 150), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 150), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 204), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 204), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 150), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 150), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 180), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 180), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 126), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 126), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 189), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 189), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 60), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 60), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 193), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 193), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 147), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 147), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [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_module, 2, 0, 6), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 150), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 150), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 204), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 204), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 166), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 166), [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 181), [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 181), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 146), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 146), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 150), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 150), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 60), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 60), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 234), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 234), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 150), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 150), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 203), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 203), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 273), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 273), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 241), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 241), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 60), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 60), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 234), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 234), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), + [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_abstract_class_declaration, 6, 0, 236), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 269), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 269), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 234), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 234), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 235), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 235), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 68), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 68), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 69), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 69), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 273), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 273), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 241), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 241), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 203), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 203), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 73), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 73), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 191), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 191), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 73), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 73), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(557), - [3459] = {.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), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5775), - [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(952), - [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5309), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5718), - [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(988), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(408), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3235), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4623), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(245), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3560] = {.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), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3578] = {.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), - [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(370), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(499), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1433), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1739), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3157), - [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2765), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), - [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1407), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(358), - [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4440), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4443), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2350), - [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5679), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2980), - [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5053), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1658), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2121), - [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2429), - [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1661), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1891), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2441), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2684), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2768), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1763), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1886), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2024), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2407), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3955] = {.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), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 144), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 144), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(375), + [3457] = {.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), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5556), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1059), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5669), + [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1056), + [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5507), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [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 = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(232), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3957), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3244), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3572] = {.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), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3580] = {.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), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(303), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), + [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(506), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1434), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1819), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3183), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2731), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1409), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(370), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4438), + [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4440), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2214), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5776), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2955), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4085), + [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1733), + [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2018), + [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2399), + [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1755), + [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1942), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2391), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2675), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2748), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1653), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1664), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2392), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1977), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [3959] = {.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), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 50), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 117), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 117), - [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(5228), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(153), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 52), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 52), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [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(918), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 53), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 53), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 65), - [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 = true}}, SHIFT(5177), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 114), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 114), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 115), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 115), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 116), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 116), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 129), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 118), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 118), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 174), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 174), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 116), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 116), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 228), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 228), - [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 267), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 267), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 300), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 300), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 320), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 320), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 15), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 15), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 190), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 67), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), REDUCE(sym_assignment_expression, 3, 0, 65), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), - [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 65), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), - [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_regex, 4, 0, 130), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 130), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 122), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 122), - [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 145), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 145), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5203), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(151), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 179), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 179), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 196), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 196), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [4800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(146), - [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 16), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 16), - [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 75), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 75), - [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 122), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 122), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 127), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 127), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), - [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), - [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(437), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 17), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 17), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 50), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 117), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 117), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 129), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 173), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 174), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 174), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(144), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 227), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 227), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 116), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 116), + [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(144), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 228), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 228), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(144), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 267), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 267), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 65), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 66), + [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 300), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 300), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 67), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 320), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 320), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(144), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 52), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 52), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 77), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 67), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 192), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 192), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 53), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 53), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 124), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 114), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 114), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 190), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 115), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 115), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 116), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 116), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 15), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 15), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 118), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 118), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), REDUCE(sym_nested_type_identifier, 3, 0, 173), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), REDUCE(sym_assignment_expression, 3, 0, 65), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(451), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), + [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(153), + [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 16), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 16), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(148), + [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(148), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(148), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(148), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 75), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 75), + [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 76), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 76), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 77), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), + [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 122), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 122), + [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 124), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 122), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 122), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 127), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 127), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 130), + [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 130), + [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 45), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 45), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5300), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), + [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 179), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 179), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 145), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 145), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 66), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 196), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 196), + [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 65), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 65), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5007] = {.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), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5019] = {.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), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(150), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 47), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), - [5067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), - [5070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5104] = {.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), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [5221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(148), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [5252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(148), - [5255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(148), - [5258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(148), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), REDUCE(sym__parameter_name, 2, 0, 37), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(147), - [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(147), - [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(147), - [5323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(147), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(531), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5500] = {.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), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(145), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [5631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), - [5634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), - [5637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(154), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 47), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 65), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5003] = {.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), + [5007] = {.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), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(150), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), + [5077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), + [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5215] = {.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), + [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(147), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(147), + [5235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(147), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(147), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), REDUCE(sym__parameter_name, 2, 0, 37), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(149), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), + [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), + [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), + [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), + [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(544), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5404] = {.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), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), + [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 157), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 157), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(146), + [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), + [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), + [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), + [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 205), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 205), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(154), + [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154), [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154), [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154), - [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [5743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), - [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), - [5749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(149), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 238), - [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 238), - [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 181), - [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 181), - [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), - [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), - [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 200), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 200), - [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 229), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 229), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 271), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 271), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), + [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), + [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(145), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), + [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), + [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), + [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), + [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 271), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 271), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 181), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 181), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 238), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 238), [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2617), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 153), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 153), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 321), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 321), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 322), - [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 322), - [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 126), - [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 126), - [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 337), - [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 337), - [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 301), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 301), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(2623), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 302), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 302), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), + [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2630), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 229), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 229), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), + [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 126), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 126), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 200), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 200), + [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(2628), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 301), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 301), + [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 302), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 302), + [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 321), + [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 321), + [5971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 322), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 322), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 337), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 337), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 153), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 153), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), + [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5053), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), SHIFT(3847), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 60), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4085), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), SHIFT(3903), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 60), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 60), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 214), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), - [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 163), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 60), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 214), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 60), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 60), + [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253), + [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 60), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 163), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 158), + [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 214), [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 216), - [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 60), - [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259), - [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 158), - [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253), - [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 158), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 214), - [6662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [6665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3791), - [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), - [6671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [6673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5309), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3512), - [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(277), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), - [6985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3512), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 125), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 162), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [7230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(557), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 330), - [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 168), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 206), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 180), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), - [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 224), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [7277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(408), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244), - [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 339), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 158), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3794), + [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), + [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [6679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3796), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5507), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3659), + [6950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(270), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), + [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3659), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 303), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 304), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), + [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 330), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), + [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 339), + [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 125), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 162), + [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 168), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [7288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279), + [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(375), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), + [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 224), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 303), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 304), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [7408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3762), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 138), - [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), - [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(565), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 184), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [7555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4837), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [7594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [7626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5629), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(327), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [7656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), - [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), - [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1062), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(896), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 295), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), - [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), - [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 306), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 307), - [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(908), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(973), - [7793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(899), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(977), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), - [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(951), - [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 323), - [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 324), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), - [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [7893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 336), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), - [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1043), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 207), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 309), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 208), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 342), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 160), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [7956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(906), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(960), - [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(909), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(969), - [7976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252), - [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(894), - [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), - [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), SHIFT_REPEAT(354), - [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), - [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), SHIFT_REPEAT(4542), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 60), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4474), - [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4475), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [8255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4535), - [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [8260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4535), - [8263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4536), - [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [8268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4536), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 48), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [8316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [8364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), - [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2218), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 125), - [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 303), - [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 48), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), - [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 60), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), - [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), - [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 343), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 180), - [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 206), - [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 344), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 221), - [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [8731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(5057), - [8771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), SHIFT_REPEAT(2703), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), - [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 239), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), - [8792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4786), - [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244), - [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [8817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2470), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [8836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(499), - [8839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 198), - [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 201), - [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 60), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), - [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 151), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 182), - [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 151), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 156), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [9271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [9459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [9635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [9739] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), + [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 206), + [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 180), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), + [7394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 138), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), + [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4394), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 184), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [7665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(994), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(908), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), + [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(899), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(960), + [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(895), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 295), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), + [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(965), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(897), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 306), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 307), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [7850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), + [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 323), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 324), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(940), + [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 336), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1031), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 207), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 208), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 309), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 342), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(905), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1010), + [7999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(906), + [8002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1014), + [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 160), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252), + [8017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), + [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [8029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 188), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 188), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 48), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [8168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4488), + [8171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4488), + [8176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4490), + [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [8181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4490), + [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4493), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), + [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), SHIFT_REPEAT(307), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [8254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), + [8256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), SHIFT_REPEAT(4469), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 60), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 239), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3717), + [8316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [8400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), + [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 60), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2466), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), + [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4723), + [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 125), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 48), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [8697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4887), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), + [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), + [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 180), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 206), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 343), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 221), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 344), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 303), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [8809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), SHIFT_REPEAT(2716), + [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), + [8860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(506), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 182), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [8889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 156), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 198), + [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 201), + [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 60), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 151), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [9185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 151), + [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [9447] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [9627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), }; enum ts_external_scanner_symbol_identifiers { diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 15b49f66..519eba76 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -784,8 +784,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "with" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "assert" + } + ] }, { "type": "SYMBOL", @@ -6445,6 +6454,15 @@ }, "named": true, "value": "call_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_parenthesized_expression" + }, + "named": true, + "value": "parenthesized_expression" } ] } @@ -7828,6 +7846,46 @@ } ] }, + "decorator_parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "type_assertion": { "type": "PREC_LEFT", "value": "unary", diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 09301d8b..5cb6f04f 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -1725,6 +1725,10 @@ { "type": "member_expression", "named": true + }, + { + "type": "parenthesized_expression", + "named": true } ] } @@ -4395,10 +4399,22 @@ "multiple": false, "required": true, "types": [ + { + "type": "call_expression", + "named": true + }, { "type": "expression", "named": true }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, { "type": "sequence_expression", "named": true @@ -5898,6 +5914,10 @@ "type": "as", "named": false }, + { + "type": "assert", + "named": false + }, { "type": "asserts", "named": false @@ -6092,11 +6112,11 @@ }, { "type": "number", - "named": true + "named": false }, { "type": "number", - "named": false + "named": true }, { "type": "object", diff --git a/typescript/src/parser.c b/typescript/src/parser.c index ad3d2ee7..de93596a 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -5,11 +5,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5822 +#define STATE_COUNT 5830 #define LARGE_STATE_COUNT 1168 -#define SYMBOL_COUNT 377 +#define SYMBOL_COUNT 379 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 166 +#define TOKEN_COUNT 167 #define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -32,373 +32,375 @@ enum ts_symbol_identifiers { anon_sym_import = 14, anon_sym_from = 15, anon_sym_with = 16, - anon_sym_var = 17, - anon_sym_let = 18, - anon_sym_const = 19, - anon_sym_BANG = 20, - anon_sym_else = 21, - anon_sym_if = 22, - anon_sym_switch = 23, - anon_sym_for = 24, - anon_sym_LPAREN = 25, - anon_sym_RPAREN = 26, - anon_sym_await = 27, - anon_sym_in = 28, - anon_sym_of = 29, - anon_sym_while = 30, - anon_sym_do = 31, - anon_sym_try = 32, - anon_sym_break = 33, - anon_sym_continue = 34, - anon_sym_debugger = 35, - anon_sym_return = 36, - anon_sym_throw = 37, - anon_sym_SEMI = 38, - anon_sym_COLON = 39, - anon_sym_case = 40, - anon_sym_catch = 41, - anon_sym_finally = 42, - anon_sym_yield = 43, - anon_sym_LBRACK = 44, - anon_sym_RBRACK = 45, - sym__glimmer_template_content = 46, - sym_glimmer_opening_tag = 47, - sym_glimmer_closing_tag = 48, - anon_sym_GT = 49, - anon_sym_DOT = 50, - anon_sym_DQUOTE = 51, - anon_sym_SQUOTE = 52, - anon_sym_class = 53, - anon_sym_async = 54, - anon_sym_function = 55, - anon_sym_EQ_GT = 56, - anon_sym_QMARK_DOT = 57, - anon_sym_new = 58, - anon_sym_using = 59, - anon_sym_PLUS_EQ = 60, - anon_sym_DASH_EQ = 61, - anon_sym_STAR_EQ = 62, - anon_sym_SLASH_EQ = 63, - anon_sym_PERCENT_EQ = 64, - anon_sym_CARET_EQ = 65, - anon_sym_AMP_EQ = 66, - anon_sym_PIPE_EQ = 67, - anon_sym_GT_GT_EQ = 68, - anon_sym_GT_GT_GT_EQ = 69, - anon_sym_LT_LT_EQ = 70, - anon_sym_STAR_STAR_EQ = 71, - anon_sym_AMP_AMP_EQ = 72, - anon_sym_PIPE_PIPE_EQ = 73, - anon_sym_QMARK_QMARK_EQ = 74, - anon_sym_DOT_DOT_DOT = 75, - anon_sym_AMP_AMP = 76, - anon_sym_PIPE_PIPE = 77, - anon_sym_GT_GT = 78, - anon_sym_GT_GT_GT = 79, - anon_sym_LT_LT = 80, - anon_sym_AMP = 81, - anon_sym_CARET = 82, - anon_sym_PIPE = 83, - anon_sym_PLUS = 84, - anon_sym_DASH = 85, - anon_sym_SLASH = 86, - anon_sym_PERCENT = 87, - anon_sym_STAR_STAR = 88, - anon_sym_LT = 89, - anon_sym_LT_EQ = 90, - anon_sym_EQ_EQ = 91, - anon_sym_EQ_EQ_EQ = 92, - anon_sym_BANG_EQ = 93, - anon_sym_BANG_EQ_EQ = 94, - anon_sym_GT_EQ = 95, - anon_sym_QMARK_QMARK = 96, - anon_sym_instanceof = 97, - anon_sym_TILDE = 98, - anon_sym_void = 99, - anon_sym_delete = 100, - anon_sym_PLUS_PLUS = 101, - anon_sym_DASH_DASH = 102, - sym_unescaped_double_string_fragment = 103, - sym_unescaped_single_string_fragment = 104, - sym_escape_sequence = 105, - sym_comment = 106, - anon_sym_BQUOTE = 107, - anon_sym_DOLLAR_LBRACE = 108, - anon_sym_SLASH2 = 109, - sym_regex_pattern = 110, - sym_regex_flags = 111, - sym_number = 112, - sym_private_property_identifier = 113, - anon_sym_target = 114, - sym_this = 115, - sym_super = 116, - sym_true = 117, - sym_false = 118, - sym_null = 119, - sym_undefined = 120, - anon_sym_AT = 121, - anon_sym_static = 122, - anon_sym_readonly = 123, - anon_sym_get = 124, - anon_sym_set = 125, - anon_sym_QMARK = 126, - anon_sym_declare = 127, - anon_sym_public = 128, - anon_sym_private = 129, - anon_sym_protected = 130, - anon_sym_override = 131, - anon_sym_module = 132, - anon_sym_any = 133, - anon_sym_number = 134, - anon_sym_boolean = 135, - anon_sym_string = 136, - anon_sym_symbol = 137, - anon_sym_object = 138, - anon_sym_abstract = 139, - anon_sym_accessor = 140, - anon_sym_satisfies = 141, - anon_sym_require = 142, - anon_sym_extends = 143, - anon_sym_implements = 144, - anon_sym_global = 145, - anon_sym_interface = 146, - anon_sym_enum = 147, - anon_sym_DASH_QMARK_COLON = 148, - anon_sym_PLUS_QMARK_COLON = 149, - anon_sym_QMARK_COLON = 150, - anon_sym_asserts = 151, - anon_sym_infer = 152, - anon_sym_is = 153, - anon_sym_keyof = 154, - anon_sym_unique = 155, - anon_sym_unknown = 156, - anon_sym_never = 157, - anon_sym_LBRACE_PIPE = 158, - anon_sym_PIPE_RBRACE = 159, - sym__automatic_semicolon = 160, - sym__template_chars = 161, - sym__ternary_qmark = 162, - sym_html_comment = 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_glimmer_template = 219, - sym_nested_identifier = 220, - sym_class = 221, - sym_class_declaration = 222, - sym_class_heritage = 223, - sym_function_expression = 224, - sym_function_declaration = 225, - sym_generator_function = 226, - sym_generator_function_declaration = 227, - sym_arrow_function = 228, - sym__call_signature = 229, - sym__formal_parameter = 230, - sym_optional_chain = 231, - sym_call_expression = 232, - sym_new_expression = 233, - sym_await_expression = 234, - sym_member_expression = 235, - sym_subscript_expression = 236, - sym_assignment_expression = 237, - sym__augmented_assignment_lhs = 238, - sym_augmented_assignment_expression = 239, - sym__initializer = 240, - sym__destructuring_pattern = 241, - sym_spread_element = 242, - sym_ternary_expression = 243, - sym_binary_expression = 244, - sym_unary_expression = 245, - sym_update_expression = 246, - sym_sequence_expression = 247, - sym_string = 248, - sym_template_string = 249, - sym_template_substitution = 250, - sym_regex = 251, - sym_meta_property = 252, - sym_arguments = 253, - sym_decorator = 254, - sym_decorator_member_expression = 255, - sym_decorator_call_expression = 256, - sym_class_body = 257, - sym_formal_parameters = 258, - sym_class_static_block = 259, - sym_pattern = 260, - sym_rest_pattern = 261, - sym_method_definition = 262, - sym_pair = 263, - sym_pair_pattern = 264, - sym__property_name = 265, - sym_computed_property_name = 266, - sym_public_field_definition = 267, - sym__import_identifier = 268, - sym_non_null_expression = 269, - sym_method_signature = 270, - sym_abstract_method_signature = 271, - sym_function_signature = 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_glimmer_template_repeat1 = 362, - aux_sym_sequence_expression_repeat1 = 363, - aux_sym_string_repeat1 = 364, - aux_sym_string_repeat2 = 365, - aux_sym_template_string_repeat1 = 366, - aux_sym_class_body_repeat1 = 367, - aux_sym_formal_parameters_repeat1 = 368, - aux_sym_extends_clause_repeat1 = 369, - aux_sym_implements_clause_repeat1 = 370, - aux_sym_extends_type_clause_repeat1 = 371, - aux_sym_enum_body_repeat1 = 372, - aux_sym_template_literal_type_repeat1 = 373, - aux_sym_object_type_repeat1 = 374, - aux_sym_type_parameters_repeat1 = 375, - aux_sym_tuple_type_repeat1 = 376, - alias_sym_interface_body = 377, - alias_sym_property_identifier = 378, - alias_sym_shorthand_property_identifier = 379, - alias_sym_shorthand_property_identifier_pattern = 380, - alias_sym_statement_identifier = 381, - alias_sym_this_type = 382, - alias_sym_type_identifier = 383, + anon_sym_assert = 17, + anon_sym_var = 18, + anon_sym_let = 19, + anon_sym_const = 20, + anon_sym_BANG = 21, + anon_sym_else = 22, + anon_sym_if = 23, + anon_sym_switch = 24, + anon_sym_for = 25, + anon_sym_LPAREN = 26, + anon_sym_RPAREN = 27, + anon_sym_await = 28, + anon_sym_in = 29, + anon_sym_of = 30, + anon_sym_while = 31, + anon_sym_do = 32, + anon_sym_try = 33, + anon_sym_break = 34, + anon_sym_continue = 35, + anon_sym_debugger = 36, + anon_sym_return = 37, + anon_sym_throw = 38, + anon_sym_SEMI = 39, + anon_sym_COLON = 40, + anon_sym_case = 41, + anon_sym_catch = 42, + anon_sym_finally = 43, + 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_GT = 50, + anon_sym_DOT = 51, + anon_sym_DQUOTE = 52, + anon_sym_SQUOTE = 53, + anon_sym_class = 54, + anon_sym_async = 55, + anon_sym_function = 56, + anon_sym_EQ_GT = 57, + anon_sym_QMARK_DOT = 58, + anon_sym_new = 59, + anon_sym_using = 60, + anon_sym_PLUS_EQ = 61, + anon_sym_DASH_EQ = 62, + anon_sym_STAR_EQ = 63, + anon_sym_SLASH_EQ = 64, + anon_sym_PERCENT_EQ = 65, + anon_sym_CARET_EQ = 66, + anon_sym_AMP_EQ = 67, + anon_sym_PIPE_EQ = 68, + anon_sym_GT_GT_EQ = 69, + anon_sym_GT_GT_GT_EQ = 70, + anon_sym_LT_LT_EQ = 71, + anon_sym_STAR_STAR_EQ = 72, + anon_sym_AMP_AMP_EQ = 73, + anon_sym_PIPE_PIPE_EQ = 74, + anon_sym_QMARK_QMARK_EQ = 75, + anon_sym_DOT_DOT_DOT = 76, + anon_sym_AMP_AMP = 77, + anon_sym_PIPE_PIPE = 78, + anon_sym_GT_GT = 79, + anon_sym_GT_GT_GT = 80, + anon_sym_LT_LT = 81, + anon_sym_AMP = 82, + anon_sym_CARET = 83, + anon_sym_PIPE = 84, + anon_sym_PLUS = 85, + anon_sym_DASH = 86, + anon_sym_SLASH = 87, + anon_sym_PERCENT = 88, + anon_sym_STAR_STAR = 89, + anon_sym_LT = 90, + anon_sym_LT_EQ = 91, + anon_sym_EQ_EQ = 92, + anon_sym_EQ_EQ_EQ = 93, + anon_sym_BANG_EQ = 94, + anon_sym_BANG_EQ_EQ = 95, + anon_sym_GT_EQ = 96, + anon_sym_QMARK_QMARK = 97, + anon_sym_instanceof = 98, + anon_sym_TILDE = 99, + anon_sym_void = 100, + anon_sym_delete = 101, + anon_sym_PLUS_PLUS = 102, + anon_sym_DASH_DASH = 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, + sym_this = 116, + sym_super = 117, + sym_true = 118, + sym_false = 119, + sym_null = 120, + sym_undefined = 121, + anon_sym_AT = 122, + anon_sym_static = 123, + anon_sym_readonly = 124, + anon_sym_get = 125, + anon_sym_set = 126, + anon_sym_QMARK = 127, + anon_sym_declare = 128, + anon_sym_public = 129, + anon_sym_private = 130, + anon_sym_protected = 131, + anon_sym_override = 132, + anon_sym_module = 133, + anon_sym_any = 134, + anon_sym_number = 135, + anon_sym_boolean = 136, + anon_sym_string = 137, + anon_sym_symbol = 138, + anon_sym_object = 139, + anon_sym_abstract = 140, + anon_sym_accessor = 141, + anon_sym_satisfies = 142, + anon_sym_require = 143, + anon_sym_extends = 144, + anon_sym_implements = 145, + anon_sym_global = 146, + anon_sym_interface = 147, + anon_sym_enum = 148, + anon_sym_DASH_QMARK_COLON = 149, + anon_sym_PLUS_QMARK_COLON = 150, + anon_sym_QMARK_COLON = 151, + anon_sym_asserts = 152, + anon_sym_infer = 153, + anon_sym_is = 154, + anon_sym_keyof = 155, + anon_sym_unique = 156, + anon_sym_unknown = 157, + anon_sym_never = 158, + anon_sym_LBRACE_PIPE = 159, + anon_sym_PIPE_RBRACE = 160, + sym__automatic_semicolon = 161, + sym__template_chars = 162, + sym__ternary_qmark = 163, + sym_html_comment = 164, + sym__function_signature_automatic_semicolon = 165, + sym___error_recovery = 166, + sym_program = 167, + sym_export_statement = 168, + sym_namespace_export = 169, + sym_export_clause = 170, + sym_export_specifier = 171, + sym__module_export_name = 172, + sym_declaration = 173, + sym_import = 174, + sym_import_statement = 175, + sym_import_clause = 176, + sym__from_clause = 177, + sym_namespace_import = 178, + sym_named_imports = 179, + sym_import_specifier = 180, + sym_import_attribute = 181, + sym_statement = 182, + sym_expression_statement = 183, + sym_variable_declaration = 184, + sym_lexical_declaration = 185, + sym_variable_declarator = 186, + sym_statement_block = 187, + sym_else_clause = 188, + sym_if_statement = 189, + sym_switch_statement = 190, + sym_for_statement = 191, + sym_for_in_statement = 192, + sym__for_header = 193, + sym_while_statement = 194, + sym_do_statement = 195, + sym_try_statement = 196, + sym_with_statement = 197, + sym_break_statement = 198, + sym_continue_statement = 199, + sym_debugger_statement = 200, + sym_return_statement = 201, + sym_throw_statement = 202, + sym_empty_statement = 203, + sym_labeled_statement = 204, + sym_switch_body = 205, + sym_switch_case = 206, + sym_switch_default = 207, + sym_catch_clause = 208, + sym_finally_clause = 209, + sym_parenthesized_expression = 210, + sym_expression = 211, + sym_primary_expression = 212, + sym_yield_expression = 213, + sym_object = 214, + sym_object_pattern = 215, + sym_assignment_pattern = 216, + sym_object_assignment_pattern = 217, + sym_array = 218, + sym_array_pattern = 219, + sym_glimmer_template = 220, + sym_nested_identifier = 221, + sym_class = 222, + sym_class_declaration = 223, + sym_class_heritage = 224, + sym_function_expression = 225, + sym_function_declaration = 226, + sym_generator_function = 227, + sym_generator_function_declaration = 228, + sym_arrow_function = 229, + sym__call_signature = 230, + sym__formal_parameter = 231, + sym_optional_chain = 232, + sym_call_expression = 233, + sym_new_expression = 234, + sym_await_expression = 235, + sym_member_expression = 236, + sym_subscript_expression = 237, + sym_assignment_expression = 238, + sym__augmented_assignment_lhs = 239, + sym_augmented_assignment_expression = 240, + sym__initializer = 241, + sym__destructuring_pattern = 242, + sym_spread_element = 243, + sym_ternary_expression = 244, + sym_binary_expression = 245, + sym_unary_expression = 246, + sym_update_expression = 247, + sym_sequence_expression = 248, + sym_string = 249, + sym_template_string = 250, + sym_template_substitution = 251, + sym_regex = 252, + sym_meta_property = 253, + sym_arguments = 254, + sym_decorator = 255, + sym_decorator_member_expression = 256, + sym_decorator_call_expression = 257, + sym_class_body = 258, + sym_formal_parameters = 259, + sym_class_static_block = 260, + sym_pattern = 261, + sym_rest_pattern = 262, + sym_method_definition = 263, + sym_pair = 264, + sym_pair_pattern = 265, + sym__property_name = 266, + sym_computed_property_name = 267, + sym_public_field_definition = 268, + sym__import_identifier = 269, + sym_non_null_expression = 270, + sym_method_signature = 271, + sym_abstract_method_signature = 272, + sym_function_signature = 273, + sym_decorator_parenthesized_expression = 274, + sym_type_assertion = 275, + sym_as_expression = 276, + sym_satisfies_expression = 277, + sym_instantiation_expression = 278, + sym_import_require_clause = 279, + sym_extends_clause = 280, + sym__extends_clause_single = 281, + sym_implements_clause = 282, + sym_ambient_declaration = 283, + sym_abstract_class_declaration = 284, + sym_module = 285, + sym_internal_module = 286, + sym__module = 287, + sym_import_alias = 288, + sym_nested_type_identifier = 289, + sym_interface_declaration = 290, + sym_extends_type_clause = 291, + sym_enum_declaration = 292, + sym_enum_body = 293, + sym_enum_assignment = 294, + sym_type_alias_declaration = 295, + sym_accessibility_modifier = 296, + sym_override_modifier = 297, + sym_required_parameter = 298, + sym_optional_parameter = 299, + sym__parameter_name = 300, + sym_omitting_type_annotation = 301, + sym_adding_type_annotation = 302, + sym_opting_type_annotation = 303, + sym_type_annotation = 304, + sym__type_query_member_expression_in_type_annotation = 305, + sym__type_query_call_expression_in_type_annotation = 306, + sym_asserts = 307, + sym_asserts_annotation = 308, + sym_type = 309, + sym_tuple_parameter = 310, + sym_optional_tuple_parameter = 311, + sym_optional_type = 312, + sym_rest_type = 313, + sym__tuple_type_member = 314, + sym_constructor_type = 315, + sym_primary_type = 316, + sym_template_type = 317, + sym_template_literal_type = 318, + sym_infer_type = 319, + sym_conditional_type = 320, + sym_generic_type = 321, + sym_type_predicate = 322, + sym_type_predicate_annotation = 323, + sym__type_query_member_expression = 324, + sym__type_query_subscript_expression = 325, + sym__type_query_call_expression = 326, + sym__type_query_instantiation_expression = 327, + sym_type_query = 328, + sym_index_type_query = 329, + sym_lookup_type = 330, + sym_mapped_type_clause = 331, + sym_literal_type = 332, + sym__number = 333, + sym_existential_type = 334, + sym_flow_maybe_type = 335, + sym_parenthesized_type = 336, + sym_predefined_type = 337, + sym_type_arguments = 338, + sym_object_type = 339, + sym_call_signature = 340, + sym_property_signature = 341, + sym_type_parameters = 342, + sym_type_parameter = 343, + sym_default_type = 344, + sym_constraint = 345, + sym_construct_signature = 346, + sym_index_signature = 347, + sym_array_type = 348, + sym_tuple_type = 349, + sym_readonly_type = 350, + sym_union_type = 351, + sym_intersection_type = 352, + sym_function_type = 353, + aux_sym_program_repeat1 = 354, + aux_sym_export_statement_repeat1 = 355, + aux_sym_export_clause_repeat1 = 356, + aux_sym_named_imports_repeat1 = 357, + aux_sym_variable_declaration_repeat1 = 358, + aux_sym_switch_body_repeat1 = 359, + aux_sym_object_repeat1 = 360, + aux_sym_object_pattern_repeat1 = 361, + aux_sym_array_repeat1 = 362, + aux_sym_array_pattern_repeat1 = 363, + aux_sym_glimmer_template_repeat1 = 364, + aux_sym_sequence_expression_repeat1 = 365, + aux_sym_string_repeat1 = 366, + aux_sym_string_repeat2 = 367, + aux_sym_template_string_repeat1 = 368, + aux_sym_class_body_repeat1 = 369, + aux_sym_formal_parameters_repeat1 = 370, + aux_sym_extends_clause_repeat1 = 371, + aux_sym_implements_clause_repeat1 = 372, + aux_sym_extends_type_clause_repeat1 = 373, + aux_sym_enum_body_repeat1 = 374, + aux_sym_template_literal_type_repeat1 = 375, + aux_sym_object_type_repeat1 = 376, + aux_sym_type_parameters_repeat1 = 377, + aux_sym_tuple_type_repeat1 = 378, + alias_sym_interface_body = 379, + alias_sym_property_identifier = 380, + alias_sym_shorthand_property_identifier = 381, + alias_sym_shorthand_property_identifier_pattern = 382, + alias_sym_statement_identifier = 383, + alias_sym_this_type = 384, + alias_sym_type_identifier = 385, }; static const char * const ts_symbol_names[] = { @@ -419,6 +421,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_import] = "import", [anon_sym_from] = "from", [anon_sym_with] = "with", + [anon_sym_assert] = "assert", [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", @@ -675,6 +678,7 @@ static const char * const ts_symbol_names[] = { [sym_method_signature] = "method_signature", [sym_abstract_method_signature] = "abstract_method_signature", [sym_function_signature] = "function_signature", + [sym_decorator_parenthesized_expression] = "parenthesized_expression", [sym_type_assertion] = "type_assertion", [sym_as_expression] = "as_expression", [sym_satisfies_expression] = "satisfies_expression", @@ -806,6 +810,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_import] = anon_sym_import, [anon_sym_from] = anon_sym_from, [anon_sym_with] = anon_sym_with, + [anon_sym_assert] = anon_sym_assert, [anon_sym_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, @@ -1062,6 +1067,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_method_signature] = sym_method_signature, [sym_abstract_method_signature] = sym_abstract_method_signature, [sym_function_signature] = sym_function_signature, + [sym_decorator_parenthesized_expression] = sym_parenthesized_expression, [sym_type_assertion] = sym_type_assertion, [sym_as_expression] = sym_as_expression, [sym_satisfies_expression] = sym_satisfies_expression, @@ -1244,6 +1250,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_assert] = { + .visible = true, + .named = false, + }, [anon_sym_var] = { .visible = true, .named = false, @@ -2273,6 +2283,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_decorator_parenthesized_expression] = { + .visible = true, + .named = true, + }, [sym_type_assertion] = { .visible = true, .named = true, @@ -4470,107 +4484,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 16, [17] = 17, [18] = 14, - [19] = 16, + [19] = 19, [20] = 14, - [21] = 16, - [22] = 16, + [21] = 17, + [22] = 14, [23] = 14, - [24] = 14, - [25] = 16, + [24] = 17, + [25] = 17, [26] = 14, - [27] = 16, - [28] = 16, - [29] = 14, - [30] = 30, + [27] = 17, + [28] = 14, + [29] = 17, + [30] = 17, [31] = 31, [32] = 32, [33] = 33, [34] = 34, [35] = 35, - [36] = 32, + [36] = 36, [37] = 37, [38] = 38, - [39] = 31, - [40] = 37, + [39] = 39, + [40] = 39, [41] = 34, - [42] = 42, - [43] = 33, - [44] = 34, - [45] = 34, + [42] = 35, + [43] = 37, + [44] = 38, + [45] = 32, [46] = 46, - [47] = 38, - [48] = 35, - [49] = 34, - [50] = 50, - [51] = 51, - [52] = 34, - [53] = 42, - [54] = 34, - [55] = 34, - [56] = 34, - [57] = 34, - [58] = 46, - [59] = 50, + [47] = 33, + [48] = 36, + [49] = 31, + [50] = 32, + [51] = 32, + [52] = 32, + [53] = 46, + [54] = 32, + [55] = 32, + [56] = 32, + [57] = 32, + [58] = 32, + [59] = 59, [60] = 60, [61] = 60, [62] = 60, [63] = 63, - [64] = 64, - [65] = 63, + [64] = 63, + [65] = 65, [66] = 66, - [67] = 64, - [68] = 68, + [67] = 67, + [68] = 65, [69] = 69, [70] = 70, [71] = 71, [72] = 72, - [73] = 64, + [73] = 65, [74] = 74, [75] = 75, - [76] = 76, - [77] = 74, - [78] = 74, - [79] = 74, - [80] = 74, + [76] = 75, + [77] = 77, + [78] = 75, + [79] = 75, + [80] = 75, [81] = 81, - [82] = 75, - [83] = 83, + [82] = 82, + [83] = 81, [84] = 84, - [85] = 85, - [86] = 86, - [87] = 86, - [88] = 81, - [89] = 83, - [90] = 81, + [85] = 81, + [86] = 77, + [87] = 82, + [88] = 88, + [89] = 89, + [90] = 82, [91] = 81, [92] = 81, - [93] = 84, - [94] = 84, - [95] = 81, - [96] = 76, - [97] = 97, - [98] = 98, - [99] = 81, - [100] = 81, - [101] = 84, - [102] = 75, - [103] = 81, - [104] = 86, - [105] = 84, - [106] = 75, + [93] = 89, + [94] = 81, + [95] = 84, + [96] = 74, + [97] = 81, + [98] = 81, + [99] = 99, + [100] = 100, + [101] = 82, + [102] = 77, + [103] = 103, + [104] = 82, + [105] = 89, + [106] = 89, [107] = 81, - [108] = 108, - [109] = 81, - [110] = 86, - [111] = 111, - [112] = 84, + [108] = 77, + [109] = 109, + [110] = 82, + [111] = 81, + [112] = 81, [113] = 81, - [114] = 98, - [115] = 85, - [116] = 81, - [117] = 84, - [118] = 84, - [119] = 84, + [114] = 99, + [115] = 82, + [116] = 82, + [117] = 82, + [118] = 88, + [119] = 81, [120] = 81, [121] = 81, [122] = 81, @@ -4578,28 +4592,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [124] = 81, [125] = 125, [126] = 125, - [127] = 84, - [128] = 81, + [127] = 127, + [128] = 125, [129] = 125, [130] = 125, - [131] = 125, + [131] = 82, [132] = 125, [133] = 125, - [134] = 134, + [134] = 125, [135] = 125, - [136] = 125, + [136] = 81, [137] = 125, [138] = 138, [139] = 139, - [140] = 139, + [140] = 140, [141] = 139, [142] = 139, - [143] = 143, + [143] = 139, [144] = 139, [145] = 139, [146] = 139, - [147] = 139, - [148] = 148, + [147] = 147, + [148] = 139, [149] = 139, [150] = 139, [151] = 151, @@ -4614,20 +4628,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [160] = 151, [161] = 161, [162] = 162, - [163] = 162, - [164] = 161, - [165] = 161, - [166] = 166, - [167] = 166, - [168] = 166, + [163] = 163, + [164] = 162, + [165] = 163, + [166] = 161, + [167] = 163, + [168] = 161, [169] = 162, [170] = 170, [171] = 162, [172] = 172, [173] = 162, [174] = 172, - [175] = 162, - [176] = 172, + [175] = 172, + [176] = 162, [177] = 162, [178] = 162, [179] = 162, @@ -4636,26 +4650,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [182] = 182, [183] = 182, [184] = 184, - [185] = 184, + [185] = 185, [186] = 186, - [187] = 186, - [188] = 188, + [187] = 185, + [188] = 186, [189] = 184, - [190] = 188, - [191] = 188, - [192] = 186, + [190] = 186, + [191] = 184, + [192] = 185, [193] = 193, [194] = 194, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 195, - [199] = 195, - [200] = 195, - [201] = 201, - [202] = 195, - [203] = 195, - [204] = 195, + [195] = 193, + [196] = 193, + [197] = 193, + [198] = 198, + [199] = 193, + [200] = 200, + [201] = 193, + [202] = 193, + [203] = 203, + [204] = 204, [205] = 205, [206] = 206, [207] = 207, @@ -4666,13 +4680,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [212] = 212, [213] = 213, [214] = 214, - [215] = 215, + [215] = 206, [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 221, + [221] = 217, [222] = 222, [223] = 223, [224] = 224, @@ -4682,73 +4696,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [228] = 228, [229] = 229, [230] = 230, - [231] = 213, + [231] = 231, [232] = 232, [233] = 233, [234] = 234, - [235] = 225, + [235] = 235, [236] = 236, - [237] = 236, + [237] = 237, [238] = 238, [239] = 239, - [240] = 225, - [241] = 241, + [240] = 217, + [241] = 236, [242] = 239, [243] = 243, - [244] = 225, - [245] = 225, - [246] = 225, - [247] = 247, - [248] = 225, - [249] = 225, - [250] = 250, - [251] = 247, - [252] = 225, - [253] = 225, - [254] = 250, - [255] = 225, - [256] = 247, + [244] = 217, + [245] = 245, + [246] = 246, + [247] = 217, + [248] = 217, + [249] = 246, + [250] = 217, + [251] = 217, + [252] = 246, + [253] = 217, + [254] = 217, + [255] = 246, + [256] = 246, [257] = 257, - [258] = 247, - [259] = 247, - [260] = 257, - [261] = 247, - [262] = 262, - [263] = 247, + [258] = 245, + [259] = 246, + [260] = 260, + [261] = 246, + [262] = 217, + [263] = 257, [264] = 264, [265] = 264, [266] = 264, - [267] = 267, + [267] = 264, [268] = 264, - [269] = 269, - [270] = 270, - [271] = 270, + [269] = 264, + [270] = 264, + [271] = 271, [272] = 264, [273] = 264, [274] = 274, - [275] = 275, + [275] = 271, [276] = 264, [277] = 264, [278] = 264, [279] = 264, - [280] = 280, + [280] = 264, [281] = 264, - [282] = 280, + [282] = 282, [283] = 264, - [284] = 264, - [285] = 264, - [286] = 264, - [287] = 264, + [284] = 284, + [285] = 284, + [286] = 286, + [287] = 287, [288] = 288, [289] = 289, [290] = 290, [291] = 291, [292] = 292, [293] = 293, - [294] = 294, - [295] = 294, + [294] = 293, + [295] = 295, [296] = 296, - [297] = 297, + [297] = 296, [298] = 298, [299] = 299, [300] = 300, @@ -4759,74 +4773,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [305] = 305, [306] = 306, [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 310, - [314] = 314, - [315] = 315, - [316] = 308, - [317] = 299, - [318] = 303, - [319] = 306, - [320] = 320, + [308] = 306, + [309] = 298, + [310] = 305, + [311] = 306, + [312] = 296, + [313] = 298, + [314] = 299, + [315] = 300, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 305, [321] = 321, - [322] = 297, - [323] = 310, - [324] = 299, - [325] = 306, - [326] = 320, - [327] = 321, - [328] = 296, - [329] = 310, - [330] = 310, - [331] = 299, - [332] = 306, - [333] = 320, - [334] = 321, + [322] = 305, + [323] = 306, + [324] = 296, + [325] = 298, + [326] = 299, + [327] = 300, + [328] = 302, + [329] = 296, + [330] = 298, + [331] = 305, + [332] = 298, + [333] = 305, + [334] = 306, [335] = 296, - [336] = 336, + [336] = 307, [337] = 299, - [338] = 306, - [339] = 320, - [340] = 321, - [341] = 296, + [338] = 300, + [339] = 296, + [340] = 340, + [341] = 341, [342] = 299, - [343] = 310, - [344] = 299, - [345] = 306, - [346] = 320, - [347] = 321, - [348] = 296, - [349] = 310, - [350] = 299, - [351] = 306, - [352] = 320, - [353] = 321, - [354] = 296, - [355] = 306, - [356] = 310, - [357] = 299, - [358] = 306, - [359] = 320, - [360] = 321, - [361] = 296, - [362] = 310, - [363] = 299, + [343] = 305, + [344] = 306, + [345] = 296, + [346] = 298, + [347] = 299, + [348] = 300, + [349] = 300, + [350] = 350, + [351] = 351, + [352] = 299, + [353] = 353, + [354] = 306, + [355] = 299, + [356] = 305, + [357] = 296, + [358] = 300, + [359] = 300, + [360] = 298, + [361] = 299, + [362] = 300, + [363] = 321, [364] = 306, - [365] = 320, - [366] = 321, - [367] = 296, - [368] = 320, - [369] = 321, - [370] = 296, - [371] = 371, - [372] = 320, - [373] = 321, + [365] = 298, + [366] = 366, + [367] = 299, + [368] = 300, + [369] = 305, + [370] = 306, + [371] = 305, + [372] = 372, + [373] = 306, [374] = 296, - [375] = 310, + [375] = 298, [376] = 376, [377] = 377, [378] = 378, @@ -4834,290 +4848,290 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [380] = 380, [381] = 381, [382] = 382, - [383] = 379, + [383] = 383, [384] = 384, [385] = 385, [386] = 386, - [387] = 379, + [387] = 387, [388] = 388, [389] = 389, [390] = 390, [391] = 391, [392] = 392, - [393] = 376, + [393] = 393, [394] = 394, - [395] = 390, + [395] = 395, [396] = 396, - [397] = 397, + [397] = 378, [398] = 398, [399] = 399, - [400] = 400, - [401] = 401, + [400] = 381, + [401] = 376, [402] = 402, [403] = 403, - [404] = 404, + [404] = 379, [405] = 405, [406] = 406, [407] = 407, [408] = 408, - [409] = 391, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 381, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 379, - [418] = 394, - [419] = 419, - [420] = 392, - [421] = 392, - [422] = 376, - [423] = 397, - [424] = 390, - [425] = 376, - [426] = 396, - [427] = 397, - [428] = 398, - [429] = 400, + [409] = 382, + [410] = 402, + [411] = 403, + [412] = 406, + [413] = 413, + [414] = 405, + [415] = 381, + [416] = 405, + [417] = 417, + [418] = 381, + [419] = 405, + [420] = 420, + [421] = 421, + [422] = 405, + [423] = 383, + [424] = 384, + [425] = 405, + [426] = 377, + [427] = 405, + [428] = 385, + [429] = 386, [430] = 430, - [431] = 401, - [432] = 402, - [433] = 403, - [434] = 404, - [435] = 405, - [436] = 406, - [437] = 407, - [438] = 408, - [439] = 410, - [440] = 411, - [441] = 441, - [442] = 412, - [443] = 414, - [444] = 444, - [445] = 398, - [446] = 415, - [447] = 416, - [448] = 390, - [449] = 379, - [450] = 419, - [451] = 384, - [452] = 386, - [453] = 392, - [454] = 379, - [455] = 391, - [456] = 376, - [457] = 390, - [458] = 396, - [459] = 397, - [460] = 398, - [461] = 399, - [462] = 400, - [463] = 401, - [464] = 402, - [465] = 403, - [466] = 404, - [467] = 405, - [468] = 406, - [469] = 407, - [470] = 408, - [471] = 410, - [472] = 411, - [473] = 412, - [474] = 415, - [475] = 416, - [476] = 476, - [477] = 379, - [478] = 396, - [479] = 419, - [480] = 376, - [481] = 392, - [482] = 376, - [483] = 414, - [484] = 390, - [485] = 397, - [486] = 396, - [487] = 397, - [488] = 398, - [489] = 400, - [490] = 401, - [491] = 402, - [492] = 403, - [493] = 404, - [494] = 405, - [495] = 406, - [496] = 407, - [497] = 408, - [498] = 410, - [499] = 411, - [500] = 399, - [501] = 412, - [502] = 400, - [503] = 430, - [504] = 415, - [505] = 416, - [506] = 379, - [507] = 379, - [508] = 398, - [509] = 400, - [510] = 430, - [511] = 419, - [512] = 401, - [513] = 384, - [514] = 386, - [515] = 402, - [516] = 403, - [517] = 379, - [518] = 391, - [519] = 404, - [520] = 399, - [521] = 405, - [522] = 401, - [523] = 390, - [524] = 396, - [525] = 397, - [526] = 398, - [527] = 400, - [528] = 401, - [529] = 402, - [530] = 403, - [531] = 404, - [532] = 405, - [533] = 399, - [534] = 407, - [535] = 408, - [536] = 410, - [537] = 411, - [538] = 412, + [431] = 378, + [432] = 379, + [433] = 387, + [434] = 380, + [435] = 388, + [436] = 382, + [437] = 383, + [438] = 384, + [439] = 377, + [440] = 385, + [441] = 389, + [442] = 387, + [443] = 388, + [444] = 389, + [445] = 390, + [446] = 391, + [447] = 392, + [448] = 393, + [449] = 394, + [450] = 450, + [451] = 395, + [452] = 396, + [453] = 398, + [454] = 454, + [455] = 390, + [456] = 391, + [457] = 392, + [458] = 393, + [459] = 402, + [460] = 403, + [461] = 394, + [462] = 405, + [463] = 395, + [464] = 417, + [465] = 407, + [466] = 378, + [467] = 379, + [468] = 380, + [469] = 382, + [470] = 383, + [471] = 384, + [472] = 385, + [473] = 386, + [474] = 387, + [475] = 388, + [476] = 389, + [477] = 391, + [478] = 392, + [479] = 393, + [480] = 394, + [481] = 395, + [482] = 396, + [483] = 407, + [484] = 398, + [485] = 381, + [486] = 402, + [487] = 403, + [488] = 396, + [489] = 405, + [490] = 407, + [491] = 406, + [492] = 376, + [493] = 405, + [494] = 430, + [495] = 379, + [496] = 380, + [497] = 497, + [498] = 382, + [499] = 383, + [500] = 384, + [501] = 377, + [502] = 385, + [503] = 387, + [504] = 388, + [505] = 389, + [506] = 390, + [507] = 391, + [508] = 392, + [509] = 393, + [510] = 394, + [511] = 395, + [512] = 396, + [513] = 398, + [514] = 402, + [515] = 403, + [516] = 405, + [517] = 407, + [518] = 518, + [519] = 378, + [520] = 379, + [521] = 398, + [522] = 380, + [523] = 382, + [524] = 383, + [525] = 430, + [526] = 384, + [527] = 385, + [528] = 387, + [529] = 388, + [530] = 389, + [531] = 390, + [532] = 391, + [533] = 392, + [534] = 393, + [535] = 394, + [536] = 395, + [537] = 396, + [538] = 398, [539] = 402, - [540] = 415, - [541] = 416, - [542] = 406, - [543] = 407, - [544] = 419, - [545] = 408, - [546] = 384, - [547] = 386, - [548] = 384, - [549] = 379, - [550] = 391, - [551] = 410, - [552] = 399, - [553] = 411, - [554] = 376, - [555] = 414, - [556] = 390, - [557] = 396, - [558] = 397, - [559] = 403, - [560] = 398, - [561] = 400, - [562] = 401, - [563] = 402, - [564] = 403, - [565] = 404, - [566] = 405, - [567] = 406, + [540] = 403, + [541] = 405, + [542] = 407, + [543] = 406, + [544] = 376, + [545] = 405, + [546] = 430, + [547] = 377, + [548] = 379, + [549] = 380, + [550] = 382, + [551] = 383, + [552] = 384, + [553] = 385, + [554] = 387, + [555] = 388, + [556] = 389, + [557] = 390, + [558] = 391, + [559] = 392, + [560] = 393, + [561] = 394, + [562] = 395, + [563] = 396, + [564] = 398, + [565] = 565, + [566] = 402, + [567] = 403, [568] = 407, - [569] = 408, - [570] = 410, - [571] = 411, - [572] = 404, - [573] = 412, - [574] = 405, - [575] = 575, - [576] = 415, - [577] = 416, - [578] = 412, - [579] = 419, - [580] = 384, - [581] = 386, - [582] = 379, - [583] = 391, - [584] = 399, - [585] = 414, - [586] = 376, - [587] = 390, - [588] = 396, - [589] = 397, + [569] = 406, + [570] = 376, + [571] = 405, + [572] = 430, + [573] = 377, + [574] = 379, + [575] = 380, + [576] = 382, + [577] = 383, + [578] = 384, + [579] = 385, + [580] = 387, + [581] = 388, + [582] = 389, + [583] = 390, + [584] = 391, + [585] = 392, + [586] = 393, + [587] = 394, + [588] = 395, + [589] = 396, [590] = 398, - [591] = 400, - [592] = 401, - [593] = 402, - [594] = 403, - [595] = 404, - [596] = 405, - [597] = 406, - [598] = 407, - [599] = 408, - [600] = 410, - [601] = 411, - [602] = 412, - [603] = 415, - [604] = 416, - [605] = 386, - [606] = 419, - [607] = 384, - [608] = 386, - [609] = 391, - [610] = 399, - [611] = 376, - [612] = 390, - [613] = 396, - [614] = 397, - [615] = 398, - [616] = 400, - [617] = 401, - [618] = 402, - [619] = 403, - [620] = 404, - [621] = 405, - [622] = 406, - [623] = 407, - [624] = 408, - [625] = 410, - [626] = 411, - [627] = 406, - [628] = 412, - [629] = 407, - [630] = 408, - [631] = 415, - [632] = 416, - [633] = 410, - [634] = 411, - [635] = 419, - [636] = 379, - [637] = 384, - [638] = 386, - [639] = 415, - [640] = 391, - [641] = 399, - [642] = 416, - [643] = 643, - [644] = 644, - [645] = 379, - [646] = 384, - [647] = 386, - [648] = 419, - [649] = 392, - [650] = 412, - [651] = 415, - [652] = 419, - [653] = 392, - [654] = 416, - [655] = 379, - [656] = 384, - [657] = 386, - [658] = 396, - [659] = 392, - [660] = 392, - [661] = 379, - [662] = 392, - [663] = 391, - [664] = 399, - [665] = 391, - [666] = 406, + [591] = 402, + [592] = 403, + [593] = 407, + [594] = 406, + [595] = 376, + [596] = 596, + [597] = 405, + [598] = 430, + [599] = 377, + [600] = 379, + [601] = 380, + [602] = 382, + [603] = 383, + [604] = 384, + [605] = 385, + [606] = 387, + [607] = 388, + [608] = 389, + [609] = 390, + [610] = 391, + [611] = 392, + [612] = 393, + [613] = 394, + [614] = 395, + [615] = 396, + [616] = 398, + [617] = 402, + [618] = 403, + [619] = 407, + [620] = 454, + [621] = 406, + [622] = 376, + [623] = 623, + [624] = 430, + [625] = 377, + [626] = 379, + [627] = 380, + [628] = 382, + [629] = 383, + [630] = 384, + [631] = 385, + [632] = 387, + [633] = 388, + [634] = 389, + [635] = 390, + [636] = 391, + [637] = 392, + [638] = 393, + [639] = 394, + [640] = 395, + [641] = 396, + [642] = 398, + [643] = 402, + [644] = 403, + [645] = 645, + [646] = 407, + [647] = 406, + [648] = 376, + [649] = 430, + [650] = 377, + [651] = 651, + [652] = 406, + [653] = 376, + [654] = 378, + [655] = 378, + [656] = 405, + [657] = 380, + [658] = 406, + [659] = 376, + [660] = 378, + [661] = 378, + [662] = 378, + [663] = 430, + [664] = 377, + [665] = 430, + [666] = 390, [667] = 667, [668] = 667, [669] = 667, @@ -5132,13 +5146,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [678] = 678, [679] = 678, [680] = 678, - [681] = 217, - [682] = 682, + [681] = 214, + [682] = 212, [683] = 683, - [684] = 682, - [685] = 683, - [686] = 234, - [687] = 682, + [684] = 683, + [685] = 685, + [686] = 685, + [687] = 685, [688] = 683, [689] = 689, [690] = 689, @@ -5149,99 +5163,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 697, - [699] = 699, - [700] = 699, - [701] = 697, - [702] = 696, - [703] = 696, + [698] = 698, + [699] = 696, + [700] = 698, + [701] = 698, + [702] = 697, + [703] = 697, [704] = 704, [705] = 705, - [706] = 706, - [707] = 706, + [706] = 705, + [707] = 704, [708] = 708, - [709] = 706, - [710] = 705, - [711] = 706, - [712] = 706, - [713] = 708, - [714] = 706, - [715] = 715, - [716] = 704, - [717] = 232, - [718] = 706, - [719] = 706, - [720] = 706, - [721] = 706, + [709] = 709, + [710] = 709, + [711] = 709, + [712] = 709, + [713] = 713, + [714] = 709, + [715] = 713, + [716] = 709, + [717] = 213, + [718] = 718, + [719] = 709, + [720] = 709, + [721] = 709, [722] = 722, - [723] = 723, - [724] = 705, - [725] = 222, - [726] = 726, - [727] = 224, - [728] = 220, - [729] = 232, - [730] = 220, - [731] = 726, - [732] = 726, - [733] = 705, - [734] = 706, - [735] = 226, - [736] = 227, - [737] = 737, - [738] = 222, - [739] = 706, - [740] = 740, - [741] = 226, - [742] = 715, - [743] = 706, - [744] = 706, - [745] = 194, - [746] = 201, - [747] = 706, - [748] = 706, - [749] = 706, - [750] = 706, - [751] = 751, - [752] = 704, - [753] = 753, + [723] = 709, + [724] = 704, + [725] = 219, + [726] = 223, + [727] = 709, + [728] = 219, + [729] = 729, + [730] = 730, + [731] = 704, + [732] = 218, + [733] = 733, + [734] = 213, + [735] = 220, + [736] = 218, + [737] = 222, + [738] = 709, + [739] = 730, + [740] = 730, + [741] = 222, + [742] = 709, + [743] = 705, + [744] = 205, + [745] = 203, + [746] = 708, + [747] = 747, + [748] = 709, + [749] = 709, + [750] = 709, + [751] = 709, + [752] = 709, + [753] = 224, [754] = 754, - [755] = 755, + [755] = 709, [756] = 756, [757] = 757, - [758] = 756, - [759] = 197, - [760] = 229, - [761] = 230, - [762] = 762, + [758] = 758, + [759] = 756, + [760] = 760, + [761] = 761, + [762] = 756, [763] = 756, [764] = 764, - [765] = 756, + [765] = 765, [766] = 766, - [767] = 756, + [767] = 767, [768] = 768, [769] = 769, - [770] = 770, - [771] = 706, + [770] = 756, + [771] = 756, [772] = 772, - [773] = 756, + [773] = 773, [774] = 774, - [775] = 756, - [776] = 756, - [777] = 777, - [778] = 778, + [775] = 216, + [776] = 776, + [777] = 756, + [778] = 198, [779] = 756, [780] = 780, [781] = 781, - [782] = 782, - [783] = 783, + [782] = 756, + [783] = 756, [784] = 784, - [785] = 756, + [785] = 785, [786] = 786, [787] = 787, [788] = 788, - [789] = 224, - [790] = 227, + [789] = 789, + [790] = 790, [791] = 791, [792] = 792, [793] = 793, @@ -5249,10 +5263,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [795] = 795, [796] = 796, [797] = 797, - [798] = 788, + [798] = 798, [799] = 799, [800] = 800, - [801] = 801, + [801] = 231, [802] = 802, [803] = 803, [804] = 804, @@ -5264,7 +5278,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [810] = 810, [811] = 811, [812] = 812, - [813] = 788, + [813] = 813, [814] = 814, [815] = 815, [816] = 816, @@ -5272,18 +5286,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [818] = 818, [819] = 819, [820] = 820, - [821] = 788, + [821] = 821, [822] = 822, - [823] = 788, + [823] = 823, [824] = 824, [825] = 825, [826] = 826, - [827] = 827, + [827] = 220, [828] = 828, [829] = 829, [830] = 830, [831] = 831, - [832] = 832, + [832] = 223, [833] = 833, [834] = 834, [835] = 835, @@ -5292,7 +5306,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [838] = 838, [839] = 839, [840] = 840, - [841] = 841, + [841] = 230, [842] = 842, [843] = 843, [844] = 844, @@ -5304,7 +5318,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [850] = 850, [851] = 851, [852] = 852, - [853] = 853, + [853] = 839, [854] = 854, [855] = 855, [856] = 856, @@ -5318,14 +5332,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [864] = 864, [865] = 865, [866] = 866, - [867] = 867, + [867] = 839, [868] = 868, [869] = 869, [870] = 870, [871] = 871, [872] = 872, [873] = 873, - [874] = 215, + [874] = 874, [875] = 875, [876] = 876, [877] = 877, @@ -5334,8 +5348,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [880] = 880, [881] = 881, [882] = 882, - [883] = 214, - [884] = 884, + [883] = 883, + [884] = 839, [885] = 885, [886] = 886, [887] = 887, @@ -5357,22 +5371,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [903] = 903, [904] = 904, [905] = 905, - [906] = 906, + [906] = 839, [907] = 907, [908] = 908, [909] = 909, - [910] = 910, + [910] = 909, [911] = 909, - [912] = 910, - [913] = 910, - [914] = 910, - [915] = 909, + [912] = 912, + [913] = 912, + [914] = 909, + [915] = 912, [916] = 909, - [917] = 909, - [918] = 910, + [917] = 912, + [918] = 912, [919] = 919, [920] = 920, - [921] = 921, + [921] = 765, [922] = 922, [923] = 923, [924] = 924, @@ -5380,225 +5394,225 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [926] = 926, [927] = 927, [928] = 928, - [929] = 786, + [929] = 929, [930] = 930, - [931] = 764, - [932] = 932, + [931] = 931, + [932] = 768, [933] = 933, - [934] = 934, + [934] = 933, [935] = 935, - [936] = 933, - [937] = 933, - [938] = 933, - [939] = 935, - [940] = 934, - [941] = 933, - [942] = 934, - [943] = 933, + [936] = 935, + [937] = 935, + [938] = 938, + [939] = 933, + [940] = 933, + [941] = 938, + [942] = 933, + [943] = 935, [944] = 935, - [945] = 935, - [946] = 933, + [945] = 938, + [946] = 935, [947] = 935, - [948] = 935, - [949] = 935, + [948] = 933, + [949] = 933, [950] = 950, [951] = 951, [952] = 952, [953] = 953, - [954] = 953, - [955] = 955, - [956] = 956, - [957] = 956, - [958] = 956, - [959] = 953, - [960] = 956, - [961] = 955, - [962] = 955, - [963] = 956, - [964] = 955, - [965] = 955, - [966] = 955, - [967] = 953, - [968] = 953, - [969] = 956, + [954] = 954, + [955] = 954, + [956] = 953, + [957] = 957, + [958] = 957, + [959] = 954, + [960] = 953, + [961] = 957, + [962] = 957, + [963] = 957, + [964] = 954, + [965] = 953, + [966] = 953, + [967] = 957, + [968] = 954, + [969] = 954, [970] = 970, [971] = 971, [972] = 972, - [973] = 972, + [973] = 973, [974] = 974, - [975] = 972, + [975] = 975, [976] = 976, - [977] = 977, + [977] = 971, [978] = 978, [979] = 979, - [980] = 976, + [980] = 974, [981] = 981, [982] = 982, [983] = 983, [984] = 984, - [985] = 985, + [985] = 979, [986] = 986, [987] = 987, - [988] = 972, - [989] = 976, + [988] = 988, + [989] = 983, [990] = 990, - [991] = 981, + [991] = 991, [992] = 992, [993] = 993, - [994] = 982, + [994] = 972, [995] = 995, - [996] = 996, + [996] = 982, [997] = 997, [998] = 998, - [999] = 999, - [1000] = 985, - [1001] = 974, - [1002] = 979, - [1003] = 986, + [999] = 998, + [1000] = 1000, + [1001] = 978, + [1002] = 1002, + [1003] = 979, [1004] = 1004, - [1005] = 985, - [1006] = 981, - [1007] = 983, - [1008] = 984, - [1009] = 986, - [1010] = 1010, - [1011] = 985, - [1012] = 986, - [1013] = 972, - [1014] = 976, - [1015] = 977, - [1016] = 978, - [1017] = 981, - [1018] = 982, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1022, - [1023] = 1023, - [1024] = 1024, - [1025] = 982, - [1026] = 982, - [1027] = 1019, - [1028] = 974, - [1029] = 987, - [1030] = 979, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 971, - [1035] = 974, - [1036] = 979, - [1037] = 1037, - [1038] = 1020, - [1039] = 971, - [1040] = 990, - [1041] = 1024, - [1042] = 1042, - [1043] = 985, - [1044] = 1044, - [1045] = 977, - [1046] = 986, - [1047] = 990, - [1048] = 1024, - [1049] = 1020, - [1050] = 1019, - [1051] = 987, - [1052] = 1052, - [1053] = 1053, + [1005] = 975, + [1006] = 978, + [1007] = 998, + [1008] = 998, + [1009] = 975, + [1010] = 978, + [1011] = 971, + [1012] = 976, + [1013] = 971, + [1014] = 995, + [1015] = 982, + [1016] = 975, + [1017] = 987, + [1018] = 971, + [1019] = 983, + [1020] = 981, + [1021] = 1004, + [1022] = 992, + [1023] = 988, + [1024] = 986, + [1025] = 1002, + [1026] = 1026, + [1027] = 1002, + [1028] = 979, + [1029] = 978, + [1030] = 986, + [1031] = 998, + [1032] = 975, + [1033] = 1002, + [1034] = 995, + [1035] = 982, + [1036] = 995, + [1037] = 981, + [1038] = 979, + [1039] = 1002, + [1040] = 979, + [1041] = 1041, + [1042] = 981, + [1043] = 1000, + [1044] = 1002, + [1045] = 979, + [1046] = 992, + [1047] = 1047, + [1048] = 1048, + [1049] = 975, + [1050] = 1000, + [1051] = 976, + [1052] = 971, + [1053] = 1002, [1054] = 1054, - [1055] = 1042, - [1056] = 1020, - [1057] = 976, - [1058] = 990, - [1059] = 1024, - [1060] = 987, - [1061] = 1004, - [1062] = 992, - [1063] = 987, - [1064] = 974, - [1065] = 979, - [1066] = 977, - [1067] = 1044, + [1055] = 982, + [1056] = 1041, + [1057] = 982, + [1058] = 1058, + [1059] = 987, + [1060] = 988, + [1061] = 978, + [1062] = 1062, + [1063] = 998, + [1064] = 1064, + [1065] = 975, + [1066] = 1066, + [1067] = 971, [1068] = 983, - [1069] = 984, - [1070] = 983, - [1071] = 985, - [1072] = 986, - [1073] = 972, - [1074] = 976, - [1075] = 981, - [1076] = 982, - [1077] = 977, - [1078] = 983, - [1079] = 993, - [1080] = 1019, - [1081] = 1020, - [1082] = 971, - [1083] = 990, - [1084] = 1024, - [1085] = 974, - [1086] = 979, - [1087] = 984, - [1088] = 1088, - [1089] = 983, - [1090] = 984, - [1091] = 987, - [1092] = 985, - [1093] = 986, - [1094] = 972, - [1095] = 976, - [1096] = 981, - [1097] = 982, - [1098] = 1019, - [1099] = 1020, - [1100] = 971, - [1101] = 990, - [1102] = 1024, - [1103] = 974, - [1104] = 979, - [1105] = 984, - [1106] = 971, - [1107] = 983, - [1108] = 981, - [1109] = 984, - [1110] = 1019, - [1111] = 1020, - [1112] = 971, - [1113] = 990, - [1114] = 1024, - [1115] = 977, - [1116] = 1037, - [1117] = 977, - [1118] = 1037, - [1119] = 1037, - [1120] = 1037, - [1121] = 1037, - [1122] = 1037, - [1123] = 1019, + [1069] = 986, + [1070] = 1000, + [1071] = 1026, + [1072] = 1072, + [1073] = 1073, + [1074] = 997, + [1075] = 1075, + [1076] = 976, + [1077] = 981, + [1078] = 992, + [1079] = 1079, + [1080] = 1080, + [1081] = 1000, + [1082] = 976, + [1083] = 983, + [1084] = 987, + [1085] = 988, + [1086] = 987, + [1087] = 976, + [1088] = 981, + [1089] = 988, + [1090] = 988, + [1091] = 986, + [1092] = 1000, + [1093] = 976, + [1094] = 983, + [1095] = 981, + [1096] = 987, + [1097] = 988, + [1098] = 986, + [1099] = 983, + [1100] = 978, + [1101] = 992, + [1102] = 972, + [1103] = 992, + [1104] = 1104, + [1105] = 995, + [1106] = 998, + [1107] = 987, + [1108] = 992, + [1109] = 972, + [1110] = 1104, + [1111] = 995, + [1112] = 972, + [1113] = 982, + [1114] = 984, + [1115] = 986, + [1116] = 995, + [1117] = 1000, + [1118] = 984, + [1119] = 984, + [1120] = 984, + [1121] = 984, + [1122] = 984, + [1123] = 972, [1124] = 1124, - [1125] = 1124, + [1125] = 1125, [1126] = 1124, [1127] = 1124, - [1128] = 1128, - [1129] = 1124, + [1128] = 1124, + [1129] = 1129, [1130] = 1124, - [1131] = 1131, + [1131] = 1124, [1132] = 1124, [1133] = 1124, - [1134] = 1124, - [1135] = 1135, + [1134] = 1134, + [1135] = 1124, [1136] = 1124, [1137] = 1124, [1138] = 1124, [1139] = 1139, - [1140] = 1139, + [1140] = 1140, [1141] = 1141, - [1142] = 1142, - [1143] = 1141, + [1142] = 1141, + [1143] = 1139, [1144] = 1139, - [1145] = 1141, - [1146] = 1142, - [1147] = 1142, + [1145] = 1140, + [1146] = 1140, + [1147] = 1141, [1148] = 1148, [1149] = 1149, [1150] = 1150, @@ -5606,361 +5620,361 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1152] = 1152, [1153] = 1153, [1154] = 1154, - [1155] = 1149, + [1155] = 1155, [1156] = 1156, - [1157] = 1154, - [1158] = 1158, - [1159] = 1158, - [1160] = 1160, - [1161] = 1153, - [1162] = 1148, - [1163] = 1156, - [1164] = 1156, - [1165] = 1156, - [1166] = 1156, - [1167] = 1156, - [1168] = 1149, - [1169] = 1169, - [1170] = 1169, - [1171] = 1156, - [1172] = 1156, - [1173] = 1169, - [1174] = 1156, - [1175] = 1156, - [1176] = 1176, - [1177] = 1149, + [1157] = 1155, + [1158] = 1156, + [1159] = 1149, + [1160] = 1152, + [1161] = 1152, + [1162] = 1152, + [1163] = 1163, + [1164] = 1154, + [1165] = 1152, + [1166] = 1148, + [1167] = 1152, + [1168] = 1168, + [1169] = 1168, + [1170] = 1168, + [1171] = 1152, + [1172] = 1152, + [1173] = 1152, + [1174] = 1174, + [1175] = 1152, + [1176] = 1148, + [1177] = 1177, [1178] = 1178, - [1179] = 1179, - [1180] = 1180, + [1179] = 1177, + [1180] = 1152, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1156, - [1185] = 1179, - [1186] = 1181, + [1184] = 1184, + [1185] = 1185, + [1186] = 1152, [1187] = 1187, - [1188] = 1188, + [1188] = 1187, [1189] = 1189, - [1190] = 1178, - [1191] = 1181, - [1192] = 1156, - [1193] = 1193, - [1194] = 1194, - [1195] = 1178, - [1196] = 1156, + [1190] = 1190, + [1191] = 1191, + [1192] = 1177, + [1193] = 1152, + [1194] = 1148, + [1195] = 1195, + [1196] = 1196, [1197] = 1197, - [1198] = 1198, + [1198] = 1187, [1199] = 1199, - [1200] = 1200, - [1201] = 1200, - [1202] = 1202, - [1203] = 1197, + [1200] = 1181, + [1201] = 1201, + [1202] = 1178, + [1203] = 765, [1204] = 1204, - [1205] = 1205, + [1205] = 768, [1206] = 1206, - [1207] = 786, + [1207] = 1201, [1208] = 1208, - [1209] = 764, - [1210] = 1156, - [1211] = 1156, - [1212] = 1156, - [1213] = 1156, - [1214] = 1156, - [1215] = 1197, - [1216] = 1156, - [1217] = 1160, - [1218] = 1197, - [1219] = 1148, - [1220] = 1220, + [1209] = 1201, + [1210] = 1163, + [1211] = 1152, + [1212] = 1152, + [1213] = 1152, + [1214] = 1152, + [1215] = 1152, + [1216] = 1152, + [1217] = 1217, + [1218] = 1149, + [1219] = 1201, + [1220] = 1201, [1221] = 1221, [1222] = 1222, - [1223] = 1156, - [1224] = 1220, - [1225] = 1220, + [1223] = 1221, + [1224] = 1224, + [1225] = 1225, [1226] = 1226, - [1227] = 1220, - [1228] = 1228, - [1229] = 1220, - [1230] = 1230, - [1231] = 1230, - [1232] = 1232, + [1227] = 1221, + [1228] = 1204, + [1229] = 1229, + [1230] = 1221, + [1231] = 1229, + [1232] = 1201, [1233] = 1233, - [1234] = 1220, - [1235] = 1235, - [1236] = 1208, - [1237] = 1220, - [1238] = 1197, - [1239] = 1220, - [1240] = 1197, - [1241] = 1197, - [1242] = 1197, - [1243] = 1208, - [1244] = 1230, - [1245] = 1197, - [1246] = 1220, - [1247] = 1220, - [1248] = 1248, - [1249] = 1197, - [1250] = 1226, - [1251] = 1230, + [1234] = 1221, + [1235] = 1152, + [1236] = 1221, + [1237] = 1237, + [1238] = 1238, + [1239] = 1204, + [1240] = 1221, + [1241] = 1229, + [1242] = 1242, + [1243] = 1243, + [1244] = 1201, + [1245] = 1245, + [1246] = 1221, + [1247] = 1221, + [1248] = 1201, + [1249] = 1201, + [1250] = 1221, + [1251] = 1201, [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1189, - [1257] = 1183, - [1258] = 1197, - [1259] = 1259, - [1260] = 1189, - [1261] = 1183, - [1262] = 1230, - [1263] = 1254, - [1264] = 1226, - [1265] = 1265, - [1266] = 1254, + [1253] = 1197, + [1254] = 1201, + [1255] = 1252, + [1256] = 1197, + [1257] = 1257, + [1258] = 1201, + [1259] = 1229, + [1260] = 1260, + [1261] = 1243, + [1262] = 1229, + [1263] = 1263, + [1264] = 1264, + [1265] = 1264, + [1266] = 1264, [1267] = 1267, - [1268] = 1268, - [1269] = 1252, + [1268] = 1243, + [1269] = 1269, [1270] = 1270, - [1271] = 1197, - [1272] = 1197, - [1273] = 1265, - [1274] = 1197, - [1275] = 1275, - [1276] = 1230, - [1277] = 1221, + [1271] = 1229, + [1272] = 1269, + [1273] = 1273, + [1274] = 1201, + [1275] = 1196, + [1276] = 1196, + [1277] = 1201, [1278] = 1278, [1279] = 1279, - [1280] = 1230, - [1281] = 1254, - [1282] = 1197, - [1283] = 1283, - [1284] = 1197, - [1285] = 1189, - [1286] = 1279, - [1287] = 1287, - [1288] = 764, - [1289] = 1183, - [1290] = 1226, + [1280] = 1280, + [1281] = 1281, + [1282] = 1208, + [1283] = 768, + [1284] = 1201, + [1285] = 1182, + [1286] = 1183, + [1287] = 765, + [1288] = 1184, + [1289] = 1264, + [1290] = 1185, [1291] = 1278, - [1292] = 1283, - [1293] = 1188, - [1294] = 1283, - [1295] = 1295, - [1296] = 1278, - [1297] = 1198, - [1298] = 1298, - [1299] = 1283, - [1300] = 1295, - [1301] = 1248, - [1302] = 1193, - [1303] = 1230, - [1304] = 1180, + [1292] = 1279, + [1293] = 1281, + [1294] = 1294, + [1295] = 1281, + [1296] = 1233, + [1297] = 1264, + [1298] = 1199, + [1299] = 1201, + [1300] = 1278, + [1301] = 1281, + [1302] = 1294, + [1303] = 1280, + [1304] = 1278, [1305] = 1305, - [1306] = 1278, - [1307] = 1283, - [1308] = 1199, - [1309] = 1194, - [1310] = 1278, - [1311] = 1230, - [1312] = 1278, - [1313] = 1230, - [1314] = 1287, - [1315] = 1228, - [1316] = 786, - [1317] = 1283, - [1318] = 1254, - [1319] = 1182, - [1320] = 1254, - [1321] = 1204, - [1322] = 1183, - [1323] = 1189, - [1324] = 1324, - [1325] = 1189, - [1326] = 1326, - [1327] = 1267, - [1328] = 1204, - [1329] = 1283, - [1330] = 1283, - [1331] = 1232, - [1332] = 1278, - [1333] = 1283, - [1334] = 1230, - [1335] = 1268, - [1336] = 1336, - [1337] = 1283, - [1338] = 1248, - [1339] = 1221, - [1340] = 1340, - [1341] = 1340, - [1342] = 1204, + [1306] = 1243, + [1307] = 1196, + [1308] = 1197, + [1309] = 1237, + [1310] = 1189, + [1311] = 1281, + [1312] = 1245, + [1313] = 1264, + [1314] = 1229, + [1315] = 1229, + [1316] = 1278, + [1317] = 1278, + [1318] = 1229, + [1319] = 1191, + [1320] = 1320, + [1321] = 1229, + [1322] = 1281, + [1323] = 1273, + [1324] = 1196, + [1325] = 1197, + [1326] = 1264, + [1327] = 1263, + [1328] = 1278, + [1329] = 1281, + [1330] = 1226, + [1331] = 1281, + [1332] = 1229, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1281, + [1337] = 1197, + [1338] = 1233, + [1339] = 1237, + [1340] = 1208, + [1341] = 1341, + [1342] = 1208, [1343] = 1278, - [1344] = 1254, - [1345] = 1254, - [1346] = 1204, - [1347] = 1254, - [1348] = 1254, - [1349] = 1278, - [1350] = 1278, - [1351] = 1183, - [1352] = 1352, - [1353] = 1352, - [1354] = 1204, - [1355] = 1189, - [1356] = 1267, - [1357] = 1352, - [1358] = 1283, - [1359] = 1183, - [1360] = 1352, - [1361] = 1248, - [1362] = 1254, - [1363] = 1221, - [1364] = 1278, - [1365] = 1352, - [1366] = 1352, - [1367] = 1204, - [1368] = 1283, - [1369] = 1369, - [1370] = 1370, - [1371] = 1371, + [1344] = 1264, + [1345] = 1208, + [1346] = 1196, + [1347] = 1264, + [1348] = 1341, + [1349] = 1281, + [1350] = 1264, + [1351] = 1278, + [1352] = 1278, + [1353] = 1281, + [1354] = 1237, + [1355] = 1355, + [1356] = 1264, + [1357] = 1357, + [1358] = 1358, + [1359] = 1358, + [1360] = 1358, + [1361] = 1281, + [1362] = 1358, + [1363] = 1196, + [1364] = 1197, + [1365] = 1278, + [1366] = 1263, + [1367] = 1367, + [1368] = 1358, + [1369] = 1208, + [1370] = 1208, + [1371] = 1358, [1372] = 1372, - [1373] = 1278, + [1373] = 1233, [1374] = 1278, - [1375] = 1283, - [1376] = 1305, - [1377] = 1283, - [1378] = 1283, - [1379] = 1283, - [1380] = 1298, - [1381] = 1283, - [1382] = 1228, - [1383] = 1278, - [1384] = 1278, - [1385] = 1283, - [1386] = 1204, + [1375] = 1263, + [1376] = 1278, + [1377] = 1281, + [1378] = 1281, + [1379] = 1281, + [1380] = 1281, + [1381] = 1281, + [1382] = 1281, + [1383] = 1208, + [1384] = 1305, + [1385] = 1245, + [1386] = 1320, [1387] = 1278, [1388] = 1278, [1389] = 1278, - [1390] = 1267, - [1391] = 1204, + [1390] = 1278, + [1391] = 1278, [1392] = 1392, [1393] = 1393, - [1394] = 1336, - [1395] = 1395, + [1394] = 1394, + [1395] = 1393, [1396] = 1396, [1397] = 1393, - [1398] = 1283, - [1399] = 1392, - [1400] = 1393, - [1401] = 1392, - [1402] = 1393, - [1403] = 1268, - [1404] = 1404, - [1405] = 1395, - [1406] = 1404, - [1407] = 1393, - [1408] = 1392, - [1409] = 1396, - [1410] = 1393, - [1411] = 1393, - [1412] = 1392, - [1413] = 1395, - [1414] = 1396, + [1398] = 1392, + [1399] = 1396, + [1400] = 1394, + [1401] = 1396, + [1402] = 1394, + [1403] = 1396, + [1404] = 1396, + [1405] = 1393, + [1406] = 1393, + [1407] = 1392, + [1408] = 1396, + [1409] = 1392, + [1410] = 1273, + [1411] = 1394, + [1412] = 1412, + [1413] = 1396, + [1414] = 1335, [1415] = 1392, - [1416] = 1404, - [1417] = 1395, - [1418] = 1404, - [1419] = 1392, - [1420] = 1204, - [1421] = 1404, - [1422] = 1204, - [1423] = 1278, + [1416] = 1412, + [1417] = 1412, + [1418] = 1396, + [1419] = 1396, + [1420] = 1393, + [1421] = 1393, + [1422] = 1393, + [1423] = 1393, [1424] = 1392, - [1425] = 1396, - [1426] = 1396, - [1427] = 1393, - [1428] = 1392, - [1429] = 1393, - [1430] = 1396, - [1431] = 1392, - [1432] = 1404, - [1433] = 1395, - [1434] = 1393, - [1435] = 1395, - [1436] = 1436, - [1437] = 1436, - [1438] = 1436, - [1439] = 1436, - [1440] = 1436, - [1441] = 1436, - [1442] = 1436, - [1443] = 1436, - [1444] = 1436, - [1445] = 1436, - [1446] = 1446, - [1447] = 1446, - [1448] = 1446, - [1449] = 1449, - [1450] = 1446, - [1451] = 1446, - [1452] = 1446, - [1453] = 1453, + [1425] = 1393, + [1426] = 1281, + [1427] = 1208, + [1428] = 1412, + [1429] = 1208, + [1430] = 1278, + [1431] = 1208, + [1432] = 1394, + [1433] = 1394, + [1434] = 1412, + [1435] = 1396, + [1436] = 1412, + [1437] = 1437, + [1438] = 1437, + [1439] = 1437, + [1440] = 1437, + [1441] = 1437, + [1442] = 1437, + [1443] = 1437, + [1444] = 1437, + [1445] = 1437, + [1446] = 1437, + [1447] = 1447, + [1448] = 1447, + [1449] = 1447, + [1450] = 1447, + [1451] = 1451, + [1452] = 1447, + [1453] = 1447, [1454] = 1454, - [1455] = 1455, + [1455] = 1454, [1456] = 1454, - [1457] = 1455, - [1458] = 1453, - [1459] = 1454, - [1460] = 1455, - [1461] = 1453, - [1462] = 1454, - [1463] = 1455, - [1464] = 1455, - [1465] = 1465, - [1466] = 1453, - [1467] = 1454, - [1468] = 1453, - [1469] = 1469, - [1470] = 1469, - [1471] = 1469, - [1472] = 1469, - [1473] = 1469, - [1474] = 1469, - [1475] = 1469, - [1476] = 1476, - [1477] = 217, - [1478] = 1478, - [1479] = 234, - [1480] = 1480, + [1457] = 1457, + [1458] = 1458, + [1459] = 1458, + [1460] = 1458, + [1461] = 1454, + [1462] = 1462, + [1463] = 1454, + [1464] = 1462, + [1465] = 1462, + [1466] = 1462, + [1467] = 1458, + [1468] = 1462, + [1469] = 1458, + [1470] = 1470, + [1471] = 1470, + [1472] = 1470, + [1473] = 1470, + [1474] = 1470, + [1475] = 1470, + [1476] = 1470, + [1477] = 1477, + [1478] = 212, + [1479] = 1479, + [1480] = 214, [1481] = 1481, [1482] = 1482, [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 193, + [1486] = 1486, [1487] = 1487, - [1488] = 1488, - [1489] = 194, - [1490] = 1490, - [1491] = 1491, - [1492] = 951, - [1493] = 234, - [1494] = 217, - [1495] = 950, - [1496] = 197, - [1497] = 201, - [1498] = 952, + [1488] = 950, + [1489] = 951, + [1490] = 212, + [1491] = 952, + [1492] = 1492, + [1493] = 1493, + [1494] = 214, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, + [1501] = 194, + [1502] = 205, + [1503] = 203, + [1504] = 198, [1505] = 1505, [1506] = 1506, - [1507] = 201, + [1507] = 1507, [1508] = 1508, - [1509] = 194, + [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, @@ -5968,94 +5982,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 691, + [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1520, + [1520] = 1509, [1521] = 1521, - [1522] = 197, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 232, - [1527] = 1527, + [1526] = 1526, + [1527] = 1525, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1135, + [1532] = 1532, [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 694, - [1537] = 1537, + [1536] = 1525, + [1537] = 219, [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, + [1539] = 1134, + [1540] = 216, + [1541] = 224, [1542] = 1542, [1543] = 1543, [1544] = 1544, - [1545] = 1516, - [1546] = 1546, + [1545] = 1545, + [1546] = 1129, [1547] = 1547, - [1548] = 1548, + [1548] = 1125, [1549] = 1549, [1550] = 1550, - [1551] = 1551, - [1552] = 1552, - [1553] = 1553, + [1551] = 205, + [1552] = 203, + [1553] = 198, [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1128, + [1560] = 1560, [1561] = 1561, [1562] = 1562, - [1563] = 1530, + [1563] = 1563, [1564] = 1564, [1565] = 1565, - [1566] = 1566, - [1567] = 1567, + [1566] = 213, + [1567] = 1509, [1568] = 1568, - [1569] = 1569, + [1569] = 691, [1570] = 1570, [1571] = 1571, - [1572] = 1516, + [1572] = 1572, [1573] = 1573, - [1574] = 1574, - [1575] = 693, + [1574] = 694, + [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1578, - [1579] = 1516, - [1580] = 692, + [1578] = 1525, + [1579] = 1579, + [1580] = 1580, [1581] = 1581, [1582] = 1582, [1583] = 1583, [1584] = 1584, [1585] = 1585, - [1586] = 222, + [1586] = 1586, [1587] = 1587, - [1588] = 229, + [1588] = 1588, [1589] = 1589, - [1590] = 1590, - [1591] = 230, + [1590] = 1509, + [1591] = 1591, [1592] = 1592, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1596, - [1597] = 1597, + [1596] = 695, + [1597] = 692, [1598] = 1598, - [1599] = 1530, + [1599] = 1599, [1600] = 1600, [1601] = 1601, [1602] = 1602, [1603] = 1603, - [1604] = 1604, + [1604] = 1525, [1605] = 1605, [1606] = 1606, [1607] = 1607, @@ -6070,17 +6084,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1616] = 1616, [1617] = 1617, [1618] = 1618, - [1619] = 1131, + [1619] = 1619, [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1623, - [1624] = 695, + [1623] = 693, + [1624] = 1624, [1625] = 1625, [1626] = 1626, [1627] = 1627, - [1628] = 1530, - [1629] = 1516, + [1628] = 1628, + [1629] = 1629, [1630] = 1630, [1631] = 1631, [1632] = 1632, @@ -6095,30 +6109,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1641] = 1641, [1642] = 1642, [1643] = 1643, - [1644] = 1644, - [1645] = 1645, + [1644] = 1636, + [1645] = 1637, [1646] = 1646, [1647] = 1647, - [1648] = 224, + [1648] = 1638, [1649] = 1649, [1650] = 1650, - [1651] = 220, + [1651] = 1651, [1652] = 1652, [1653] = 1653, [1654] = 1654, - [1655] = 222, + [1655] = 1655, [1656] = 1656, [1657] = 1657, [1658] = 1658, - [1659] = 224, + [1659] = 1659, [1660] = 1660, - [1661] = 1661, + [1661] = 222, [1662] = 1662, [1663] = 1663, [1664] = 1664, - [1665] = 1484, - [1666] = 1480, - [1667] = 1483, + [1665] = 223, + [1666] = 1666, + [1667] = 1667, [1668] = 1668, [1669] = 1669, [1670] = 1670, @@ -6127,11 +6141,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1673] = 1673, [1674] = 1674, [1675] = 1675, - [1676] = 1676, - [1677] = 226, - [1678] = 1678, + [1676] = 1639, + [1677] = 1677, + [1678] = 218, [1679] = 1679, - [1680] = 227, + [1680] = 1680, [1681] = 1681, [1682] = 1682, [1683] = 1683, @@ -6141,12 +6155,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1687] = 1687, [1688] = 1688, [1689] = 1689, - [1690] = 1690, + [1690] = 1674, [1691] = 1691, - [1692] = 1692, + [1692] = 1675, [1693] = 1693, - [1694] = 1694, - [1695] = 1695, + [1694] = 1651, + [1695] = 219, [1696] = 1696, [1697] = 1697, [1698] = 1698, @@ -6156,1079 +6170,1079 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1702] = 1702, [1703] = 1703, [1704] = 1704, - [1705] = 1705, + [1705] = 220, [1706] = 1706, - [1707] = 215, - [1708] = 1641, - [1709] = 214, - [1710] = 1650, - [1711] = 1656, - [1712] = 232, + [1707] = 1674, + [1708] = 1708, + [1709] = 1675, + [1710] = 1710, + [1711] = 1677, + [1712] = 231, [1713] = 1713, - [1714] = 1485, + [1714] = 1714, [1715] = 1715, - [1716] = 215, + [1716] = 1716, [1717] = 1717, [1718] = 1718, [1719] = 1719, - [1720] = 214, - [1721] = 220, + [1720] = 1720, + [1721] = 1721, [1722] = 1722, [1723] = 1723, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1727, + [1724] = 230, + [1725] = 1654, + [1726] = 1663, + [1727] = 1697, [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 1482, - [1734] = 229, - [1735] = 230, - [1736] = 226, - [1737] = 1737, - [1738] = 1738, + [1729] = 1680, + [1730] = 1681, + [1731] = 1703, + [1732] = 1708, + [1733] = 213, + [1734] = 1719, + [1735] = 1720, + [1736] = 1736, + [1737] = 1721, + [1738] = 1722, [1739] = 1739, [1740] = 1740, [1741] = 1741, - [1742] = 1742, - [1743] = 1743, + [1742] = 1739, + [1743] = 1641, [1744] = 1744, - [1745] = 1689, - [1746] = 1690, + [1745] = 1641, + [1746] = 1636, [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1645, - [1751] = 1717, - [1752] = 1718, - [1753] = 1719, - [1754] = 1723, - [1755] = 1755, - [1756] = 1724, - [1757] = 1725, - [1758] = 1726, - [1759] = 1727, - [1760] = 1728, - [1761] = 1729, - [1762] = 1730, - [1763] = 1731, - [1764] = 1732, - [1765] = 1737, - [1766] = 1738, - [1767] = 1739, + [1748] = 1637, + [1749] = 1638, + [1750] = 1740, + [1751] = 1639, + [1752] = 1646, + [1753] = 1753, + [1754] = 1754, + [1755] = 1741, + [1756] = 1649, + [1757] = 231, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1716, + [1762] = 220, + [1763] = 1718, + [1764] = 1764, + [1765] = 1650, + [1766] = 223, + [1767] = 1767, [1768] = 1768, [1769] = 1769, - [1770] = 1770, - [1771] = 1771, - [1772] = 1772, + [1770] = 230, + [1771] = 218, + [1772] = 1717, [1773] = 1773, - [1774] = 1774, - [1775] = 227, + [1774] = 1713, + [1775] = 1775, [1776] = 1776, - [1777] = 1768, - [1778] = 1769, - [1779] = 1770, - [1780] = 1771, - [1781] = 1772, - [1782] = 1689, - [1783] = 1690, - [1784] = 1689, - [1785] = 1690, - [1786] = 1689, - [1787] = 1690, - [1788] = 1747, - [1789] = 1747, - [1790] = 1748, - [1791] = 1749, - [1792] = 1645, - [1793] = 1717, - [1794] = 1718, - [1795] = 1719, - [1796] = 1723, - [1797] = 1724, - [1798] = 1725, - [1799] = 1726, - [1800] = 1727, - [1801] = 1728, - [1802] = 1729, - [1803] = 1730, - [1804] = 1731, - [1805] = 1732, - [1806] = 1737, - [1807] = 1738, - [1808] = 1739, - [1809] = 1768, - [1810] = 1769, - [1811] = 1770, - [1812] = 1771, - [1813] = 1772, - [1814] = 1773, - [1815] = 1776, - [1816] = 1635, - [1817] = 1640, - [1818] = 1744, - [1819] = 1748, - [1820] = 1749, - [1821] = 1773, - [1822] = 1776, - [1823] = 1635, - [1824] = 1640, - [1825] = 1744, - [1826] = 1826, - [1827] = 1827, - [1828] = 1640, - [1829] = 1773, - [1830] = 1744, - [1831] = 1776, - [1832] = 1832, - [1833] = 1641, - [1834] = 1501, - [1835] = 1650, - [1836] = 1656, - [1837] = 950, + [1777] = 1777, + [1778] = 1652, + [1779] = 1723, + [1780] = 1674, + [1781] = 1485, + [1782] = 1675, + [1783] = 1483, + [1784] = 1484, + [1785] = 1785, + [1786] = 1649, + [1787] = 1787, + [1788] = 1650, + [1789] = 1651, + [1790] = 1710, + [1791] = 1677, + [1792] = 1713, + [1793] = 1793, + [1794] = 1652, + [1795] = 1486, + [1796] = 1715, + [1797] = 1481, + [1798] = 216, + [1799] = 1799, + [1800] = 224, + [1801] = 222, + [1802] = 1646, + [1803] = 1803, + [1804] = 1710, + [1805] = 1674, + [1806] = 1675, + [1807] = 1716, + [1808] = 1717, + [1809] = 1723, + [1810] = 1810, + [1811] = 1663, + [1812] = 1680, + [1813] = 1681, + [1814] = 1703, + [1815] = 1715, + [1816] = 1708, + [1817] = 1719, + [1818] = 1720, + [1819] = 1819, + [1820] = 1721, + [1821] = 1722, + [1822] = 1822, + [1823] = 1739, + [1824] = 1740, + [1825] = 1741, + [1826] = 1760, + [1827] = 1760, + [1828] = 1828, + [1829] = 1723, + [1830] = 1830, + [1831] = 1681, + [1832] = 1716, + [1833] = 1833, + [1834] = 1713, + [1835] = 1641, + [1836] = 1703, + [1837] = 1636, [1838] = 1838, - [1839] = 1839, - [1840] = 1755, - [1841] = 1841, - [1842] = 1842, - [1843] = 1717, - [1844] = 1718, - [1845] = 1719, - [1846] = 1846, - [1847] = 1723, - [1848] = 1724, - [1849] = 1499, - [1850] = 1500, - [1851] = 1725, - [1852] = 1726, - [1853] = 1727, - [1854] = 1728, - [1855] = 1729, - [1856] = 1730, - [1857] = 1491, - [1858] = 1731, + [1839] = 1649, + [1840] = 1840, + [1841] = 1708, + [1842] = 1637, + [1843] = 1719, + [1844] = 1720, + [1845] = 1638, + [1846] = 1639, + [1847] = 1721, + [1848] = 1542, + [1849] = 1722, + [1850] = 1677, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1544, + [1855] = 1855, + [1856] = 1856, + [1857] = 1857, + [1858] = 1858, [1859] = 1859, - [1860] = 1732, - [1861] = 1737, - [1862] = 1609, - [1863] = 1613, - [1864] = 1715, - [1865] = 1865, - [1866] = 1866, - [1867] = 1838, - [1868] = 1841, - [1869] = 1635, - [1870] = 1747, - [1871] = 1871, - [1872] = 1738, - [1873] = 1739, - [1874] = 1640, - [1875] = 1875, - [1876] = 1748, - [1877] = 1749, - [1878] = 1744, - [1879] = 1879, + [1860] = 1860, + [1861] = 1852, + [1862] = 1862, + [1863] = 1744, + [1864] = 1864, + [1865] = 1715, + [1866] = 1500, + [1867] = 1718, + [1868] = 1650, + [1869] = 1869, + [1870] = 1651, + [1871] = 1499, + [1872] = 1728, + [1873] = 1654, + [1874] = 1697, + [1875] = 1830, + [1876] = 1493, + [1877] = 1739, + [1878] = 1492, + [1879] = 1740, [1880] = 1880, - [1881] = 1768, - [1882] = 1865, - [1883] = 1769, - [1884] = 1490, - [1885] = 1770, - [1886] = 1771, - [1887] = 1772, - [1888] = 1645, - [1889] = 1609, - [1890] = 1838, - [1891] = 1871, - [1892] = 1613, - [1893] = 1871, - [1894] = 1838, - [1895] = 1871, - [1896] = 1488, - [1897] = 1871, - [1898] = 1838, - [1899] = 1838, - [1900] = 1838, - [1901] = 952, - [1902] = 1902, - [1903] = 1903, - [1904] = 1502, - [1905] = 1503, - [1906] = 1487, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1908, - [1913] = 1913, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 951, - [1918] = 1918, - [1919] = 1747, - [1920] = 1748, - [1921] = 1749, - [1922] = 1645, - [1923] = 1717, - [1924] = 1718, - [1925] = 1719, - [1926] = 1723, - [1927] = 1724, - [1928] = 1725, - [1929] = 1726, - [1930] = 1727, - [1931] = 1728, - [1932] = 1729, - [1933] = 1730, - [1934] = 1731, - [1935] = 1732, - [1936] = 1737, - [1937] = 1738, - [1938] = 1739, - [1939] = 1768, - [1940] = 1769, - [1941] = 1770, - [1942] = 1771, - [1943] = 1772, - [1944] = 1773, - [1945] = 1776, - [1946] = 1635, - [1947] = 1902, - [1948] = 1544, - [1949] = 1949, - [1950] = 1713, - [1951] = 1634, - [1952] = 1671, - [1953] = 1515, - [1954] = 1523, - [1955] = 1542, - [1956] = 1571, - [1957] = 1957, - [1958] = 1543, - [1959] = 1747, + [1881] = 1833, + [1882] = 1882, + [1883] = 1855, + [1884] = 1741, + [1885] = 1760, + [1886] = 1886, + [1887] = 1852, + [1888] = 1663, + [1889] = 1497, + [1890] = 1498, + [1891] = 1652, + [1892] = 1710, + [1893] = 1542, + [1894] = 1544, + [1895] = 1833, + [1896] = 1833, + [1897] = 1495, + [1898] = 1869, + [1899] = 1487, + [1900] = 952, + [1901] = 1852, + [1902] = 1833, + [1903] = 1710, + [1904] = 1677, + [1905] = 1713, + [1906] = 1715, + [1907] = 1716, + [1908] = 1717, + [1909] = 1723, + [1910] = 1663, + [1911] = 1680, + [1912] = 1681, + [1913] = 1703, + [1914] = 1708, + [1915] = 1719, + [1916] = 1720, + [1917] = 1721, + [1918] = 1722, + [1919] = 1739, + [1920] = 1740, + [1921] = 1741, + [1922] = 1760, + [1923] = 1641, + [1924] = 1636, + [1925] = 1637, + [1926] = 1638, + [1927] = 1639, + [1928] = 1646, + [1929] = 1929, + [1930] = 1649, + [1931] = 1650, + [1932] = 1651, + [1933] = 1652, + [1934] = 1717, + [1935] = 1852, + [1936] = 1680, + [1937] = 1937, + [1938] = 1938, + [1939] = 951, + [1940] = 1940, + [1941] = 1938, + [1942] = 1942, + [1943] = 1833, + [1944] = 1496, + [1945] = 1945, + [1946] = 1646, + [1947] = 1833, + [1948] = 950, + [1949] = 1519, + [1950] = 1523, + [1951] = 1512, + [1952] = 1513, + [1953] = 1710, + [1954] = 1547, + [1955] = 1544, + [1956] = 1956, + [1957] = 1624, + [1958] = 1625, + [1959] = 1514, [1960] = 1960, - [1961] = 1748, - [1962] = 1749, - [1963] = 1558, - [1964] = 1645, - [1965] = 1717, - [1966] = 1718, - [1967] = 1719, - [1968] = 1603, - [1969] = 1723, - [1970] = 1614, - [1971] = 1724, - [1972] = 1725, - [1973] = 1726, - [1974] = 1727, - [1975] = 1728, - [1976] = 1729, - [1977] = 1730, - [1978] = 1731, - [1979] = 1732, - [1980] = 1737, - [1981] = 1738, - [1982] = 1739, - [1983] = 1768, - [1984] = 1769, - [1985] = 1770, - [1986] = 1771, - [1987] = 1772, - [1988] = 1504, - [1989] = 1617, - [1990] = 1632, - [1991] = 1621, - [1992] = 1992, - [1993] = 1773, - [1994] = 1994, - [1995] = 1995, - [1996] = 1713, - [1997] = 193, + [1961] = 1626, + [1962] = 1627, + [1963] = 1963, + [1964] = 1515, + [1965] = 1516, + [1966] = 1628, + [1967] = 1629, + [1968] = 1517, + [1969] = 1606, + [1970] = 1505, + [1971] = 1631, + [1972] = 1632, + [1973] = 1637, + [1974] = 1638, + [1975] = 1550, + [1976] = 1129, + [1977] = 1633, + [1978] = 1518, + [1979] = 1577, + [1980] = 1649, + [1981] = 1630, + [1982] = 1134, + [1983] = 1719, + [1984] = 1639, + [1985] = 1720, + [1986] = 1986, + [1987] = 1650, + [1988] = 1986, + [1989] = 1651, + [1990] = 1990, + [1991] = 1721, + [1992] = 1963, + [1993] = 1652, + [1994] = 1717, + [1995] = 1986, + [1996] = 1555, + [1997] = 1997, [1998] = 1998, - [1999] = 1839, - [2000] = 1998, - [2001] = 1839, - [2002] = 1566, - [2003] = 193, - [2004] = 1715, - [2005] = 1568, - [2006] = 2006, - [2007] = 1949, - [2008] = 1641, - [2009] = 1573, - [2010] = 1508, - [2011] = 1633, - [2012] = 1587, - [2013] = 1592, - [2014] = 1135, - [2015] = 1949, - [2016] = 2016, - [2017] = 1594, - [2018] = 2018, - [2019] = 1715, - [2020] = 1622, - [2021] = 1600, - [2022] = 691, - [2023] = 1520, - [2024] = 1521, - [2025] = 2025, - [2026] = 1524, - [2027] = 1525, - [2028] = 1528, - [2029] = 1529, - [2030] = 1605, - [2031] = 1539, - [2032] = 1557, - [2033] = 1610, - [2034] = 1548, - [2035] = 2035, - [2036] = 1612, - [2037] = 1611, - [2038] = 1623, - [2039] = 2039, - [2040] = 1626, - [2041] = 1615, - [2042] = 1634, - [2043] = 1949, - [2044] = 2044, - [2045] = 1609, - [2046] = 1551, - [2047] = 1533, - [2048] = 694, - [2049] = 1613, - [2050] = 1630, - [2051] = 1535, - [2052] = 2052, - [2053] = 1606, - [2054] = 1505, - [2055] = 1776, - [2056] = 1635, - [2057] = 1640, - [2058] = 1744, - [2059] = 1957, - [2060] = 1960, - [2061] = 1537, - [2062] = 1538, - [2063] = 1597, - [2064] = 1613, - [2065] = 1916, - [2066] = 1549, - [2067] = 2067, - [2068] = 1541, - [2069] = 1547, - [2070] = 1992, - [2071] = 1550, - [2072] = 1559, - [2073] = 1562, - [2074] = 1564, - [2075] = 1565, - [2076] = 1567, - [2077] = 1569, - [2078] = 1131, - [2079] = 1570, - [2080] = 1577, - [2081] = 1578, - [2082] = 1540, - [2083] = 2083, - [2084] = 1627, - [2085] = 1128, - [2086] = 1510, - [2087] = 1511, - [2088] = 1512, - [2089] = 1513, - [2090] = 1546, - [2091] = 692, - [2092] = 1581, + [1999] = 1529, + [2000] = 194, + [2001] = 1723, + [2002] = 1608, + [2003] = 1609, + [2004] = 1556, + [2005] = 1557, + [2006] = 1542, + [2007] = 1610, + [2008] = 2008, + [2009] = 1722, + [2010] = 1544, + [2011] = 1612, + [2012] = 2012, + [2013] = 2013, + [2014] = 2014, + [2015] = 2015, + [2016] = 691, + [2017] = 1613, + [2018] = 1739, + [2019] = 1570, + [2020] = 1614, + [2021] = 1615, + [2022] = 1986, + [2023] = 1618, + [2024] = 1572, + [2025] = 1619, + [2026] = 1573, + [2027] = 1677, + [2028] = 1713, + [2029] = 694, + [2030] = 1736, + [2031] = 1620, + [2032] = 1575, + [2033] = 1747, + [2034] = 1559, + [2035] = 1560, + [2036] = 1622, + [2037] = 1561, + [2038] = 1562, + [2039] = 1521, + [2040] = 1526, + [2041] = 1563, + [2042] = 1621, + [2043] = 1528, + [2044] = 1530, + [2045] = 1531, + [2046] = 1532, + [2047] = 1697, + [2048] = 1736, + [2049] = 1653, + [2050] = 1740, + [2051] = 1741, + [2052] = 1681, + [2053] = 1654, + [2054] = 1533, + [2055] = 1860, + [2056] = 1653, + [2057] = 692, + [2058] = 2012, + [2059] = 1598, + [2060] = 1534, + [2061] = 2061, + [2062] = 1535, + [2063] = 1538, + [2064] = 1599, + [2065] = 2065, + [2066] = 2066, + [2067] = 1558, + [2068] = 1564, + [2069] = 1595, + [2070] = 1986, + [2071] = 2071, + [2072] = 2072, + [2073] = 1601, + [2074] = 1602, + [2075] = 1603, + [2076] = 1760, + [2077] = 1986, + [2078] = 1680, + [2079] = 1591, + [2080] = 2080, + [2081] = 1703, + [2082] = 693, + [2083] = 1708, + [2084] = 1716, + [2085] = 1543, + [2086] = 1646, + [2087] = 1506, + [2088] = 1507, + [2089] = 1545, + [2090] = 1544, + [2091] = 1744, + [2092] = 194, [2093] = 695, - [2094] = 1582, - [2095] = 2095, - [2096] = 1583, - [2097] = 1584, + [2094] = 2094, + [2095] = 1747, + [2096] = 1571, + [2097] = 1508, [2098] = 2098, - [2099] = 1589, - [2100] = 1590, - [2101] = 1593, - [2102] = 2083, - [2103] = 1595, - [2104] = 2067, - [2105] = 1625, - [2106] = 1631, - [2107] = 1506, - [2108] = 1650, - [2109] = 2109, - [2110] = 2110, - [2111] = 1514, - [2112] = 2112, - [2113] = 1671, - [2114] = 2114, - [2115] = 2083, - [2116] = 2116, - [2117] = 2117, - [2118] = 1755, - [2119] = 1553, - [2120] = 1596, - [2121] = 1656, - [2122] = 1949, - [2123] = 1554, - [2124] = 1601, - [2125] = 1602, - [2126] = 1607, - [2127] = 1608, - [2128] = 1555, - [2129] = 1574, - [2130] = 1518, - [2131] = 1598, - [2132] = 1616, - [2133] = 1576, - [2134] = 1604, - [2135] = 1527, - [2136] = 1609, - [2137] = 1612, - [2138] = 1613, - [2139] = 1615, - [2140] = 1552, - [2141] = 1534, - [2142] = 1618, - [2143] = 1620, - [2144] = 1556, - [2145] = 1561, - [2146] = 693, - [2147] = 1585, - [2148] = 2148, - [2149] = 1949, - [2150] = 1609, - [2151] = 1613, - [2152] = 1551, - [2153] = 1597, - [2154] = 1949, - [2155] = 1531, - [2156] = 1609, - [2157] = 1519, - [2158] = 1571, - [2159] = 2159, - [2160] = 1656, - [2161] = 2161, - [2162] = 223, + [2099] = 1882, + [2100] = 1607, + [2101] = 2101, + [2102] = 1576, + [2103] = 2103, + [2104] = 1510, + [2105] = 2105, + [2106] = 1605, + [2107] = 1715, + [2108] = 1634, + [2109] = 1542, + [2110] = 1549, + [2111] = 1554, + [2112] = 1579, + [2113] = 1611, + [2114] = 2013, + [2115] = 1543, + [2116] = 1580, + [2117] = 2072, + [2118] = 1544, + [2119] = 1581, + [2120] = 1545, + [2121] = 1582, + [2122] = 1583, + [2123] = 1584, + [2124] = 1728, + [2125] = 1882, + [2126] = 1744, + [2127] = 1547, + [2128] = 1641, + [2129] = 1585, + [2130] = 2130, + [2131] = 1522, + [2132] = 2132, + [2133] = 1565, + [2134] = 1568, + [2135] = 1524, + [2136] = 2066, + [2137] = 1663, + [2138] = 1960, + [2139] = 1636, + [2140] = 1588, + [2141] = 1125, + [2142] = 1571, + [2143] = 1542, + [2144] = 1592, + [2145] = 1616, + [2146] = 1586, + [2147] = 1593, + [2148] = 2012, + [2149] = 1617, + [2150] = 2150, + [2151] = 1594, + [2152] = 1986, + [2153] = 1587, + [2154] = 1718, + [2155] = 1542, + [2156] = 1511, + [2157] = 1589, + [2158] = 1600, + [2159] = 1718, + [2160] = 1595, + [2161] = 225, + [2162] = 1736, [2163] = 2163, - [2164] = 1678, - [2165] = 1713, - [2166] = 1571, - [2167] = 1634, + [2164] = 1793, + [2165] = 1642, + [2166] = 1643, + [2167] = 2167, [2168] = 2168, - [2169] = 2161, - [2170] = 2170, - [2171] = 2163, - [2172] = 2172, - [2173] = 2173, - [2174] = 2174, - [2175] = 1551, - [2176] = 1597, - [2177] = 2177, - [2178] = 2161, - [2179] = 2163, - [2180] = 2172, - [2181] = 2173, - [2182] = 1609, - [2183] = 1613, - [2184] = 1644, - [2185] = 2185, - [2186] = 1609, - [2187] = 1613, - [2188] = 2172, - [2189] = 2173, - [2190] = 2172, - [2191] = 2173, - [2192] = 2172, - [2193] = 2173, - [2194] = 2194, - [2195] = 2195, + [2169] = 2169, + [2170] = 1647, + [2171] = 2171, + [2172] = 211, + [2173] = 1799, + [2174] = 1655, + [2175] = 1656, + [2176] = 1657, + [2177] = 1819, + [2178] = 1659, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 226, + [2183] = 227, + [2184] = 1660, + [2185] = 228, + [2186] = 1662, + [2187] = 2187, + [2188] = 2188, + [2189] = 2163, + [2190] = 232, + [2191] = 2191, + [2192] = 233, + [2193] = 234, + [2194] = 235, + [2195] = 1862, [2196] = 2196, [2197] = 2197, - [2198] = 1662, - [2199] = 1646, - [2200] = 1663, - [2201] = 2201, - [2202] = 1679, - [2203] = 233, - [2204] = 206, - [2205] = 2205, + [2198] = 2198, + [2199] = 1658, + [2200] = 2200, + [2201] = 207, + [2202] = 208, + [2203] = 2203, + [2204] = 1664, + [2205] = 209, [2206] = 2206, [2207] = 2207, - [2208] = 1664, - [2209] = 2209, - [2210] = 219, - [2211] = 1642, - [2212] = 2083, - [2213] = 2213, - [2214] = 2214, - [2215] = 2215, - [2216] = 1657, - [2217] = 1658, - [2218] = 2044, - [2219] = 2219, - [2220] = 2220, - [2221] = 1643, - [2222] = 2222, - [2223] = 228, - [2224] = 2224, - [2225] = 2225, - [2226] = 216, - [2227] = 207, - [2228] = 210, + [2208] = 210, + [2209] = 1693, + [2210] = 225, + [2211] = 2211, + [2212] = 2212, + [2213] = 2168, + [2214] = 2169, + [2215] = 1666, + [2216] = 1667, + [2217] = 211, + [2218] = 1882, + [2219] = 1668, + [2220] = 1669, + [2221] = 1670, + [2222] = 1653, + [2223] = 1671, + [2224] = 1672, + [2225] = 226, + [2226] = 227, + [2227] = 228, + [2228] = 1673, [2229] = 2229, - [2230] = 1713, - [2231] = 2231, - [2232] = 208, - [2233] = 1681, - [2234] = 1682, - [2235] = 1683, - [2236] = 1684, - [2237] = 1685, - [2238] = 1686, - [2239] = 2161, - [2240] = 1687, - [2241] = 2161, - [2242] = 2163, - [2243] = 1688, + [2230] = 2230, + [2231] = 232, + [2232] = 233, + [2233] = 234, + [2234] = 235, + [2235] = 207, + [2236] = 208, + [2237] = 209, + [2238] = 210, + [2239] = 1595, + [2240] = 2168, + [2241] = 1543, + [2242] = 2169, + [2243] = 2015, [2244] = 2244, - [2245] = 2245, - [2246] = 1647, - [2247] = 211, - [2248] = 2163, - [2249] = 1747, - [2250] = 1748, - [2251] = 1749, - [2252] = 1645, - [2253] = 1717, - [2254] = 1718, - [2255] = 1719, - [2256] = 1723, - [2257] = 1724, - [2258] = 1725, - [2259] = 1726, - [2260] = 1727, - [2261] = 1728, - [2262] = 1729, - [2263] = 1730, - [2264] = 1731, - [2265] = 1732, - [2266] = 1737, - [2267] = 1738, - [2268] = 1739, - [2269] = 1768, - [2270] = 1769, - [2271] = 1770, - [2272] = 1771, - [2273] = 1772, - [2274] = 1773, - [2275] = 1839, - [2276] = 1671, - [2277] = 1612, - [2278] = 216, - [2279] = 207, - [2280] = 208, - [2281] = 1615, - [2282] = 1747, - [2283] = 1748, - [2284] = 1749, - [2285] = 1645, - [2286] = 1717, - [2287] = 1718, - [2288] = 1719, - [2289] = 1723, - [2290] = 1724, - [2291] = 1725, - [2292] = 1726, - [2293] = 1727, - [2294] = 1728, - [2295] = 1729, - [2296] = 1730, - [2297] = 1732, - [2298] = 1737, - [2299] = 1738, - [2300] = 1739, - [2301] = 1768, - [2302] = 1769, - [2303] = 1770, - [2304] = 1771, - [2305] = 1772, - [2306] = 1773, - [2307] = 1634, - [2308] = 2308, - [2309] = 212, - [2310] = 218, - [2311] = 221, - [2312] = 223, - [2313] = 2313, - [2314] = 233, - [2315] = 206, - [2316] = 219, - [2317] = 228, - [2318] = 1668, - [2319] = 1691, - [2320] = 1669, - [2321] = 2321, - [2322] = 2161, - [2323] = 2163, - [2324] = 1692, - [2325] = 1693, - [2326] = 2326, - [2327] = 2044, - [2328] = 2214, - [2329] = 211, - [2330] = 1670, - [2331] = 2205, - [2332] = 1713, - [2333] = 2333, - [2334] = 2334, - [2335] = 2185, - [2336] = 2308, - [2337] = 1694, - [2338] = 1695, - [2339] = 1696, - [2340] = 1697, - [2341] = 1649, - [2342] = 2205, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2346, - [2347] = 2333, - [2348] = 2348, - [2349] = 2083, - [2350] = 2350, - [2351] = 2205, - [2352] = 2083, - [2353] = 210, - [2354] = 1660, - [2355] = 1776, - [2356] = 1635, - [2357] = 1640, - [2358] = 1744, - [2359] = 2359, - [2360] = 1698, - [2361] = 1636, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 2205, - [2366] = 1776, - [2367] = 1635, - [2368] = 1640, - [2369] = 1744, + [2245] = 1545, + [2246] = 1747, + [2247] = 1736, + [2248] = 1691, + [2249] = 2187, + [2250] = 2012, + [2251] = 1744, + [2252] = 1747, + [2253] = 2168, + [2254] = 2169, + [2255] = 1679, + [2256] = 1682, + [2257] = 1683, + [2258] = 1654, + [2259] = 1697, + [2260] = 2168, + [2261] = 2169, + [2262] = 1684, + [2263] = 1736, + [2264] = 1685, + [2265] = 1686, + [2266] = 1687, + [2267] = 1747, + [2268] = 2168, + [2269] = 2169, + [2270] = 2270, + [2271] = 2271, + [2272] = 1571, + [2273] = 1547, + [2274] = 2168, + [2275] = 2169, + [2276] = 2270, + [2277] = 2271, + [2278] = 1542, + [2279] = 1544, + [2280] = 1542, + [2281] = 1544, + [2282] = 2270, + [2283] = 2271, + [2284] = 2270, + [2285] = 2271, + [2286] = 2270, + [2287] = 2271, + [2288] = 2288, + [2289] = 2289, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2171, + [2296] = 2179, + [2297] = 2297, + [2298] = 1688, + [2299] = 1764, + [2300] = 2300, + [2301] = 2301, + [2302] = 2302, + [2303] = 2303, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 2307, + [2308] = 1773, + [2309] = 1696, + [2310] = 1698, + [2311] = 1710, + [2312] = 1677, + [2313] = 1713, + [2314] = 1715, + [2315] = 1716, + [2316] = 1717, + [2317] = 1723, + [2318] = 1663, + [2319] = 1680, + [2320] = 1681, + [2321] = 1703, + [2322] = 1708, + [2323] = 1719, + [2324] = 1720, + [2325] = 1721, + [2326] = 1722, + [2327] = 1739, + [2328] = 1740, + [2329] = 1741, + [2330] = 1760, + [2331] = 1641, + [2332] = 1636, + [2333] = 1637, + [2334] = 1638, + [2335] = 1639, + [2336] = 1646, + [2337] = 1758, + [2338] = 1635, + [2339] = 1699, + [2340] = 1700, + [2341] = 1701, + [2342] = 1702, + [2343] = 1710, + [2344] = 1677, + [2345] = 1713, + [2346] = 1715, + [2347] = 1716, + [2348] = 1717, + [2349] = 1723, + [2350] = 1663, + [2351] = 1680, + [2352] = 1681, + [2353] = 1703, + [2354] = 1708, + [2355] = 1719, + [2356] = 1720, + [2357] = 1721, + [2358] = 1722, + [2359] = 1739, + [2360] = 1740, + [2361] = 1741, + [2362] = 1760, + [2363] = 1641, + [2364] = 1636, + [2365] = 1637, + [2366] = 1638, + [2367] = 1639, + [2368] = 1646, + [2369] = 1759, [2370] = 2370, [2371] = 2371, - [2372] = 2205, - [2373] = 1715, + [2372] = 2372, + [2373] = 2373, [2374] = 2374, [2375] = 2375, - [2376] = 1846, - [2377] = 212, - [2378] = 1672, - [2379] = 2205, - [2380] = 1654, - [2381] = 1699, - [2382] = 1673, - [2383] = 2161, - [2384] = 1700, - [2385] = 1701, - [2386] = 1702, - [2387] = 1703, - [2388] = 1704, - [2389] = 1661, - [2390] = 2163, - [2391] = 2205, - [2392] = 2392, - [2393] = 2393, - [2394] = 2334, - [2395] = 2205, - [2396] = 2396, - [2397] = 1634, - [2398] = 1637, - [2399] = 1674, - [2400] = 2400, - [2401] = 1705, - [2402] = 2374, - [2403] = 1675, - [2404] = 2213, + [2376] = 2206, + [2377] = 2292, + [2378] = 2378, + [2379] = 2372, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 2171, + [2385] = 1768, + [2386] = 1704, + [2387] = 1706, + [2388] = 1769, + [2389] = 2012, + [2390] = 2380, + [2391] = 2171, + [2392] = 1649, + [2393] = 1650, + [2394] = 1651, + [2395] = 1652, + [2396] = 2171, + [2397] = 1649, + [2398] = 1650, + [2399] = 1651, + [2400] = 1652, + [2401] = 2401, + [2402] = 2171, + [2403] = 2171, + [2404] = 1775, [2405] = 2405, - [2406] = 218, - [2407] = 1706, - [2408] = 1676, - [2409] = 1747, - [2410] = 1748, - [2411] = 1749, - [2412] = 1645, - [2413] = 1717, - [2414] = 1718, - [2415] = 1719, - [2416] = 1723, - [2417] = 1724, - [2418] = 1725, - [2419] = 1726, - [2420] = 1727, - [2421] = 1728, - [2422] = 1729, - [2423] = 1730, - [2424] = 1731, - [2425] = 1732, - [2426] = 1737, - [2427] = 1738, - [2428] = 1739, - [2429] = 1768, - [2430] = 1769, - [2431] = 1770, - [2432] = 1771, - [2433] = 1772, - [2434] = 1773, - [2435] = 221, - [2436] = 1641, - [2437] = 1650, - [2438] = 1776, - [2439] = 1635, - [2440] = 1640, - [2441] = 1744, - [2442] = 2442, - [2443] = 2205, - [2444] = 1571, - [2445] = 1731, - [2446] = 1718, - [2447] = 2447, + [2406] = 2406, + [2407] = 1776, + [2408] = 1777, + [2409] = 2015, + [2410] = 2171, + [2411] = 2411, + [2412] = 2412, + [2413] = 2171, + [2414] = 1710, + [2415] = 1677, + [2416] = 1713, + [2417] = 1715, + [2418] = 1716, + [2419] = 1717, + [2420] = 1723, + [2421] = 1663, + [2422] = 1680, + [2423] = 1681, + [2424] = 1703, + [2425] = 1708, + [2426] = 1719, + [2427] = 1720, + [2428] = 1721, + [2429] = 1722, + [2430] = 1739, + [2431] = 1740, + [2432] = 1741, + [2433] = 1760, + [2434] = 1641, + [2435] = 1636, + [2436] = 1637, + [2437] = 1638, + [2438] = 1639, + [2439] = 1646, + [2440] = 1649, + [2441] = 1650, + [2442] = 1651, + [2443] = 1652, + [2444] = 1595, + [2445] = 2171, + [2446] = 2012, + [2447] = 1649, [2448] = 2448, - [2449] = 2449, + [2449] = 2448, [2450] = 2450, - [2451] = 1551, + [2451] = 2012, [2452] = 2452, - [2453] = 1597, - [2454] = 1650, + [2453] = 1543, + [2454] = 1545, [2455] = 2455, - [2456] = 2456, - [2457] = 2447, - [2458] = 2458, + [2456] = 1595, + [2457] = 2448, + [2458] = 1571, [2459] = 2459, [2460] = 2460, - [2461] = 2461, - [2462] = 2462, - [2463] = 1571, - [2464] = 2459, - [2465] = 1671, - [2466] = 2447, - [2467] = 1776, - [2468] = 1635, - [2469] = 1640, - [2470] = 1744, + [2461] = 1736, + [2462] = 1653, + [2463] = 1747, + [2464] = 2464, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, + [2468] = 2448, + [2469] = 2469, + [2470] = 1547, [2471] = 2471, - [2472] = 2472, + [2472] = 1654, [2473] = 2473, - [2474] = 2474, + [2474] = 1542, [2475] = 2475, - [2476] = 2476, - [2477] = 2456, - [2478] = 2478, - [2479] = 1609, - [2480] = 1613, - [2481] = 2083, - [2482] = 2482, - [2483] = 1713, - [2484] = 1880, - [2485] = 1671, - [2486] = 2486, - [2487] = 2447, - [2488] = 1747, - [2489] = 1748, - [2490] = 1749, - [2491] = 1645, - [2492] = 1717, - [2493] = 2447, - [2494] = 2476, - [2495] = 1723, - [2496] = 1724, - [2497] = 1725, - [2498] = 2447, - [2499] = 1726, - [2500] = 1846, - [2501] = 2501, - [2502] = 1727, - [2503] = 1728, - [2504] = 1729, - [2505] = 2083, - [2506] = 1730, - [2507] = 1731, - [2508] = 1551, - [2509] = 1732, - [2510] = 1737, - [2511] = 1738, - [2512] = 1597, - [2513] = 1739, - [2514] = 1768, - [2515] = 2474, - [2516] = 1769, - [2517] = 1770, - [2518] = 2518, - [2519] = 1771, - [2520] = 1772, - [2521] = 1773, - [2522] = 2522, - [2523] = 2044, - [2524] = 2482, - [2525] = 1634, - [2526] = 1612, - [2527] = 2527, - [2528] = 1615, - [2529] = 2529, - [2530] = 2447, - [2531] = 2083, - [2532] = 1571, - [2533] = 2083, - [2534] = 1719, - [2535] = 951, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 1641, - [2540] = 1671, - [2541] = 950, - [2542] = 1634, + [2476] = 1544, + [2477] = 2477, + [2478] = 1929, + [2479] = 2479, + [2480] = 2480, + [2481] = 2481, + [2482] = 2448, + [2483] = 2483, + [2484] = 2484, + [2485] = 1650, + [2486] = 1651, + [2487] = 1652, + [2488] = 2488, + [2489] = 2489, + [2490] = 2490, + [2491] = 1653, + [2492] = 2492, + [2493] = 2448, + [2494] = 1571, + [2495] = 2490, + [2496] = 2467, + [2497] = 2455, + [2498] = 2469, + [2499] = 2448, + [2500] = 2500, + [2501] = 1862, + [2502] = 2012, + [2503] = 1547, + [2504] = 1710, + [2505] = 1677, + [2506] = 1713, + [2507] = 1715, + [2508] = 1716, + [2509] = 1717, + [2510] = 1723, + [2511] = 1663, + [2512] = 1680, + [2513] = 1681, + [2514] = 1703, + [2515] = 1708, + [2516] = 1719, + [2517] = 1720, + [2518] = 1721, + [2519] = 1722, + [2520] = 1739, + [2521] = 1740, + [2522] = 1741, + [2523] = 1760, + [2524] = 1641, + [2525] = 1636, + [2526] = 1637, + [2527] = 1638, + [2528] = 1639, + [2529] = 1646, + [2530] = 2483, + [2531] = 2015, + [2532] = 2012, + [2533] = 1595, + [2534] = 2012, + [2535] = 2535, + [2536] = 1595, + [2537] = 1697, + [2538] = 2012, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, + [2542] = 2542, [2543] = 2543, [2544] = 2544, - [2545] = 1650, - [2546] = 1713, - [2547] = 1671, - [2548] = 2548, - [2549] = 1656, + [2545] = 1653, + [2546] = 1653, + [2547] = 2547, + [2548] = 1571, + [2549] = 1547, [2550] = 2550, - [2551] = 2551, - [2552] = 1551, + [2551] = 1736, + [2552] = 2552, [2553] = 2553, - [2554] = 2554, + [2554] = 1747, [2555] = 2555, [2556] = 2556, [2557] = 2557, - [2558] = 1597, + [2558] = 950, [2559] = 2559, [2560] = 2560, [2561] = 2561, - [2562] = 952, + [2562] = 2562, [2563] = 2563, - [2564] = 2564, - [2565] = 2083, - [2566] = 2566, - [2567] = 1571, + [2564] = 1718, + [2565] = 951, + [2566] = 1654, + [2567] = 2567, [2568] = 2568, [2569] = 2569, [2570] = 2570, - [2571] = 1846, + [2571] = 2571, [2572] = 2572, - [2573] = 2573, + [2573] = 1862, [2574] = 2574, - [2575] = 2575, - [2576] = 2172, - [2577] = 1488, - [2578] = 2172, - [2579] = 2172, - [2580] = 2173, - [2581] = 2581, + [2575] = 952, + [2576] = 2271, + [2577] = 2270, + [2578] = 1595, + [2579] = 2271, + [2580] = 2580, + [2581] = 2271, [2582] = 2582, - [2583] = 2220, - [2584] = 2173, - [2585] = 2585, - [2586] = 2173, + [2583] = 2583, + [2584] = 2270, + [2585] = 2271, + [2586] = 2270, [2587] = 2587, - [2588] = 2173, - [2589] = 2172, - [2590] = 2172, - [2591] = 2173, + [2588] = 2588, + [2589] = 2015, + [2590] = 2590, + [2591] = 2591, [2592] = 2592, - [2593] = 2172, - [2594] = 2173, + [2593] = 2270, + [2594] = 2594, [2595] = 2595, - [2596] = 2044, - [2597] = 2597, + [2596] = 2596, + [2597] = 2300, [2598] = 2598, - [2599] = 2599, + [2599] = 2270, [2600] = 2600, [2601] = 2601, - [2602] = 2602, - [2603] = 2173, - [2604] = 2604, - [2605] = 2605, + [2602] = 1493, + [2603] = 2271, + [2604] = 2270, + [2605] = 1654, [2606] = 2606, - [2607] = 1641, - [2608] = 2608, + [2607] = 2271, + [2608] = 2270, [2609] = 2609, - [2610] = 1650, - [2611] = 1656, - [2612] = 2612, - [2613] = 2613, - [2614] = 1571, - [2615] = 1571, - [2616] = 1571, - [2617] = 2172, + [2610] = 2610, + [2611] = 2611, + [2612] = 2271, + [2613] = 1718, + [2614] = 1697, + [2615] = 2615, + [2616] = 1595, + [2617] = 1595, [2618] = 2618, [2619] = 2619, [2620] = 2620, - [2621] = 2621, - [2622] = 2622, + [2621] = 219, + [2622] = 219, [2623] = 2623, [2624] = 2624, [2625] = 2625, [2626] = 2626, - [2627] = 2619, + [2627] = 2627, [2628] = 2628, [2629] = 2629, [2630] = 2630, [2631] = 2631, [2632] = 2632, [2633] = 2633, - [2634] = 232, + [2634] = 2634, [2635] = 2635, - [2636] = 2636, + [2636] = 1270, [2637] = 2637, [2638] = 2638, [2639] = 2639, - [2640] = 2619, + [2640] = 2640, [2641] = 2641, [2642] = 2642, - [2643] = 222, + [2643] = 213, [2644] = 2644, [2645] = 2645, - [2646] = 226, - [2647] = 2647, + [2646] = 2646, + [2647] = 2619, [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, [2652] = 2652, - [2653] = 232, - [2654] = 2619, - [2655] = 222, - [2656] = 2656, - [2657] = 1206, - [2658] = 2619, + [2653] = 2653, + [2654] = 2654, + [2655] = 2655, + [2656] = 2619, + [2657] = 2657, + [2658] = 218, [2659] = 2659, [2660] = 2660, [2661] = 2661, - [2662] = 2619, - [2663] = 2663, - [2664] = 2664, - [2665] = 2665, + [2662] = 2662, + [2663] = 2619, + [2664] = 213, + [2665] = 222, [2666] = 2666, - [2667] = 220, + [2667] = 2619, [2668] = 2668, [2669] = 2619, [2670] = 2670, [2671] = 2671, [2672] = 2619, - [2673] = 2673, + [2673] = 2619, [2674] = 2674, [2675] = 2675, - [2676] = 2676, + [2676] = 2619, [2677] = 2677, - [2678] = 2619, + [2678] = 2678, [2679] = 2679, - [2680] = 2619, - [2681] = 2681, - [2682] = 2682, - [2683] = 226, + [2680] = 2680, + [2681] = 1206, + [2682] = 2619, + [2683] = 2683, [2684] = 2684, - [2685] = 2685, - [2686] = 2686, + [2685] = 2569, + [2686] = 2572, [2687] = 2687, - [2688] = 2543, + [2688] = 2688, [2689] = 2689, - [2690] = 2544, - [2691] = 2691, + [2690] = 218, + [2691] = 222, [2692] = 2692, - [2693] = 1275, - [2694] = 220, + [2693] = 2693, + [2694] = 2694, [2695] = 2695, - [2696] = 2393, + [2696] = 2696, [2697] = 2697, - [2698] = 2229, - [2699] = 2222, + [2698] = 2698, + [2699] = 2167, [2700] = 2700, - [2701] = 2701, + [2701] = 2181, [2702] = 2702, - [2703] = 2206, - [2704] = 2704, + [2703] = 2191, + [2704] = 2203, [2705] = 2705, [2706] = 2706, - [2707] = 2459, - [2708] = 2458, - [2709] = 2471, - [2710] = 2710, - [2711] = 2711, - [2712] = 2710, - [2713] = 2713, - [2714] = 2518, - [2715] = 2448, - [2716] = 2716, - [2717] = 2476, + [2707] = 2707, + [2708] = 2469, + [2709] = 2709, + [2710] = 2490, + [2711] = 2465, + [2712] = 2712, + [2713] = 2455, + [2714] = 2714, + [2715] = 2490, + [2716] = 2467, + [2717] = 2455, [2718] = 2718, - [2719] = 2522, - [2720] = 2476, - [2721] = 2471, - [2722] = 2529, - [2723] = 2501, - [2724] = 2456, - [2725] = 2474, - [2726] = 2474, - [2727] = 2452, - [2728] = 2459, - [2729] = 2501, - [2730] = 2452, - [2731] = 2456, - [2732] = 2527, - [2733] = 1222, - [2734] = 2529, - [2735] = 2735, - [2736] = 2718, - [2737] = 2737, + [2719] = 2459, + [2720] = 2466, + [2721] = 2721, + [2722] = 2469, + [2723] = 1238, + [2724] = 2724, + [2725] = 2471, + [2726] = 2450, + [2727] = 2492, + [2728] = 2718, + [2729] = 2464, + [2730] = 2464, + [2731] = 2466, + [2732] = 2465, + [2733] = 2452, + [2734] = 2721, + [2735] = 2452, + [2736] = 2467, + [2737] = 2479, [2738] = 2738, [2739] = 2739, [2740] = 2740, [2741] = 2741, [2742] = 2742, - [2743] = 2742, + [2743] = 2743, [2744] = 2744, [2745] = 2745, [2746] = 2746, - [2747] = 2738, - [2748] = 2748, + [2747] = 2747, + [2748] = 2741, [2749] = 2749, - [2750] = 2737, - [2751] = 2746, - [2752] = 2741, - [2753] = 2749, - [2754] = 2742, - [2755] = 2740, - [2756] = 2756, - [2757] = 2757, + [2750] = 2744, + [2751] = 2747, + [2752] = 2752, + [2753] = 2738, + [2754] = 2744, + [2755] = 2752, + [2756] = 2739, + [2757] = 2742, [2758] = 2758, - [2759] = 2759, + [2759] = 1242, [2760] = 2760, - [2761] = 2761, + [2761] = 1225, [2762] = 2762, - [2763] = 2475, - [2764] = 2764, + [2763] = 2763, + [2764] = 2480, [2765] = 2765, - [2766] = 1270, + [2766] = 2766, [2767] = 2767, - [2768] = 1253, + [2768] = 2768, [2769] = 2769, - [2770] = 2770, - [2771] = 1255, - [2772] = 2772, + [2770] = 1267, + [2771] = 2771, + [2772] = 1257, [2773] = 2773, [2774] = 2774, - [2775] = 2775, + [2775] = 1260, [2776] = 2776, - [2777] = 1259, + [2777] = 2777, [2778] = 2778, [2779] = 2779, [2780] = 2780, @@ -7251,40 +7265,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2797] = 2797, [2798] = 2798, [2799] = 2799, - [2800] = 2800, - [2801] = 2793, - [2802] = 2785, + [2800] = 2788, + [2801] = 2801, + [2802] = 2802, [2803] = 2803, [2804] = 2804, - [2805] = 2784, + [2805] = 2805, [2806] = 2806, [2807] = 2807, - [2808] = 2803, + [2808] = 2808, [2809] = 2809, [2810] = 2810, [2811] = 2811, - [2812] = 2812, + [2812] = 2785, [2813] = 2813, [2814] = 2814, - [2815] = 2815, + [2815] = 2805, [2816] = 2816, [2817] = 2817, [2818] = 2818, - [2819] = 2819, + [2819] = 2802, [2820] = 2820, [2821] = 2821, [2822] = 2822, - [2823] = 2781, - [2824] = 2824, - [2825] = 2792, - [2826] = 2804, - [2827] = 2827, - [2828] = 2821, - [2829] = 2829, - [2830] = 2807, + [2823] = 2787, + [2824] = 2811, + [2825] = 2825, + [2826] = 2813, + [2827] = 2789, + [2828] = 2790, + [2829] = 2791, + [2830] = 2825, [2831] = 2831, - [2832] = 2824, - [2833] = 2827, + [2832] = 2816, + [2833] = 2833, [2834] = 2834, [2835] = 2835, [2836] = 2836, @@ -7292,676 +7306,676 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 2809, + [2841] = 2841, [2842] = 2842, - [2843] = 1484, - [2844] = 1480, - [2845] = 1483, - [2846] = 1601, - [2847] = 1603, - [2848] = 1574, - [2849] = 1614, - [2850] = 1504, - [2851] = 1523, - [2852] = 1542, - [2853] = 1514, - [2854] = 1543, - [2855] = 1518, - [2856] = 1598, - [2857] = 1625, - [2858] = 1581, - [2859] = 1582, - [2860] = 1583, - [2861] = 1584, - [2862] = 1589, - [2863] = 1590, - [2864] = 1593, - [2865] = 1595, - [2866] = 1596, - [2867] = 1558, - [2868] = 1602, - [2869] = 1607, - [2870] = 1608, - [2871] = 1621, - [2872] = 1553, - [2873] = 1631, - [2874] = 1585, - [2875] = 1554, - [2876] = 1531, - [2877] = 1506, - [2878] = 1555, - [2879] = 1515, - [2880] = 2880, - [2881] = 1538, - [2882] = 234, - [2883] = 1484, - [2884] = 1528, - [2885] = 1480, - [2886] = 1544, - [2887] = 1549, - [2888] = 1550, - [2889] = 1564, - [2890] = 1565, - [2891] = 1567, - [2892] = 1569, - [2893] = 1483, - [2894] = 1503, - [2895] = 1520, - [2896] = 1482, - [2897] = 1524, - [2898] = 217, - [2899] = 1540, - [2900] = 1552, - [2901] = 1510, - [2902] = 1502, - [2903] = 1501, - [2904] = 1623, - [2905] = 1505, - [2906] = 1487, - [2907] = 1490, - [2908] = 1480, - [2909] = 1525, - [2910] = 1508, - [2911] = 1556, - [2912] = 1529, - [2913] = 1617, - [2914] = 2914, - [2915] = 1616, - [2916] = 1604, - [2917] = 1527, - [2918] = 2918, - [2919] = 2919, - [2920] = 2920, - [2921] = 2921, - [2922] = 1633, - [2923] = 1559, - [2924] = 1587, - [2925] = 1482, - [2926] = 1592, - [2927] = 1600, - [2928] = 1570, - [2929] = 1578, - [2930] = 1539, - [2931] = 1593, - [2932] = 1595, - [2933] = 2914, - [2934] = 1596, - [2935] = 1601, - [2936] = 2918, - [2937] = 2919, - [2938] = 2920, - [2939] = 2921, - [2940] = 1602, - [2941] = 1607, - [2942] = 1608, - [2943] = 1621, - [2944] = 1557, - [2945] = 2914, - [2946] = 1610, - [2947] = 1534, - [2948] = 2918, - [2949] = 2919, - [2950] = 2920, - [2951] = 2921, - [2952] = 2918, - [2953] = 1568, - [2954] = 2914, - [2955] = 1625, - [2956] = 2919, - [2957] = 1631, - [2958] = 1506, - [2959] = 1514, - [2960] = 1537, - [2961] = 2920, - [2962] = 1554, - [2963] = 1555, - [2964] = 1574, - [2965] = 1518, - [2966] = 2921, - [2967] = 1598, - [2968] = 1566, - [2969] = 1630, - [2970] = 1585, - [2971] = 2914, - [2972] = 1531, - [2973] = 1515, - [2974] = 1523, - [2975] = 1542, - [2976] = 1626, - [2977] = 1627, - [2978] = 1622, - [2979] = 1548, - [2980] = 1511, - [2981] = 1512, - [2982] = 2914, - [2983] = 1543, - [2984] = 1521, - [2985] = 2914, - [2986] = 1513, - [2987] = 2914, - [2988] = 1558, - [2989] = 1603, - [2990] = 2918, - [2991] = 2919, - [2992] = 2920, - [2993] = 2921, - [2994] = 1614, - [2995] = 2914, - [2996] = 1504, - [2997] = 1484, - [2998] = 1581, - [2999] = 1483, - [3000] = 1582, - [3001] = 1519, - [3002] = 2914, - [3003] = 1533, - [3004] = 1535, - [3005] = 1583, - [3006] = 1584, - [3007] = 1589, - [3008] = 1590, - [3009] = 1553, - [3010] = 3010, - [3011] = 3011, - [3012] = 1487, - [3013] = 3013, - [3014] = 3013, - [3015] = 3015, - [3016] = 3013, + [2843] = 2843, + [2844] = 2844, + [2845] = 1484, + [2846] = 1483, + [2847] = 1485, + [2848] = 1515, + [2849] = 1554, + [2850] = 1506, + [2851] = 1507, + [2852] = 1508, + [2853] = 1614, + [2854] = 1510, + [2855] = 1511, + [2856] = 1512, + [2857] = 1538, + [2858] = 1513, + [2859] = 1514, + [2860] = 1615, + [2861] = 1606, + [2862] = 1534, + [2863] = 1618, + [2864] = 1532, + [2865] = 1528, + [2866] = 1608, + [2867] = 1609, + [2868] = 1521, + [2869] = 1530, + [2870] = 1610, + [2871] = 1535, + [2872] = 1575, + [2873] = 1526, + [2874] = 1622, + [2875] = 1612, + [2876] = 1533, + [2877] = 1531, + [2878] = 1549, + [2879] = 1613, + [2880] = 1605, + [2881] = 1516, + [2882] = 214, + [2883] = 212, + [2884] = 2884, + [2885] = 1631, + [2886] = 1632, + [2887] = 1626, + [2888] = 1624, + [2889] = 1625, + [2890] = 1629, + [2891] = 1486, + [2892] = 1572, + [2893] = 1505, + [2894] = 1598, + [2895] = 1570, + [2896] = 1484, + [2897] = 1600, + [2898] = 1499, + [2899] = 1617, + [2900] = 1602, + [2901] = 1485, + [2902] = 1483, + [2903] = 1587, + [2904] = 1559, + [2905] = 1498, + [2906] = 1497, + [2907] = 1591, + [2908] = 1492, + [2909] = 1496, + [2910] = 1484, + [2911] = 1592, + [2912] = 2912, + [2913] = 1634, + [2914] = 1610, + [2915] = 1582, + [2916] = 1633, + [2917] = 1565, + [2918] = 1507, + [2919] = 1584, + [2920] = 1630, + [2921] = 1568, + [2922] = 2922, + [2923] = 1627, + [2924] = 1618, + [2925] = 2925, + [2926] = 2926, + [2927] = 1608, + [2928] = 1612, + [2929] = 1560, + [2930] = 2926, + [2931] = 1517, + [2932] = 2932, + [2933] = 2912, + [2934] = 1485, + [2935] = 2932, + [2936] = 1614, + [2937] = 2912, + [2938] = 1619, + [2939] = 1508, + [2940] = 2912, + [2941] = 2912, + [2942] = 1563, + [2943] = 1620, + [2944] = 1621, + [2945] = 1615, + [2946] = 1510, + [2947] = 1589, + [2948] = 1586, + [2949] = 2912, + [2950] = 1511, + [2951] = 1483, + [2952] = 1580, + [2953] = 1581, + [2954] = 2932, + [2955] = 1555, + [2956] = 2912, + [2957] = 1616, + [2958] = 1486, + [2959] = 1550, + [2960] = 1512, + [2961] = 1573, + [2962] = 2912, + [2963] = 2922, + [2964] = 2925, + [2965] = 2926, + [2966] = 2932, + [2967] = 1556, + [2968] = 1514, + [2969] = 1575, + [2970] = 1515, + [2971] = 1622, + [2972] = 1516, + [2973] = 1557, + [2974] = 2922, + [2975] = 1521, + [2976] = 1605, + [2977] = 1526, + [2978] = 1606, + [2979] = 1528, + [2980] = 1599, + [2981] = 2925, + [2982] = 1609, + [2983] = 1530, + [2984] = 1531, + [2985] = 1613, + [2986] = 1593, + [2987] = 1601, + [2988] = 2912, + [2989] = 1532, + [2990] = 2922, + [2991] = 1576, + [2992] = 1533, + [2993] = 1534, + [2994] = 2922, + [2995] = 2925, + [2996] = 1535, + [2997] = 2926, + [2998] = 2932, + [2999] = 1506, + [3000] = 2912, + [3001] = 1538, + [3002] = 1603, + [3003] = 1607, + [3004] = 1611, + [3005] = 1549, + [3006] = 2925, + [3007] = 1561, + [3008] = 1562, + [3009] = 1554, + [3010] = 2926, + [3011] = 1513, + [3012] = 3012, + [3013] = 1495, + [3014] = 3012, + [3015] = 1487, + [3016] = 1499, [3017] = 3017, - [3018] = 3017, + [3018] = 3018, [3019] = 3019, [3020] = 3020, - [3021] = 3013, + [3021] = 3021, [3022] = 3022, [3023] = 3023, [3024] = 3024, - [3025] = 3025, - [3026] = 3026, + [3025] = 3012, + [3026] = 3023, [3027] = 3027, - [3028] = 3028, - [3029] = 3013, - [3030] = 3030, - [3031] = 3031, - [3032] = 1491, - [3033] = 1503, + [3028] = 3012, + [3029] = 3023, + [3030] = 3023, + [3031] = 3023, + [3032] = 1498, + [3033] = 3033, [3034] = 3034, [3035] = 3035, - [3036] = 3017, + [3036] = 3012, [3037] = 3037, - [3038] = 3017, + [3038] = 3038, [3039] = 3039, - [3040] = 3040, + [3040] = 1500, [3041] = 3041, - [3042] = 3013, + [3042] = 3042, [3043] = 3043, [3044] = 3044, [3045] = 3045, [3046] = 3046, - [3047] = 1499, - [3048] = 3013, - [3049] = 1500, - [3050] = 3017, + [3047] = 3047, + [3048] = 3048, + [3049] = 3049, + [3050] = 3012, [3051] = 3051, - [3052] = 1596, - [3053] = 1577, - [3054] = 1515, - [3055] = 1523, - [3056] = 1540, - [3057] = 1542, - [3058] = 1543, - [3059] = 1552, - [3060] = 3060, - [3061] = 1558, - [3062] = 1573, - [3063] = 1482, - [3064] = 3064, - [3065] = 3065, - [3066] = 1603, - [3067] = 3067, - [3068] = 1614, - [3069] = 1131, - [3070] = 1504, - [3071] = 1631, - [3072] = 952, + [3052] = 3052, + [3053] = 3012, + [3054] = 1579, + [3055] = 1486, + [3056] = 1598, + [3057] = 1600, + [3058] = 1602, + [3059] = 3059, + [3060] = 1617, + [3061] = 1624, + [3062] = 1625, + [3063] = 1626, + [3064] = 1629, + [3065] = 1505, + [3066] = 1631, + [3067] = 1632, + [3068] = 3068, + [3069] = 3069, + [3070] = 1588, + [3071] = 1570, + [3072] = 1594, [3073] = 3073, - [3074] = 1632, - [3075] = 1506, - [3076] = 1594, - [3077] = 1520, - [3078] = 1524, - [3079] = 1528, + [3074] = 1558, + [3075] = 1564, + [3076] = 1572, + [3077] = 3077, + [3078] = 3078, + [3079] = 1518, [3080] = 3080, - [3081] = 3081, - [3082] = 1605, - [3083] = 1135, - [3084] = 3084, - [3085] = 1514, - [3086] = 1553, - [3087] = 951, - [3088] = 1538, - [3089] = 1544, - [3090] = 1549, - [3091] = 1546, - [3092] = 1550, - [3093] = 1564, - [3094] = 1611, - [3095] = 1565, - [3096] = 1567, - [3097] = 1625, - [3098] = 1618, - [3099] = 1620, - [3100] = 3100, - [3101] = 3101, - [3102] = 1554, - [3103] = 1555, - [3104] = 3030, - [3105] = 1574, - [3106] = 1518, - [3107] = 1502, - [3108] = 3108, - [3109] = 1128, - [3110] = 1581, - [3111] = 1582, - [3112] = 1583, - [3113] = 1584, - [3114] = 1598, - [3115] = 1562, - [3116] = 1589, - [3117] = 1590, - [3118] = 1593, - [3119] = 1595, - [3120] = 950, - [3121] = 1601, - [3122] = 1602, - [3123] = 1585, - [3124] = 1607, - [3125] = 1531, - [3126] = 1608, - [3127] = 1621, - [3128] = 1569, - [3129] = 3129, - [3130] = 3130, + [3081] = 3024, + [3082] = 1583, + [3083] = 1585, + [3084] = 1134, + [3085] = 950, + [3086] = 1628, + [3087] = 1577, + [3088] = 1129, + [3089] = 951, + [3090] = 1125, + [3091] = 952, + [3092] = 3092, + [3093] = 3093, + [3094] = 1497, + [3095] = 1622, + [3096] = 1521, + [3097] = 1526, + [3098] = 1528, + [3099] = 1530, + [3100] = 1531, + [3101] = 1532, + [3102] = 1533, + [3103] = 1534, + [3104] = 1535, + [3105] = 1538, + [3106] = 3106, + [3107] = 1549, + [3108] = 1554, + [3109] = 3109, + [3110] = 1605, + [3111] = 1606, + [3112] = 1608, + [3113] = 1609, + [3114] = 1610, + [3115] = 1612, + [3116] = 1613, + [3117] = 1614, + [3118] = 1615, + [3119] = 1618, + [3120] = 1506, + [3121] = 1507, + [3122] = 1508, + [3123] = 1510, + [3124] = 1511, + [3125] = 1512, + [3126] = 1513, + [3127] = 1514, + [3128] = 1515, + [3129] = 1516, + [3130] = 1575, [3131] = 3131, - [3132] = 3130, - [3133] = 1491, - [3134] = 1487, + [3132] = 1559, + [3133] = 3133, + [3134] = 3134, [3135] = 3135, - [3136] = 3136, - [3137] = 3130, + [3136] = 3135, + [3137] = 1495, [3138] = 3138, [3139] = 3139, - [3140] = 3130, - [3141] = 3130, + [3140] = 3140, + [3141] = 3141, [3142] = 3142, [3143] = 3143, - [3144] = 3144, + [3144] = 1487, [3145] = 3145, - [3146] = 1490, - [3147] = 1503, - [3148] = 234, + [3146] = 3146, + [3147] = 3147, + [3148] = 1498, [3149] = 3149, [3150] = 3150, - [3151] = 3151, - [3152] = 3152, + [3151] = 1499, + [3152] = 1496, [3153] = 3153, - [3154] = 1501, + [3154] = 1587, [3155] = 3155, - [3156] = 1483, + [3156] = 3156, [3157] = 3157, - [3158] = 3158, + [3158] = 1483, [3159] = 3159, - [3160] = 1623, + [3160] = 1484, [3161] = 3161, [3162] = 3162, - [3163] = 3163, + [3163] = 1500, [3164] = 3164, [3165] = 3165, [3166] = 3166, [3167] = 3167, - [3168] = 1505, + [3168] = 3168, [3169] = 3169, [3170] = 3170, [3171] = 3171, - [3172] = 217, - [3173] = 1499, - [3174] = 1500, + [3172] = 3172, + [3173] = 3173, + [3174] = 3174, [3175] = 3175, [3176] = 3176, - [3177] = 1510, + [3177] = 3177, [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3181, - [3182] = 1484, - [3183] = 1480, - [3184] = 3184, - [3185] = 1604, - [3186] = 1573, - [3187] = 1633, - [3188] = 1587, - [3189] = 1592, - [3190] = 1594, - [3191] = 1600, - [3192] = 1605, - [3193] = 1610, - [3194] = 1568, - [3195] = 691, - [3196] = 1521, - [3197] = 1525, - [3198] = 1529, - [3199] = 1533, - [3200] = 1535, - [3201] = 1537, - [3202] = 1559, - [3203] = 1562, - [3204] = 1570, - [3205] = 1577, - [3206] = 1578, - [3207] = 1534, - [3208] = 692, - [3209] = 951, - [3210] = 1626, - [3211] = 1627, - [3212] = 1546, - [3213] = 1622, - [3214] = 1548, - [3215] = 1611, - [3216] = 1618, - [3217] = 1620, - [3218] = 695, - [3219] = 1616, - [3220] = 1527, - [3221] = 693, - [3222] = 1617, - [3223] = 1632, - [3224] = 3224, - [3225] = 3225, - [3226] = 1508, - [3227] = 1539, - [3228] = 1557, - [3229] = 3229, - [3230] = 1502, - [3231] = 3231, - [3232] = 1511, - [3233] = 1482, - [3234] = 1512, - [3235] = 1513, - [3236] = 1519, - [3237] = 1540, - [3238] = 1552, - [3239] = 950, - [3240] = 1520, - [3241] = 1524, - [3242] = 1528, - [3243] = 1538, - [3244] = 1544, - [3245] = 1549, - [3246] = 1550, - [3247] = 1564, - [3248] = 1565, - [3249] = 1567, - [3250] = 1569, - [3251] = 952, - [3252] = 694, - [3253] = 1556, - [3254] = 1566, - [3255] = 1630, - [3256] = 3256, - [3257] = 1487, + [3179] = 3135, + [3180] = 212, + [3181] = 3135, + [3182] = 1591, + [3183] = 1492, + [3184] = 214, + [3185] = 3135, + [3186] = 1485, + [3187] = 1603, + [3188] = 1630, + [3189] = 1607, + [3190] = 1570, + [3191] = 1572, + [3192] = 1627, + [3193] = 950, + [3194] = 1611, + [3195] = 1563, + [3196] = 1598, + [3197] = 1600, + [3198] = 1602, + [3199] = 1628, + [3200] = 1617, + [3201] = 1624, + [3202] = 1625, + [3203] = 1626, + [3204] = 1629, + [3205] = 1505, + [3206] = 1631, + [3207] = 1632, + [3208] = 1517, + [3209] = 1579, + [3210] = 1518, + [3211] = 951, + [3212] = 1580, + [3213] = 1550, + [3214] = 3214, + [3215] = 693, + [3216] = 692, + [3217] = 691, + [3218] = 694, + [3219] = 1581, + [3220] = 1601, + [3221] = 1582, + [3222] = 1497, + [3223] = 1560, + [3224] = 1584, + [3225] = 1585, + [3226] = 952, + [3227] = 1565, + [3228] = 1568, + [3229] = 1588, + [3230] = 1592, + [3231] = 1593, + [3232] = 1594, + [3233] = 1558, + [3234] = 1564, + [3235] = 3235, + [3236] = 695, + [3237] = 1599, + [3238] = 1633, + [3239] = 1573, + [3240] = 1576, + [3241] = 3241, + [3242] = 1619, + [3243] = 1486, + [3244] = 1562, + [3245] = 1621, + [3246] = 1586, + [3247] = 1589, + [3248] = 1616, + [3249] = 1555, + [3250] = 1561, + [3251] = 1556, + [3252] = 1557, + [3253] = 3253, + [3254] = 1620, + [3255] = 1634, + [3256] = 1577, + [3257] = 1583, [3258] = 3258, [3259] = 3259, [3260] = 3260, - [3261] = 1482, + [3261] = 3261, [3262] = 3259, [3263] = 3263, - [3264] = 3256, - [3265] = 3258, - [3266] = 3030, - [3267] = 1499, + [3264] = 3264, + [3265] = 1498, + [3266] = 3266, + [3267] = 1486, [3268] = 3268, [3269] = 3269, - [3270] = 1500, + [3270] = 1487, [3271] = 3271, - [3272] = 3272, - [3273] = 1491, - [3274] = 3256, - [3275] = 3275, - [3276] = 1490, - [3277] = 3277, - [3278] = 3278, - [3279] = 1510, - [3280] = 3280, - [3281] = 3281, - [3282] = 3258, + [3272] = 1495, + [3273] = 3260, + [3274] = 3274, + [3275] = 1496, + [3276] = 3276, + [3277] = 3260, + [3278] = 1587, + [3279] = 3268, + [3280] = 1591, + [3281] = 1559, + [3282] = 1492, [3283] = 3283, - [3284] = 1501, - [3285] = 1623, - [3286] = 1505, - [3287] = 3277, - [3288] = 3130, + [3284] = 3284, + [3285] = 3283, + [3286] = 1500, + [3287] = 3259, + [3288] = 3024, [3289] = 3289, [3290] = 3290, [3291] = 3291, [3292] = 3292, [3293] = 3293, - [3294] = 1548, - [3295] = 1611, + [3294] = 3294, + [3295] = 3295, [3296] = 3296, - [3297] = 3297, - [3298] = 3298, - [3299] = 1135, + [3297] = 3292, + [3298] = 1550, + [3299] = 3299, [3300] = 3300, [3301] = 3301, [3302] = 3302, - [3303] = 3303, - [3304] = 1622, - [3305] = 3130, - [3306] = 3306, - [3307] = 3307, - [3308] = 1487, - [3309] = 1616, - [3310] = 3302, - [3311] = 3311, + [3303] = 3299, + [3304] = 3291, + [3305] = 3305, + [3306] = 3135, + [3307] = 3291, + [3308] = 3308, + [3309] = 3309, + [3310] = 3310, + [3311] = 3291, [3312] = 3312, [3313] = 3313, - [3314] = 3314, - [3315] = 3315, - [3316] = 3316, - [3317] = 1604, - [3318] = 3318, - [3319] = 3319, + [3314] = 3299, + [3315] = 1558, + [3316] = 3291, + [3317] = 1564, + [3318] = 3299, + [3319] = 3291, [3320] = 3320, [3321] = 3321, - [3322] = 3322, + [3322] = 3135, [3323] = 3323, [3324] = 3324, [3325] = 3325, [3326] = 3326, - [3327] = 3327, + [3327] = 3135, [3328] = 3328, - [3329] = 3329, + [3329] = 3263, [3330] = 3330, - [3331] = 1546, - [3332] = 3268, + [3331] = 3331, + [3332] = 3299, [3333] = 3333, [3334] = 3334, - [3335] = 3283, - [3336] = 3301, - [3337] = 3289, - [3338] = 1527, + [3335] = 3335, + [3336] = 3266, + [3337] = 3337, + [3338] = 3338, [3339] = 3339, - [3340] = 3340, - [3341] = 1617, - [3342] = 3315, + [3340] = 3324, + [3341] = 3341, + [3342] = 1555, [3343] = 3343, - [3344] = 3344, - [3345] = 1632, - [3346] = 3290, - [3347] = 3347, - [3348] = 3348, - [3349] = 3297, - [3350] = 3297, - [3351] = 1534, + [3344] = 1556, + [3345] = 1557, + [3346] = 1560, + [3347] = 1561, + [3348] = 1562, + [3349] = 1563, + [3350] = 3135, + [3351] = 3351, [3352] = 3352, - [3353] = 1206, - [3354] = 3354, - [3355] = 3313, - [3356] = 3356, + [3353] = 3353, + [3354] = 691, + [3355] = 3135, + [3356] = 1498, [3357] = 3357, - [3358] = 3301, - [3359] = 3359, - [3360] = 3360, - [3361] = 3130, - [3362] = 217, - [3363] = 3297, - [3364] = 3364, - [3365] = 1508, - [3366] = 1539, - [3367] = 1557, - [3368] = 3368, + [3358] = 1573, + [3359] = 1576, + [3360] = 1634, + [3361] = 1579, + [3362] = 1580, + [3363] = 1581, + [3364] = 1582, + [3365] = 1583, + [3366] = 1584, + [3367] = 1585, + [3368] = 1586, [3369] = 3369, - [3370] = 3297, - [3371] = 3371, - [3372] = 1618, - [3373] = 1620, - [3374] = 1512, - [3375] = 1513, - [3376] = 3289, - [3377] = 1519, - [3378] = 3130, - [3379] = 3379, - [3380] = 3380, + [3370] = 1589, + [3371] = 1134, + [3372] = 3308, + [3373] = 3373, + [3374] = 3374, + [3375] = 3295, + [3376] = 3337, + [3377] = 692, + [3378] = 3378, + [3379] = 3135, + [3380] = 1601, [3381] = 3381, - [3382] = 3382, - [3383] = 3297, + [3382] = 1603, + [3383] = 3383, [3384] = 3384, - [3385] = 1131, - [3386] = 3311, - [3387] = 3301, - [3388] = 694, - [3389] = 3297, - [3390] = 695, - [3391] = 1556, + [3385] = 3385, + [3386] = 3386, + [3387] = 1607, + [3388] = 1611, + [3389] = 3389, + [3390] = 1616, + [3391] = 1499, [3392] = 3392, - [3393] = 1566, - [3394] = 1568, - [3395] = 1573, - [3396] = 1633, - [3397] = 1587, - [3398] = 1592, - [3399] = 1594, - [3400] = 1600, - [3401] = 1605, - [3402] = 1610, - [3403] = 3313, - [3404] = 1627, - [3405] = 1630, - [3406] = 3301, - [3407] = 1128, - [3408] = 3298, + [3393] = 3393, + [3394] = 1627, + [3395] = 1628, + [3396] = 3396, + [3397] = 3397, + [3398] = 3294, + [3399] = 1129, + [3400] = 3400, + [3401] = 1633, + [3402] = 1577, + [3403] = 3403, + [3404] = 1630, + [3405] = 694, + [3406] = 3294, + [3407] = 3407, + [3408] = 3135, [3409] = 3409, - [3410] = 3293, - [3411] = 691, - [3412] = 3301, - [3413] = 1521, - [3414] = 1525, - [3415] = 3297, - [3416] = 1529, - [3417] = 3417, - [3418] = 1533, - [3419] = 1535, - [3420] = 1537, - [3421] = 1135, - [3422] = 3301, - [3423] = 234, - [3424] = 1559, - [3425] = 1562, - [3426] = 3130, - [3427] = 3369, - [3428] = 3271, - [3429] = 1131, - [3430] = 1570, - [3431] = 1577, - [3432] = 1578, - [3433] = 3130, - [3434] = 3434, + [3410] = 3410, + [3411] = 3411, + [3412] = 3412, + [3413] = 3299, + [3414] = 3414, + [3415] = 3299, + [3416] = 3295, + [3417] = 1565, + [3418] = 1568, + [3419] = 1588, + [3420] = 1125, + [3421] = 1592, + [3422] = 1593, + [3423] = 1594, + [3424] = 695, + [3425] = 3291, + [3426] = 3296, + [3427] = 1619, + [3428] = 1620, + [3429] = 3276, + [3430] = 1621, + [3431] = 693, + [3432] = 3369, + [3433] = 3433, + [3434] = 3353, [3435] = 3435, - [3436] = 692, - [3437] = 3437, - [3438] = 3130, - [3439] = 3439, - [3440] = 3440, + [3436] = 1517, + [3437] = 1518, + [3438] = 3438, + [3439] = 212, + [3440] = 1206, [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 1128, + [3442] = 214, + [3443] = 1134, + [3444] = 1129, + [3445] = 1125, [3446] = 3446, - [3447] = 3447, + [3447] = 3299, [3448] = 3448, - [3449] = 693, - [3450] = 1503, - [3451] = 1626, - [3452] = 1511, + [3449] = 3449, + [3450] = 3450, + [3451] = 3451, + [3452] = 3452, [3453] = 3453, - [3454] = 3454, - [3455] = 201, - [3456] = 3454, + [3454] = 1599, + [3455] = 3455, + [3456] = 1497, [3457] = 3457, - [3458] = 194, + [3458] = 3455, [3459] = 3459, - [3460] = 3454, + [3460] = 951, [3461] = 3461, - [3462] = 3454, - [3463] = 3463, - [3464] = 1491, + [3462] = 1500, + [3463] = 952, + [3464] = 3457, [3465] = 3465, - [3466] = 952, - [3467] = 3454, - [3468] = 3461, - [3469] = 1500, - [3470] = 3268, - [3471] = 3454, - [3472] = 3472, - [3473] = 3461, - [3474] = 3454, - [3475] = 3475, - [3476] = 3476, - [3477] = 3477, - [3478] = 3465, + [3466] = 3466, + [3467] = 3457, + [3468] = 205, + [3469] = 203, + [3470] = 3455, + [3471] = 3471, + [3472] = 1495, + [3473] = 3455, + [3474] = 1487, + [3475] = 3457, + [3476] = 3461, + [3477] = 3457, + [3478] = 3457, [3479] = 3479, - [3480] = 1502, - [3481] = 951, - [3482] = 3461, - [3483] = 3483, + [3480] = 3457, + [3481] = 3481, + [3482] = 3482, + [3483] = 3263, [3484] = 3484, - [3485] = 3461, - [3486] = 3486, + [3485] = 3485, + [3486] = 3457, [3487] = 3487, - [3488] = 3461, - [3489] = 3454, - [3490] = 3490, - [3491] = 1499, - [3492] = 950, + [3488] = 3488, + [3489] = 3489, + [3490] = 950, + [3491] = 3491, + [3492] = 3455, [3493] = 3493, - [3494] = 3494, + [3494] = 3455, [3495] = 3495, [3496] = 3496, [3497] = 3497, [3498] = 3498, [3499] = 3499, - [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 3269, + [3500] = 1588, + [3501] = 1594, + [3502] = 1558, + [3503] = 1564, [3504] = 3504, [3505] = 3505, - [3506] = 3506, - [3507] = 3507, + [3506] = 3214, + [3507] = 198, [3508] = 3508, [3509] = 3509, - [3510] = 3510, + [3510] = 1518, [3511] = 3511, [3512] = 3512, [3513] = 3513, @@ -7978,10 +7992,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3524] = 3524, [3525] = 3525, [3526] = 3526, - [3527] = 3527, + [3527] = 3310, [3528] = 3528, [3529] = 3529, - [3530] = 3530, + [3530] = 3511, [3531] = 3531, [3532] = 3532, [3533] = 3533, @@ -8000,22 +8014,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3546] = 3546, [3547] = 3547, [3548] = 3548, - [3549] = 3549, + [3549] = 3497, [3550] = 3550, [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3554, + [3554] = 216, [3555] = 3555, [3556] = 3556, - [3557] = 3557, + [3557] = 224, [3558] = 3558, [3559] = 3559, [3560] = 3560, [3561] = 3561, [3562] = 3562, [3563] = 3563, - [3564] = 3564, + [3564] = 3534, [3565] = 3565, [3566] = 3566, [3567] = 3567, @@ -8026,99 +8040,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3572] = 3572, [3573] = 3573, [3574] = 3574, - [3575] = 3517, + [3575] = 3575, [3576] = 3576, [3577] = 3577, - [3578] = 3529, + [3578] = 3578, [3579] = 3579, [3580] = 3580, - [3581] = 3532, + [3581] = 3581, [3582] = 3582, [3583] = 3583, - [3584] = 3356, + [3584] = 3584, [3585] = 3585, - [3586] = 3360, + [3586] = 3586, [3587] = 3587, - [3588] = 3496, + [3588] = 3588, [3589] = 3589, [3590] = 3590, [3591] = 3591, - [3592] = 3359, - [3593] = 3593, + [3592] = 3581, + [3593] = 3435, [3594] = 3594, [3595] = 3595, - [3596] = 3508, + [3596] = 1500, [3597] = 3597, - [3598] = 3511, - [3599] = 3434, + [3598] = 3598, + [3599] = 3599, [3600] = 3600, [3601] = 3601, [3602] = 3602, - [3603] = 1491, + [3603] = 3603, [3604] = 3604, [3605] = 3605, [3606] = 3606, - [3607] = 3607, - [3608] = 197, - [3609] = 3609, - [3610] = 3329, + [3607] = 3498, + [3608] = 3582, + [3609] = 3504, + [3610] = 3559, [3611] = 3611, [3612] = 3612, - [3613] = 1499, - [3614] = 3573, + [3613] = 3613, + [3614] = 3614, [3615] = 3615, - [3616] = 1500, - [3617] = 3545, + [3616] = 3616, + [3617] = 3617, [3618] = 3618, - [3619] = 3619, - [3620] = 3548, - [3621] = 3571, - [3622] = 3622, - [3623] = 3568, + [3619] = 3414, + [3620] = 3620, + [3621] = 3621, + [3622] = 3534, + [3623] = 3544, [3624] = 3624, [3625] = 3625, [3626] = 3626, - [3627] = 1562, - [3628] = 1577, - [3629] = 3629, + [3627] = 3627, + [3628] = 3628, + [3629] = 3498, [3630] = 3630, - [3631] = 3631, - [3632] = 1573, - [3633] = 1594, - [3634] = 1605, + [3631] = 3536, + [3632] = 3632, + [3633] = 3321, + [3634] = 3634, [3635] = 3635, [3636] = 3636, - [3637] = 3637, + [3637] = 3572, [3638] = 3638, [3639] = 3639, [3640] = 3640, [3641] = 3641, [3642] = 3642, [3643] = 3643, - [3644] = 3644, + [3644] = 3524, [3645] = 3645, - [3646] = 1546, - [3647] = 1611, + [3646] = 3563, + [3647] = 3647, [3648] = 3648, [3649] = 3649, - [3650] = 3496, - [3651] = 1618, - [3652] = 1620, + [3650] = 3650, + [3651] = 3651, + [3652] = 3652, [3653] = 3653, - [3654] = 3654, + [3654] = 1495, [3655] = 3655, - [3656] = 3508, - [3657] = 1632, - [3658] = 3498, - [3659] = 3629, - [3660] = 3231, - [3661] = 3661, + [3656] = 3656, + [3657] = 1579, + [3658] = 1583, + [3659] = 1585, + [3660] = 3660, + [3661] = 1487, [3662] = 3662, [3663] = 3663, [3664] = 3664, [3665] = 3665, - [3666] = 229, - [3667] = 230, + [3666] = 3666, + [3667] = 3667, [3668] = 3668, [3669] = 3669, [3670] = 3670, @@ -8127,246 +8141,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3673] = 3673, [3674] = 3674, [3675] = 3675, - [3676] = 3499, + [3676] = 3676, [3677] = 3677, - [3678] = 3619, + [3678] = 3517, [3679] = 3679, [3680] = 3680, [3681] = 3681, [3682] = 3682, - [3683] = 3683, - [3684] = 3684, + [3683] = 3568, + [3684] = 3305, [3685] = 3685, - [3686] = 3686, - [3687] = 3547, - [3688] = 3545, - [3689] = 3689, - [3690] = 3568, + [3686] = 3612, + [3687] = 3687, + [3688] = 3688, + [3689] = 3518, + [3690] = 3690, [3691] = 3691, [3692] = 3692, [3693] = 3693, [3694] = 3694, [3695] = 3695, [3696] = 3696, - [3697] = 3697, + [3697] = 3524, [3698] = 3698, [3699] = 3699, - [3700] = 3700, - [3701] = 3701, + [3700] = 3650, + [3701] = 1628, [3702] = 3702, [3703] = 3703, - [3704] = 3704, - [3705] = 3705, + [3704] = 3271, + [3705] = 1577, [3706] = 3706, [3707] = 3707, - [3708] = 3708, + [3708] = 3650, [3709] = 3709, [3710] = 3710, - [3711] = 3514, + [3711] = 3711, [3712] = 3712, [3713] = 3713, [3714] = 3714, [3715] = 3715, - [3716] = 3612, + [3716] = 3509, [3717] = 3717, - [3718] = 3567, + [3718] = 3718, [3719] = 3719, [3720] = 3720, [3721] = 3721, - [3722] = 3722, - [3723] = 3695, + [3722] = 3685, + [3723] = 3723, [3724] = 3724, - [3725] = 3725, - [3726] = 3726, - [3727] = 3727, + [3725] = 1579, + [3726] = 1583, + [3727] = 1585, [3728] = 3728, [3729] = 3729, - [3730] = 3730, - [3731] = 3731, - [3732] = 3724, - [3733] = 3733, - [3734] = 3722, + [3730] = 3528, + [3731] = 3626, + [3732] = 3732, + [3733] = 3724, + [3734] = 3594, [3735] = 3735, - [3736] = 3736, - [3737] = 3728, - [3738] = 691, - [3739] = 3707, - [3740] = 3731, - [3741] = 1573, - [3742] = 3742, - [3743] = 1594, - [3744] = 1605, - [3745] = 3722, + [3736] = 3724, + [3737] = 3737, + [3738] = 1564, + [3739] = 3604, + [3740] = 3740, + [3741] = 1558, + [3742] = 3721, + [3743] = 3266, + [3744] = 3744, + [3745] = 3745, [3746] = 3746, - [3747] = 3736, + [3747] = 1628, [3748] = 3748, [3749] = 3749, - [3750] = 3750, - [3751] = 3722, + [3750] = 3552, + [3751] = 3553, [3752] = 3752, - [3753] = 3753, - [3754] = 1546, - [3755] = 3720, - [3756] = 3731, - [3757] = 3724, + [3753] = 3744, + [3754] = 3558, + [3755] = 1518, + [3756] = 3756, + [3757] = 3756, [3758] = 3758, [3759] = 3759, - [3760] = 3720, - [3761] = 3722, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, + [3760] = 3732, + [3761] = 3761, + [3762] = 3724, + [3763] = 3749, + [3764] = 3670, [3765] = 3765, - [3766] = 3766, - [3767] = 3767, - [3768] = 3724, - [3769] = 3731, - [3770] = 1611, - [3771] = 3771, - [3772] = 3731, - [3773] = 1632, - [3774] = 3558, + [3766] = 3749, + [3767] = 3577, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, + [3771] = 3761, + [3772] = 3724, + [3773] = 3663, + [3774] = 3761, [3775] = 3775, - [3776] = 3776, + [3776] = 3737, [3777] = 3777, - [3778] = 3730, - [3779] = 3526, - [3780] = 3618, - [3781] = 3730, + [3778] = 3768, + [3779] = 3779, + [3780] = 3780, + [3781] = 3781, [3782] = 3782, - [3783] = 3783, + [3783] = 3721, [3784] = 3784, - [3785] = 695, - [3786] = 3725, - [3787] = 3720, - [3788] = 3724, - [3789] = 693, + [3785] = 1588, + [3786] = 3786, + [3787] = 3737, + [3788] = 3784, + [3789] = 3585, [3790] = 3790, - [3791] = 1222, - [3792] = 3730, - [3793] = 3793, - [3794] = 3709, - [3795] = 3730, - [3796] = 3731, - [3797] = 3758, - [3798] = 3742, - [3799] = 3642, + [3791] = 3791, + [3792] = 3792, + [3793] = 3737, + [3794] = 3735, + [3795] = 3514, + [3796] = 3276, + [3797] = 3797, + [3798] = 3798, + [3799] = 3515, [3800] = 3800, - [3801] = 1618, - [3802] = 1620, + [3801] = 3758, + [3802] = 3590, [3803] = 3803, - [3804] = 1562, - [3805] = 3554, - [3806] = 3748, - [3807] = 3783, - [3808] = 3775, - [3809] = 1577, - [3810] = 3720, - [3811] = 3811, - [3812] = 3812, - [3813] = 3813, - [3814] = 3767, - [3815] = 3524, - [3816] = 3762, - [3817] = 3560, - [3818] = 3271, - [3819] = 3561, - [3820] = 3722, + [3804] = 3804, + [3805] = 3740, + [3806] = 3679, + [3807] = 3807, + [3808] = 3808, + [3809] = 691, + [3810] = 1577, + [3811] = 3681, + [3812] = 3522, + [3813] = 3635, + [3814] = 3512, + [3815] = 692, + [3816] = 3770, + [3817] = 3241, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, [3821] = 3821, - [3822] = 3822, - [3823] = 3564, - [3824] = 3824, - [3825] = 3825, - [3826] = 3826, - [3827] = 3827, - [3828] = 3828, - [3829] = 3829, - [3830] = 3551, - [3831] = 3729, - [3832] = 3563, - [3833] = 3552, + [3822] = 694, + [3823] = 3823, + [3824] = 3818, + [3825] = 1594, + [3826] = 3749, + [3827] = 695, + [3828] = 693, + [3829] = 3821, + [3830] = 3830, + [3831] = 3786, + [3832] = 3804, + [3833] = 3833, [3834] = 3834, - [3835] = 694, - [3836] = 3525, - [3837] = 3764, - [3838] = 3776, - [3839] = 3566, - [3840] = 3636, - [3841] = 3771, - [3842] = 3553, - [3843] = 3824, - [3844] = 692, - [3845] = 3528, - [3846] = 3729, - [3847] = 3611, - [3848] = 3720, - [3849] = 3822, - [3850] = 3637, - [3851] = 3828, - [3852] = 3852, - [3853] = 3721, - [3854] = 3854, - [3855] = 3283, - [3856] = 3826, - [3857] = 3857, - [3858] = 3730, - [3859] = 3724, - [3860] = 3824, - [3861] = 3601, - [3862] = 3829, - [3863] = 3800, - [3864] = 3704, - [3865] = 3224, - [3866] = 3733, - [3867] = 3639, - [3868] = 3577, - [3869] = 3869, - [3870] = 877, - [3871] = 3871, - [3872] = 3872, - [3873] = 3873, + [3835] = 3835, + [3836] = 3639, + [3837] = 3834, + [3838] = 3775, + [3839] = 3807, + [3840] = 3765, + [3841] = 3841, + [3842] = 3842, + [3843] = 3761, + [3844] = 3770, + [3845] = 3664, + [3846] = 3798, + [3847] = 1238, + [3848] = 3737, + [3849] = 3849, + [3850] = 3737, + [3851] = 3768, + [3852] = 3849, + [3853] = 3803, + [3854] = 3792, + [3855] = 3800, + [3856] = 3721, + [3857] = 3724, + [3858] = 3721, + [3859] = 3761, + [3860] = 3860, + [3861] = 3721, + [3862] = 3862, + [3863] = 3863, + [3864] = 3665, + [3865] = 3595, + [3866] = 3749, + [3867] = 3867, + [3868] = 3761, + [3869] = 3667, + [3870] = 3769, + [3871] = 3749, + [3872] = 3520, + [3873] = 774, [3874] = 3874, [3875] = 3875, [3876] = 3876, - [3877] = 3877, - [3878] = 3878, - [3879] = 875, - [3880] = 3880, + [3877] = 889, + [3878] = 898, + [3879] = 902, + [3880] = 789, [3881] = 3881, [3882] = 3882, [3883] = 3883, - [3884] = 3854, + [3884] = 3884, [3885] = 3885, - [3886] = 3727, + [3886] = 792, [3887] = 3887, - [3888] = 3749, - [3889] = 880, - [3890] = 881, - [3891] = 3891, - [3892] = 882, - [3893] = 884, - [3894] = 885, - [3895] = 787, - [3896] = 887, - [3897] = 888, - [3898] = 889, + [3888] = 3888, + [3889] = 795, + [3890] = 796, + [3891] = 797, + [3892] = 766, + [3893] = 787, + [3894] = 3894, + [3895] = 761, + [3896] = 3896, + [3897] = 803, + [3898] = 3898, [3899] = 3899, [3900] = 3900, - [3901] = 890, + [3901] = 3901, [3902] = 3902, [3903] = 3903, - [3904] = 3904, + [3904] = 812, [3905] = 3905, - [3906] = 3906, - [3907] = 3907, + [3906] = 830, + [3907] = 831, [3908] = 3908, - [3909] = 3679, - [3910] = 898, - [3911] = 899, - [3912] = 900, + [3909] = 3909, + [3910] = 833, + [3911] = 3911, + [3912] = 836, [3913] = 3913, - [3914] = 3689, - [3915] = 3872, + [3914] = 3914, + [3915] = 3915, [3916] = 3916, [3917] = 3917, [3918] = 3918, @@ -8374,27 +8388,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3920] = 3920, [3921] = 3921, [3922] = 3922, - [3923] = 792, - [3924] = 793, - [3925] = 908, + [3923] = 3923, + [3924] = 3924, + [3925] = 3925, [3926] = 3926, [3927] = 3927, [3928] = 3928, - [3929] = 3929, - [3930] = 3930, - [3931] = 3931, - [3932] = 3932, - [3933] = 3933, + [3929] = 850, + [3930] = 852, + [3931] = 854, + [3932] = 855, + [3933] = 908, [3934] = 3934, [3935] = 3935, [3936] = 3936, - [3937] = 3937, - [3938] = 3938, - [3939] = 3939, - [3940] = 3940, - [3941] = 3941, - [3942] = 3942, - [3943] = 3943, + [3937] = 856, + [3938] = 857, + [3939] = 864, + [3940] = 773, + [3941] = 781, + [3942] = 754, + [3943] = 869, [3944] = 3944, [3945] = 3945, [3946] = 3946, @@ -8403,126 +8417,126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3949] = 3949, [3950] = 3950, [3951] = 3951, - [3952] = 800, - [3953] = 3953, - [3954] = 801, - [3955] = 802, - [3956] = 803, + [3952] = 3952, + [3953] = 887, + [3954] = 888, + [3955] = 3955, + [3956] = 3956, [3957] = 3957, [3958] = 3958, [3959] = 3959, - [3960] = 754, + [3960] = 3960, [3961] = 3961, - [3962] = 3962, + [3962] = 891, [3963] = 3963, - [3964] = 805, - [3965] = 3965, + [3964] = 760, + [3965] = 892, [3966] = 3966, - [3967] = 806, - [3968] = 807, - [3969] = 808, - [3970] = 757, - [3971] = 778, - [3972] = 755, - [3973] = 809, + [3967] = 893, + [3968] = 3899, + [3969] = 894, + [3970] = 895, + [3971] = 3971, + [3972] = 899, + [3973] = 901, [3974] = 3974, - [3975] = 774, - [3976] = 780, + [3975] = 786, + [3976] = 3976, [3977] = 3977, - [3978] = 3978, - [3979] = 781, + [3978] = 776, + [3979] = 3979, [3980] = 3980, - [3981] = 3981, + [3981] = 846, [3982] = 3982, - [3983] = 815, + [3983] = 784, [3984] = 3984, [3985] = 3985, [3986] = 3986, [3987] = 3987, [3988] = 3988, - [3989] = 826, - [3990] = 827, - [3991] = 828, + [3989] = 3989, + [3990] = 3990, + [3991] = 3991, [3992] = 3992, - [3993] = 829, + [3993] = 3993, [3994] = 3994, [3995] = 3995, [3996] = 3996, [3997] = 3997, [3998] = 3998, [3999] = 3999, - [4000] = 4000, - [4001] = 4001, - [4002] = 4002, - [4003] = 4003, + [4000] = 798, + [4001] = 809, + [4002] = 821, + [4003] = 825, [4004] = 4004, - [4005] = 4005, - [4006] = 833, - [4007] = 834, - [4008] = 835, - [4009] = 836, - [4010] = 837, - [4011] = 3985, - [4012] = 838, - [4013] = 839, - [4014] = 4014, + [4005] = 3991, + [4006] = 4006, + [4007] = 3884, + [4008] = 4008, + [4009] = 4009, + [4010] = 4010, + [4011] = 4011, + [4012] = 3699, + [4013] = 3971, + [4014] = 3909, [4015] = 4015, - [4016] = 842, + [4016] = 3920, [4017] = 4017, - [4018] = 772, - [4019] = 3940, - [4020] = 762, - [4021] = 770, - [4022] = 3899, - [4023] = 847, + [4018] = 3927, + [4019] = 4019, + [4020] = 3952, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, [4024] = 4024, [4025] = 4025, [4026] = 4026, - [4027] = 3872, + [4027] = 4027, [4028] = 4028, - [4029] = 3980, - [4030] = 3921, + [4029] = 4029, + [4030] = 4030, [4031] = 4031, - [4032] = 853, - [4033] = 3940, - [4034] = 854, + [4032] = 4032, + [4033] = 4033, + [4034] = 3909, [4035] = 4035, [4036] = 4036, - [4037] = 4037, + [4037] = 3927, [4038] = 4038, - [4039] = 855, - [4040] = 856, - [4041] = 857, - [4042] = 858, - [4043] = 859, + [4039] = 4039, + [4040] = 3952, + [4041] = 4041, + [4042] = 4042, + [4043] = 4043, [4044] = 4044, - [4045] = 863, - [4046] = 864, - [4047] = 784, + [4045] = 4045, + [4046] = 4046, + [4047] = 4047, [4048] = 4048, [4049] = 4049, [4050] = 4050, - [4051] = 867, + [4051] = 3909, [4052] = 4052, [4053] = 4053, [4054] = 4054, - [4055] = 4055, + [4055] = 3927, [4056] = 4056, - [4057] = 3899, + [4057] = 4057, [4058] = 4058, - [4059] = 869, - [4060] = 870, - [4061] = 871, - [4062] = 873, - [4063] = 3921, + [4059] = 4059, + [4060] = 4060, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, [4064] = 4064, [4065] = 4065, [4066] = 4066, [4067] = 4067, - [4068] = 4068, + [4068] = 3979, [4069] = 4069, [4070] = 4070, - [4071] = 4071, + [4071] = 851, [4072] = 4072, [4073] = 4073, [4074] = 4074, @@ -8530,66 +8544,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4076] = 4076, [4077] = 4077, [4078] = 4078, - [4079] = 3920, + [4079] = 4079, [4080] = 4080, - [4081] = 3899, - [4082] = 4082, + [4081] = 876, + [4082] = 880, [4083] = 4083, [4084] = 4084, - [4085] = 3921, + [4085] = 4038, [4086] = 4086, [4087] = 4087, [4088] = 4088, - [4089] = 3948, + [4089] = 4089, [4090] = 4090, - [4091] = 4091, - [4092] = 4092, + [4091] = 3875, + [4092] = 3924, [4093] = 4093, - [4094] = 4094, - [4095] = 4095, + [4094] = 3989, + [4095] = 3926, [4096] = 4096, [4097] = 4097, [4098] = 4098, - [4099] = 3949, + [4099] = 4099, [4100] = 4100, [4101] = 4101, [4102] = 4102, [4103] = 4103, [4104] = 4104, - [4105] = 4105, + [4105] = 3884, [4106] = 4106, - [4107] = 3921, + [4107] = 3655, [4108] = 4108, [4109] = 4109, [4110] = 4110, [4111] = 4111, - [4112] = 4112, + [4112] = 3927, [4113] = 4113, [4114] = 4114, [4115] = 4115, [4116] = 4116, [4117] = 4117, [4118] = 4118, - [4119] = 4075, - [4120] = 4120, - [4121] = 4121, + [4119] = 4039, + [4120] = 868, + [4121] = 890, [4122] = 4122, - [4123] = 4123, + [4123] = 3956, [4124] = 4124, - [4125] = 3953, + [4125] = 4125, [4126] = 4126, - [4127] = 4127, - [4128] = 3978, + [4127] = 3957, + [4128] = 4128, [4129] = 4129, [4130] = 4130, [4131] = 4131, - [4132] = 876, + [4132] = 4132, [4133] = 4133, [4134] = 4134, - [4135] = 3871, + [4135] = 4135, [4136] = 4136, [4137] = 4137, - [4138] = 4138, + [4138] = 4088, [4139] = 4139, [4140] = 4140, [4141] = 4141, @@ -8597,72 +8611,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4143] = 4143, [4144] = 4144, [4145] = 4145, - [4146] = 4146, + [4146] = 3797, [4147] = 4147, [4148] = 4148, [4149] = 4149, [4150] = 4150, [4151] = 4151, - [4152] = 4152, + [4152] = 834, [4153] = 4153, - [4154] = 4017, - [4155] = 4155, + [4154] = 4154, + [4155] = 842, [4156] = 4156, - [4157] = 3986, + [4157] = 4157, [4158] = 4158, - [4159] = 4159, + [4159] = 3980, [4160] = 4160, [4161] = 4161, - [4162] = 4162, + [4162] = 4038, [4163] = 4163, - [4164] = 3959, - [4165] = 4165, + [4164] = 4164, + [4165] = 4133, [4166] = 4166, - [4167] = 3874, - [4168] = 4168, - [4169] = 4169, - [4170] = 4170, + [4167] = 3958, + [4168] = 3875, + [4169] = 4098, + [4170] = 4100, [4171] = 4171, - [4172] = 4004, - [4173] = 3961, + [4172] = 4098, + [4173] = 4039, [4174] = 4174, - [4175] = 4175, + [4175] = 4096, [4176] = 4176, - [4177] = 4158, - [4178] = 4178, - [4179] = 4127, - [4180] = 4180, - [4181] = 4160, + [4177] = 3560, + [4178] = 4100, + [4179] = 3535, + [4180] = 3984, + [4181] = 3935, [4182] = 4182, [4183] = 4183, - [4184] = 3926, - [4185] = 4185, + [4184] = 4184, + [4185] = 860, [4186] = 4186, [4187] = 4187, [4188] = 4188, [4189] = 4189, - [4190] = 4190, - [4191] = 4075, - [4192] = 4192, + [4190] = 866, + [4191] = 4191, + [4192] = 3963, [4193] = 4193, [4194] = 4194, - [4195] = 4126, - [4196] = 4134, - [4197] = 4197, - [4198] = 3871, + [4195] = 4195, + [4196] = 4196, + [4197] = 3966, + [4198] = 4198, [4199] = 4199, - [4200] = 3963, - [4201] = 4201, - [4202] = 4017, + [4200] = 4200, + [4201] = 231, + [4202] = 4125, [4203] = 4203, [4204] = 4204, [4205] = 4205, [4206] = 4206, [4207] = 4207, [4208] = 4208, - [4209] = 3899, + [4209] = 4209, [4210] = 4210, - [4211] = 4211, + [4211] = 230, [4212] = 4212, [4213] = 4213, [4214] = 4214, @@ -8677,13 +8691,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4223] = 4223, [4224] = 4224, [4225] = 4225, - [4226] = 4148, + [4226] = 4226, [4227] = 4227, [4228] = 4228, [4229] = 4229, - [4230] = 3935, - [4231] = 4231, - [4232] = 3936, + [4230] = 4230, + [4231] = 4126, + [4232] = 4232, [4233] = 4233, [4234] = 4234, [4235] = 4235, @@ -8691,86 +8705,86 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4237] = 4237, [4238] = 4238, [4239] = 4239, - [4240] = 4149, + [4240] = 4240, [4241] = 4241, [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 215, + [4243] = 862, + [4244] = 3920, + [4245] = 863, [4246] = 4246, - [4247] = 868, + [4247] = 4247, [4248] = 4248, [4249] = 4249, - [4250] = 3966, - [4251] = 4251, + [4250] = 4250, + [4251] = 865, [4252] = 4252, - [4253] = 3630, - [4254] = 861, - [4255] = 865, - [4256] = 214, - [4257] = 4257, + [4253] = 4253, + [4254] = 4254, + [4255] = 4255, + [4256] = 4256, + [4257] = 4114, [4258] = 4258, - [4259] = 4259, + [4259] = 3947, [4260] = 4260, - [4261] = 4261, - [4262] = 4262, + [4261] = 3949, + [4262] = 4135, [4263] = 4263, - [4264] = 4165, - [4265] = 4265, - [4266] = 4150, - [4267] = 4151, - [4268] = 4130, - [4269] = 4169, + [4264] = 4264, + [4265] = 4115, + [4266] = 3909, + [4267] = 4267, + [4268] = 4268, + [4269] = 4269, [4270] = 4270, - [4271] = 4271, + [4271] = 3987, [4272] = 4272, [4273] = 4273, - [4274] = 4274, - [4275] = 3977, - [4276] = 830, - [4277] = 832, - [4278] = 4274, - [4279] = 4279, - [4280] = 4280, - [4281] = 4281, + [4274] = 3790, + [4275] = 3841, + [4276] = 4276, + [4277] = 4053, + [4278] = 4278, + [4279] = 3781, + [4280] = 873, + [4281] = 874, [4282] = 4282, - [4283] = 3920, + [4283] = 875, [4284] = 4284, - [4285] = 3746, - [4286] = 3982, - [4287] = 4287, - [4288] = 4229, - [4289] = 897, - [4290] = 3948, - [4291] = 3949, - [4292] = 4163, - [4293] = 904, - [4294] = 3966, - [4295] = 4295, + [4285] = 4285, + [4286] = 877, + [4287] = 878, + [4288] = 758, + [4289] = 4289, + [4290] = 4290, + [4291] = 879, + [4292] = 4292, + [4293] = 881, + [4294] = 882, + [4295] = 885, [4296] = 4296, - [4297] = 4297, + [4297] = 3926, [4298] = 4298, [4299] = 4299, [4300] = 4300, - [4301] = 4301, + [4301] = 4258, [4302] = 4302, - [4303] = 4303, - [4304] = 4304, - [4305] = 3509, - [4306] = 3597, - [4307] = 797, - [4308] = 799, + [4303] = 3956, + [4304] = 3957, + [4305] = 4191, + [4306] = 4306, + [4307] = 3584, + [4308] = 3971, [4309] = 4309, [4310] = 4310, - [4311] = 4311, - [4312] = 4312, - [4313] = 4313, + [4311] = 817, + [4312] = 818, + [4313] = 819, [4314] = 4314, - [4315] = 3913, + [4315] = 4315, [4316] = 4316, - [4317] = 1538, + [4317] = 4317, [4318] = 4318, - [4319] = 1550, + [4319] = 4319, [4320] = 4320, [4321] = 4321, [4322] = 4322, @@ -8779,168 +8793,168 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4325] = 4325, [4326] = 4326, [4327] = 4327, - [4328] = 4328, - [4329] = 4329, - [4330] = 4330, + [4328] = 837, + [4329] = 838, + [4330] = 840, [4331] = 4331, - [4332] = 4332, - [4333] = 4134, + [4332] = 1617, + [4333] = 1626, [4334] = 4334, - [4335] = 4335, + [4335] = 4116, [4336] = 4336, - [4337] = 4337, + [4337] = 4117, [4338] = 4338, [4339] = 4339, - [4340] = 4126, + [4340] = 4340, [4341] = 4341, [4342] = 4342, [4343] = 4343, [4344] = 4344, [4345] = 4345, [4346] = 4346, - [4347] = 4347, - [4348] = 4346, + [4347] = 3917, + [4348] = 4348, [4349] = 4349, - [4350] = 4346, + [4350] = 4350, [4351] = 4351, [4352] = 4352, - [4353] = 4342, - [4354] = 4352, + [4353] = 4052, + [4354] = 4354, [4355] = 4355, [4356] = 4356, [4357] = 4357, [4358] = 4358, - [4359] = 4347, + [4359] = 4359, [4360] = 4360, [4361] = 4361, [4362] = 4362, [4363] = 4363, [4364] = 4364, [4365] = 4365, - [4366] = 4352, - [4367] = 4367, + [4366] = 4366, + [4367] = 4357, [4368] = 4368, - [4369] = 4369, - [4370] = 4355, - [4371] = 4356, + [4369] = 4362, + [4370] = 4359, + [4371] = 4371, [4372] = 4372, - [4373] = 4355, + [4373] = 4153, [4374] = 4374, - [4375] = 4342, + [4375] = 4375, [4376] = 4376, - [4377] = 4377, - [4378] = 4378, - [4379] = 4379, - [4380] = 4380, + [4377] = 4374, + [4378] = 4354, + [4379] = 4354, + [4380] = 4357, [4381] = 4381, [4382] = 4382, [4383] = 4383, - [4384] = 4342, - [4385] = 4385, - [4386] = 4386, + [4384] = 4354, + [4385] = 4361, + [4386] = 4366, [4387] = 4387, - [4388] = 4388, + [4388] = 4368, [4389] = 4389, - [4390] = 4360, + [4390] = 4390, [4391] = 4391, - [4392] = 4374, - [4393] = 4393, - [4394] = 4394, - [4395] = 3689, - [4396] = 4396, - [4397] = 4397, - [4398] = 4374, - [4399] = 4397, - [4400] = 4400, - [4401] = 4401, - [4402] = 4342, - [4403] = 4403, - [4404] = 4404, - [4405] = 4405, + [4392] = 4392, + [4393] = 4357, + [4394] = 4360, + [4395] = 4395, + [4396] = 4366, + [4397] = 4362, + [4398] = 4398, + [4399] = 4361, + [4400] = 4374, + [4401] = 4382, + [4402] = 4402, + [4403] = 4360, + [4404] = 3699, + [4405] = 4361, [4406] = 4406, [4407] = 4407, - [4408] = 4397, - [4409] = 4346, - [4410] = 4410, - [4411] = 4411, - [4412] = 4381, - [4413] = 4397, + [4408] = 4408, + [4409] = 4354, + [4410] = 4395, + [4411] = 4357, + [4412] = 4359, + [4413] = 4413, [4414] = 4414, - [4415] = 4410, - [4416] = 4358, - [4417] = 4347, - [4418] = 4418, - [4419] = 4391, - [4420] = 4420, - [4421] = 4410, - [4422] = 4396, - [4423] = 4358, + [4415] = 4415, + [4416] = 4360, + [4417] = 4361, + [4418] = 4374, + [4419] = 4382, + [4420] = 4382, + [4421] = 4374, + [4422] = 4395, + [4423] = 4423, [4424] = 4424, - [4425] = 4342, - [4426] = 4356, - [4427] = 4394, - [4428] = 4355, - [4429] = 4356, - [4430] = 4411, - [4431] = 4182, - [4432] = 4352, - [4433] = 4358, - [4434] = 4347, - [4435] = 4376, - [4436] = 4358, - [4437] = 4387, - [4438] = 4183, - [4439] = 4439, - [4440] = 4347, - [4441] = 4346, - [4442] = 4377, - [4443] = 4347, - [4444] = 4352, - [4445] = 4361, - [4446] = 4397, - [4447] = 4410, - [4448] = 4410, - [4449] = 4449, - [4450] = 4380, - [4451] = 4374, - [4452] = 4452, - [4453] = 4374, - [4454] = 4454, - [4455] = 4455, - [4456] = 4341, - [4457] = 4391, - [4458] = 4346, - [4459] = 4342, - [4460] = 4355, - [4461] = 4391, - [4462] = 4462, - [4463] = 4356, - [4464] = 4464, - [4465] = 4391, - [4466] = 4358, - [4467] = 4358, - [4468] = 4347, - [4469] = 4355, + [4425] = 4425, + [4426] = 4426, + [4427] = 4427, + [4428] = 4428, + [4429] = 4429, + [4430] = 4360, + [4431] = 4364, + [4432] = 4395, + [4433] = 4366, + [4434] = 4434, + [4435] = 4362, + [4436] = 4436, + [4437] = 4437, + [4438] = 4395, + [4439] = 4362, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, + [4443] = 4443, + [4444] = 4357, + [4445] = 4445, + [4446] = 4359, + [4447] = 4360, + [4448] = 4361, + [4449] = 4354, + [4450] = 4408, + [4451] = 4372, + [4452] = 4395, + [4453] = 4453, + [4454] = 4374, + [4455] = 4359, + [4456] = 4456, + [4457] = 4157, + [4458] = 4458, + [4459] = 4366, + [4460] = 4362, + [4461] = 4359, + [4462] = 4357, + [4463] = 4359, + [4464] = 4360, + [4465] = 4465, + [4466] = 4443, + [4467] = 4361, + [4468] = 4391, + [4469] = 4407, [4470] = 4470, - [4471] = 4355, - [4472] = 4397, - [4473] = 4356, - [4474] = 4410, - [4475] = 4391, - [4476] = 4356, - [4477] = 4397, - [4478] = 4391, - [4479] = 4410, + [4471] = 4364, + [4472] = 4428, + [4473] = 4364, + [4474] = 4362, + [4475] = 4475, + [4476] = 4441, + [4477] = 4364, + [4478] = 4402, + [4479] = 4479, [4480] = 4480, - [4481] = 4481, + [4481] = 4440, [4482] = 4482, - [4483] = 4483, - [4484] = 4484, - [4485] = 4485, - [4486] = 4486, + [4483] = 4354, + [4484] = 4437, + [4485] = 4395, + [4486] = 4364, [4487] = 4487, - [4488] = 4488, - [4489] = 4489, + [4488] = 4364, + [4489] = 4382, [4490] = 4490, [4491] = 4491, [4492] = 4492, @@ -8957,7 +8971,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4503] = 4503, [4504] = 4504, [4505] = 4505, - [4506] = 4506, + [4506] = 4026, [4507] = 4507, [4508] = 4508, [4509] = 4509, @@ -8973,10 +8987,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4519] = 4519, [4520] = 4520, [4521] = 4521, - [4522] = 4499, - [4523] = 4501, + [4522] = 4522, + [4523] = 4502, [4524] = 4524, - [4525] = 4525, + [4525] = 4511, [4526] = 4526, [4527] = 4527, [4528] = 4528, @@ -9002,14 +9016,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4548] = 4548, [4549] = 4549, [4550] = 4550, - [4551] = 4551, + [4551] = 4527, [4552] = 4552, - [4553] = 4553, + [4553] = 4528, [4554] = 4554, [4555] = 4555, [4556] = 4556, - [4557] = 4508, - [4558] = 4558, + [4557] = 4557, + [4558] = 4158, [4559] = 4559, [4560] = 4560, [4561] = 4561, @@ -9017,23 +9031,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4563] = 4563, [4564] = 4564, [4565] = 4565, - [4566] = 4517, - [4567] = 4518, - [4568] = 4520, + [4566] = 4566, + [4567] = 4567, + [4568] = 4512, [4569] = 4569, - [4570] = 4499, - [4571] = 4501, + [4570] = 4570, + [4571] = 4571, [4572] = 4572, [4573] = 4573, [4574] = 4574, - [4575] = 4512, - [4576] = 4519, + [4575] = 4575, + [4576] = 4521, [4577] = 4577, - [4578] = 4534, - [4579] = 4579, - [4580] = 4530, - [4581] = 4533, - [4582] = 4582, + [4578] = 4502, + [4579] = 4511, + [4580] = 4580, + [4581] = 4527, + [4582] = 4528, [4583] = 4583, [4584] = 4584, [4585] = 4585, @@ -9043,9 +9057,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4589] = 4589, [4590] = 4590, [4591] = 4591, - [4592] = 4517, + [4592] = 4533, [4593] = 4593, - [4594] = 4594, + [4594] = 4535, [4595] = 4595, [4596] = 4596, [4597] = 4597, @@ -9062,32 +9076,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4608] = 4608, [4609] = 4609, [4610] = 4610, - [4611] = 4530, + [4611] = 4611, [4612] = 4612, [4613] = 4613, [4614] = 4614, [4615] = 4615, - [4616] = 4520, + [4616] = 4616, [4617] = 4617, - [4618] = 4499, - [4619] = 4501, + [4618] = 3595, + [4619] = 4619, [4620] = 4620, [4621] = 4621, - [4622] = 4533, + [4622] = 4622, [4623] = 4623, - [4624] = 4120, + [4624] = 4624, [4625] = 4625, [4626] = 4626, - [4627] = 4530, + [4627] = 4627, [4628] = 4628, - [4629] = 4629, - [4630] = 4499, - [4631] = 4501, - [4632] = 4533, + [4629] = 4511, + [4630] = 4527, + [4631] = 4528, + [4632] = 4632, [4633] = 4633, [4634] = 4634, - [4635] = 4635, - [4636] = 4533, + [4635] = 4535, + [4636] = 4636, [4637] = 4637, [4638] = 4638, [4639] = 4639, @@ -9096,76 +9110,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4642] = 4642, [4643] = 4643, [4644] = 4644, - [4645] = 4518, - [4646] = 4646, - [4647] = 4647, - [4648] = 4648, + [4645] = 4645, + [4646] = 4515, + [4647] = 4527, + [4648] = 4528, [4649] = 4649, - [4650] = 4650, + [4650] = 4535, [4651] = 4651, [4652] = 4652, - [4653] = 4643, + [4653] = 4653, [4654] = 4654, [4655] = 4655, [4656] = 4656, - [4657] = 4508, - [4658] = 4508, + [4657] = 4657, + [4658] = 4658, [4659] = 4659, [4660] = 4660, [4661] = 4661, [4662] = 4662, [4663] = 4663, [4664] = 4664, - [4665] = 4633, + [4665] = 4665, [4666] = 4666, - [4667] = 4635, + [4667] = 4667, [4668] = 4668, - [4669] = 4669, + [4669] = 4518, [4670] = 4670, [4671] = 4671, [4672] = 4672, - [4673] = 4533, + [4673] = 4673, [4674] = 4674, [4675] = 4675, [4676] = 4676, - [4677] = 768, - [4678] = 4678, + [4677] = 4677, + [4678] = 4512, [4679] = 4679, [4680] = 4680, - [4681] = 4681, + [4681] = 4526, [4682] = 4682, [4683] = 4683, [4684] = 4684, - [4685] = 4518, + [4685] = 4685, [4686] = 4686, [4687] = 4687, [4688] = 4688, [4689] = 4689, - [4690] = 4690, + [4690] = 4533, [4691] = 4691, [4692] = 4692, [4693] = 4693, [4694] = 4694, - [4695] = 4695, - [4696] = 4696, + [4695] = 4512, + [4696] = 4530, [4697] = 4697, [4698] = 4698, - [4699] = 4699, + [4699] = 757, [4700] = 4700, - [4701] = 4701, - [4702] = 4702, + [4701] = 4621, + [4702] = 4544, [4703] = 4703, [4704] = 4704, - [4705] = 4705, - [4706] = 4706, - [4707] = 4707, - [4708] = 4708, + [4705] = 4587, + [4706] = 4588, + [4707] = 4521, + [4708] = 4502, [4709] = 4709, - [4710] = 4520, + [4710] = 4589, [4711] = 4711, [4712] = 4712, - [4713] = 4713, - [4714] = 4714, + [4713] = 4590, + [4714] = 4535, [4715] = 4715, [4716] = 4716, [4717] = 4717, @@ -9179,8 +9193,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4725] = 4725, [4726] = 4726, [4727] = 4727, - [4728] = 4728, - [4729] = 4729, + [4728] = 4512, + [4729] = 4502, [4730] = 4730, [4731] = 4731, [4732] = 4732, @@ -9194,26 +9208,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4740] = 4740, [4741] = 4741, [4742] = 4742, - [4743] = 4527, + [4743] = 4743, [4744] = 4744, [4745] = 4745, - [4746] = 4549, - [4747] = 4747, - [4748] = 4748, - [4749] = 4749, + [4746] = 4746, + [4747] = 4737, + [4748] = 4533, + [4749] = 4511, [4750] = 4750, [4751] = 4751, [4752] = 4752, [4753] = 4753, - [4754] = 4639, - [4755] = 4755, - [4756] = 4756, + [4754] = 4153, + [4755] = 4659, + [4756] = 4520, [4757] = 4757, [4758] = 4758, - [4759] = 4491, - [4760] = 4760, + [4759] = 4759, + [4760] = 4508, [4761] = 4761, - [4762] = 4762, + [4762] = 4513, [4763] = 4763, [4764] = 4764, [4765] = 4765, @@ -9225,30 +9239,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4771] = 4771, [4772] = 4772, [4773] = 4773, - [4774] = 4644, - [4775] = 4183, + [4774] = 4774, + [4775] = 4775, [4776] = 4776, [4777] = 4777, - [4778] = 4508, + [4778] = 4778, [4779] = 4779, - [4780] = 3611, - [4781] = 4781, - [4782] = 4782, - [4783] = 4499, - [4784] = 4501, - [4785] = 4785, + [4780] = 4780, + [4781] = 4512, + [4782] = 4709, + [4783] = 4783, + [4784] = 4784, + [4785] = 4712, [4786] = 4786, [4787] = 4787, [4788] = 4788, - [4789] = 4789, + [4789] = 4535, [4790] = 4790, - [4791] = 4791, + [4791] = 3528, [4792] = 4792, - [4793] = 4793, - [4794] = 4794, + [4793] = 4541, + [4794] = 4680, [4795] = 4795, [4796] = 4796, - [4797] = 4647, + [4797] = 4797, [4798] = 4798, [4799] = 4799, [4800] = 4800, @@ -9260,18 +9274,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4806] = 4806, [4807] = 4807, [4808] = 4808, - [4809] = 4809, + [4809] = 4753, [4810] = 4810, [4811] = 4811, - [4812] = 4812, + [4812] = 4796, [4813] = 4813, [4814] = 4814, [4815] = 4815, [4816] = 4816, [4817] = 4817, - [4818] = 4793, + [4818] = 4818, [4819] = 4819, - [4820] = 4796, + [4820] = 4820, [4821] = 4821, [4822] = 4822, [4823] = 4823, @@ -9280,22 +9294,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4826] = 4826, [4827] = 4827, [4828] = 4828, - [4829] = 4829, + [4829] = 4739, [4830] = 4830, [4831] = 4831, [4832] = 4832, - [4833] = 4833, - [4834] = 4834, + [4833] = 4527, + [4834] = 4746, [4835] = 4835, [4836] = 4836, [4837] = 4837, [4838] = 4838, [4839] = 4839, - [4840] = 4840, - [4841] = 4841, + [4840] = 4528, + [4841] = 4744, [4842] = 4842, [4843] = 4843, - [4844] = 4707, + [4844] = 4844, [4845] = 4845, [4846] = 4846, [4847] = 4847, @@ -9308,30 +9322,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4854] = 4854, [4855] = 4855, [4856] = 4856, - [4857] = 4857, + [4857] = 4665, [4858] = 4858, [4859] = 4859, [4860] = 4860, [4861] = 4861, [4862] = 4862, [4863] = 4863, - [4864] = 4836, - [4865] = 4258, + [4864] = 4864, + [4865] = 4865, [4866] = 4866, [4867] = 4867, [4868] = 4868, - [4869] = 4513, - [4870] = 4508, + [4869] = 4666, + [4870] = 4870, [4871] = 4871, [4872] = 4872, [4873] = 4873, - [4874] = 4874, + [4874] = 4685, [4875] = 4875, [4876] = 4876, [4877] = 4877, [4878] = 4878, [4879] = 4879, - [4880] = 4880, + [4880] = 4692, [4881] = 4881, [4882] = 4882, [4883] = 4883, @@ -9343,8 +9357,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4889] = 4889, [4890] = 4890, [4891] = 4891, - [4892] = 4892, - [4893] = 4893, + [4892] = 4722, + [4893] = 4674, [4894] = 4894, [4895] = 4895, [4896] = 4896, @@ -9353,114 +9367,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4899] = 4899, [4900] = 4900, [4901] = 4901, - [4902] = 4902, - [4903] = 4903, + [4902] = 3512, + [4903] = 4786, [4904] = 4904, [4905] = 4905, [4906] = 4906, [4907] = 4907, [4908] = 4908, [4909] = 4909, - [4910] = 4707, + [4910] = 4141, [4911] = 4911, - [4912] = 3577, - [4913] = 4913, - [4914] = 4836, + [4912] = 4912, + [4913] = 4796, + [4914] = 4914, [4915] = 4915, [4916] = 4916, [4917] = 4917, [4918] = 4918, - [4919] = 4919, - [4920] = 4920, + [4919] = 4685, + [4920] = 4905, [4921] = 4921, [4922] = 4922, - [4923] = 4923, + [4923] = 4675, [4924] = 4924, [4925] = 4925, [4926] = 4926, - [4927] = 4927, - [4928] = 3695, - [4929] = 4875, - [4930] = 4716, - [4931] = 4866, + [4927] = 4565, + [4928] = 4928, + [4929] = 4929, + [4930] = 4596, + [4931] = 4931, [4932] = 4932, - [4933] = 4824, - [4934] = 4703, + [4933] = 4933, + [4934] = 4934, [4935] = 4935, - [4936] = 4706, - [4937] = 4508, + [4936] = 4512, + [4937] = 4821, [4938] = 4938, [4939] = 4939, - [4940] = 4940, - [4941] = 4826, + [4940] = 4823, + [4941] = 4941, [4942] = 4942, [4943] = 4943, - [4944] = 4944, + [4944] = 4821, [4945] = 4945, [4946] = 4946, - [4947] = 4947, - [4948] = 4513, - [4949] = 4949, - [4950] = 4793, - [4951] = 4826, + [4947] = 4746, + [4948] = 4157, + [4949] = 4905, + [4950] = 4950, + [4951] = 4951, [4952] = 4952, [4953] = 4953, [4954] = 4954, - [4955] = 4490, - [4956] = 4875, - [4957] = 4493, + [4955] = 4955, + [4956] = 4956, + [4957] = 4957, [4958] = 4958, [4959] = 4959, [4960] = 4960, [4961] = 4961, [4962] = 4962, - [4963] = 3618, + [4963] = 4963, [4964] = 4964, [4965] = 4965, - [4966] = 4966, - [4967] = 4503, + [4966] = 4691, + [4967] = 4967, [4968] = 4968, - [4969] = 4911, - [4970] = 4507, + [4969] = 4969, + [4970] = 4521, [4971] = 4971, - [4972] = 4517, - [4973] = 4517, + [4972] = 4972, + [4973] = 4973, [4974] = 4974, [4975] = 4975, [4976] = 4976, - [4977] = 4878, - [4978] = 4518, + [4977] = 4502, + [4978] = 4978, [4979] = 4979, [4980] = 4980, - [4981] = 4894, - [4982] = 4510, - [4983] = 4983, - [4984] = 4679, + [4981] = 4981, + [4982] = 4982, + [4983] = 4511, + [4984] = 4984, [4985] = 4985, [4986] = 4986, [4987] = 4987, - [4988] = 4520, - [4989] = 4989, + [4988] = 4527, + [4989] = 4528, [4990] = 4990, - [4991] = 4182, - [4992] = 4499, - [4993] = 4501, - [4994] = 4518, - [4995] = 4995, + [4991] = 4991, + [4992] = 4992, + [4993] = 4993, + [4994] = 4994, + [4995] = 4502, [4996] = 4996, [4997] = 4997, - [4998] = 4918, + [4998] = 4998, [4999] = 4999, [5000] = 5000, - [5001] = 4518, - [5002] = 5002, - [5003] = 4512, + [5001] = 5001, + [5002] = 4587, + [5003] = 4588, [5004] = 5004, - [5005] = 4519, - [5006] = 4577, + [5005] = 4589, + [5006] = 4590, [5007] = 5007, [5008] = 5008, - [5009] = 4534, + [5009] = 5009, [5010] = 5010, [5011] = 5011, [5012] = 5012, @@ -9473,7 +9487,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5019] = 5019, [5020] = 5020, [5021] = 5021, - [5022] = 5022, + [5022] = 4533, [5023] = 5023, [5024] = 5024, [5025] = 5025, @@ -9483,33 +9497,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5029] = 5029, [5030] = 5030, [5031] = 5031, - [5032] = 5032, + [5032] = 4535, [5033] = 5033, [5034] = 5034, [5035] = 5035, [5036] = 5036, - [5037] = 4552, + [5037] = 5037, [5038] = 5038, - [5039] = 4530, + [5039] = 5039, [5040] = 5040, - [5041] = 4918, + [5041] = 5041, [5042] = 5042, [5043] = 5043, [5044] = 5044, - [5045] = 4916, - [5046] = 4533, + [5045] = 5045, + [5046] = 5046, [5047] = 5047, - [5048] = 4553, - [5049] = 5049, - [5050] = 5050, + [5048] = 5048, + [5049] = 1582, + [5050] = 1589, [5051] = 5051, [5052] = 5052, [5053] = 5053, - [5054] = 4666, + [5054] = 5054, [5055] = 5055, [5056] = 5056, - [5057] = 1592, - [5058] = 1630, + [5057] = 5057, + [5058] = 5058, [5059] = 5059, [5060] = 5060, [5061] = 5061, @@ -9518,36 +9532,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5064] = 5064, [5065] = 5065, [5066] = 5066, - [5067] = 5067, + [5067] = 4640, [5068] = 5068, - [5069] = 5069, - [5070] = 5070, + [5069] = 4641, + [5070] = 3699, [5071] = 5071, - [5072] = 3689, + [5072] = 3685, [5073] = 5073, - [5074] = 4654, + [5074] = 5074, [5075] = 5075, [5076] = 5076, [5077] = 5077, - [5078] = 5078, + [5078] = 4675, [5079] = 5079, [5080] = 5080, [5081] = 5081, [5082] = 5082, [5083] = 5083, [5084] = 5084, - [5085] = 4174, + [5085] = 5085, [5086] = 5086, [5087] = 5087, [5088] = 5088, [5089] = 5089, - [5090] = 4520, + [5090] = 5090, [5091] = 5091, [5092] = 5092, - [5093] = 5093, + [5093] = 4521, [5094] = 5094, [5095] = 5095, - [5096] = 4577, + [5096] = 5096, [5097] = 5097, [5098] = 5098, [5099] = 5099, @@ -9560,11 +9574,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5106] = 5106, [5107] = 5107, [5108] = 5108, - [5109] = 2632, - [5110] = 5107, + [5109] = 5109, + [5110] = 5110, [5111] = 5111, - [5112] = 5112, - [5113] = 5113, + [5112] = 2659, + [5113] = 2660, [5114] = 5114, [5115] = 5115, [5116] = 5116, @@ -9572,20 +9586,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5118] = 5118, [5119] = 5119, [5120] = 5120, - [5121] = 2637, + [5121] = 5121, [5122] = 5122, [5123] = 5123, - [5124] = 5124, + [5124] = 2640, [5125] = 5125, - [5126] = 5126, + [5126] = 2641, [5127] = 5127, [5128] = 5128, - [5129] = 5129, + [5129] = 5123, [5130] = 5130, [5131] = 5131, - [5132] = 5107, - [5133] = 5098, - [5134] = 5134, + [5132] = 5132, + [5133] = 5125, + [5134] = 5127, [5135] = 5135, [5136] = 5136, [5137] = 5137, @@ -9598,299 +9612,299 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5144] = 5144, [5145] = 5145, [5146] = 5146, - [5147] = 5147, + [5147] = 5128, [5148] = 5148, [5149] = 5149, [5150] = 5150, - [5151] = 5107, + [5151] = 5151, [5152] = 5152, [5153] = 5153, [5154] = 5154, - [5155] = 5141, + [5155] = 5155, [5156] = 5156, [5157] = 5157, [5158] = 5158, - [5159] = 5137, - [5160] = 5127, + [5159] = 5159, + [5160] = 5160, [5161] = 5161, - [5162] = 5108, + [5162] = 5162, [5163] = 5163, - [5164] = 5152, + [5164] = 5164, [5165] = 5165, - [5166] = 5136, + [5166] = 5166, [5167] = 5167, - [5168] = 5168, + [5168] = 2651, [5169] = 5169, [5170] = 5170, [5171] = 5171, - [5172] = 1675, - [5173] = 1676, + [5172] = 5164, + [5173] = 2652, [5174] = 5174, - [5175] = 3854, - [5176] = 3727, - [5177] = 3749, + [5175] = 5175, + [5176] = 5176, + [5177] = 5105, [5178] = 5178, - [5179] = 5112, - [5180] = 5118, + [5179] = 5179, + [5180] = 5180, [5181] = 5181, [5182] = 5182, - [5183] = 5134, - [5184] = 5184, - [5185] = 5137, - [5186] = 2641, - [5187] = 5187, - [5188] = 5114, - [5189] = 2642, - [5190] = 2676, - [5191] = 5117, - [5192] = 5123, - [5193] = 5193, + [5183] = 5149, + [5184] = 5150, + [5185] = 5185, + [5186] = 2629, + [5187] = 5121, + [5188] = 5107, + [5189] = 5189, + [5190] = 5118, + [5191] = 5132, + [5192] = 1659, + [5193] = 5136, [5194] = 5194, - [5195] = 5115, - [5196] = 5196, + [5195] = 2678, + [5196] = 2630, [5197] = 5197, - [5198] = 5129, + [5198] = 5198, [5199] = 5199, [5200] = 5200, [5201] = 5201, - [5202] = 5202, + [5202] = 2645, [5203] = 5203, - [5204] = 5150, + [5204] = 5116, [5205] = 5205, [5206] = 5206, - [5207] = 5103, - [5208] = 2652, + [5207] = 5207, + [5208] = 5142, [5209] = 5209, - [5210] = 5210, - [5211] = 5211, + [5210] = 5206, + [5211] = 5197, [5212] = 5212, - [5213] = 5103, - [5214] = 5118, - [5215] = 5118, + [5213] = 5213, + [5214] = 1660, + [5215] = 5215, [5216] = 5216, - [5217] = 5217, - [5218] = 5134, - [5219] = 5137, - [5220] = 5209, - [5221] = 5153, - [5222] = 5222, - [5223] = 5223, - [5224] = 2660, - [5225] = 5147, - [5226] = 5146, - [5227] = 5168, - [5228] = 5228, - [5229] = 5229, + [5217] = 5108, + [5218] = 5218, + [5219] = 2674, + [5220] = 5220, + [5221] = 5221, + [5222] = 2620, + [5223] = 2675, + [5224] = 5121, + [5225] = 5103, + [5226] = 5132, + [5227] = 5136, + [5228] = 5185, + [5229] = 5220, [5230] = 5230, - [5231] = 5116, - [5232] = 5232, + [5231] = 5231, + [5232] = 5103, [5233] = 5233, [5234] = 5234, - [5235] = 5149, - [5236] = 5236, - [5237] = 5237, + [5235] = 5230, + [5236] = 5231, + [5237] = 2623, [5238] = 5238, - [5239] = 5197, - [5240] = 5232, + [5239] = 5239, + [5240] = 2624, [5241] = 5241, [5242] = 5242, - [5243] = 5154, - [5244] = 5146, - [5245] = 2664, + [5243] = 5169, + [5244] = 5244, + [5245] = 5245, [5246] = 5246, - [5247] = 5247, - [5248] = 5145, - [5249] = 5249, - [5250] = 5250, - [5251] = 5156, - [5252] = 5252, - [5253] = 5234, - [5254] = 5157, + [5247] = 5150, + [5248] = 5121, + [5249] = 2649, + [5250] = 5154, + [5251] = 5251, + [5252] = 3790, + [5253] = 5104, + [5254] = 3841, [5255] = 5255, - [5256] = 5256, - [5257] = 5156, + [5256] = 2650, + [5257] = 3781, [5258] = 5258, [5259] = 5259, - [5260] = 5161, + [5260] = 5260, [5261] = 5261, - [5262] = 5182, - [5263] = 5134, - [5264] = 5157, + [5262] = 5262, + [5263] = 5128, + [5264] = 2635, [5265] = 5265, [5266] = 5266, - [5267] = 5267, - [5268] = 5268, - [5269] = 5163, - [5270] = 5270, - [5271] = 5271, + [5267] = 5149, + [5268] = 5157, + [5269] = 5109, + [5270] = 5156, + [5271] = 5150, [5272] = 5272, - [5273] = 5273, + [5273] = 5238, [5274] = 5274, [5275] = 5275, - [5276] = 5276, - [5277] = 5193, + [5276] = 5157, + [5277] = 5277, [5278] = 5278, - [5279] = 2670, + [5279] = 5279, [5280] = 5280, - [5281] = 2671, + [5281] = 5281, [5282] = 5282, - [5283] = 5107, - [5284] = 5284, - [5285] = 5134, - [5286] = 2645, - [5287] = 5203, + [5283] = 5122, + [5284] = 5220, + [5285] = 5285, + [5286] = 5215, + [5287] = 5287, [5288] = 5288, - [5289] = 5229, + [5289] = 5289, [5290] = 5290, [5291] = 5291, - [5292] = 5292, - [5293] = 5187, - [5294] = 2638, - [5295] = 5295, - [5296] = 5296, - [5297] = 5297, - [5298] = 5116, - [5299] = 5130, + [5292] = 5120, + [5293] = 5230, + [5294] = 5294, + [5295] = 5290, + [5296] = 5119, + [5297] = 5220, + [5298] = 5231, + [5299] = 5299, [5300] = 5300, [5301] = 5301, - [5302] = 2625, - [5303] = 5165, - [5304] = 5102, - [5305] = 2639, - [5306] = 5230, - [5307] = 5232, + [5302] = 3797, + [5303] = 5303, + [5304] = 5304, + [5305] = 5239, + [5306] = 5306, + [5307] = 2646, [5308] = 5308, - [5309] = 5104, - [5310] = 5310, - [5311] = 5233, - [5312] = 5229, - [5313] = 5194, - [5314] = 5314, - [5315] = 5315, - [5316] = 5267, - [5317] = 5107, - [5318] = 5318, - [5319] = 5319, - [5320] = 5320, - [5321] = 5321, - [5322] = 5322, - [5323] = 5274, - [5324] = 3746, + [5309] = 5145, + [5310] = 2648, + [5311] = 5146, + [5312] = 5103, + [5313] = 5150, + [5314] = 5287, + [5315] = 5132, + [5316] = 5135, + [5317] = 5317, + [5318] = 5230, + [5319] = 5111, + [5320] = 5120, + [5321] = 5130, + [5322] = 5140, + [5323] = 5152, + [5324] = 5132, [5325] = 5325, [5326] = 5326, - [5327] = 5255, + [5327] = 5231, [5328] = 5328, - [5329] = 5202, + [5329] = 5167, [5330] = 5330, - [5331] = 2659, + [5331] = 5331, [5332] = 5332, - [5333] = 5333, - [5334] = 5118, - [5335] = 5196, - [5336] = 5336, - [5337] = 5146, - [5338] = 5156, - [5339] = 5119, - [5340] = 2675, - [5341] = 5118, - [5342] = 5100, + [5333] = 5199, + [5334] = 5334, + [5335] = 5335, + [5336] = 5128, + [5337] = 5337, + [5338] = 5148, + [5339] = 5149, + [5340] = 5340, + [5341] = 5157, + [5342] = 5155, [5343] = 5343, - [5344] = 5157, - [5345] = 5233, - [5346] = 1654, - [5347] = 5268, - [5348] = 5270, + [5344] = 5294, + [5345] = 5121, + [5346] = 5153, + [5347] = 5347, + [5348] = 5175, [5349] = 5349, - [5350] = 5134, - [5351] = 5351, - [5352] = 5352, - [5353] = 2628, + [5350] = 5350, + [5351] = 5182, + [5352] = 5118, + [5353] = 5132, [5354] = 5354, - [5355] = 5209, - [5356] = 5137, - [5357] = 5267, + [5355] = 5142, + [5356] = 5194, + [5357] = 5220, [5358] = 5358, - [5359] = 5146, - [5360] = 5137, - [5361] = 5229, - [5362] = 5116, - [5363] = 5363, - [5364] = 5232, - [5365] = 5233, - [5366] = 5366, - [5367] = 5278, - [5368] = 5280, - [5369] = 5282, - [5370] = 5370, - [5371] = 2648, - [5372] = 5352, - [5373] = 5288, + [5359] = 5103, + [5360] = 5203, + [5361] = 5230, + [5362] = 5258, + [5363] = 5136, + [5364] = 5231, + [5365] = 5136, + [5366] = 5128, + [5367] = 5262, + [5368] = 5245, + [5369] = 5265, + [5370] = 5358, + [5371] = 5150, + [5372] = 5266, + [5373] = 5178, [5374] = 5374, - [5375] = 5292, - [5376] = 5201, - [5377] = 5275, + [5375] = 5375, + [5376] = 5149, + [5377] = 5150, [5378] = 5378, - [5379] = 5107, - [5380] = 5229, - [5381] = 5366, - [5382] = 5382, + [5379] = 5157, + [5380] = 5380, + [5381] = 5381, + [5382] = 5242, [5383] = 5383, - [5384] = 5116, - [5385] = 5156, - [5386] = 5386, - [5387] = 5193, - [5388] = 5206, - [5389] = 5343, - [5390] = 5197, - [5391] = 5211, - [5392] = 5157, - [5393] = 5230, - [5394] = 2624, - [5395] = 5395, + [5384] = 5384, + [5385] = 5170, + [5386] = 5148, + [5387] = 5260, + [5388] = 5121, + [5389] = 5205, + [5390] = 5242, + [5391] = 5391, + [5392] = 5392, + [5393] = 5393, + [5394] = 5394, + [5395] = 2653, [5396] = 5396, - [5397] = 5232, + [5397] = 5198, [5398] = 5398, - [5399] = 5399, - [5400] = 5400, - [5401] = 5401, - [5402] = 5212, - [5403] = 5233, - [5404] = 5242, - [5405] = 5268, - [5406] = 2656, - [5407] = 5407, - [5408] = 2629, - [5409] = 5400, - [5410] = 5217, - [5411] = 2674, + [5399] = 5139, + [5400] = 2657, + [5401] = 5137, + [5402] = 5402, + [5403] = 5144, + [5404] = 5404, + [5405] = 5160, + [5406] = 5406, + [5407] = 5200, + [5408] = 5408, + [5409] = 5409, + [5410] = 5410, + [5411] = 5411, [5412] = 5412, - [5413] = 5222, + [5413] = 5413, [5414] = 5414, - [5415] = 5223, - [5416] = 5414, + [5415] = 5415, + [5416] = 5216, [5417] = 5417, - [5418] = 5228, - [5419] = 5247, - [5420] = 5205, - [5421] = 5118, - [5422] = 5182, - [5423] = 5134, - [5424] = 5424, - [5425] = 5131, - [5426] = 5352, - [5427] = 5137, - [5428] = 5143, - [5429] = 5429, - [5430] = 5430, - [5431] = 5431, - [5432] = 5432, - [5433] = 5322, - [5434] = 5434, - [5435] = 5435, - [5436] = 5436, - [5437] = 5437, + [5418] = 5392, + [5419] = 5218, + [5420] = 5420, + [5421] = 5221, + [5422] = 5422, + [5423] = 5136, + [5424] = 5277, + [5425] = 5425, + [5426] = 5410, + [5427] = 5332, + [5428] = 5428, + [5429] = 5121, + [5430] = 1691, + [5431] = 5287, + [5432] = 5132, + [5433] = 5200, + [5434] = 5358, + [5435] = 5136, + [5436] = 5244, + [5437] = 5245, [5438] = 5438, - [5439] = 5439, + [5439] = 5278, [5440] = 5440, [5441] = 5441, [5442] = 5442, @@ -9900,379 +9914,387 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5446] = 5446, [5447] = 5447, [5448] = 5448, - [5449] = 5449, + [5449] = 5446, [5450] = 5450, [5451] = 5451, [5452] = 5452, [5453] = 5453, - [5454] = 5447, + [5454] = 5454, [5455] = 5455, [5456] = 5456, [5457] = 5457, [5458] = 5458, [5459] = 5459, [5460] = 5460, - [5461] = 5452, + [5461] = 5461, [5462] = 5462, [5463] = 5463, [5464] = 5464, [5465] = 5465, - [5466] = 5466, - [5467] = 5449, - [5468] = 5450, - [5469] = 5443, + [5466] = 5441, + [5467] = 5467, + [5468] = 5468, + [5469] = 5462, [5470] = 5470, [5471] = 5471, [5472] = 5472, [5473] = 5473, - [5474] = 5474, + [5474] = 5472, [5475] = 5475, - [5476] = 5448, - [5477] = 5463, + [5476] = 5468, + [5477] = 5477, [5478] = 5478, [5479] = 5479, - [5480] = 5465, - [5481] = 5450, - [5482] = 5440, - [5483] = 5450, - [5484] = 5484, + [5480] = 5480, + [5481] = 5479, + [5482] = 5482, + [5483] = 5468, + [5484] = 5448, [5485] = 5485, - [5486] = 5484, + [5486] = 5486, [5487] = 5487, - [5488] = 5446, - [5489] = 5471, + [5488] = 5457, + [5489] = 5448, [5490] = 5490, [5491] = 5491, - [5492] = 5440, - [5493] = 5471, - [5494] = 5442, - [5495] = 5443, - [5496] = 5496, - [5497] = 5445, - [5498] = 5446, - [5499] = 5447, - [5500] = 5496, - [5501] = 5501, - [5502] = 5502, - [5503] = 5503, + [5492] = 5492, + [5493] = 5493, + [5494] = 5494, + [5495] = 5495, + [5496] = 5452, + [5497] = 5497, + [5498] = 5453, + [5499] = 5499, + [5500] = 5500, + [5501] = 5454, + [5502] = 5450, + [5503] = 5451, [5504] = 5504, - [5505] = 5505, - [5506] = 5506, + [5505] = 5453, + [5506] = 5454, [5507] = 5455, [5508] = 5508, - [5509] = 5509, - [5510] = 5490, + [5509] = 5463, + [5510] = 5510, [5511] = 5511, - [5512] = 5455, - [5513] = 5440, - [5514] = 5496, - [5515] = 5515, + [5512] = 5471, + [5513] = 5485, + [5514] = 5514, + [5515] = 5463, [5516] = 5516, - [5517] = 5517, - [5518] = 5479, - [5519] = 5440, - [5520] = 5485, - [5521] = 5521, - [5522] = 5449, - [5523] = 5451, - [5524] = 5451, - [5525] = 5525, + [5517] = 5457, + [5518] = 5468, + [5519] = 5495, + [5520] = 5520, + [5521] = 5510, + [5522] = 5491, + [5523] = 5495, + [5524] = 5524, + [5525] = 5480, [5526] = 5526, - [5527] = 5527, - [5528] = 5447, - [5529] = 5442, - [5530] = 5443, - [5531] = 5531, - [5532] = 5532, - [5533] = 5445, - [5534] = 5534, - [5535] = 5535, + [5527] = 5455, + [5528] = 5450, + [5529] = 5451, + [5530] = 5456, + [5531] = 5444, + [5532] = 5482, + [5533] = 5533, + [5534] = 5453, + [5535] = 5454, [5536] = 5446, - [5537] = 5447, - [5538] = 5538, - [5539] = 5463, - [5540] = 5442, - [5541] = 5449, - [5542] = 5542, - [5543] = 5543, - [5544] = 5443, - [5545] = 5463, - [5546] = 5457, - [5547] = 5525, - [5548] = 5548, - [5549] = 5549, - [5550] = 5451, - [5551] = 5527, - [5552] = 5478, - [5553] = 5455, - [5554] = 5472, + [5537] = 5455, + [5538] = 5462, + [5539] = 5539, + [5540] = 5465, + [5541] = 5541, + [5542] = 5443, + [5543] = 5494, + [5544] = 5441, + [5545] = 5545, + [5546] = 5467, + [5547] = 5450, + [5548] = 5450, + [5549] = 5472, + [5550] = 5550, + [5551] = 5551, + [5552] = 5451, + [5553] = 5468, + [5554] = 5470, [5555] = 5555, - [5556] = 5441, - [5557] = 5557, + [5556] = 5485, + [5557] = 5504, [5558] = 5558, - [5559] = 5478, - [5560] = 5560, - [5561] = 5452, - [5562] = 5485, - [5563] = 5436, - [5564] = 5445, - [5565] = 5479, - [5566] = 5446, - [5567] = 5447, - [5568] = 5462, - [5569] = 5450, - [5570] = 5449, - [5571] = 5479, - [5572] = 5442, - [5573] = 5573, - [5574] = 5526, - [5575] = 5443, - [5576] = 5455, - [5577] = 5526, - [5578] = 5443, - [5579] = 5527, - [5580] = 5580, - [5581] = 5501, - [5582] = 5470, - [5583] = 5471, - [5584] = 5584, - [5585] = 5451, - [5586] = 5451, - [5587] = 5460, + [5559] = 5559, + [5560] = 5473, + [5561] = 5514, + [5562] = 5456, + [5563] = 5463, + [5564] = 5564, + [5565] = 5495, + [5566] = 5465, + [5567] = 5472, + [5568] = 5467, + [5569] = 5569, + [5570] = 5504, + [5571] = 5516, + [5572] = 5453, + [5573] = 5550, + [5574] = 5454, + [5575] = 5455, + [5576] = 5479, + [5577] = 5539, + [5578] = 5578, + [5579] = 5524, + [5580] = 5494, + [5581] = 5508, + [5582] = 5462, + [5583] = 5545, + [5584] = 5463, + [5585] = 5452, + [5586] = 5586, + [5587] = 5587, [5588] = 5588, - [5589] = 5589, - [5590] = 5437, - [5591] = 5437, - [5592] = 5592, - [5593] = 5436, - [5594] = 5491, - [5595] = 5455, - [5596] = 5478, - [5597] = 5445, - [5598] = 5598, - [5599] = 5599, + [5589] = 5539, + [5590] = 5590, + [5591] = 5479, + [5592] = 5586, + [5593] = 5457, + [5594] = 5594, + [5595] = 5595, + [5596] = 5596, + [5597] = 5533, + [5598] = 5569, + [5599] = 5539, [5600] = 5600, - [5601] = 5448, - [5602] = 5446, - [5603] = 5573, - [5604] = 5452, - [5605] = 5441, - [5606] = 5452, - [5607] = 5447, - [5608] = 5608, - [5609] = 5598, - [5610] = 5589, - [5611] = 5484, - [5612] = 5599, - [5613] = 5448, - [5614] = 5600, - [5615] = 5485, - [5616] = 5485, - [5617] = 5526, - [5618] = 5618, - [5619] = 5479, + [5601] = 5601, + [5602] = 5602, + [5603] = 5451, + [5604] = 5595, + [5605] = 5473, + [5606] = 5606, + [5607] = 5454, + [5608] = 5606, + [5609] = 5448, + [5610] = 5516, + [5611] = 5611, + [5612] = 5612, + [5613] = 5613, + [5614] = 5495, + [5615] = 5600, + [5616] = 5457, + [5617] = 5611, + [5618] = 5495, + [5619] = 5619, [5620] = 5620, - [5621] = 5504, + [5621] = 5539, [5622] = 5622, - [5623] = 5588, - [5624] = 5622, - [5625] = 5625, - [5626] = 5485, - [5627] = 5526, - [5628] = 5628, - [5629] = 5457, - [5630] = 5608, - [5631] = 5437, - [5632] = 5625, - [5633] = 5451, - [5634] = 5628, - [5635] = 5635, - [5636] = 5543, - [5637] = 5637, + [5623] = 5623, + [5624] = 5624, + [5625] = 5478, + [5626] = 5470, + [5627] = 5453, + [5628] = 5492, + [5629] = 5451, + [5630] = 5470, + [5631] = 5471, + [5632] = 5508, + [5633] = 5555, + [5634] = 5444, + [5635] = 5446, + [5636] = 5602, + [5637] = 5444, [5638] = 5638, - [5639] = 5437, - [5640] = 5640, - [5641] = 5592, - [5642] = 5638, - [5643] = 5643, - [5644] = 5444, - [5645] = 5527, - [5646] = 5643, - [5647] = 5487, - [5648] = 5444, + [5639] = 5472, + [5640] = 5441, + [5641] = 5446, + [5642] = 5454, + [5643] = 5479, + [5644] = 5611, + [5645] = 5497, + [5646] = 5646, + [5647] = 5647, + [5648] = 5569, [5649] = 5649, - [5650] = 5548, - [5651] = 5463, - [5652] = 5457, - [5653] = 5543, - [5654] = 5654, - [5655] = 5655, - [5656] = 5436, - [5657] = 5657, - [5658] = 5456, + [5650] = 5650, + [5651] = 5494, + [5652] = 5587, + [5653] = 5472, + [5654] = 5510, + [5655] = 5559, + [5656] = 5482, + [5657] = 5444, + [5658] = 5455, [5659] = 5659, - [5660] = 5527, - [5661] = 5445, - [5662] = 5442, - [5663] = 5580, - [5664] = 5543, - [5665] = 5438, - [5666] = 5504, - [5667] = 5584, - [5668] = 5456, - [5669] = 5506, - [5670] = 5548, - [5671] = 5448, - [5672] = 5442, - [5673] = 5439, - [5674] = 5472, - [5675] = 5478, - [5676] = 5501, - [5677] = 5573, - [5678] = 5678, - [5679] = 5534, - [5680] = 5473, - [5681] = 5659, - [5682] = 5580, - [5683] = 5443, - [5684] = 5485, - [5685] = 5526, - [5686] = 5598, - [5687] = 5452, - [5688] = 5438, - [5689] = 5508, - [5690] = 5690, - [5691] = 5442, - [5692] = 5599, - [5693] = 5693, - [5694] = 5600, - [5695] = 5504, - [5696] = 5443, - [5697] = 5584, - [5698] = 5622, - [5699] = 5437, - [5700] = 5625, - [5701] = 5456, - [5702] = 5506, - [5703] = 5437, - [5704] = 5445, - [5705] = 5446, - [5706] = 5447, - [5707] = 5548, - [5708] = 5708, - [5709] = 5472, - [5710] = 5710, - [5711] = 5628, - [5712] = 5712, - [5713] = 5526, - [5714] = 5479, - [5715] = 5445, - [5716] = 5501, - [5717] = 5659, - [5718] = 5542, - [5719] = 5638, - [5720] = 5573, - [5721] = 5573, - [5722] = 5442, - [5723] = 5643, - [5724] = 5446, - [5725] = 5443, - [5726] = 5598, - [5727] = 5457, - [5728] = 5599, - [5729] = 5600, - [5730] = 5445, - [5731] = 5622, - [5732] = 5446, - [5733] = 5447, - [5734] = 5734, - [5735] = 5625, - [5736] = 5455, - [5737] = 5447, - [5738] = 5738, - [5739] = 5739, - [5740] = 5628, - [5741] = 5503, - [5742] = 5455, - [5743] = 5470, - [5744] = 5444, - [5745] = 5638, - [5746] = 5449, - [5747] = 5643, - [5748] = 5444, - [5749] = 5452, - [5750] = 5598, - [5751] = 5751, - [5752] = 5543, - [5753] = 5527, - [5754] = 5506, - [5755] = 5534, - [5756] = 5446, - [5757] = 5457, - [5758] = 5453, - [5759] = 5470, - [5760] = 5511, - [5761] = 5599, - [5762] = 5659, - [5763] = 5543, - [5764] = 5580, - [5765] = 5441, - [5766] = 5458, - [5767] = 5767, - [5768] = 5438, - [5769] = 5457, - [5770] = 5470, - [5771] = 5504, - [5772] = 5471, - [5773] = 5600, - [5774] = 5584, - [5775] = 5455, - [5776] = 5455, - [5777] = 5457, - [5778] = 5778, - [5779] = 5456, - [5780] = 5622, - [5781] = 5457, - [5782] = 5659, - [5783] = 5506, - [5784] = 5543, - [5785] = 5441, - [5786] = 5548, - [5787] = 5436, - [5788] = 5625, - [5789] = 5472, - [5790] = 5790, - [5791] = 5501, - [5792] = 5712, - [5793] = 5459, - [5794] = 5580, - [5795] = 5534, - [5796] = 5470, - [5797] = 5471, - [5798] = 5628, - [5799] = 5445, - [5800] = 5438, - [5801] = 5708, - [5802] = 5496, - [5803] = 5442, - [5804] = 5804, - [5805] = 5618, - [5806] = 5790, - [5807] = 5505, - [5808] = 5808, - [5809] = 5638, + [5660] = 5470, + [5661] = 5455, + [5662] = 5477, + [5663] = 5545, + [5664] = 5444, + [5665] = 5473, + [5666] = 5666, + [5667] = 5587, + [5668] = 5446, + [5669] = 5524, + [5670] = 5485, + [5671] = 5671, + [5672] = 5452, + [5673] = 5457, + [5674] = 5674, + [5675] = 5441, + [5676] = 5611, + [5677] = 5586, + [5678] = 5472, + [5679] = 5649, + [5680] = 5569, + [5681] = 5450, + [5682] = 5451, + [5683] = 5683, + [5684] = 5684, + [5685] = 5453, + [5686] = 5454, + [5687] = 5687, + [5688] = 5455, + [5689] = 5514, + [5690] = 5450, + [5691] = 5514, + [5692] = 5451, + [5693] = 5456, + [5694] = 5694, + [5695] = 5595, + [5696] = 5465, + [5697] = 5453, + [5698] = 5467, + [5699] = 5456, + [5700] = 5454, + [5701] = 5455, + [5702] = 5465, + [5703] = 5467, + [5704] = 5504, + [5705] = 5485, + [5706] = 5463, + [5707] = 5444, + [5708] = 5495, + [5709] = 5709, + [5710] = 5448, + [5711] = 5516, + [5712] = 5524, + [5713] = 5504, + [5714] = 5586, + [5715] = 5539, + [5716] = 5595, + [5717] = 5516, + [5718] = 5606, + [5719] = 5524, + [5720] = 5586, + [5721] = 5595, + [5722] = 5606, + [5723] = 5723, + [5724] = 5494, + [5725] = 5611, + [5726] = 5726, + [5727] = 5727, + [5728] = 5463, + [5729] = 5499, + [5730] = 5450, + [5731] = 5569, + [5732] = 5606, + [5733] = 5451, + [5734] = 5620, + [5735] = 5470, + [5736] = 5452, + [5737] = 5491, + [5738] = 5453, + [5739] = 5463, + [5740] = 5454, + [5741] = 5455, + [5742] = 5569, + [5743] = 5743, + [5744] = 5611, + [5745] = 5745, + [5746] = 5588, + [5747] = 5747, + [5748] = 5494, + [5749] = 5749, + [5750] = 5463, + [5751] = 5590, + [5752] = 5620, + [5753] = 5623, + [5754] = 5526, + [5755] = 5463, + [5756] = 5624, + [5757] = 5709, + [5758] = 5620, + [5759] = 5759, + [5760] = 5760, + [5761] = 5478, + [5762] = 5447, + [5763] = 5763, + [5764] = 5578, + [5765] = 5470, + [5766] = 5508, + [5767] = 5590, + [5768] = 5492, + [5769] = 5611, + [5770] = 5497, + [5771] = 5623, + [5772] = 5491, + [5773] = 5510, + [5774] = 5446, + [5775] = 5514, + [5776] = 5482, + [5777] = 5470, + [5778] = 5590, + [5779] = 5545, + [5780] = 5471, + [5781] = 5587, + [5782] = 5590, + [5783] = 5479, + [5784] = 5784, + [5785] = 5470, + [5786] = 5786, + [5787] = 5452, + [5788] = 5624, + [5789] = 5470, + [5790] = 5478, + [5791] = 5475, + [5792] = 5492, + [5793] = 5497, + [5794] = 5453, + [5795] = 5795, + [5796] = 5510, + [5797] = 5482, + [5798] = 5545, + [5799] = 5587, + [5800] = 5493, + [5801] = 5784, + [5802] = 5450, + [5803] = 5450, + [5804] = 5590, + [5805] = 5479, + [5806] = 5623, + [5807] = 5539, + [5808] = 5620, + [5809] = 5671, [5810] = 5810, - [5811] = 5448, - [5812] = 5457, - [5813] = 5813, - [5814] = 5643, - [5815] = 5484, - [5816] = 5584, - [5817] = 5470, - [5818] = 5818, - [5819] = 5448, - [5820] = 5471, - [5821] = 5484, + [5811] = 5508, + [5812] = 5473, + [5813] = 5558, + [5814] = 5511, + [5815] = 5486, + [5816] = 5471, + [5817] = 5624, + [5818] = 5647, + [5819] = 5596, + [5820] = 5623, + [5821] = 5624, + [5822] = 5478, + [5823] = 5451, + [5824] = 5824, + [5825] = 5590, + [5826] = 5638, + [5827] = 5492, + [5828] = 5497, + [5829] = 5457, }; static TSCharacterRange extras_character_set_1[] = { @@ -10664,7 +10686,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '[', 115, '\\', 57, ']', 116, - '{', 105, + '`', 220, + '{', 106, '|', 169, '}', 108, ); @@ -10673,7 +10696,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && (lookahead < '{' || '~' < lookahead)) ADVANCE(237); END_STATE(); case 13: @@ -10685,33 +10707,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 130, '(', 111, ')', 112, - '+', 171, + '*', 99, + '+', 170, ',', 107, - '-', 175, + '-', 174, '.', 127, - '/', 178, + '/', 22, '0', 227, ':', 114, ';', 113, - '<', 189, + '<', 184, '=', 104, '>', 123, - '?', 241, + '?', 240, '@', 239, '[', 115, '\\', 57, ']', 116, - '`', 220, '{', 105, '|', 169, '}', 108, - '~', 198, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(237); END_STATE(); case 14: ADVANCE_MAP( @@ -10721,34 +10744,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 159, '\'', 130, '(', 111, - '*', 99, - '+', 170, + ')', 112, + '+', 171, ',', 107, - '-', 174, + '-', 175, '.', 127, - '/', 22, + '/', 178, '0', 227, ':', 114, ';', 113, - '<', 184, + '<', 189, '=', 104, '>', 123, - '?', 240, + '?', 241, '@', 239, '[', 115, '\\', 57, ']', 116, '`', 220, - '{', 106, + '{', 105, '|', 169, '}', 108, + '~', 198, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead)) ADVANCE(237); END_STATE(); case 15: ADVANCE_MAP( @@ -12835,6 +12858,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(303); END_STATE(); case 265: + ACCEPT_TOKEN(anon_sym_assert); if (lookahead == 's') ADVANCE(304); END_STATE(); case 266: @@ -13121,69 +13145,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [32] = {.lex_state = 11, .external_lex_state = 2}, [33] = {.lex_state = 96, .external_lex_state = 2}, - [34] = {.lex_state = 11, .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 = 96, .external_lex_state = 2}, [39] = {.lex_state = 96, .external_lex_state = 2}, [40] = {.lex_state = 96, .external_lex_state = 2}, - [41] = {.lex_state = 11, .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 = 11, .external_lex_state = 2}, + [44] = {.lex_state = 96, .external_lex_state = 2}, [45] = {.lex_state = 11, .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 = 11, .external_lex_state = 2}, - [50] = {.lex_state = 96, .external_lex_state = 2}, - [51] = {.lex_state = 96, .external_lex_state = 2}, + [49] = {.lex_state = 96, .external_lex_state = 2}, + [50] = {.lex_state = 11, .external_lex_state = 2}, + [51] = {.lex_state = 11, .external_lex_state = 2}, [52] = {.lex_state = 11, .external_lex_state = 2}, [53] = {.lex_state = 96, .external_lex_state = 2}, [54] = {.lex_state = 11, .external_lex_state = 2}, [55] = {.lex_state = 11, .external_lex_state = 2}, [56] = {.lex_state = 11, .external_lex_state = 2}, [57] = {.lex_state = 11, .external_lex_state = 2}, - [58] = {.lex_state = 96, .external_lex_state = 2}, + [58] = {.lex_state = 11, .external_lex_state = 2}, [59] = {.lex_state = 96, .external_lex_state = 2}, [60] = {.lex_state = 3, .external_lex_state = 4}, [61] = {.lex_state = 3, .external_lex_state = 4}, [62] = {.lex_state = 3, .external_lex_state = 4}, [63] = {.lex_state = 3, .external_lex_state = 3}, - [64] = {.lex_state = 11, .external_lex_state = 2}, - [65] = {.lex_state = 3, .external_lex_state = 3}, + [64] = {.lex_state = 3, .external_lex_state = 3}, + [65] = {.lex_state = 11, .external_lex_state = 2}, [66] = {.lex_state = 3, .external_lex_state = 3}, - [67] = {.lex_state = 11, .external_lex_state = 2}, - [68] = {.lex_state = 3, .external_lex_state = 3}, + [67] = {.lex_state = 3, .external_lex_state = 3}, + [68] = {.lex_state = 11, .external_lex_state = 2}, [69] = {.lex_state = 3, .external_lex_state = 3}, [70] = {.lex_state = 3, .external_lex_state = 3}, [71] = {.lex_state = 3, .external_lex_state = 3}, [72] = {.lex_state = 3, .external_lex_state = 3}, [73] = {.lex_state = 11, .external_lex_state = 2}, - [74] = {.lex_state = 11, .external_lex_state = 2}, - [75] = {.lex_state = 3, .external_lex_state = 3}, - [76] = {.lex_state = 3, .external_lex_state = 3}, - [77] = {.lex_state = 11, .external_lex_state = 2}, + [74] = {.lex_state = 3, .external_lex_state = 3}, + [75] = {.lex_state = 11, .external_lex_state = 2}, + [76] = {.lex_state = 11, .external_lex_state = 2}, + [77] = {.lex_state = 3, .external_lex_state = 3}, [78] = {.lex_state = 11, .external_lex_state = 2}, [79] = {.lex_state = 11, .external_lex_state = 2}, [80] = {.lex_state = 11, .external_lex_state = 2}, [81] = {.lex_state = 3, .external_lex_state = 4}, - [82] = {.lex_state = 3, .external_lex_state = 3}, + [82] = {.lex_state = 3, .external_lex_state = 4}, [83] = {.lex_state = 3, .external_lex_state = 4}, [84] = {.lex_state = 3, .external_lex_state = 4}, [85] = {.lex_state = 3, .external_lex_state = 4}, [86] = {.lex_state = 3, .external_lex_state = 3}, [87] = {.lex_state = 3, .external_lex_state = 3}, [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}, - [92] = {.lex_state = 3, .external_lex_state = 4}, + [89] = {.lex_state = 3, .external_lex_state = 3}, + [90] = {.lex_state = 3, .external_lex_state = 4}, + [91] = {.lex_state = 3, .external_lex_state = 4}, + [92] = {.lex_state = 3, .external_lex_state = 3}, [93] = {.lex_state = 3, .external_lex_state = 3}, - [94] = {.lex_state = 3, .external_lex_state = 4}, + [94] = {.lex_state = 3, .external_lex_state = 3}, [95] = {.lex_state = 3, .external_lex_state = 4}, [96] = {.lex_state = 3, .external_lex_state = 3}, [97] = {.lex_state = 3, .external_lex_state = 3}, @@ -13193,14 +13217,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 3, .external_lex_state = 3}, [102] = {.lex_state = 3, .external_lex_state = 3}, [103] = {.lex_state = 3, .external_lex_state = 3}, - [104] = {.lex_state = 3, .external_lex_state = 3}, - [105] = {.lex_state = 3, .external_lex_state = 4}, + [104] = {.lex_state = 3, .external_lex_state = 4}, + [105] = {.lex_state = 3, .external_lex_state = 3}, [106] = {.lex_state = 3, .external_lex_state = 3}, [107] = {.lex_state = 3, .external_lex_state = 4}, [108] = {.lex_state = 3, .external_lex_state = 3}, - [109] = {.lex_state = 3, .external_lex_state = 4}, + [109] = {.lex_state = 3, .external_lex_state = 3}, [110] = {.lex_state = 3, .external_lex_state = 3}, - [111] = {.lex_state = 3, .external_lex_state = 3}, + [111] = {.lex_state = 3, .external_lex_state = 4}, [112] = {.lex_state = 3, .external_lex_state = 3}, [113] = {.lex_state = 3, .external_lex_state = 3}, [114] = {.lex_state = 3, .external_lex_state = 3}, @@ -13216,14 +13240,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [127] = {.lex_state = 11, .external_lex_state = 2}, [128] = {.lex_state = 3, .external_lex_state = 3}, [129] = {.lex_state = 3, .external_lex_state = 3}, [130] = {.lex_state = 3, .external_lex_state = 3}, [131] = {.lex_state = 3, .external_lex_state = 3}, [132] = {.lex_state = 3, .external_lex_state = 3}, [133] = {.lex_state = 3, .external_lex_state = 3}, - [134] = {.lex_state = 11, .external_lex_state = 2}, + [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}, @@ -13240,8 +13264,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [148] = {.lex_state = 11, .external_lex_state = 2}, [149] = {.lex_state = 11, .external_lex_state = 2}, [150] = {.lex_state = 11, .external_lex_state = 2}, - [151] = {.lex_state = 95, .external_lex_state = 4}, - [152] = {.lex_state = 95, .external_lex_state = 3}, + [151] = {.lex_state = 95, .external_lex_state = 3}, + [152] = {.lex_state = 95, .external_lex_state = 4}, [153] = {.lex_state = 95, .external_lex_state = 4}, [154] = {.lex_state = 95, .external_lex_state = 3}, [155] = {.lex_state = 95, .external_lex_state = 4}, @@ -13252,20 +13276,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [160] = {.lex_state = 95, .external_lex_state = 3}, [161] = {.lex_state = 96, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 4}, - [163] = {.lex_state = 5, .external_lex_state = 3}, - [164] = {.lex_state = 96, .external_lex_state = 2}, + [163] = {.lex_state = 96, .external_lex_state = 2}, + [164] = {.lex_state = 5, .external_lex_state = 4}, [165] = {.lex_state = 96, .external_lex_state = 2}, [166] = {.lex_state = 96, .external_lex_state = 2}, [167] = {.lex_state = 96, .external_lex_state = 2}, [168] = {.lex_state = 96, .external_lex_state = 2}, - [169] = {.lex_state = 5, .external_lex_state = 4}, + [169] = {.lex_state = 5, .external_lex_state = 3}, [170] = {.lex_state = 5, .external_lex_state = 3}, [171] = {.lex_state = 5, .external_lex_state = 3}, [172] = {.lex_state = 5, .external_lex_state = 3}, - [173] = {.lex_state = 5, .external_lex_state = 4}, + [173] = {.lex_state = 5, .external_lex_state = 3}, [174] = {.lex_state = 5, .external_lex_state = 3}, [175] = {.lex_state = 5, .external_lex_state = 3}, - [176] = {.lex_state = 5, .external_lex_state = 3}, + [176] = {.lex_state = 5, .external_lex_state = 4}, [177] = {.lex_state = 5, .external_lex_state = 3}, [178] = {.lex_state = 5, .external_lex_state = 3}, [179] = {.lex_state = 5, .external_lex_state = 3}, @@ -13282,49 +13306,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 96, .external_lex_state = 2}, [191] = {.lex_state = 96, .external_lex_state = 2}, [192] = {.lex_state = 96, .external_lex_state = 2}, - [193] = {.lex_state = 95, .external_lex_state = 4}, + [193] = {.lex_state = 96, .external_lex_state = 2}, [194] = {.lex_state = 95, .external_lex_state = 4}, [195] = {.lex_state = 96, .external_lex_state = 2}, [196] = {.lex_state = 96, .external_lex_state = 2}, - [197] = {.lex_state = 95, .external_lex_state = 4}, - [198] = {.lex_state = 96, .external_lex_state = 2}, + [197] = {.lex_state = 96, .external_lex_state = 2}, + [198] = {.lex_state = 95, .external_lex_state = 4}, [199] = {.lex_state = 96, .external_lex_state = 2}, [200] = {.lex_state = 96, .external_lex_state = 2}, - [201] = {.lex_state = 95, .external_lex_state = 4}, + [201] = {.lex_state = 96, .external_lex_state = 2}, [202] = {.lex_state = 96, .external_lex_state = 2}, - [203] = {.lex_state = 96, .external_lex_state = 2}, + [203] = {.lex_state = 95, .external_lex_state = 4}, [204] = {.lex_state = 96, .external_lex_state = 2}, - [205] = {.lex_state = 96, .external_lex_state = 2}, - [206] = {.lex_state = 95, .external_lex_state = 4}, + [205] = {.lex_state = 95, .external_lex_state = 4}, + [206] = {.lex_state = 96, .external_lex_state = 2}, [207] = {.lex_state = 95, .external_lex_state = 4}, [208] = {.lex_state = 95, .external_lex_state = 4}, - [209] = {.lex_state = 96, .external_lex_state = 2}, + [209] = {.lex_state = 95, .external_lex_state = 4}, [210] = {.lex_state = 95, .external_lex_state = 4}, [211] = {.lex_state = 95, .external_lex_state = 4}, [212] = {.lex_state = 95, .external_lex_state = 4}, - [213] = {.lex_state = 96, .external_lex_state = 2}, + [213] = {.lex_state = 95, .external_lex_state = 4}, [214] = {.lex_state = 95, .external_lex_state = 4}, - [215] = {.lex_state = 95, .external_lex_state = 4}, + [215] = {.lex_state = 96, .external_lex_state = 2}, [216] = {.lex_state = 95, .external_lex_state = 4}, - [217] = {.lex_state = 95, .external_lex_state = 4}, + [217] = {.lex_state = 96, .external_lex_state = 2}, [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}, + [221] = {.lex_state = 96, .external_lex_state = 5}, [222] = {.lex_state = 95, .external_lex_state = 4}, [223] = {.lex_state = 95, .external_lex_state = 4}, [224] = {.lex_state = 95, .external_lex_state = 4}, - [225] = {.lex_state = 96, .external_lex_state = 5}, + [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}, + [229] = {.lex_state = 96, .external_lex_state = 2}, [230] = {.lex_state = 95, .external_lex_state = 4}, - [231] = {.lex_state = 96, .external_lex_state = 2}, + [231] = {.lex_state = 95, .external_lex_state = 4}, [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 = 96, .external_lex_state = 2}, + [235] = {.lex_state = 95, .external_lex_state = 4}, [236] = {.lex_state = 96, .external_lex_state = 2}, [237] = {.lex_state = 96, .external_lex_state = 2}, [238] = {.lex_state = 96, .external_lex_state = 2}, @@ -13334,25 +13358,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [242] = {.lex_state = 96, .external_lex_state = 2}, [243] = {.lex_state = 96, .external_lex_state = 2}, [244] = {.lex_state = 96, .external_lex_state = 2}, - [245] = {.lex_state = 96, .external_lex_state = 2}, + [245] = {.lex_state = 3, .external_lex_state = 3}, [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 = 3, .external_lex_state = 3}, + [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 = 3, .external_lex_state = 3}, + [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 = 3, .external_lex_state = 3}, - [258] = {.lex_state = 96, .external_lex_state = 2}, + [258] = {.lex_state = 3, .external_lex_state = 3}, [259] = {.lex_state = 96, .external_lex_state = 2}, - [260] = {.lex_state = 3, .external_lex_state = 3}, + [260] = {.lex_state = 96, .external_lex_state = 2}, [261] = {.lex_state = 96, .external_lex_state = 2}, [262] = {.lex_state = 96, .external_lex_state = 2}, - [263] = {.lex_state = 96, .external_lex_state = 2}, + [263] = {.lex_state = 3, .external_lex_state = 3}, [264] = {.lex_state = 96, .external_lex_state = 2}, [265] = {.lex_state = 96, .external_lex_state = 2}, [266] = {.lex_state = 96, .external_lex_state = 2}, @@ -13378,9 +13402,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [289] = {.lex_state = 96, .external_lex_state = 5}, [290] = {.lex_state = 96, .external_lex_state = 2}, - [291] = {.lex_state = 96, .external_lex_state = 5}, + [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}, @@ -13771,11 +13795,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 5, .external_lex_state = 4}, [680] = {.lex_state = 5, .external_lex_state = 4}, [681] = {.lex_state = 96, .external_lex_state = 2}, - [682] = {.lex_state = 5, .external_lex_state = 4}, + [682] = {.lex_state = 96, .external_lex_state = 2}, [683] = {.lex_state = 5, .external_lex_state = 4}, [684] = {.lex_state = 5, .external_lex_state = 4}, [685] = {.lex_state = 5, .external_lex_state = 4}, - [686] = {.lex_state = 96, .external_lex_state = 2}, + [686] = {.lex_state = 5, .external_lex_state = 4}, [687] = {.lex_state = 5, .external_lex_state = 4}, [688] = {.lex_state = 5, .external_lex_state = 4}, [689] = {.lex_state = 5, .external_lex_state = 4}, @@ -13795,89 +13819,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 5, .external_lex_state = 4}, [704] = {.lex_state = 5, .external_lex_state = 3}, [705] = {.lex_state = 5, .external_lex_state = 3}, - [706] = {.lex_state = 5, .external_lex_state = 4}, + [706] = {.lex_state = 5, .external_lex_state = 3}, [707] = {.lex_state = 5, .external_lex_state = 3}, [708] = {.lex_state = 5, .external_lex_state = 4}, [709] = {.lex_state = 5, .external_lex_state = 4}, [710] = {.lex_state = 5, .external_lex_state = 3}, - [711] = {.lex_state = 5, .external_lex_state = 3}, + [711] = {.lex_state = 5, .external_lex_state = 4}, [712] = {.lex_state = 5, .external_lex_state = 4}, [713] = {.lex_state = 5, .external_lex_state = 4}, [714] = {.lex_state = 5, .external_lex_state = 4}, [715] = {.lex_state = 5, .external_lex_state = 4}, [716] = {.lex_state = 5, .external_lex_state = 3}, [717] = {.lex_state = 96, .external_lex_state = 5}, - [718] = {.lex_state = 6, .external_lex_state = 3}, + [718] = {.lex_state = 96, .external_lex_state = 2}, [719] = {.lex_state = 5, .external_lex_state = 3}, [720] = {.lex_state = 6, .external_lex_state = 3}, [721] = {.lex_state = 5, .external_lex_state = 3}, - [722] = {.lex_state = 96, .external_lex_state = 2}, - [723] = {.lex_state = 5, .external_lex_state = 3}, + [722] = {.lex_state = 5, .external_lex_state = 3}, + [723] = {.lex_state = 6, .external_lex_state = 3}, [724] = {.lex_state = 5, .external_lex_state = 3}, [725] = {.lex_state = 96, .external_lex_state = 5}, - [726] = {.lex_state = 5, .external_lex_state = 4}, - [727] = {.lex_state = 96, .external_lex_state = 5}, + [726] = {.lex_state = 96, .external_lex_state = 5}, + [727] = {.lex_state = 5, .external_lex_state = 4}, [728] = {.lex_state = 96, .external_lex_state = 5}, - [729] = {.lex_state = 96, .external_lex_state = 5}, - [730] = {.lex_state = 96, .external_lex_state = 2}, - [731] = {.lex_state = 5, .external_lex_state = 4}, - [732] = {.lex_state = 5, .external_lex_state = 4}, + [729] = {.lex_state = 5, .external_lex_state = 3}, + [730] = {.lex_state = 5, .external_lex_state = 4}, + [731] = {.lex_state = 5, .external_lex_state = 3}, + [732] = {.lex_state = 96, .external_lex_state = 5}, [733] = {.lex_state = 5, .external_lex_state = 3}, - [734] = {.lex_state = 5, .external_lex_state = 4}, + [734] = {.lex_state = 96, .external_lex_state = 5}, [735] = {.lex_state = 96, .external_lex_state = 5}, - [736] = {.lex_state = 96, .external_lex_state = 5}, - [737] = {.lex_state = 5, .external_lex_state = 3}, - [738] = {.lex_state = 96, .external_lex_state = 5}, + [736] = {.lex_state = 96, .external_lex_state = 2}, + [737] = {.lex_state = 96, .external_lex_state = 5}, + [738] = {.lex_state = 5, .external_lex_state = 4}, [739] = {.lex_state = 5, .external_lex_state = 4}, - [740] = {.lex_state = 5, .external_lex_state = 3}, + [740] = {.lex_state = 5, .external_lex_state = 4}, [741] = {.lex_state = 96, .external_lex_state = 2}, [742] = {.lex_state = 5, .external_lex_state = 3}, [743] = {.lex_state = 5, .external_lex_state = 3}, - [744] = {.lex_state = 5, .external_lex_state = 3}, + [744] = {.lex_state = 96, .external_lex_state = 2}, [745] = {.lex_state = 96, .external_lex_state = 2}, - [746] = {.lex_state = 96, .external_lex_state = 2}, - [747] = {.lex_state = 5, .external_lex_state = 3}, + [746] = {.lex_state = 5, .external_lex_state = 3}, + [747] = {.lex_state = 96, .external_lex_state = 2}, [748] = {.lex_state = 5, .external_lex_state = 3}, [749] = {.lex_state = 5, .external_lex_state = 3}, [750] = {.lex_state = 5, .external_lex_state = 3}, - [751] = {.lex_state = 96, .external_lex_state = 2}, + [751] = {.lex_state = 5, .external_lex_state = 3}, [752] = {.lex_state = 5, .external_lex_state = 3}, [753] = {.lex_state = 96, .external_lex_state = 2}, [754] = {.lex_state = 96, .external_lex_state = 5}, - [755] = {.lex_state = 96, .external_lex_state = 5}, + [755] = {.lex_state = 5, .external_lex_state = 3}, [756] = {.lex_state = 5, .external_lex_state = 3}, - [757] = {.lex_state = 96, .external_lex_state = 5}, - [758] = {.lex_state = 5, .external_lex_state = 3}, - [759] = {.lex_state = 96, .external_lex_state = 2}, - [760] = {.lex_state = 96, .external_lex_state = 2}, - [761] = {.lex_state = 96, .external_lex_state = 2}, - [762] = {.lex_state = 96, .external_lex_state = 5}, + [757] = {.lex_state = 96, .external_lex_state = 2}, + [758] = {.lex_state = 96, .external_lex_state = 5}, + [759] = {.lex_state = 5, .external_lex_state = 3}, + [760] = {.lex_state = 96, .external_lex_state = 5}, + [761] = {.lex_state = 96, .external_lex_state = 5}, + [762] = {.lex_state = 5, .external_lex_state = 3}, [763] = {.lex_state = 5, .external_lex_state = 3}, - [764] = {.lex_state = 96, .external_lex_state = 5}, - [765] = {.lex_state = 5, .external_lex_state = 3}, + [764] = {.lex_state = 96, .external_lex_state = 2}, + [765] = {.lex_state = 96, .external_lex_state = 5}, [766] = {.lex_state = 96, .external_lex_state = 5}, - [767] = {.lex_state = 5, .external_lex_state = 3}, - [768] = {.lex_state = 96, .external_lex_state = 2}, + [767] = {.lex_state = 96, .external_lex_state = 2}, + [768] = {.lex_state = 96, .external_lex_state = 5}, [769] = {.lex_state = 96, .external_lex_state = 2}, - [770] = {.lex_state = 96, .external_lex_state = 5}, + [770] = {.lex_state = 5, .external_lex_state = 3}, [771] = {.lex_state = 5, .external_lex_state = 3}, - [772] = {.lex_state = 96, .external_lex_state = 5}, - [773] = {.lex_state = 5, .external_lex_state = 3}, + [772] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 5, .external_lex_state = 3}, - [777] = {.lex_state = 96, .external_lex_state = 2}, - [778] = {.lex_state = 96, .external_lex_state = 5}, + [775] = {.lex_state = 96, .external_lex_state = 2}, + [776] = {.lex_state = 96, .external_lex_state = 5}, + [777] = {.lex_state = 5, .external_lex_state = 3}, + [778] = {.lex_state = 96, .external_lex_state = 2}, [779] = {.lex_state = 5, .external_lex_state = 3}, - [780] = {.lex_state = 96, .external_lex_state = 5}, + [780] = {.lex_state = 96, .external_lex_state = 2}, [781] = {.lex_state = 96, .external_lex_state = 5}, - [782] = {.lex_state = 96, .external_lex_state = 2}, - [783] = {.lex_state = 96, .external_lex_state = 2}, + [782] = {.lex_state = 5, .external_lex_state = 3}, + [783] = {.lex_state = 5, .external_lex_state = 3}, [784] = {.lex_state = 96, .external_lex_state = 5}, - [785] = {.lex_state = 5, .external_lex_state = 3}, + [785] = {.lex_state = 96, .external_lex_state = 5}, [786] = {.lex_state = 96, .external_lex_state = 5}, [787] = {.lex_state = 96, .external_lex_state = 5}, - [788] = {.lex_state = 14, .external_lex_state = 2}, + [788] = {.lex_state = 96, .external_lex_state = 2}, [789] = {.lex_state = 96, .external_lex_state = 2}, [790] = {.lex_state = 96, .external_lex_state = 2}, [791] = {.lex_state = 96, .external_lex_state = 2}, @@ -13887,7 +13911,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [795] = {.lex_state = 96, .external_lex_state = 2}, [796] = {.lex_state = 96, .external_lex_state = 2}, [797] = {.lex_state = 96, .external_lex_state = 2}, - [798] = {.lex_state = 14, .external_lex_state = 2}, + [798] = {.lex_state = 96, .external_lex_state = 2}, [799] = {.lex_state = 96, .external_lex_state = 2}, [800] = {.lex_state = 96, .external_lex_state = 2}, [801] = {.lex_state = 96, .external_lex_state = 2}, @@ -13902,7 +13926,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, + [813] = {.lex_state = 96, .external_lex_state = 2}, [814] = {.lex_state = 96, .external_lex_state = 2}, [815] = {.lex_state = 96, .external_lex_state = 2}, [816] = {.lex_state = 96, .external_lex_state = 2}, @@ -13910,9 +13934,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, + [821] = {.lex_state = 96, .external_lex_state = 2}, [822] = {.lex_state = 96, .external_lex_state = 2}, - [823] = {.lex_state = 14, .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}, @@ -13928,7 +13952,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [839] = {.lex_state = 12, .external_lex_state = 2}, [840] = {.lex_state = 96, .external_lex_state = 2}, [841] = {.lex_state = 96, .external_lex_state = 2}, [842] = {.lex_state = 96, .external_lex_state = 2}, @@ -13942,7 +13966,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [853] = {.lex_state = 12, .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}, @@ -13956,7 +13980,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [867] = {.lex_state = 12, .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}, @@ -13973,7 +13997,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [884] = {.lex_state = 12, .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}, @@ -13995,20 +14019,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [906] = {.lex_state = 12, .external_lex_state = 2}, [907] = {.lex_state = 96, .external_lex_state = 2}, [908] = {.lex_state = 96, .external_lex_state = 2}, - [909] = {.lex_state = 14, .external_lex_state = 2}, - [910] = {.lex_state = 14, .external_lex_state = 2}, - [911] = {.lex_state = 14, .external_lex_state = 2}, - [912] = {.lex_state = 14, .external_lex_state = 2}, - [913] = {.lex_state = 14, .external_lex_state = 2}, - [914] = {.lex_state = 14, .external_lex_state = 2}, - [915] = {.lex_state = 14, .external_lex_state = 2}, - [916] = {.lex_state = 14, .external_lex_state = 2}, - [917] = {.lex_state = 14, .external_lex_state = 2}, - [918] = {.lex_state = 14, .external_lex_state = 2}, - [919] = {.lex_state = 14, .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 = 12, .external_lex_state = 2}, + [918] = {.lex_state = 12, .external_lex_state = 2}, + [919] = {.lex_state = 12, .external_lex_state = 2}, [920] = {.lex_state = 96, .external_lex_state = 2}, [921] = {.lex_state = 96, .external_lex_state = 2}, [922] = {.lex_state = 96, .external_lex_state = 2}, @@ -14022,233 +14046,233 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, - [934] = {.lex_state = 14, .external_lex_state = 2}, - [935] = {.lex_state = 14, .external_lex_state = 2}, - [936] = {.lex_state = 14, .external_lex_state = 2}, - [937] = {.lex_state = 14, .external_lex_state = 2}, - [938] = {.lex_state = 14, .external_lex_state = 2}, - [939] = {.lex_state = 14, .external_lex_state = 2}, - [940] = {.lex_state = 14, .external_lex_state = 2}, - [941] = {.lex_state = 14, .external_lex_state = 2}, - [942] = {.lex_state = 14, .external_lex_state = 2}, - [943] = {.lex_state = 14, .external_lex_state = 2}, - [944] = {.lex_state = 14, .external_lex_state = 2}, - [945] = {.lex_state = 14, .external_lex_state = 2}, - [946] = {.lex_state = 14, .external_lex_state = 2}, - [947] = {.lex_state = 14, .external_lex_state = 2}, - [948] = {.lex_state = 14, .external_lex_state = 2}, - [949] = {.lex_state = 14, .external_lex_state = 2}, - [950] = {.lex_state = 13, .external_lex_state = 2}, - [951] = {.lex_state = 13, .external_lex_state = 2}, - [952] = {.lex_state = 13, .external_lex_state = 2}, - [953] = {.lex_state = 14, .external_lex_state = 2}, - [954] = {.lex_state = 14, .external_lex_state = 2}, - [955] = {.lex_state = 14, .external_lex_state = 2}, - [956] = {.lex_state = 14, .external_lex_state = 2}, - [957] = {.lex_state = 14, .external_lex_state = 2}, - [958] = {.lex_state = 14, .external_lex_state = 2}, - [959] = {.lex_state = 14, .external_lex_state = 2}, - [960] = {.lex_state = 14, .external_lex_state = 2}, - [961] = {.lex_state = 14, .external_lex_state = 2}, - [962] = {.lex_state = 14, .external_lex_state = 2}, - [963] = {.lex_state = 14, .external_lex_state = 2}, - [964] = {.lex_state = 14, .external_lex_state = 2}, - [965] = {.lex_state = 14, .external_lex_state = 2}, - [966] = {.lex_state = 14, .external_lex_state = 2}, - [967] = {.lex_state = 14, .external_lex_state = 2}, - [968] = {.lex_state = 14, .external_lex_state = 2}, - [969] = {.lex_state = 14, .external_lex_state = 2}, - [970] = {.lex_state = 14, .external_lex_state = 2}, - [971] = {.lex_state = 14, .external_lex_state = 2}, - [972] = {.lex_state = 14, .external_lex_state = 2}, - [973] = {.lex_state = 14, .external_lex_state = 2}, - [974] = {.lex_state = 14, .external_lex_state = 2}, - [975] = {.lex_state = 14, .external_lex_state = 2}, - [976] = {.lex_state = 14, .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 = 14, .external_lex_state = 2}, - [981] = {.lex_state = 14, .external_lex_state = 2}, - [982] = {.lex_state = 14, .external_lex_state = 2}, - [983] = {.lex_state = 14, .external_lex_state = 2}, - [984] = {.lex_state = 14, .external_lex_state = 2}, - [985] = {.lex_state = 14, .external_lex_state = 2}, - [986] = {.lex_state = 14, .external_lex_state = 2}, - [987] = {.lex_state = 14, .external_lex_state = 2}, - [988] = {.lex_state = 14, .external_lex_state = 2}, - [989] = {.lex_state = 14, .external_lex_state = 2}, - [990] = {.lex_state = 14, .external_lex_state = 2}, - [991] = {.lex_state = 14, .external_lex_state = 2}, - [992] = {.lex_state = 14, .external_lex_state = 2}, - [993] = {.lex_state = 14, .external_lex_state = 2}, - [994] = {.lex_state = 14, .external_lex_state = 2}, - [995] = {.lex_state = 14, .external_lex_state = 2}, - [996] = {.lex_state = 14, .external_lex_state = 2}, - [997] = {.lex_state = 14, .external_lex_state = 2}, - [998] = {.lex_state = 14, .external_lex_state = 2}, - [999] = {.lex_state = 14, .external_lex_state = 2}, - [1000] = {.lex_state = 14, .external_lex_state = 2}, - [1001] = {.lex_state = 14, .external_lex_state = 2}, - [1002] = {.lex_state = 14, .external_lex_state = 2}, - [1003] = {.lex_state = 14, .external_lex_state = 2}, - [1004] = {.lex_state = 14, .external_lex_state = 2}, - [1005] = {.lex_state = 14, .external_lex_state = 2}, - [1006] = {.lex_state = 14, .external_lex_state = 2}, - [1007] = {.lex_state = 14, .external_lex_state = 2}, - [1008] = {.lex_state = 14, .external_lex_state = 2}, - [1009] = {.lex_state = 14, .external_lex_state = 2}, - [1010] = {.lex_state = 14, .external_lex_state = 2}, - [1011] = {.lex_state = 14, .external_lex_state = 2}, - [1012] = {.lex_state = 14, .external_lex_state = 2}, - [1013] = {.lex_state = 14, .external_lex_state = 2}, - [1014] = {.lex_state = 14, .external_lex_state = 2}, - [1015] = {.lex_state = 14, .external_lex_state = 2}, - [1016] = {.lex_state = 14, .external_lex_state = 2}, - [1017] = {.lex_state = 14, .external_lex_state = 2}, - [1018] = {.lex_state = 14, .external_lex_state = 2}, - [1019] = {.lex_state = 14, .external_lex_state = 2}, - [1020] = {.lex_state = 14, .external_lex_state = 2}, - [1021] = {.lex_state = 14, .external_lex_state = 2}, - [1022] = {.lex_state = 14, .external_lex_state = 2}, - [1023] = {.lex_state = 14, .external_lex_state = 2}, - [1024] = {.lex_state = 14, .external_lex_state = 2}, - [1025] = {.lex_state = 14, .external_lex_state = 2}, - [1026] = {.lex_state = 14, .external_lex_state = 2}, - [1027] = {.lex_state = 14, .external_lex_state = 2}, - [1028] = {.lex_state = 14, .external_lex_state = 2}, - [1029] = {.lex_state = 14, .external_lex_state = 2}, - [1030] = {.lex_state = 14, .external_lex_state = 2}, - [1031] = {.lex_state = 14, .external_lex_state = 2}, - [1032] = {.lex_state = 14, .external_lex_state = 2}, - [1033] = {.lex_state = 14, .external_lex_state = 2}, - [1034] = {.lex_state = 14, .external_lex_state = 2}, - [1035] = {.lex_state = 14, .external_lex_state = 2}, - [1036] = {.lex_state = 14, .external_lex_state = 2}, - [1037] = {.lex_state = 14, .external_lex_state = 2}, - [1038] = {.lex_state = 14, .external_lex_state = 2}, - [1039] = {.lex_state = 14, .external_lex_state = 2}, - [1040] = {.lex_state = 14, .external_lex_state = 2}, - [1041] = {.lex_state = 14, .external_lex_state = 2}, - [1042] = {.lex_state = 14, .external_lex_state = 2}, - [1043] = {.lex_state = 14, .external_lex_state = 2}, - [1044] = {.lex_state = 14, .external_lex_state = 2}, - [1045] = {.lex_state = 14, .external_lex_state = 2}, - [1046] = {.lex_state = 14, .external_lex_state = 2}, - [1047] = {.lex_state = 14, .external_lex_state = 2}, - [1048] = {.lex_state = 14, .external_lex_state = 2}, - [1049] = {.lex_state = 14, .external_lex_state = 2}, - [1050] = {.lex_state = 14, .external_lex_state = 2}, - [1051] = {.lex_state = 14, .external_lex_state = 2}, - [1052] = {.lex_state = 14, .external_lex_state = 2}, - [1053] = {.lex_state = 14, .external_lex_state = 2}, - [1054] = {.lex_state = 14, .external_lex_state = 2}, - [1055] = {.lex_state = 14, .external_lex_state = 2}, - [1056] = {.lex_state = 14, .external_lex_state = 2}, - [1057] = {.lex_state = 14, .external_lex_state = 2}, - [1058] = {.lex_state = 14, .external_lex_state = 2}, - [1059] = {.lex_state = 14, .external_lex_state = 2}, - [1060] = {.lex_state = 14, .external_lex_state = 2}, - [1061] = {.lex_state = 14, .external_lex_state = 2}, - [1062] = {.lex_state = 14, .external_lex_state = 2}, - [1063] = {.lex_state = 14, .external_lex_state = 2}, - [1064] = {.lex_state = 14, .external_lex_state = 2}, - [1065] = {.lex_state = 14, .external_lex_state = 2}, - [1066] = {.lex_state = 14, .external_lex_state = 2}, - [1067] = {.lex_state = 14, .external_lex_state = 2}, - [1068] = {.lex_state = 14, .external_lex_state = 2}, - [1069] = {.lex_state = 14, .external_lex_state = 2}, - [1070] = {.lex_state = 14, .external_lex_state = 2}, - [1071] = {.lex_state = 14, .external_lex_state = 2}, - [1072] = {.lex_state = 14, .external_lex_state = 2}, - [1073] = {.lex_state = 14, .external_lex_state = 2}, - [1074] = {.lex_state = 14, .external_lex_state = 2}, - [1075] = {.lex_state = 14, .external_lex_state = 2}, - [1076] = {.lex_state = 14, .external_lex_state = 2}, - [1077] = {.lex_state = 14, .external_lex_state = 2}, - [1078] = {.lex_state = 14, .external_lex_state = 2}, - [1079] = {.lex_state = 14, .external_lex_state = 2}, - [1080] = {.lex_state = 14, .external_lex_state = 2}, - [1081] = {.lex_state = 14, .external_lex_state = 2}, - [1082] = {.lex_state = 14, .external_lex_state = 2}, - [1083] = {.lex_state = 14, .external_lex_state = 2}, - [1084] = {.lex_state = 14, .external_lex_state = 2}, - [1085] = {.lex_state = 14, .external_lex_state = 2}, - [1086] = {.lex_state = 14, .external_lex_state = 2}, - [1087] = {.lex_state = 14, .external_lex_state = 2}, - [1088] = {.lex_state = 14, .external_lex_state = 2}, - [1089] = {.lex_state = 14, .external_lex_state = 2}, - [1090] = {.lex_state = 14, .external_lex_state = 2}, - [1091] = {.lex_state = 14, .external_lex_state = 2}, - [1092] = {.lex_state = 14, .external_lex_state = 2}, - [1093] = {.lex_state = 14, .external_lex_state = 2}, - [1094] = {.lex_state = 14, .external_lex_state = 2}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 14, .external_lex_state = 2}, - [1097] = {.lex_state = 14, .external_lex_state = 2}, - [1098] = {.lex_state = 14, .external_lex_state = 2}, - [1099] = {.lex_state = 14, .external_lex_state = 2}, - [1100] = {.lex_state = 14, .external_lex_state = 2}, - [1101] = {.lex_state = 14, .external_lex_state = 2}, - [1102] = {.lex_state = 14, .external_lex_state = 2}, - [1103] = {.lex_state = 14, .external_lex_state = 2}, - [1104] = {.lex_state = 14, .external_lex_state = 2}, - [1105] = {.lex_state = 14, .external_lex_state = 2}, - [1106] = {.lex_state = 14, .external_lex_state = 2}, - [1107] = {.lex_state = 14, .external_lex_state = 2}, - [1108] = {.lex_state = 14, .external_lex_state = 2}, - [1109] = {.lex_state = 14, .external_lex_state = 2}, - [1110] = {.lex_state = 14, .external_lex_state = 2}, - [1111] = {.lex_state = 14, .external_lex_state = 2}, - [1112] = {.lex_state = 14, .external_lex_state = 2}, - [1113] = {.lex_state = 14, .external_lex_state = 2}, - [1114] = {.lex_state = 14, .external_lex_state = 2}, - [1115] = {.lex_state = 14, .external_lex_state = 2}, - [1116] = {.lex_state = 14, .external_lex_state = 2}, - [1117] = {.lex_state = 14, .external_lex_state = 2}, - [1118] = {.lex_state = 14, .external_lex_state = 2}, - [1119] = {.lex_state = 14, .external_lex_state = 2}, - [1120] = {.lex_state = 14, .external_lex_state = 2}, - [1121] = {.lex_state = 14, .external_lex_state = 2}, - [1122] = {.lex_state = 14, .external_lex_state = 2}, - [1123] = {.lex_state = 14, .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 = 96, .external_lex_state = 2}, - [1129] = {.lex_state = 12, .external_lex_state = 2}, - [1130] = {.lex_state = 12, .external_lex_state = 2}, - [1131] = {.lex_state = 96, .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 = 96, .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 = 5, .external_lex_state = 4}, + [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 = 12, .external_lex_state = 2}, + [949] = {.lex_state = 12, .external_lex_state = 2}, + [950] = {.lex_state = 14, .external_lex_state = 2}, + [951] = {.lex_state = 14, .external_lex_state = 2}, + [952] = {.lex_state = 14, .external_lex_state = 2}, + [953] = {.lex_state = 12, .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 = 13, .external_lex_state = 2}, + [1125] = {.lex_state = 96, .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 = 96, .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 = 96, .external_lex_state = 2}, + [1135] = {.lex_state = 13, .external_lex_state = 2}, + [1136] = {.lex_state = 13, .external_lex_state = 2}, + [1137] = {.lex_state = 13, .external_lex_state = 2}, + [1138] = {.lex_state = 13, .external_lex_state = 2}, + [1139] = {.lex_state = 6, .external_lex_state = 4}, [1140] = {.lex_state = 5, .external_lex_state = 4}, - [1141] = {.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 = 6, .external_lex_state = 4}, - [1144] = {.lex_state = 5, .external_lex_state = 4}, - [1145] = {.lex_state = 6, .external_lex_state = 4}, + [1144] = {.lex_state = 6, .external_lex_state = 4}, + [1145] = {.lex_state = 5, .external_lex_state = 4}, [1146] = {.lex_state = 5, .external_lex_state = 4}, [1147] = {.lex_state = 5, .external_lex_state = 4}, [1148] = {.lex_state = 5, .external_lex_state = 3}, [1149] = {.lex_state = 5, .external_lex_state = 3}, - [1150] = {.lex_state = 12, .external_lex_state = 2}, - [1151] = {.lex_state = 12, .external_lex_state = 2}, - [1152] = {.lex_state = 6, .external_lex_state = 4}, - [1153] = {.lex_state = 5, .external_lex_state = 4}, + [1150] = {.lex_state = 13, .external_lex_state = 2}, + [1151] = {.lex_state = 13, .external_lex_state = 2}, + [1152] = {.lex_state = 5, .external_lex_state = 3}, + [1153] = {.lex_state = 6, .external_lex_state = 4}, [1154] = {.lex_state = 5, .external_lex_state = 4}, - [1155] = {.lex_state = 5, .external_lex_state = 3}, - [1156] = {.lex_state = 5, .external_lex_state = 3}, - [1157] = {.lex_state = 5, .external_lex_state = 4}, - [1158] = {.lex_state = 6, .external_lex_state = 4}, - [1159] = {.lex_state = 6, .external_lex_state = 4}, + [1155] = {.lex_state = 6, .external_lex_state = 4}, + [1156] = {.lex_state = 5, .external_lex_state = 4}, + [1157] = {.lex_state = 6, .external_lex_state = 4}, + [1158] = {.lex_state = 5, .external_lex_state = 4}, + [1159] = {.lex_state = 5, .external_lex_state = 3}, [1160] = {.lex_state = 5, .external_lex_state = 4}, [1161] = {.lex_state = 5, .external_lex_state = 4}, [1162] = {.lex_state = 5, .external_lex_state = 3}, @@ -14257,82 +14281,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1165] = {.lex_state = 5, .external_lex_state = 4}, [1166] = {.lex_state = 5, .external_lex_state = 3}, [1167] = {.lex_state = 5, .external_lex_state = 4}, - [1168] = {.lex_state = 5, .external_lex_state = 3}, + [1168] = {.lex_state = 5, .external_lex_state = 4}, [1169] = {.lex_state = 5, .external_lex_state = 4}, [1170] = {.lex_state = 5, .external_lex_state = 4}, - [1171] = {.lex_state = 6, .external_lex_state = 3}, - [1172] = {.lex_state = 5, .external_lex_state = 3}, - [1173] = {.lex_state = 5, .external_lex_state = 4}, - [1174] = {.lex_state = 6, .external_lex_state = 3}, - [1175] = {.lex_state = 5, .external_lex_state = 3}, + [1171] = {.lex_state = 5, .external_lex_state = 3}, + [1172] = {.lex_state = 6, .external_lex_state = 3}, + [1173] = {.lex_state = 5, .external_lex_state = 3}, + [1174] = {.lex_state = 5, .external_lex_state = 3}, + [1175] = {.lex_state = 6, .external_lex_state = 3}, [1176] = {.lex_state = 5, .external_lex_state = 3}, - [1177] = {.lex_state = 5, .external_lex_state = 3}, + [1177] = {.lex_state = 5, .external_lex_state = 4}, [1178] = {.lex_state = 5, .external_lex_state = 4}, [1179] = {.lex_state = 5, .external_lex_state = 4}, - [1180] = {.lex_state = 6, .external_lex_state = 3}, - [1181] = {.lex_state = 5, .external_lex_state = 4}, + [1180] = {.lex_state = 5, .external_lex_state = 4}, + [1181] = {.lex_state = 6, .external_lex_state = 4}, [1182] = {.lex_state = 6, .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}, + [1184] = {.lex_state = 6, .external_lex_state = 3}, + [1185] = {.lex_state = 6, .external_lex_state = 3}, [1186] = {.lex_state = 5, .external_lex_state = 4}, - [1187] = {.lex_state = 5, .external_lex_state = 3}, - [1188] = {.lex_state = 6, .external_lex_state = 3}, + [1187] = {.lex_state = 5, .external_lex_state = 4}, + [1188] = {.lex_state = 5, .external_lex_state = 4}, [1189] = {.lex_state = 6, .external_lex_state = 3}, - [1190] = {.lex_state = 5, .external_lex_state = 4}, - [1191] = {.lex_state = 5, .external_lex_state = 4}, + [1190] = {.lex_state = 5, .external_lex_state = 3}, + [1191] = {.lex_state = 6, .external_lex_state = 3}, [1192] = {.lex_state = 5, .external_lex_state = 4}, - [1193] = {.lex_state = 6, .external_lex_state = 3}, - [1194] = {.lex_state = 6, .external_lex_state = 3}, - [1195] = {.lex_state = 5, .external_lex_state = 4}, - [1196] = {.lex_state = 5, .external_lex_state = 4}, - [1197] = {.lex_state = 5, .external_lex_state = 4}, - [1198] = {.lex_state = 6, .external_lex_state = 3}, + [1193] = {.lex_state = 5, .external_lex_state = 4}, + [1194] = {.lex_state = 5, .external_lex_state = 3}, + [1195] = {.lex_state = 5, .external_lex_state = 3}, + [1196] = {.lex_state = 6, .external_lex_state = 3}, + [1197] = {.lex_state = 6, .external_lex_state = 3}, + [1198] = {.lex_state = 5, .external_lex_state = 4}, [1199] = {.lex_state = 6, .external_lex_state = 3}, [1200] = {.lex_state = 6, .external_lex_state = 4}, - [1201] = {.lex_state = 6, .external_lex_state = 4}, - [1202] = {.lex_state = 5, .external_lex_state = 3}, - [1203] = {.lex_state = 5, .external_lex_state = 4}, - [1204] = {.lex_state = 6, .external_lex_state = 3}, - [1205] = {.lex_state = 5, .external_lex_state = 3}, + [1201] = {.lex_state = 5, .external_lex_state = 4}, + [1202] = {.lex_state = 5, .external_lex_state = 4}, + [1203] = {.lex_state = 6, .external_lex_state = 3}, + [1204] = {.lex_state = 5, .external_lex_state = 4}, + [1205] = {.lex_state = 6, .external_lex_state = 3}, [1206] = {.lex_state = 96, .external_lex_state = 2}, - [1207] = {.lex_state = 6, .external_lex_state = 3}, - [1208] = {.lex_state = 5, .external_lex_state = 4}, - [1209] = {.lex_state = 6, .external_lex_state = 3}, + [1207] = {.lex_state = 5, .external_lex_state = 3}, + [1208] = {.lex_state = 6, .external_lex_state = 3}, + [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 = 3}, [1213] = {.lex_state = 5, .external_lex_state = 3}, [1214] = {.lex_state = 5, .external_lex_state = 3}, - [1215] = {.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}, + [1219] = {.lex_state = 5, .external_lex_state = 4}, + [1220] = {.lex_state = 6, .external_lex_state = 3}, [1221] = {.lex_state = 5, .external_lex_state = 3}, - [1222] = {.lex_state = 96, .external_lex_state = 2}, + [1222] = {.lex_state = 6, .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 = 4}, + [1224] = {.lex_state = 96, .external_lex_state = 2}, + [1225] = {.lex_state = 96, .external_lex_state = 2}, + [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}, + [1229] = {.lex_state = 5, .external_lex_state = 4}, [1230] = {.lex_state = 5, .external_lex_state = 3}, [1231] = {.lex_state = 5, .external_lex_state = 4}, [1232] = {.lex_state = 5, .external_lex_state = 3}, - [1233] = {.lex_state = 6, .external_lex_state = 3}, + [1233] = {.lex_state = 5, .external_lex_state = 3}, [1234] = {.lex_state = 5, .external_lex_state = 3}, - [1235] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 4}, + [1238] = {.lex_state = 96, .external_lex_state = 2}, [1239] = {.lex_state = 5, .external_lex_state = 3}, - [1240] = {.lex_state = 6, .external_lex_state = 3}, + [1240] = {.lex_state = 5, .external_lex_state = 3}, [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 5, .external_lex_state = 3}, - [1243] = {.lex_state = 5, .external_lex_state = 3}, + [1242] = {.lex_state = 96, .external_lex_state = 2}, + [1243] = {.lex_state = 5, .external_lex_state = 4}, [1244] = {.lex_state = 5, .external_lex_state = 4}, [1245] = {.lex_state = 5, .external_lex_state = 3}, [1246] = {.lex_state = 5, .external_lex_state = 3}, @@ -14342,91 +14366,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1250] = {.lex_state = 5, .external_lex_state = 3}, [1251] = {.lex_state = 5, .external_lex_state = 3}, [1252] = {.lex_state = 5, .external_lex_state = 4}, - [1253] = {.lex_state = 96, .external_lex_state = 2}, - [1254] = {.lex_state = 5, .external_lex_state = 4}, - [1255] = {.lex_state = 96, .external_lex_state = 2}, + [1253] = {.lex_state = 5, .external_lex_state = 4}, + [1254] = {.lex_state = 5, .external_lex_state = 3}, + [1255] = {.lex_state = 5, .external_lex_state = 4}, [1256] = {.lex_state = 5, .external_lex_state = 4}, - [1257] = {.lex_state = 5, .external_lex_state = 4}, + [1257] = {.lex_state = 96, .external_lex_state = 2}, [1258] = {.lex_state = 5, .external_lex_state = 3}, - [1259] = {.lex_state = 96, .external_lex_state = 2}, - [1260] = {.lex_state = 5, .external_lex_state = 4}, - [1261] = {.lex_state = 5, .external_lex_state = 4}, - [1262] = {.lex_state = 5, .external_lex_state = 4}, + [1259] = {.lex_state = 5, .external_lex_state = 3}, + [1260] = {.lex_state = 96, .external_lex_state = 2}, + [1261] = {.lex_state = 5, .external_lex_state = 3}, + [1262] = {.lex_state = 6, .external_lex_state = 3}, [1263] = {.lex_state = 5, .external_lex_state = 3}, - [1264] = {.lex_state = 5, .external_lex_state = 3}, + [1264] = {.lex_state = 5, .external_lex_state = 4}, [1265] = {.lex_state = 5, .external_lex_state = 3}, [1266] = {.lex_state = 5, .external_lex_state = 4}, - [1267] = {.lex_state = 5, .external_lex_state = 3}, + [1267] = {.lex_state = 96, .external_lex_state = 2}, [1268] = {.lex_state = 5, .external_lex_state = 3}, - [1269] = {.lex_state = 5, .external_lex_state = 4}, + [1269] = {.lex_state = 5, .external_lex_state = 3}, [1270] = {.lex_state = 96, .external_lex_state = 2}, - [1271] = {.lex_state = 5, .external_lex_state = 3}, + [1271] = {.lex_state = 5, .external_lex_state = 4}, [1272] = {.lex_state = 5, .external_lex_state = 3}, [1273] = {.lex_state = 5, .external_lex_state = 3}, [1274] = {.lex_state = 5, .external_lex_state = 3}, - [1275] = {.lex_state = 96, .external_lex_state = 2}, - [1276] = {.lex_state = 6, .external_lex_state = 3}, + [1275] = {.lex_state = 5, .external_lex_state = 4}, + [1276] = {.lex_state = 5, .external_lex_state = 4}, [1277] = {.lex_state = 5, .external_lex_state = 3}, - [1278] = {.lex_state = 5, .external_lex_state = 4}, + [1278] = {.lex_state = 5, .external_lex_state = 3}, [1279] = {.lex_state = 5, .external_lex_state = 4}, - [1280] = {.lex_state = 5, .external_lex_state = 3}, + [1280] = {.lex_state = 5, .external_lex_state = 4}, [1281] = {.lex_state = 5, .external_lex_state = 4}, - [1282] = {.lex_state = 5, .external_lex_state = 3}, + [1282] = {.lex_state = 5, .external_lex_state = 4}, [1283] = {.lex_state = 5, .external_lex_state = 4}, [1284] = {.lex_state = 5, .external_lex_state = 3}, - [1285] = {.lex_state = 5, .external_lex_state = 3}, + [1285] = {.lex_state = 5, .external_lex_state = 4}, [1286] = {.lex_state = 5, .external_lex_state = 4}, - [1287] = {.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 = 3}, + [1290] = {.lex_state = 5, .external_lex_state = 4}, [1291] = {.lex_state = 5, .external_lex_state = 4}, - [1292] = {.lex_state = 5, .external_lex_state = 3}, + [1292] = {.lex_state = 5, .external_lex_state = 4}, [1293] = {.lex_state = 5, .external_lex_state = 4}, - [1294] = {.lex_state = 5, .external_lex_state = 4}, + [1294] = {.lex_state = 5, .external_lex_state = 3}, [1295] = {.lex_state = 5, .external_lex_state = 4}, - [1296] = {.lex_state = 5, .external_lex_state = 4}, - [1297] = {.lex_state = 5, .external_lex_state = 4}, + [1296] = {.lex_state = 5, .external_lex_state = 3}, + [1297] = {.lex_state = 6, .external_lex_state = 3}, [1298] = {.lex_state = 5, .external_lex_state = 4}, - [1299] = {.lex_state = 5, .external_lex_state = 4}, + [1299] = {.lex_state = 5, .external_lex_state = 3}, [1300] = {.lex_state = 5, .external_lex_state = 4}, [1301] = {.lex_state = 5, .external_lex_state = 3}, - [1302] = {.lex_state = 5, .external_lex_state = 4}, - [1303] = {.lex_state = 5, .external_lex_state = 3}, + [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 = 5, .external_lex_state = 4}, - [1306] = {.lex_state = 5, .external_lex_state = 4}, + [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 = 4}, - [1310] = {.lex_state = 5, .external_lex_state = 3}, - [1311] = {.lex_state = 5, .external_lex_state = 3}, + [1308] = {.lex_state = 5, .external_lex_state = 3}, + [1309] = {.lex_state = 5, .external_lex_state = 3}, + [1310] = {.lex_state = 5, .external_lex_state = 4}, + [1311] = {.lex_state = 5, .external_lex_state = 4}, [1312] = {.lex_state = 5, .external_lex_state = 3}, - [1313] = {.lex_state = 5, .external_lex_state = 3}, + [1313] = {.lex_state = 5, .external_lex_state = 4}, [1314] = {.lex_state = 5, .external_lex_state = 3}, [1315] = {.lex_state = 5, .external_lex_state = 3}, [1316] = {.lex_state = 5, .external_lex_state = 4}, - [1317] = {.lex_state = 5, .external_lex_state = 4}, + [1317] = {.lex_state = 5, .external_lex_state = 3}, [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 = 4}, - [1322] = {.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}, + [1324] = {.lex_state = 5, .external_lex_state = 4}, [1325] = {.lex_state = 5, .external_lex_state = 4}, [1326] = {.lex_state = 5, .external_lex_state = 3}, [1327] = {.lex_state = 5, .external_lex_state = 3}, - [1328] = {.lex_state = 5, .external_lex_state = 4}, + [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 = 5, .external_lex_state = 3}, + [1331] = {.lex_state = 6, .external_lex_state = 3}, [1332] = {.lex_state = 5, .external_lex_state = 3}, - [1333] = {.lex_state = 6, .external_lex_state = 3}, + [1333] = {.lex_state = 5, .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 = 6, .external_lex_state = 3}, + [1335] = {.lex_state = 5, .external_lex_state = 4}, + [1336] = {.lex_state = 6, .external_lex_state = 3}, + [1337] = {.lex_state = 5, .external_lex_state = 3}, [1338] = {.lex_state = 5, .external_lex_state = 3}, [1339] = {.lex_state = 5, .external_lex_state = 3}, [1340] = {.lex_state = 5, .external_lex_state = 4}, @@ -14434,36 +14458,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1342] = {.lex_state = 5, .external_lex_state = 3}, [1343] = {.lex_state = 5, .external_lex_state = 3}, [1344] = {.lex_state = 5, .external_lex_state = 3}, - [1345] = {.lex_state = 5, .external_lex_state = 3}, - [1346] = {.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 = 3}, - [1348] = {.lex_state = 5, .external_lex_state = 3}, - [1349] = {.lex_state = 6, .external_lex_state = 3}, - [1350] = {.lex_state = 6, .external_lex_state = 3}, - [1351] = {.lex_state = 5, .external_lex_state = 3}, - [1352] = {.lex_state = 14, .external_lex_state = 2}, - [1353] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 6, .external_lex_state = 3}, + [1352] = {.lex_state = 6, .external_lex_state = 3}, + [1353] = {.lex_state = 5, .external_lex_state = 4}, [1354] = {.lex_state = 5, .external_lex_state = 3}, [1355] = {.lex_state = 5, .external_lex_state = 3}, [1356] = {.lex_state = 5, .external_lex_state = 3}, - [1357] = {.lex_state = 14, .external_lex_state = 2}, - [1358] = {.lex_state = 5, .external_lex_state = 4}, - [1359] = {.lex_state = 5, .external_lex_state = 3}, - [1360] = {.lex_state = 14, .external_lex_state = 2}, - [1361] = {.lex_state = 5, .external_lex_state = 3}, - [1362] = {.lex_state = 5, .external_lex_state = 3}, + [1357] = {.lex_state = 5, .external_lex_state = 3}, + [1358] = {.lex_state = 12, .external_lex_state = 2}, + [1359] = {.lex_state = 12, .external_lex_state = 2}, + [1360] = {.lex_state = 12, .external_lex_state = 2}, + [1361] = {.lex_state = 5, .external_lex_state = 4}, + [1362] = {.lex_state = 12, .external_lex_state = 2}, [1363] = {.lex_state = 5, .external_lex_state = 3}, - [1364] = {.lex_state = 5, .external_lex_state = 4}, - [1365] = {.lex_state = 14, .external_lex_state = 2}, - [1366] = {.lex_state = 14, .external_lex_state = 2}, - [1367] = {.lex_state = 6, .external_lex_state = 3}, - [1368] = {.lex_state = 5, .external_lex_state = 4}, + [1364] = {.lex_state = 5, .external_lex_state = 3}, + [1365] = {.lex_state = 5, .external_lex_state = 4}, + [1366] = {.lex_state = 5, .external_lex_state = 3}, + [1367] = {.lex_state = 5, .external_lex_state = 3}, + [1368] = {.lex_state = 12, .external_lex_state = 2}, [1369] = {.lex_state = 5, .external_lex_state = 3}, - [1370] = {.lex_state = 5, .external_lex_state = 3}, - [1371] = {.lex_state = 5, .external_lex_state = 3}, + [1370] = {.lex_state = 6, .external_lex_state = 3}, + [1371] = {.lex_state = 12, .external_lex_state = 2}, [1372] = {.lex_state = 5, .external_lex_state = 3}, - [1373] = {.lex_state = 5, .external_lex_state = 4}, - [1374] = {.lex_state = 5, .external_lex_state = 3}, + [1373] = {.lex_state = 5, .external_lex_state = 3}, + [1374] = {.lex_state = 5, .external_lex_state = 4}, [1375] = {.lex_state = 5, .external_lex_state = 3}, [1376] = {.lex_state = 5, .external_lex_state = 3}, [1377] = {.lex_state = 5, .external_lex_state = 3}, @@ -14472,60 +14496,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1383] = {.lex_state = 5, .external_lex_state = 4}, [1384] = {.lex_state = 5, .external_lex_state = 3}, [1385] = {.lex_state = 5, .external_lex_state = 3}, - [1386] = {.lex_state = 5, .external_lex_state = 4}, + [1386] = {.lex_state = 5, .external_lex_state = 3}, [1387] = {.lex_state = 5, .external_lex_state = 3}, [1388] = {.lex_state = 5, .external_lex_state = 3}, [1389] = {.lex_state = 5, .external_lex_state = 3}, [1390] = {.lex_state = 5, .external_lex_state = 3}, [1391] = {.lex_state = 5, .external_lex_state = 3}, - [1392] = {.lex_state = 5, .external_lex_state = 3}, + [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 = 14, .external_lex_state = 2}, - [1396] = {.lex_state = 14, .external_lex_state = 2}, + [1394] = {.lex_state = 12, .external_lex_state = 2}, + [1395] = {.lex_state = 5, .external_lex_state = 3}, + [1396] = {.lex_state = 5, .external_lex_state = 3}, [1397] = {.lex_state = 5, .external_lex_state = 3}, - [1398] = {.lex_state = 5, .external_lex_state = 3}, + [1398] = {.lex_state = 12, .external_lex_state = 2}, [1399] = {.lex_state = 5, .external_lex_state = 3}, - [1400] = {.lex_state = 5, .external_lex_state = 3}, + [1400] = {.lex_state = 12, .external_lex_state = 2}, [1401] = {.lex_state = 5, .external_lex_state = 3}, - [1402] = {.lex_state = 5, .external_lex_state = 3}, + [1402] = {.lex_state = 12, .external_lex_state = 2}, [1403] = {.lex_state = 5, .external_lex_state = 3}, - [1404] = {.lex_state = 14, .external_lex_state = 2}, - [1405] = {.lex_state = 14, .external_lex_state = 2}, - [1406] = {.lex_state = 14, .external_lex_state = 2}, - [1407] = {.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 = 12, .external_lex_state = 2}, [1408] = {.lex_state = 5, .external_lex_state = 3}, - [1409] = {.lex_state = 14, .external_lex_state = 2}, + [1409] = {.lex_state = 12, .external_lex_state = 2}, [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 = 14, .external_lex_state = 2}, - [1414] = {.lex_state = 14, .external_lex_state = 2}, - [1415] = {.lex_state = 5, .external_lex_state = 3}, - [1416] = {.lex_state = 14, .external_lex_state = 2}, - [1417] = {.lex_state = 14, .external_lex_state = 2}, - [1418] = {.lex_state = 14, .external_lex_state = 2}, + [1411] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 12, .external_lex_state = 2}, + [1416] = {.lex_state = 12, .external_lex_state = 2}, + [1417] = {.lex_state = 12, .external_lex_state = 2}, + [1418] = {.lex_state = 5, .external_lex_state = 3}, [1419] = {.lex_state = 5, .external_lex_state = 3}, [1420] = {.lex_state = 5, .external_lex_state = 3}, - [1421] = {.lex_state = 14, .external_lex_state = 2}, + [1421] = {.lex_state = 5, .external_lex_state = 3}, [1422] = {.lex_state = 5, .external_lex_state = 3}, [1423] = {.lex_state = 5, .external_lex_state = 3}, - [1424] = {.lex_state = 5, .external_lex_state = 3}, - [1425] = {.lex_state = 14, .external_lex_state = 2}, - [1426] = {.lex_state = 14, .external_lex_state = 2}, + [1424] = {.lex_state = 12, .external_lex_state = 2}, + [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}, + [1428] = {.lex_state = 12, .external_lex_state = 2}, [1429] = {.lex_state = 5, .external_lex_state = 3}, - [1430] = {.lex_state = 14, .external_lex_state = 2}, + [1430] = {.lex_state = 5, .external_lex_state = 3}, [1431] = {.lex_state = 5, .external_lex_state = 3}, - [1432] = {.lex_state = 14, .external_lex_state = 2}, - [1433] = {.lex_state = 14, .external_lex_state = 2}, - [1434] = {.lex_state = 5, .external_lex_state = 3}, - [1435] = {.lex_state = 14, .external_lex_state = 2}, - [1436] = {.lex_state = 5, .external_lex_state = 3}, + [1432] = {.lex_state = 12, .external_lex_state = 2}, + [1433] = {.lex_state = 12, .external_lex_state = 2}, + [1434] = {.lex_state = 12, .external_lex_state = 2}, + [1435] = {.lex_state = 5, .external_lex_state = 3}, + [1436] = {.lex_state = 12, .external_lex_state = 2}, [1437] = {.lex_state = 5, .external_lex_state = 3}, [1438] = {.lex_state = 5, .external_lex_state = 3}, [1439] = {.lex_state = 5, .external_lex_state = 3}, @@ -14535,65 +14559,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1443] = {.lex_state = 5, .external_lex_state = 3}, [1444] = {.lex_state = 5, .external_lex_state = 3}, [1445] = {.lex_state = 5, .external_lex_state = 3}, - [1446] = {.lex_state = 14, .external_lex_state = 2}, - [1447] = {.lex_state = 14, .external_lex_state = 2}, - [1448] = {.lex_state = 14, .external_lex_state = 2}, - [1449] = {.lex_state = 14, .external_lex_state = 2}, - [1450] = {.lex_state = 14, .external_lex_state = 2}, - [1451] = {.lex_state = 14, .external_lex_state = 2}, - [1452] = {.lex_state = 14, .external_lex_state = 2}, - [1453] = {.lex_state = 14, .external_lex_state = 2}, - [1454] = {.lex_state = 12, .external_lex_state = 5}, - [1455] = {.lex_state = 14, .external_lex_state = 2}, - [1456] = {.lex_state = 12, .external_lex_state = 5}, - [1457] = {.lex_state = 14, .external_lex_state = 2}, - [1458] = {.lex_state = 14, .external_lex_state = 2}, - [1459] = {.lex_state = 12, .external_lex_state = 5}, - [1460] = {.lex_state = 14, .external_lex_state = 2}, - [1461] = {.lex_state = 14, .external_lex_state = 2}, - [1462] = {.lex_state = 12, .external_lex_state = 5}, - [1463] = {.lex_state = 14, .external_lex_state = 2}, - [1464] = {.lex_state = 14, .external_lex_state = 2}, - [1465] = {.lex_state = 14, .external_lex_state = 2}, - [1466] = {.lex_state = 14, .external_lex_state = 2}, - [1467] = {.lex_state = 12, .external_lex_state = 5}, - [1468] = {.lex_state = 14, .external_lex_state = 2}, - [1469] = {.lex_state = 96, .external_lex_state = 2}, + [1446] = {.lex_state = 5, .external_lex_state = 3}, + [1447] = {.lex_state = 12, .external_lex_state = 2}, + [1448] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 12, .external_lex_state = 2}, + [1453] = {.lex_state = 12, .external_lex_state = 2}, + [1454] = {.lex_state = 12, .external_lex_state = 2}, + [1455] = {.lex_state = 12, .external_lex_state = 2}, + [1456] = {.lex_state = 12, .external_lex_state = 2}, + [1457] = {.lex_state = 12, .external_lex_state = 2}, + [1458] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 13, .external_lex_state = 5}, + [1463] = {.lex_state = 12, .external_lex_state = 2}, + [1464] = {.lex_state = 13, .external_lex_state = 5}, + [1465] = {.lex_state = 13, .external_lex_state = 5}, + [1466] = {.lex_state = 13, .external_lex_state = 5}, + [1467] = {.lex_state = 12, .external_lex_state = 2}, + [1468] = {.lex_state = 13, .external_lex_state = 5}, + [1469] = {.lex_state = 12, .external_lex_state = 2}, [1470] = {.lex_state = 96, .external_lex_state = 2}, [1471] = {.lex_state = 96, .external_lex_state = 2}, [1472] = {.lex_state = 96, .external_lex_state = 2}, [1473] = {.lex_state = 96, .external_lex_state = 2}, [1474] = {.lex_state = 96, .external_lex_state = 2}, [1475] = {.lex_state = 96, .external_lex_state = 2}, - [1476] = {.lex_state = 12, .external_lex_state = 5}, - [1477] = {.lex_state = 7, .external_lex_state = 4}, - [1478] = {.lex_state = 12, .external_lex_state = 5}, - [1479] = {.lex_state = 7, .external_lex_state = 4}, - [1480] = {.lex_state = 7, .external_lex_state = 3}, - [1481] = {.lex_state = 96, .external_lex_state = 2}, - [1482] = {.lex_state = 7, .external_lex_state = 3}, + [1476] = {.lex_state = 96, .external_lex_state = 2}, + [1477] = {.lex_state = 13, .external_lex_state = 5}, + [1478] = {.lex_state = 7, .external_lex_state = 4}, + [1479] = {.lex_state = 13, .external_lex_state = 5}, + [1480] = {.lex_state = 7, .external_lex_state = 4}, + [1481] = {.lex_state = 7, .external_lex_state = 3}, + [1482] = {.lex_state = 96, .external_lex_state = 2}, [1483] = {.lex_state = 7, .external_lex_state = 3}, [1484] = {.lex_state = 7, .external_lex_state = 3}, [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 4}, + [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 = 4}, - [1497] = {.lex_state = 7, .external_lex_state = 4}, + [1496] = {.lex_state = 7, .external_lex_state = 3}, + [1497] = {.lex_state = 7, .external_lex_state = 3}, [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}, + [1501] = {.lex_state = 7, .external_lex_state = 4}, + [1502] = {.lex_state = 7, .external_lex_state = 4}, + [1503] = {.lex_state = 7, .external_lex_state = 4}, + [1504] = {.lex_state = 7, .external_lex_state = 4}, [1505] = {.lex_state = 7, .external_lex_state = 3}, [1506] = {.lex_state = 7, .external_lex_state = 3}, [1507] = {.lex_state = 7, .external_lex_state = 3}, @@ -14605,7 +14629,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 5}, + [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}, @@ -14614,9 +14638,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, + [1525] = {.lex_state = 12, .external_lex_state = 5}, + [1526] = {.lex_state = 7, .external_lex_state = 3}, + [1527] = {.lex_state = 12, .external_lex_state = 5}, [1528] = {.lex_state = 7, .external_lex_state = 3}, [1529] = {.lex_state = 7, .external_lex_state = 3}, [1530] = {.lex_state = 7, .external_lex_state = 3}, @@ -14625,16 +14649,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1536] = {.lex_state = 12, .external_lex_state = 5}, + [1537] = {.lex_state = 7, .external_lex_state = 4}, [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}, + [1540] = {.lex_state = 7, .external_lex_state = 4}, + [1541] = {.lex_state = 7, .external_lex_state = 4}, [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 = 14, .external_lex_state = 5}, + [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}, @@ -14655,32 +14679,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1566] = {.lex_state = 7, .external_lex_state = 4}, [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 = 14, .external_lex_state = 5}, + [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 = 14, .external_lex_state = 5}, + [1578] = {.lex_state = 12, .external_lex_state = 5}, + [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 = 4}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 4}, + [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}, @@ -14693,7 +14717,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1604] = {.lex_state = 12, .external_lex_state = 5}, [1605] = {.lex_state = 7, .external_lex_state = 3}, [1606] = {.lex_state = 7, .external_lex_state = 3}, [1607] = {.lex_state = 7, .external_lex_state = 3}, @@ -14718,59 +14742,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 5}, + [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 = 4}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, + [1635] = {.lex_state = 7, .external_lex_state = 3}, + [1636] = {.lex_state = 7, .external_lex_state = 4}, + [1637] = {.lex_state = 7, .external_lex_state = 4}, [1638] = {.lex_state = 7, .external_lex_state = 4}, [1639] = {.lex_state = 7, .external_lex_state = 4}, [1640] = {.lex_state = 7, .external_lex_state = 4}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, + [1641] = {.lex_state = 7, .external_lex_state = 4}, [1642] = {.lex_state = 7, .external_lex_state = 3}, [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, + [1644] = {.lex_state = 7, .external_lex_state = 4}, [1645] = {.lex_state = 7, .external_lex_state = 4}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, + [1646] = {.lex_state = 7, .external_lex_state = 4}, [1647] = {.lex_state = 7, .external_lex_state = 3}, [1648] = {.lex_state = 7, .external_lex_state = 4}, [1649] = {.lex_state = 7, .external_lex_state = 3}, [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 4}, - [1652] = {.lex_state = 12, .external_lex_state = 5}, - [1653] = {.lex_state = 14, .external_lex_state = 5}, + [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 = 4}, + [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}, + [1661] = {.lex_state = 7, .external_lex_state = 4}, [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, + [1663] = {.lex_state = 7, .external_lex_state = 4}, [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 4}, - [1666] = {.lex_state = 7, .external_lex_state = 4}, - [1667] = {.lex_state = 7, .external_lex_state = 4}, + [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}, + [1674] = {.lex_state = 12, .external_lex_state = 5}, + [1675] = {.lex_state = 12, .external_lex_state = 5}, + [1676] = {.lex_state = 7, .external_lex_state = 4}, [1677] = {.lex_state = 7, .external_lex_state = 4}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, + [1678] = {.lex_state = 7, .external_lex_state = 4}, [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, + [1680] = {.lex_state = 7, .external_lex_state = 4}, + [1681] = {.lex_state = 7, .external_lex_state = 4}, [1682] = {.lex_state = 7, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, [1684] = {.lex_state = 7, .external_lex_state = 3}, @@ -14778,13 +14802,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 5}, - [1690] = {.lex_state = 14, .external_lex_state = 5}, + [1689] = {.lex_state = 7, .external_lex_state = 4}, + [1690] = {.lex_state = 12, .external_lex_state = 5}, [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, + [1692] = {.lex_state = 12, .external_lex_state = 5}, [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, + [1694] = {.lex_state = 7, .external_lex_state = 4}, + [1695] = {.lex_state = 7, .external_lex_state = 4}, [1696] = {.lex_state = 7, .external_lex_state = 3}, [1697] = {.lex_state = 7, .external_lex_state = 3}, [1698] = {.lex_state = 7, .external_lex_state = 3}, @@ -14792,110 +14816,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1703] = {.lex_state = 7, .external_lex_state = 4}, [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, + [1705] = {.lex_state = 7, .external_lex_state = 4}, [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 4}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 4}, + [1707] = {.lex_state = 12, .external_lex_state = 5}, + [1708] = {.lex_state = 7, .external_lex_state = 4}, + [1709] = {.lex_state = 12, .external_lex_state = 5}, [1710] = {.lex_state = 7, .external_lex_state = 3}, [1711] = {.lex_state = 7, .external_lex_state = 3}, [1712] = {.lex_state = 7, .external_lex_state = 4}, [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 4}, - [1715] = {.lex_state = 7, .external_lex_state = 4}, + [1714] = {.lex_state = 12, .external_lex_state = 5}, + [1715] = {.lex_state = 7, .external_lex_state = 3}, [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 4}, - [1718] = {.lex_state = 7, .external_lex_state = 4}, + [1717] = {.lex_state = 7, .external_lex_state = 3}, + [1718] = {.lex_state = 7, .external_lex_state = 3}, [1719] = {.lex_state = 7, .external_lex_state = 4}, - [1720] = {.lex_state = 7, .external_lex_state = 3}, - [1721] = {.lex_state = 7, .external_lex_state = 3}, + [1720] = {.lex_state = 7, .external_lex_state = 4}, + [1721] = {.lex_state = 7, .external_lex_state = 4}, [1722] = {.lex_state = 7, .external_lex_state = 4}, - [1723] = {.lex_state = 7, .external_lex_state = 4}, + [1723] = {.lex_state = 7, .external_lex_state = 3}, [1724] = {.lex_state = 7, .external_lex_state = 4}, - [1725] = {.lex_state = 7, .external_lex_state = 4}, - [1726] = {.lex_state = 7, .external_lex_state = 4}, - [1727] = {.lex_state = 7, .external_lex_state = 4}, - [1728] = {.lex_state = 7, .external_lex_state = 4}, - [1729] = {.lex_state = 7, .external_lex_state = 4}, - [1730] = {.lex_state = 7, .external_lex_state = 4}, - [1731] = {.lex_state = 7, .external_lex_state = 4}, - [1732] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 3}, + [1729] = {.lex_state = 7, .external_lex_state = 3}, + [1730] = {.lex_state = 7, .external_lex_state = 3}, + [1731] = {.lex_state = 7, .external_lex_state = 3}, + [1732] = {.lex_state = 7, .external_lex_state = 3}, [1733] = {.lex_state = 7, .external_lex_state = 4}, [1734] = {.lex_state = 7, .external_lex_state = 3}, [1735] = {.lex_state = 7, .external_lex_state = 3}, [1736] = {.lex_state = 7, .external_lex_state = 3}, - [1737] = {.lex_state = 7, .external_lex_state = 4}, - [1738] = {.lex_state = 7, .external_lex_state = 4}, - [1739] = {.lex_state = 7, .external_lex_state = 4}, - [1740] = {.lex_state = 7, .external_lex_state = 4}, - [1741] = {.lex_state = 7, .external_lex_state = 4}, + [1737] = {.lex_state = 7, .external_lex_state = 3}, + [1738] = {.lex_state = 7, .external_lex_state = 3}, + [1739] = {.lex_state = 7, .external_lex_state = 3}, + [1740] = {.lex_state = 7, .external_lex_state = 3}, + [1741] = {.lex_state = 7, .external_lex_state = 3}, [1742] = {.lex_state = 7, .external_lex_state = 4}, [1743] = {.lex_state = 7, .external_lex_state = 4}, [1744] = {.lex_state = 7, .external_lex_state = 4}, - [1745] = {.lex_state = 14, .external_lex_state = 5}, - [1746] = {.lex_state = 14, .external_lex_state = 5}, + [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}, + [1750] = {.lex_state = 7, .external_lex_state = 4}, [1751] = {.lex_state = 7, .external_lex_state = 3}, [1752] = {.lex_state = 7, .external_lex_state = 3}, - [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}, + [1753] = {.lex_state = 7, .external_lex_state = 4}, + [1754] = {.lex_state = 12, .external_lex_state = 5}, + [1755] = {.lex_state = 7, .external_lex_state = 4}, + [1756] = {.lex_state = 7, .external_lex_state = 4}, [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}, + [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 = 3}, [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 7, .external_lex_state = 3}, + [1765] = {.lex_state = 7, .external_lex_state = 4}, + [1766] = {.lex_state = 7, .external_lex_state = 4}, + [1767] = {.lex_state = 7, .external_lex_state = 4}, [1768] = {.lex_state = 7, .external_lex_state = 3}, [1769] = {.lex_state = 7, .external_lex_state = 3}, [1770] = {.lex_state = 7, .external_lex_state = 3}, [1771] = {.lex_state = 7, .external_lex_state = 3}, - [1772] = {.lex_state = 7, .external_lex_state = 3}, + [1772] = {.lex_state = 7, .external_lex_state = 4}, [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 14, .external_lex_state = 5}, - [1775] = {.lex_state = 7, .external_lex_state = 4}, - [1776] = {.lex_state = 7, .external_lex_state = 4}, - [1777] = {.lex_state = 7, .external_lex_state = 4}, + [1774] = {.lex_state = 7, .external_lex_state = 4}, + [1775] = {.lex_state = 7, .external_lex_state = 3}, + [1776] = {.lex_state = 7, .external_lex_state = 3}, + [1777] = {.lex_state = 7, .external_lex_state = 3}, [1778] = {.lex_state = 7, .external_lex_state = 4}, [1779] = {.lex_state = 7, .external_lex_state = 4}, - [1780] = {.lex_state = 7, .external_lex_state = 4}, + [1780] = {.lex_state = 12, .external_lex_state = 5}, [1781] = {.lex_state = 7, .external_lex_state = 4}, - [1782] = {.lex_state = 14, .external_lex_state = 5}, - [1783] = {.lex_state = 14, .external_lex_state = 5}, - [1784] = {.lex_state = 14, .external_lex_state = 5}, - [1785] = {.lex_state = 14, .external_lex_state = 5}, - [1786] = {.lex_state = 14, .external_lex_state = 5}, - [1787] = {.lex_state = 14, .external_lex_state = 5}, + [1782] = {.lex_state = 12, .external_lex_state = 5}, + [1783] = {.lex_state = 7, .external_lex_state = 4}, + [1784] = {.lex_state = 7, .external_lex_state = 4}, + [1785] = {.lex_state = 13, .external_lex_state = 5}, + [1786] = {.lex_state = 7, .external_lex_state = 4}, + [1787] = {.lex_state = 7, .external_lex_state = 4}, [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 = 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 = 4}, [1796] = {.lex_state = 7, .external_lex_state = 4}, [1797] = {.lex_state = 7, .external_lex_state = 4}, - [1798] = {.lex_state = 7, .external_lex_state = 4}, - [1799] = {.lex_state = 7, .external_lex_state = 4}, - [1800] = {.lex_state = 7, .external_lex_state = 4}, - [1801] = {.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 = 3}, [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}, + [1805] = {.lex_state = 12, .external_lex_state = 5}, + [1806] = {.lex_state = 12, .external_lex_state = 5}, [1807] = {.lex_state = 7, .external_lex_state = 4}, [1808] = {.lex_state = 7, .external_lex_state = 4}, [1809] = {.lex_state = 7, .external_lex_state = 4}, @@ -14904,11 +14928,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 3}, - [1819] = {.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 = 4}, + [1818] = {.lex_state = 7, .external_lex_state = 4}, + [1819] = {.lex_state = 7, .external_lex_state = 3}, [1820] = {.lex_state = 7, .external_lex_state = 4}, [1821] = {.lex_state = 7, .external_lex_state = 4}, [1822] = {.lex_state = 7, .external_lex_state = 4}, @@ -14923,13 +14947,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1831] = {.lex_state = 7, .external_lex_state = 3}, [1832] = {.lex_state = 7, .external_lex_state = 3}, [1833] = {.lex_state = 7, .external_lex_state = 3}, - [1834] = {.lex_state = 7, .external_lex_state = 4}, + [1834] = {.lex_state = 7, .external_lex_state = 3}, [1835] = {.lex_state = 7, .external_lex_state = 3}, [1836] = {.lex_state = 7, .external_lex_state = 3}, - [1837] = {.lex_state = 7, .external_lex_state = 4}, + [1837] = {.lex_state = 7, .external_lex_state = 3}, [1838] = {.lex_state = 7, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 4}, - [1840] = {.lex_state = 7, .external_lex_state = 4}, + [1839] = {.lex_state = 7, .external_lex_state = 3}, + [1840] = {.lex_state = 12, .external_lex_state = 5}, [1841] = {.lex_state = 7, .external_lex_state = 3}, [1842] = {.lex_state = 7, .external_lex_state = 3}, [1843] = {.lex_state = 7, .external_lex_state = 3}, @@ -14937,76 +14961,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1845] = {.lex_state = 7, .external_lex_state = 3}, [1846] = {.lex_state = 7, .external_lex_state = 3}, [1847] = {.lex_state = 7, .external_lex_state = 3}, - [1848] = {.lex_state = 7, .external_lex_state = 3}, - [1849] = {.lex_state = 7, .external_lex_state = 4}, - [1850] = {.lex_state = 7, .external_lex_state = 4}, + [1848] = {.lex_state = 7, .external_lex_state = 4}, + [1849] = {.lex_state = 7, .external_lex_state = 3}, + [1850] = {.lex_state = 7, .external_lex_state = 3}, [1851] = {.lex_state = 7, .external_lex_state = 3}, - [1852] = {.lex_state = 7, .external_lex_state = 3}, + [1852] = {.lex_state = 12, .external_lex_state = 5}, [1853] = {.lex_state = 7, .external_lex_state = 3}, - [1854] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 7, .external_lex_state = 4}, [1855] = {.lex_state = 7, .external_lex_state = 3}, [1856] = {.lex_state = 7, .external_lex_state = 3}, - [1857] = {.lex_state = 7, .external_lex_state = 4}, - [1858] = {.lex_state = 7, .external_lex_state = 3}, - [1859] = {.lex_state = 7, .external_lex_state = 3}, + [1857] = {.lex_state = 7, .external_lex_state = 3}, + [1858] = {.lex_state = 12, .external_lex_state = 5}, + [1859] = {.lex_state = 12, .external_lex_state = 5}, [1860] = {.lex_state = 7, .external_lex_state = 3}, - [1861] = {.lex_state = 7, .external_lex_state = 3}, - [1862] = {.lex_state = 7, .external_lex_state = 4}, + [1861] = {.lex_state = 12, .external_lex_state = 5}, + [1862] = {.lex_state = 7, .external_lex_state = 3}, [1863] = {.lex_state = 7, .external_lex_state = 4}, - [1864] = {.lex_state = 7, .external_lex_state = 4}, + [1864] = {.lex_state = 7, .external_lex_state = 3}, [1865] = {.lex_state = 7, .external_lex_state = 3}, - [1866] = {.lex_state = 7, .external_lex_state = 3}, + [1866] = {.lex_state = 7, .external_lex_state = 4}, [1867] = {.lex_state = 7, .external_lex_state = 3}, [1868] = {.lex_state = 7, .external_lex_state = 3}, [1869] = {.lex_state = 7, .external_lex_state = 3}, [1870] = {.lex_state = 7, .external_lex_state = 3}, - [1871] = {.lex_state = 14, .external_lex_state = 5}, - [1872] = {.lex_state = 7, .external_lex_state = 3}, + [1871] = {.lex_state = 7, .external_lex_state = 4}, + [1872] = {.lex_state = 7, .external_lex_state = 4}, [1873] = {.lex_state = 7, .external_lex_state = 3}, [1874] = {.lex_state = 7, .external_lex_state = 3}, - [1875] = {.lex_state = 14, .external_lex_state = 5}, - [1876] = {.lex_state = 7, .external_lex_state = 3}, + [1875] = {.lex_state = 7, .external_lex_state = 3}, + [1876] = {.lex_state = 7, .external_lex_state = 4}, [1877] = {.lex_state = 7, .external_lex_state = 3}, - [1878] = {.lex_state = 7, .external_lex_state = 3}, + [1878] = {.lex_state = 7, .external_lex_state = 4}, [1879] = {.lex_state = 7, .external_lex_state = 3}, - [1880] = {.lex_state = 7, .external_lex_state = 3}, + [1880] = {.lex_state = 7, .external_lex_state = 4}, [1881] = {.lex_state = 7, .external_lex_state = 3}, - [1882] = {.lex_state = 7, .external_lex_state = 3}, + [1882] = {.lex_state = 7, .external_lex_state = 4}, [1883] = {.lex_state = 7, .external_lex_state = 3}, - [1884] = {.lex_state = 7, .external_lex_state = 4}, + [1884] = {.lex_state = 7, .external_lex_state = 3}, [1885] = {.lex_state = 7, .external_lex_state = 3}, [1886] = {.lex_state = 7, .external_lex_state = 3}, - [1887] = {.lex_state = 7, .external_lex_state = 3}, + [1887] = {.lex_state = 12, .external_lex_state = 5}, [1888] = {.lex_state = 7, .external_lex_state = 3}, [1889] = {.lex_state = 7, .external_lex_state = 4}, - [1890] = {.lex_state = 7, .external_lex_state = 3}, - [1891] = {.lex_state = 14, .external_lex_state = 5}, - [1892] = {.lex_state = 7, .external_lex_state = 4}, - [1893] = {.lex_state = 14, .external_lex_state = 5}, - [1894] = {.lex_state = 7, .external_lex_state = 3}, - [1895] = {.lex_state = 14, .external_lex_state = 5}, - [1896] = {.lex_state = 7, .external_lex_state = 4}, - [1897] = {.lex_state = 14, .external_lex_state = 5}, + [1890] = {.lex_state = 7, .external_lex_state = 4}, + [1891] = {.lex_state = 7, .external_lex_state = 3}, + [1892] = {.lex_state = 7, .external_lex_state = 3}, + [1893] = {.lex_state = 7, .external_lex_state = 4}, + [1894] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 4}, + [1899] = {.lex_state = 7, .external_lex_state = 4}, + [1900] = {.lex_state = 7, .external_lex_state = 4}, + [1901] = {.lex_state = 12, .external_lex_state = 5}, [1902] = {.lex_state = 7, .external_lex_state = 3}, - [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}, + [1903] = {.lex_state = 7, .external_lex_state = 3}, + [1904] = {.lex_state = 7, .external_lex_state = 3}, + [1905] = {.lex_state = 7, .external_lex_state = 3}, + [1906] = {.lex_state = 7, .external_lex_state = 3}, [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 = 3}, [1911] = {.lex_state = 7, .external_lex_state = 3}, [1912] = {.lex_state = 7, .external_lex_state = 3}, - [1913] = {.lex_state = 14, .external_lex_state = 5}, + [1913] = {.lex_state = 7, .external_lex_state = 3}, [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 14, .external_lex_state = 5}, + [1915] = {.lex_state = 7, .external_lex_state = 3}, [1916] = {.lex_state = 7, .external_lex_state = 3}, - [1917] = {.lex_state = 7, .external_lex_state = 4}, + [1917] = {.lex_state = 7, .external_lex_state = 3}, [1918] = {.lex_state = 7, .external_lex_state = 3}, [1919] = {.lex_state = 7, .external_lex_state = 3}, [1920] = {.lex_state = 7, .external_lex_state = 3}, @@ -15024,35 +15048,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1932] = {.lex_state = 7, .external_lex_state = 3}, [1933] = {.lex_state = 7, .external_lex_state = 3}, [1934] = {.lex_state = 7, .external_lex_state = 3}, - [1935] = {.lex_state = 7, .external_lex_state = 3}, + [1935] = {.lex_state = 12, .external_lex_state = 5}, [1936] = {.lex_state = 7, .external_lex_state = 3}, [1937] = {.lex_state = 7, .external_lex_state = 3}, [1938] = {.lex_state = 7, .external_lex_state = 3}, - [1939] = {.lex_state = 7, .external_lex_state = 3}, + [1939] = {.lex_state = 7, .external_lex_state = 4}, [1940] = {.lex_state = 7, .external_lex_state = 3}, [1941] = {.lex_state = 7, .external_lex_state = 3}, [1942] = {.lex_state = 7, .external_lex_state = 3}, [1943] = {.lex_state = 7, .external_lex_state = 3}, - [1944] = {.lex_state = 7, .external_lex_state = 3}, + [1944] = {.lex_state = 7, .external_lex_state = 4}, [1945] = {.lex_state = 7, .external_lex_state = 3}, [1946] = {.lex_state = 7, .external_lex_state = 3}, [1947] = {.lex_state = 7, .external_lex_state = 3}, [1948] = {.lex_state = 7, .external_lex_state = 4}, - [1949] = {.lex_state = 14, .external_lex_state = 2}, + [1949] = {.lex_state = 7, .external_lex_state = 4}, [1950] = {.lex_state = 7, .external_lex_state = 4}, [1951] = {.lex_state = 7, .external_lex_state = 4}, [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 = 7, .external_lex_state = 4}, - [1956] = {.lex_state = 7, .external_lex_state = 4}, - [1957] = {.lex_state = 96, .external_lex_state = 2}, + [1955] = {.lex_state = 7, .external_lex_state = 3}, + [1956] = {.lex_state = 12, .external_lex_state = 5}, + [1957] = {.lex_state = 7, .external_lex_state = 4}, [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}, + [1963] = {.lex_state = 96, .external_lex_state = 2}, [1964] = {.lex_state = 7, .external_lex_state = 4}, [1965] = {.lex_state = 7, .external_lex_state = 4}, [1966] = {.lex_state = 7, .external_lex_state = 4}, @@ -15075,46 +15099,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1986] = {.lex_state = 12, .external_lex_state = 2}, [1987] = {.lex_state = 7, .external_lex_state = 4}, - [1988] = {.lex_state = 7, .external_lex_state = 4}, + [1988] = {.lex_state = 12, .external_lex_state = 2}, [1989] = {.lex_state = 7, .external_lex_state = 4}, - [1990] = {.lex_state = 7, .external_lex_state = 4}, + [1990] = {.lex_state = 7, .external_lex_state = 3}, [1991] = {.lex_state = 7, .external_lex_state = 4}, - [1992] = {.lex_state = 7, .external_lex_state = 4}, + [1992] = {.lex_state = 96, .external_lex_state = 2}, [1993] = {.lex_state = 7, .external_lex_state = 4}, - [1994] = {.lex_state = 14, .external_lex_state = 5}, - [1995] = {.lex_state = 14, .external_lex_state = 5}, + [1994] = {.lex_state = 7, .external_lex_state = 4}, + [1995] = {.lex_state = 12, .external_lex_state = 2}, [1996] = {.lex_state = 7, .external_lex_state = 4}, - [1997] = {.lex_state = 7, .external_lex_state = 4}, + [1997] = {.lex_state = 7, .external_lex_state = 3}, [1998] = {.lex_state = 7, .external_lex_state = 3}, - [1999] = {.lex_state = 7, .external_lex_state = 3}, - [2000] = {.lex_state = 7, .external_lex_state = 3}, - [2001] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 3}, + [2004] = {.lex_state = 7, .external_lex_state = 4}, [2005] = {.lex_state = 7, .external_lex_state = 4}, - [2006] = {.lex_state = 14, .external_lex_state = 5}, - [2007] = {.lex_state = 14, .external_lex_state = 2}, - [2008] = {.lex_state = 7, .external_lex_state = 4}, + [2006] = {.lex_state = 7, .external_lex_state = 3}, + [2007] = {.lex_state = 7, .external_lex_state = 4}, + [2008] = {.lex_state = 12, .external_lex_state = 5}, [2009] = {.lex_state = 7, .external_lex_state = 4}, - [2010] = {.lex_state = 7, .external_lex_state = 4}, + [2010] = {.lex_state = 7, .external_lex_state = 3}, [2011] = {.lex_state = 7, .external_lex_state = 4}, - [2012] = {.lex_state = 7, .external_lex_state = 4}, + [2012] = {.lex_state = 7, .external_lex_state = 3}, [2013] = {.lex_state = 7, .external_lex_state = 4}, - [2014] = {.lex_state = 7, .external_lex_state = 4}, - [2015] = {.lex_state = 14, .external_lex_state = 2}, - [2016] = {.lex_state = 14, .external_lex_state = 5}, + [2014] = {.lex_state = 12, .external_lex_state = 5}, + [2015] = {.lex_state = 8, .external_lex_state = 3}, + [2016] = {.lex_state = 7, .external_lex_state = 4}, [2017] = {.lex_state = 7, .external_lex_state = 4}, - [2018] = {.lex_state = 14, .external_lex_state = 5}, - [2019] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 4}, - [2022] = {.lex_state = 7, .external_lex_state = 4}, + [2022] = {.lex_state = 12, .external_lex_state = 2}, [2023] = {.lex_state = 7, .external_lex_state = 4}, [2024] = {.lex_state = 7, .external_lex_state = 4}, - [2025] = {.lex_state = 14, .external_lex_state = 5}, + [2025] = {.lex_state = 7, .external_lex_state = 4}, [2026] = {.lex_state = 7, .external_lex_state = 4}, [2027] = {.lex_state = 7, .external_lex_state = 4}, [2028] = {.lex_state = 7, .external_lex_state = 4}, @@ -15124,49 +15148,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 5}, + [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 = 7, .external_lex_state = 4}, - [2039] = {.lex_state = 14, .external_lex_state = 5}, + [2039] = {.lex_state = 7, .external_lex_state = 4}, [2040] = {.lex_state = 7, .external_lex_state = 4}, [2041] = {.lex_state = 7, .external_lex_state = 4}, [2042] = {.lex_state = 7, .external_lex_state = 4}, - [2043] = {.lex_state = 14, .external_lex_state = 2}, - [2044] = {.lex_state = 8, .external_lex_state = 3}, - [2045] = {.lex_state = 7, .external_lex_state = 3}, + [2043] = {.lex_state = 7, .external_lex_state = 4}, + [2044] = {.lex_state = 7, .external_lex_state = 4}, + [2045] = {.lex_state = 7, .external_lex_state = 4}, [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 = 3}, + [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 = 3}, + [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}, + [2055] = {.lex_state = 7, .external_lex_state = 3}, [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 = 96, .external_lex_state = 2}, + [2059] = {.lex_state = 7, .external_lex_state = 4}, [2060] = {.lex_state = 7, .external_lex_state = 4}, - [2061] = {.lex_state = 7, .external_lex_state = 4}, + [2061] = {.lex_state = 7, .external_lex_state = 3}, [2062] = {.lex_state = 7, .external_lex_state = 4}, [2063] = {.lex_state = 7, .external_lex_state = 4}, - [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 = 3}, + [2064] = {.lex_state = 7, .external_lex_state = 4}, + [2065] = {.lex_state = 12, .external_lex_state = 5}, + [2066] = {.lex_state = 7, .external_lex_state = 3}, + [2067] = {.lex_state = 7, .external_lex_state = 4}, [2068] = {.lex_state = 7, .external_lex_state = 4}, [2069] = {.lex_state = 7, .external_lex_state = 4}, - [2070] = {.lex_state = 7, .external_lex_state = 4}, - [2071] = {.lex_state = 7, .external_lex_state = 4}, - [2072] = {.lex_state = 7, .external_lex_state = 4}, + [2070] = {.lex_state = 12, .external_lex_state = 2}, + [2071] = {.lex_state = 12, .external_lex_state = 5}, + [2072] = {.lex_state = 7, .external_lex_state = 3}, [2073] = {.lex_state = 7, .external_lex_state = 4}, [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 = 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}, @@ -15179,148 +15203,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2087] = {.lex_state = 7, .external_lex_state = 4}, [2088] = {.lex_state = 7, .external_lex_state = 4}, [2089] = {.lex_state = 7, .external_lex_state = 4}, - [2090] = {.lex_state = 7, .external_lex_state = 4}, - [2091] = {.lex_state = 7, .external_lex_state = 4}, + [2090] = {.lex_state = 7, .external_lex_state = 3}, + [2091] = {.lex_state = 7, .external_lex_state = 3}, [2092] = {.lex_state = 7, .external_lex_state = 4}, [2093] = {.lex_state = 7, .external_lex_state = 4}, - [2094] = {.lex_state = 7, .external_lex_state = 4}, - [2095] = {.lex_state = 7, .external_lex_state = 3}, + [2094] = {.lex_state = 12, .external_lex_state = 5}, + [2095] = {.lex_state = 7, .external_lex_state = 4}, [2096] = {.lex_state = 7, .external_lex_state = 4}, [2097] = {.lex_state = 7, .external_lex_state = 4}, - [2098] = {.lex_state = 7, .external_lex_state = 3}, - [2099] = {.lex_state = 7, .external_lex_state = 4}, + [2098] = {.lex_state = 12, .external_lex_state = 5}, + [2099] = {.lex_state = 7, .external_lex_state = 3}, [2100] = {.lex_state = 7, .external_lex_state = 4}, - [2101] = {.lex_state = 7, .external_lex_state = 4}, - [2102] = {.lex_state = 7, .external_lex_state = 3}, - [2103] = {.lex_state = 7, .external_lex_state = 4}, - [2104] = {.lex_state = 7, .external_lex_state = 3}, - [2105] = {.lex_state = 7, .external_lex_state = 4}, + [2101] = {.lex_state = 12, .external_lex_state = 5}, + [2102] = {.lex_state = 7, .external_lex_state = 4}, + [2103] = {.lex_state = 12, .external_lex_state = 5}, + [2104] = {.lex_state = 7, .external_lex_state = 4}, + [2105] = {.lex_state = 12, .external_lex_state = 5}, [2106] = {.lex_state = 7, .external_lex_state = 4}, [2107] = {.lex_state = 7, .external_lex_state = 4}, [2108] = {.lex_state = 7, .external_lex_state = 4}, - [2109] = {.lex_state = 14, .external_lex_state = 5}, - [2110] = {.lex_state = 14, .external_lex_state = 5}, + [2109] = {.lex_state = 7, .external_lex_state = 3}, + [2110] = {.lex_state = 7, .external_lex_state = 4}, [2111] = {.lex_state = 7, .external_lex_state = 4}, [2112] = {.lex_state = 7, .external_lex_state = 4}, [2113] = {.lex_state = 7, .external_lex_state = 4}, - [2114] = {.lex_state = 14, .external_lex_state = 5}, + [2114] = {.lex_state = 7, .external_lex_state = 4}, [2115] = {.lex_state = 7, .external_lex_state = 4}, - [2116] = {.lex_state = 14, .external_lex_state = 5}, - [2117] = {.lex_state = 14, .external_lex_state = 5}, + [2116] = {.lex_state = 7, .external_lex_state = 4}, + [2117] = {.lex_state = 7, .external_lex_state = 3}, [2118] = {.lex_state = 7, .external_lex_state = 3}, [2119] = {.lex_state = 7, .external_lex_state = 4}, [2120] = {.lex_state = 7, .external_lex_state = 4}, [2121] = {.lex_state = 7, .external_lex_state = 4}, - [2122] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 4}, - [2126] = {.lex_state = 7, .external_lex_state = 4}, + [2124] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 4}, - [2130] = {.lex_state = 7, .external_lex_state = 4}, + [2130] = {.lex_state = 12, .external_lex_state = 5}, [2131] = {.lex_state = 7, .external_lex_state = 4}, - [2132] = {.lex_state = 7, .external_lex_state = 4}, + [2132] = {.lex_state = 12, .external_lex_state = 5}, [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 = 3}, [2137] = {.lex_state = 7, .external_lex_state = 4}, - [2138] = {.lex_state = 7, .external_lex_state = 3}, + [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}, + [2143] = {.lex_state = 7, .external_lex_state = 3}, [2144] = {.lex_state = 7, .external_lex_state = 4}, [2145] = {.lex_state = 7, .external_lex_state = 4}, [2146] = {.lex_state = 7, .external_lex_state = 4}, [2147] = {.lex_state = 7, .external_lex_state = 4}, - [2148] = {.lex_state = 7, .external_lex_state = 3}, - [2149] = {.lex_state = 14, .external_lex_state = 2}, - [2150] = {.lex_state = 7, .external_lex_state = 3}, - [2151] = {.lex_state = 7, .external_lex_state = 3}, - [2152] = {.lex_state = 7, .external_lex_state = 4}, + [2148] = {.lex_state = 7, .external_lex_state = 4}, + [2149] = {.lex_state = 7, .external_lex_state = 4}, + [2150] = {.lex_state = 12, .external_lex_state = 5}, + [2151] = {.lex_state = 7, .external_lex_state = 4}, + [2152] = {.lex_state = 12, .external_lex_state = 2}, [2153] = {.lex_state = 7, .external_lex_state = 4}, - [2154] = {.lex_state = 14, .external_lex_state = 2}, - [2155] = {.lex_state = 7, .external_lex_state = 4}, - [2156] = {.lex_state = 7, .external_lex_state = 3}, + [2154] = {.lex_state = 7, .external_lex_state = 4}, + [2155] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 14, .external_lex_state = 5}, - [2160] = {.lex_state = 7, .external_lex_state = 4}, - [2161] = {.lex_state = 14, .external_lex_state = 2}, - [2162] = {.lex_state = 7, .external_lex_state = 4}, - [2163] = {.lex_state = 14, .external_lex_state = 2}, + [2159] = {.lex_state = 7, .external_lex_state = 4}, + [2160] = {.lex_state = 7, .external_lex_state = 3}, + [2161] = {.lex_state = 7, .external_lex_state = 4}, + [2162] = {.lex_state = 7, .external_lex_state = 3}, + [2163] = {.lex_state = 7, .external_lex_state = 3}, [2164] = {.lex_state = 7, .external_lex_state = 4}, - [2165] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 14, .external_lex_state = 5}, - [2169] = {.lex_state = 14, .external_lex_state = 2}, - [2170] = {.lex_state = 14, .external_lex_state = 5}, - [2171] = {.lex_state = 14, .external_lex_state = 2}, - [2172] = {.lex_state = 14, .external_lex_state = 5}, - [2173] = {.lex_state = 14, .external_lex_state = 5}, - [2174] = {.lex_state = 14, .external_lex_state = 5}, - [2175] = {.lex_state = 7, .external_lex_state = 3}, - [2176] = {.lex_state = 7, .external_lex_state = 3}, - [2177] = {.lex_state = 96, .external_lex_state = 2}, - [2178] = {.lex_state = 14, .external_lex_state = 2}, - [2179] = {.lex_state = 14, .external_lex_state = 2}, - [2180] = {.lex_state = 14, .external_lex_state = 5}, - [2181] = {.lex_state = 14, .external_lex_state = 5}, - [2182] = {.lex_state = 7, .external_lex_state = 3}, - [2183] = {.lex_state = 7, .external_lex_state = 3}, + [2167] = {.lex_state = 12, .external_lex_state = 5}, + [2168] = {.lex_state = 12, .external_lex_state = 2}, + [2169] = {.lex_state = 12, .external_lex_state = 2}, + [2170] = {.lex_state = 7, .external_lex_state = 4}, + [2171] = {.lex_state = 7, .external_lex_state = 3}, + [2172] = {.lex_state = 7, .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 = 4}, + [2176] = {.lex_state = 7, .external_lex_state = 4}, + [2177] = {.lex_state = 7, .external_lex_state = 4}, + [2178] = {.lex_state = 7, .external_lex_state = 4}, + [2179] = {.lex_state = 7, .external_lex_state = 3}, + [2180] = {.lex_state = 7, .external_lex_state = 4}, + [2181] = {.lex_state = 12, .external_lex_state = 5}, + [2182] = {.lex_state = 7, .external_lex_state = 4}, + [2183] = {.lex_state = 7, .external_lex_state = 4}, [2184] = {.lex_state = 7, .external_lex_state = 4}, - [2185] = {.lex_state = 14, .external_lex_state = 5}, + [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 = 14, .external_lex_state = 5}, - [2189] = {.lex_state = 14, .external_lex_state = 5}, - [2190] = {.lex_state = 14, .external_lex_state = 5}, - [2191] = {.lex_state = 14, .external_lex_state = 5}, - [2192] = {.lex_state = 14, .external_lex_state = 5}, - [2193] = {.lex_state = 14, .external_lex_state = 5}, - [2194] = {.lex_state = 7, .external_lex_state = 3}, + [2187] = {.lex_state = 7, .external_lex_state = 3}, + [2188] = {.lex_state = 96, .external_lex_state = 2}, + [2189] = {.lex_state = 7, .external_lex_state = 3}, + [2190] = {.lex_state = 7, .external_lex_state = 4}, + [2191] = {.lex_state = 12, .external_lex_state = 5}, + [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 = 3}, [2196] = {.lex_state = 7, .external_lex_state = 3}, [2197] = {.lex_state = 7, .external_lex_state = 3}, - [2198] = {.lex_state = 7, .external_lex_state = 4}, + [2198] = {.lex_state = 7, .external_lex_state = 3}, [2199] = {.lex_state = 7, .external_lex_state = 4}, - [2200] = {.lex_state = 7, .external_lex_state = 4}, - [2201] = {.lex_state = 14, .external_lex_state = 5}, + [2200] = {.lex_state = 7, .external_lex_state = 3}, + [2201] = {.lex_state = 7, .external_lex_state = 4}, [2202] = {.lex_state = 7, .external_lex_state = 4}, - [2203] = {.lex_state = 7, .external_lex_state = 4}, + [2203] = {.lex_state = 12, .external_lex_state = 5}, [2204] = {.lex_state = 7, .external_lex_state = 4}, - [2205] = {.lex_state = 7, .external_lex_state = 3}, - [2206] = {.lex_state = 14, .external_lex_state = 5}, - [2207] = {.lex_state = 14, .external_lex_state = 5}, + [2205] = {.lex_state = 7, .external_lex_state = 4}, + [2206] = {.lex_state = 12, .external_lex_state = 5}, + [2207] = {.lex_state = 12, .external_lex_state = 5}, [2208] = {.lex_state = 7, .external_lex_state = 4}, - [2209] = {.lex_state = 14, .external_lex_state = 5}, + [2209] = {.lex_state = 7, .external_lex_state = 4}, [2210] = {.lex_state = 7, .external_lex_state = 4}, - [2211] = {.lex_state = 7, .external_lex_state = 4}, + [2211] = {.lex_state = 12, .external_lex_state = 5}, [2212] = {.lex_state = 7, .external_lex_state = 3}, - [2213] = {.lex_state = 7, .external_lex_state = 3}, - [2214] = {.lex_state = 14, .external_lex_state = 5}, - [2215] = {.lex_state = 14, .external_lex_state = 5}, + [2213] = {.lex_state = 12, .external_lex_state = 2}, + [2214] = {.lex_state = 12, .external_lex_state = 2}, + [2215] = {.lex_state = 7, .external_lex_state = 4}, [2216] = {.lex_state = 7, .external_lex_state = 4}, [2217] = {.lex_state = 7, .external_lex_state = 4}, - [2218] = {.lex_state = 8, .external_lex_state = 4}, - [2219] = {.lex_state = 14, .external_lex_state = 5}, + [2218] = {.lex_state = 7, .external_lex_state = 3}, + [2219] = {.lex_state = 7, .external_lex_state = 4}, [2220] = {.lex_state = 7, .external_lex_state = 4}, [2221] = {.lex_state = 7, .external_lex_state = 4}, - [2222] = {.lex_state = 14, .external_lex_state = 5}, + [2222] = {.lex_state = 7, .external_lex_state = 3}, [2223] = {.lex_state = 7, .external_lex_state = 4}, - [2224] = {.lex_state = 14, .external_lex_state = 5}, - [2225] = {.lex_state = 14, .external_lex_state = 5}, + [2224] = {.lex_state = 7, .external_lex_state = 4}, + [2225] = {.lex_state = 7, .external_lex_state = 4}, [2226] = {.lex_state = 7, .external_lex_state = 4}, [2227] = {.lex_state = 7, .external_lex_state = 4}, [2228] = {.lex_state = 7, .external_lex_state = 4}, - [2229] = {.lex_state = 14, .external_lex_state = 5}, - [2230] = {.lex_state = 7, .external_lex_state = 3}, - [2231] = {.lex_state = 7, .external_lex_state = 3}, + [2229] = {.lex_state = 12, .external_lex_state = 5}, + [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 = 4}, [2234] = {.lex_state = 7, .external_lex_state = 4}, @@ -15328,180 +15352,180 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2236] = {.lex_state = 7, .external_lex_state = 4}, [2237] = {.lex_state = 7, .external_lex_state = 4}, [2238] = {.lex_state = 7, .external_lex_state = 4}, - [2239] = {.lex_state = 14, .external_lex_state = 2}, - [2240] = {.lex_state = 7, .external_lex_state = 4}, - [2241] = {.lex_state = 14, .external_lex_state = 2}, - [2242] = {.lex_state = 14, .external_lex_state = 2}, - [2243] = {.lex_state = 7, .external_lex_state = 4}, - [2244] = {.lex_state = 14, .external_lex_state = 5}, - [2245] = {.lex_state = 14, .external_lex_state = 5}, - [2246] = {.lex_state = 7, .external_lex_state = 4}, - [2247] = {.lex_state = 7, .external_lex_state = 4}, - [2248] = {.lex_state = 14, .external_lex_state = 2}, + [2239] = {.lex_state = 7, .external_lex_state = 4}, + [2240] = {.lex_state = 12, .external_lex_state = 2}, + [2241] = {.lex_state = 7, .external_lex_state = 3}, + [2242] = {.lex_state = 12, .external_lex_state = 2}, + [2243] = {.lex_state = 8, .external_lex_state = 4}, + [2244] = {.lex_state = 96, .external_lex_state = 2}, + [2245] = {.lex_state = 7, .external_lex_state = 3}, + [2246] = {.lex_state = 7, .external_lex_state = 3}, + [2247] = {.lex_state = 7, .external_lex_state = 3}, + [2248] = {.lex_state = 7, .external_lex_state = 4}, [2249] = {.lex_state = 7, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 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}, + [2253] = {.lex_state = 12, .external_lex_state = 2}, + [2254] = {.lex_state = 12, .external_lex_state = 2}, + [2255] = {.lex_state = 7, .external_lex_state = 4}, + [2256] = {.lex_state = 7, .external_lex_state = 4}, + [2257] = {.lex_state = 7, .external_lex_state = 4}, + [2258] = {.lex_state = 7, .external_lex_state = 4}, + [2259] = {.lex_state = 7, .external_lex_state = 4}, + [2260] = {.lex_state = 12, .external_lex_state = 2}, + [2261] = {.lex_state = 12, .external_lex_state = 2}, + [2262] = {.lex_state = 7, .external_lex_state = 4}, [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}, + [2264] = {.lex_state = 7, .external_lex_state = 4}, + [2265] = {.lex_state = 7, .external_lex_state = 4}, + [2266] = {.lex_state = 7, .external_lex_state = 4}, [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}, + [2268] = {.lex_state = 12, .external_lex_state = 2}, + [2269] = {.lex_state = 12, .external_lex_state = 2}, + [2270] = {.lex_state = 12, .external_lex_state = 5}, + [2271] = {.lex_state = 12, .external_lex_state = 5}, [2272] = {.lex_state = 7, .external_lex_state = 3}, [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 7, .external_lex_state = 3}, - [2275] = {.lex_state = 7, .external_lex_state = 3}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 3}, - [2278] = {.lex_state = 7, .external_lex_state = 4}, - [2279] = {.lex_state = 7, .external_lex_state = 4}, + [2274] = {.lex_state = 12, .external_lex_state = 2}, + [2275] = {.lex_state = 12, .external_lex_state = 2}, + [2276] = {.lex_state = 12, .external_lex_state = 5}, + [2277] = {.lex_state = 12, .external_lex_state = 5}, + [2278] = {.lex_state = 7, .external_lex_state = 3}, + [2279] = {.lex_state = 7, .external_lex_state = 3}, [2280] = {.lex_state = 7, .external_lex_state = 4}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 7, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 7, .external_lex_state = 3}, - [2285] = {.lex_state = 7, .external_lex_state = 3}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 7, .external_lex_state = 3}, + [2281] = {.lex_state = 7, .external_lex_state = 4}, + [2282] = {.lex_state = 12, .external_lex_state = 5}, + [2283] = {.lex_state = 12, .external_lex_state = 5}, + [2284] = {.lex_state = 12, .external_lex_state = 5}, + [2285] = {.lex_state = 12, .external_lex_state = 5}, + [2286] = {.lex_state = 12, .external_lex_state = 5}, + [2287] = {.lex_state = 12, .external_lex_state = 5}, [2288] = {.lex_state = 7, .external_lex_state = 3}, [2289] = {.lex_state = 7, .external_lex_state = 3}, [2290] = {.lex_state = 7, .external_lex_state = 3}, [2291] = {.lex_state = 7, .external_lex_state = 3}, - [2292] = {.lex_state = 7, .external_lex_state = 3}, - [2293] = {.lex_state = 7, .external_lex_state = 3}, - [2294] = {.lex_state = 7, .external_lex_state = 3}, + [2292] = {.lex_state = 12, .external_lex_state = 5}, + [2293] = {.lex_state = 12, .external_lex_state = 5}, + [2294] = {.lex_state = 12, .external_lex_state = 5}, [2295] = {.lex_state = 7, .external_lex_state = 3}, [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, - [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}, + [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 = 12, .external_lex_state = 5}, + [2303] = {.lex_state = 12, .external_lex_state = 5}, [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 3}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, + [2305] = {.lex_state = 12, .external_lex_state = 5}, + [2306] = {.lex_state = 12, .external_lex_state = 5}, [2307] = {.lex_state = 7, .external_lex_state = 3}, - [2308] = {.lex_state = 7, .external_lex_state = 3}, + [2308] = {.lex_state = 7, .external_lex_state = 4}, [2309] = {.lex_state = 7, .external_lex_state = 4}, [2310] = {.lex_state = 7, .external_lex_state = 4}, - [2311] = {.lex_state = 7, .external_lex_state = 4}, - [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 = 7, .external_lex_state = 4}, - [2316] = {.lex_state = 7, .external_lex_state = 4}, - [2317] = {.lex_state = 7, .external_lex_state = 4}, - [2318] = {.lex_state = 7, .external_lex_state = 4}, - [2319] = {.lex_state = 7, .external_lex_state = 4}, - [2320] = {.lex_state = 7, .external_lex_state = 4}, - [2321] = {.lex_state = 14, .external_lex_state = 5}, - [2322] = {.lex_state = 14, .external_lex_state = 2}, - [2323] = {.lex_state = 14, .external_lex_state = 2}, - [2324] = {.lex_state = 7, .external_lex_state = 4}, - [2325] = {.lex_state = 7, .external_lex_state = 4}, - [2326] = {.lex_state = 14, .external_lex_state = 5}, - [2327] = {.lex_state = 8, .external_lex_state = 4}, - [2328] = {.lex_state = 14, .external_lex_state = 5}, - [2329] = {.lex_state = 7, .external_lex_state = 4}, - [2330] = {.lex_state = 7, .external_lex_state = 4}, + [2311] = {.lex_state = 7, .external_lex_state = 3}, + [2312] = {.lex_state = 7, .external_lex_state = 3}, + [2313] = {.lex_state = 7, .external_lex_state = 3}, + [2314] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 3}, + [2320] = {.lex_state = 7, .external_lex_state = 3}, + [2321] = {.lex_state = 7, .external_lex_state = 3}, + [2322] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 7, .external_lex_state = 3}, + [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2325] = {.lex_state = 7, .external_lex_state = 3}, + [2326] = {.lex_state = 7, .external_lex_state = 3}, + [2327] = {.lex_state = 7, .external_lex_state = 3}, + [2328] = {.lex_state = 7, .external_lex_state = 3}, + [2329] = {.lex_state = 7, .external_lex_state = 3}, + [2330] = {.lex_state = 7, .external_lex_state = 3}, [2331] = {.lex_state = 7, .external_lex_state = 3}, [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 14, .external_lex_state = 5}, - [2334] = {.lex_state = 14, .external_lex_state = 5}, - [2335] = {.lex_state = 14, .external_lex_state = 5}, + [2333] = {.lex_state = 7, .external_lex_state = 3}, + [2334] = {.lex_state = 7, .external_lex_state = 3}, + [2335] = {.lex_state = 7, .external_lex_state = 3}, [2336] = {.lex_state = 7, .external_lex_state = 3}, [2337] = {.lex_state = 7, .external_lex_state = 4}, [2338] = {.lex_state = 7, .external_lex_state = 4}, [2339] = {.lex_state = 7, .external_lex_state = 4}, [2340] = {.lex_state = 7, .external_lex_state = 4}, [2341] = {.lex_state = 7, .external_lex_state = 4}, - [2342] = {.lex_state = 7, .external_lex_state = 3}, + [2342] = {.lex_state = 7, .external_lex_state = 4}, [2343] = {.lex_state = 7, .external_lex_state = 3}, [2344] = {.lex_state = 7, .external_lex_state = 3}, [2345] = {.lex_state = 7, .external_lex_state = 3}, [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 14, .external_lex_state = 5}, - [2348] = {.lex_state = 14, .external_lex_state = 5}, + [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 = 14, .external_lex_state = 5}, + [2350] = {.lex_state = 7, .external_lex_state = 3}, [2351] = {.lex_state = 7, .external_lex_state = 3}, - [2352] = {.lex_state = 7, .external_lex_state = 4}, - [2353] = {.lex_state = 7, .external_lex_state = 4}, - [2354] = {.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 = 3}, [2355] = {.lex_state = 7, .external_lex_state = 3}, [2356] = {.lex_state = 7, .external_lex_state = 3}, [2357] = {.lex_state = 7, .external_lex_state = 3}, [2358] = {.lex_state = 7, .external_lex_state = 3}, - [2359] = {.lex_state = 14, .external_lex_state = 5}, - [2360] = {.lex_state = 7, .external_lex_state = 4}, - [2361] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 14, .external_lex_state = 5}, - [2364] = {.lex_state = 14, .external_lex_state = 5}, + [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 = 14, .external_lex_state = 5}, - [2371] = {.lex_state = 14, .external_lex_state = 5}, - [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 = 96, .external_lex_state = 2}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 4}, - [2378] = {.lex_state = 7, .external_lex_state = 4}, - [2379] = {.lex_state = 7, .external_lex_state = 3}, - [2380] = {.lex_state = 7, .external_lex_state = 4}, - [2381] = {.lex_state = 7, .external_lex_state = 4}, - [2382] = {.lex_state = 7, .external_lex_state = 4}, - [2383] = {.lex_state = 14, .external_lex_state = 2}, - [2384] = {.lex_state = 7, .external_lex_state = 4}, + [2369] = {.lex_state = 7, .external_lex_state = 4}, + [2370] = {.lex_state = 7, .external_lex_state = 3}, + [2371] = {.lex_state = 12, .external_lex_state = 5}, + [2372] = {.lex_state = 12, .external_lex_state = 5}, + [2373] = {.lex_state = 12, .external_lex_state = 5}, + [2374] = {.lex_state = 12, .external_lex_state = 5}, + [2375] = {.lex_state = 12, .external_lex_state = 5}, + [2376] = {.lex_state = 12, .external_lex_state = 5}, + [2377] = {.lex_state = 12, .external_lex_state = 5}, + [2378] = {.lex_state = 12, .external_lex_state = 5}, + [2379] = {.lex_state = 12, .external_lex_state = 5}, + [2380] = {.lex_state = 12, .external_lex_state = 5}, + [2381] = {.lex_state = 12, .external_lex_state = 5}, + [2382] = {.lex_state = 12, .external_lex_state = 5}, + [2383] = {.lex_state = 12, .external_lex_state = 5}, + [2384] = {.lex_state = 7, .external_lex_state = 3}, [2385] = {.lex_state = 7, .external_lex_state = 4}, [2386] = {.lex_state = 7, .external_lex_state = 4}, [2387] = {.lex_state = 7, .external_lex_state = 4}, [2388] = {.lex_state = 7, .external_lex_state = 4}, - [2389] = {.lex_state = 7, .external_lex_state = 4}, - [2390] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 7, .external_lex_state = 3}, - [2393] = {.lex_state = 14, .external_lex_state = 5}, - [2394] = {.lex_state = 14, .external_lex_state = 5}, + [2393] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 7, .external_lex_state = 3}, [2395] = {.lex_state = 7, .external_lex_state = 3}, - [2396] = {.lex_state = 14, .external_lex_state = 5}, + [2396] = {.lex_state = 7, .external_lex_state = 3}, [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 7, .external_lex_state = 4}, - [2399] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 4}, + [2401] = {.lex_state = 12, .external_lex_state = 5}, [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 4}, - [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 7, .external_lex_state = 4}, - [2406] = {.lex_state = 7, .external_lex_state = 4}, + [2403] = {.lex_state = 7, .external_lex_state = 3}, + [2404] = {.lex_state = 7, .external_lex_state = 4}, + [2405] = {.lex_state = 12, .external_lex_state = 5}, + [2406] = {.lex_state = 12, .external_lex_state = 5}, [2407] = {.lex_state = 7, .external_lex_state = 4}, [2408] = {.lex_state = 7, .external_lex_state = 4}, - [2409] = {.lex_state = 7, .external_lex_state = 3}, + [2409] = {.lex_state = 8, .external_lex_state = 4}, [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, + [2411] = {.lex_state = 12, .external_lex_state = 5}, + [2412] = {.lex_state = 12, .external_lex_state = 5}, [2413] = {.lex_state = 7, .external_lex_state = 3}, [2414] = {.lex_state = 7, .external_lex_state = 3}, [2415] = {.lex_state = 7, .external_lex_state = 3}, @@ -15524,309 +15548,309 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2432] = {.lex_state = 7, .external_lex_state = 3}, [2433] = {.lex_state = 7, .external_lex_state = 3}, [2434] = {.lex_state = 7, .external_lex_state = 3}, - [2435] = {.lex_state = 7, .external_lex_state = 4}, - [2436] = {.lex_state = 7, .external_lex_state = 4}, - [2437] = {.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 = 14, .external_lex_state = 5}, + [2442] = {.lex_state = 7, .external_lex_state = 3}, [2443] = {.lex_state = 7, .external_lex_state = 3}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, + [2444] = {.lex_state = 7, .external_lex_state = 4}, [2445] = {.lex_state = 7, .external_lex_state = 3}, [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 14, .external_lex_state = 2}, - [2448] = {.lex_state = 14, .external_lex_state = 5}, - [2449] = {.lex_state = 14, .external_lex_state = 5}, - [2450] = {.lex_state = 14, .external_lex_state = 5}, + [2447] = {.lex_state = 7, .external_lex_state = 3}, + [2448] = {.lex_state = 12, .external_lex_state = 2}, + [2449] = {.lex_state = 12, .external_lex_state = 2}, + [2450] = {.lex_state = 12, .external_lex_state = 5}, [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 14, .external_lex_state = 5}, + [2452] = {.lex_state = 12, .external_lex_state = 5}, [2453] = {.lex_state = 7, .external_lex_state = 3}, [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 96, .external_lex_state = 2}, - [2456] = {.lex_state = 14, .external_lex_state = 5}, - [2457] = {.lex_state = 14, .external_lex_state = 2}, - [2458] = {.lex_state = 14, .external_lex_state = 5}, - [2459] = {.lex_state = 14, .external_lex_state = 5}, - [2460] = {.lex_state = 14, .external_lex_state = 5}, - [2461] = {.lex_state = 14, .external_lex_state = 5}, - [2462] = {.lex_state = 14, .external_lex_state = 2}, - [2463] = {.lex_state = 7, .external_lex_state = 3}, - [2464] = {.lex_state = 14, .external_lex_state = 5}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 14, .external_lex_state = 2}, - [2467] = {.lex_state = 7, .external_lex_state = 3}, - [2468] = {.lex_state = 7, .external_lex_state = 3}, - [2469] = {.lex_state = 7, .external_lex_state = 3}, + [2455] = {.lex_state = 12, .external_lex_state = 5}, + [2456] = {.lex_state = 7, .external_lex_state = 3}, + [2457] = {.lex_state = 12, .external_lex_state = 2}, + [2458] = {.lex_state = 7, .external_lex_state = 3}, + [2459] = {.lex_state = 12, .external_lex_state = 5}, + [2460] = {.lex_state = 12, .external_lex_state = 2}, + [2461] = {.lex_state = 7, .external_lex_state = 4}, + [2462] = {.lex_state = 7, .external_lex_state = 4}, + [2463] = {.lex_state = 7, .external_lex_state = 4}, + [2464] = {.lex_state = 12, .external_lex_state = 5}, + [2465] = {.lex_state = 12, .external_lex_state = 5}, + [2466] = {.lex_state = 12, .external_lex_state = 5}, + [2467] = {.lex_state = 12, .external_lex_state = 5}, + [2468] = {.lex_state = 12, .external_lex_state = 2}, + [2469] = {.lex_state = 12, .external_lex_state = 5}, [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 14, .external_lex_state = 5}, - [2472] = {.lex_state = 14, .external_lex_state = 5}, - [2473] = {.lex_state = 14, .external_lex_state = 5}, - [2474] = {.lex_state = 14, .external_lex_state = 5}, - [2475] = {.lex_state = 14, .external_lex_state = 5}, - [2476] = {.lex_state = 14, .external_lex_state = 5}, - [2477] = {.lex_state = 14, .external_lex_state = 5}, - [2478] = {.lex_state = 14, .external_lex_state = 2}, - [2479] = {.lex_state = 7, .external_lex_state = 3}, - [2480] = {.lex_state = 7, .external_lex_state = 3}, - [2481] = {.lex_state = 7, .external_lex_state = 3}, - [2482] = {.lex_state = 7, .external_lex_state = 3}, - [2483] = {.lex_state = 7, .external_lex_state = 4}, - [2484] = {.lex_state = 7, .external_lex_state = 3}, - [2485] = {.lex_state = 7, .external_lex_state = 4}, - [2486] = {.lex_state = 96, .external_lex_state = 2}, - [2487] = {.lex_state = 14, .external_lex_state = 2}, - [2488] = {.lex_state = 7, .external_lex_state = 3}, - [2489] = {.lex_state = 7, .external_lex_state = 3}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, + [2471] = {.lex_state = 12, .external_lex_state = 5}, + [2472] = {.lex_state = 7, .external_lex_state = 3}, + [2473] = {.lex_state = 12, .external_lex_state = 5}, + [2474] = {.lex_state = 7, .external_lex_state = 3}, + [2475] = {.lex_state = 12, .external_lex_state = 5}, + [2476] = {.lex_state = 7, .external_lex_state = 3}, + [2477] = {.lex_state = 12, .external_lex_state = 5}, + [2478] = {.lex_state = 7, .external_lex_state = 3}, + [2479] = {.lex_state = 12, .external_lex_state = 5}, + [2480] = {.lex_state = 12, .external_lex_state = 5}, + [2481] = {.lex_state = 12, .external_lex_state = 5}, + [2482] = {.lex_state = 12, .external_lex_state = 2}, + [2483] = {.lex_state = 7, .external_lex_state = 3}, + [2484] = {.lex_state = 12, .external_lex_state = 2}, + [2485] = {.lex_state = 7, .external_lex_state = 3}, + [2486] = {.lex_state = 7, .external_lex_state = 3}, + [2487] = {.lex_state = 7, .external_lex_state = 3}, + [2488] = {.lex_state = 12, .external_lex_state = 5}, + [2489] = {.lex_state = 96, .external_lex_state = 2}, + [2490] = {.lex_state = 12, .external_lex_state = 5}, [2491] = {.lex_state = 7, .external_lex_state = 3}, - [2492] = {.lex_state = 7, .external_lex_state = 3}, - [2493] = {.lex_state = 14, .external_lex_state = 2}, - [2494] = {.lex_state = 14, .external_lex_state = 5}, - [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 = 14, .external_lex_state = 2}, - [2499] = {.lex_state = 7, .external_lex_state = 3}, - [2500] = {.lex_state = 7, .external_lex_state = 3}, - [2501] = {.lex_state = 14, .external_lex_state = 5}, + [2492] = {.lex_state = 12, .external_lex_state = 5}, + [2493] = {.lex_state = 12, .external_lex_state = 2}, + [2494] = {.lex_state = 7, .external_lex_state = 4}, + [2495] = {.lex_state = 12, .external_lex_state = 5}, + [2496] = {.lex_state = 12, .external_lex_state = 5}, + [2497] = {.lex_state = 12, .external_lex_state = 5}, + [2498] = {.lex_state = 12, .external_lex_state = 5}, + [2499] = {.lex_state = 12, .external_lex_state = 2}, + [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}, + [2503] = {.lex_state = 7, .external_lex_state = 4}, [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 = 4}, + [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 = 4}, + [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 = 14, .external_lex_state = 5}, + [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 = 14, .external_lex_state = 5}, + [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 = 14, .external_lex_state = 5}, - [2523] = {.lex_state = 8, .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 = 4}, + [2525] = {.lex_state = 7, .external_lex_state = 3}, [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 14, .external_lex_state = 5}, + [2527] = {.lex_state = 7, .external_lex_state = 3}, [2528] = {.lex_state = 7, .external_lex_state = 3}, - [2529] = {.lex_state = 14, .external_lex_state = 5}, - [2530] = {.lex_state = 14, .external_lex_state = 2}, - [2531] = {.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 = 8, .external_lex_state = 3}, [2532] = {.lex_state = 7, .external_lex_state = 3}, [2533] = {.lex_state = 7, .external_lex_state = 3}, [2534] = {.lex_state = 7, .external_lex_state = 3}, [2535] = {.lex_state = 96, .external_lex_state = 2}, - [2536] = {.lex_state = 96, .external_lex_state = 5}, + [2536] = {.lex_state = 7, .external_lex_state = 4}, [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 = 96, .external_lex_state = 2}, - [2542] = {.lex_state = 7, .external_lex_state = 3}, - [2543] = {.lex_state = 14, .external_lex_state = 5}, - [2544] = {.lex_state = 14, .external_lex_state = 5}, + [2539] = {.lex_state = 96, .external_lex_state = 5}, + [2540] = {.lex_state = 96, .external_lex_state = 5}, + [2541] = {.lex_state = 12, .external_lex_state = 2}, + [2542] = {.lex_state = 96, .external_lex_state = 5}, + [2543] = {.lex_state = 96, .external_lex_state = 5}, + [2544] = {.lex_state = 12, .external_lex_state = 2}, [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 = 14, .external_lex_state = 2}, + [2547] = {.lex_state = 96, .external_lex_state = 5}, + [2548] = {.lex_state = 7, .external_lex_state = 3}, [2549] = {.lex_state = 7, .external_lex_state = 3}, - [2550] = {.lex_state = 96, .external_lex_state = 5}, + [2550] = {.lex_state = 12, .external_lex_state = 2}, [2551] = {.lex_state = 7, .external_lex_state = 3}, [2552] = {.lex_state = 7, .external_lex_state = 3}, - [2553] = {.lex_state = 14, .external_lex_state = 2}, - [2554] = {.lex_state = 96, .external_lex_state = 5}, - [2555] = {.lex_state = 96, .external_lex_state = 5}, - [2556] = {.lex_state = 14, .external_lex_state = 2}, + [2553] = {.lex_state = 96, .external_lex_state = 5}, + [2554] = {.lex_state = 7, .external_lex_state = 3}, + [2555] = {.lex_state = 7, .external_lex_state = 3}, + [2556] = {.lex_state = 7, .external_lex_state = 3}, [2557] = {.lex_state = 7, .external_lex_state = 3}, - [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 = 96, .external_lex_state = 2}, - [2563] = {.lex_state = 7, .external_lex_state = 3}, - [2564] = {.lex_state = 14, .external_lex_state = 2}, - [2565] = {.lex_state = 7, .external_lex_state = 3}, - [2566] = {.lex_state = 96, .external_lex_state = 5}, - [2567] = {.lex_state = 7, .external_lex_state = 4}, - [2568] = {.lex_state = 96, .external_lex_state = 5}, - [2569] = {.lex_state = 96, .external_lex_state = 5}, - [2570] = {.lex_state = 14, .external_lex_state = 2}, + [2558] = {.lex_state = 96, .external_lex_state = 2}, + [2559] = {.lex_state = 12, .external_lex_state = 2}, + [2560] = {.lex_state = 96, .external_lex_state = 5}, + [2561] = {.lex_state = 96, .external_lex_state = 5}, + [2562] = {.lex_state = 96, .external_lex_state = 5}, + [2563] = {.lex_state = 96, .external_lex_state = 5}, + [2564] = {.lex_state = 7, .external_lex_state = 3}, + [2565] = {.lex_state = 96, .external_lex_state = 2}, + [2566] = {.lex_state = 7, .external_lex_state = 3}, + [2567] = {.lex_state = 7, .external_lex_state = 3}, + [2568] = {.lex_state = 7, .external_lex_state = 3}, + [2569] = {.lex_state = 12, .external_lex_state = 5}, + [2570] = {.lex_state = 7, .external_lex_state = 3}, [2571] = {.lex_state = 7, .external_lex_state = 3}, - [2572] = {.lex_state = 96, .external_lex_state = 5}, - [2573] = {.lex_state = 96, .external_lex_state = 5}, - [2574] = {.lex_state = 96, .external_lex_state = 5}, - [2575] = {.lex_state = 96, .external_lex_state = 5}, - [2576] = {.lex_state = 14, .external_lex_state = 2}, - [2577] = {.lex_state = 7, .external_lex_state = 3}, - [2578] = {.lex_state = 14, .external_lex_state = 2}, - [2579] = {.lex_state = 14, .external_lex_state = 2}, - [2580] = {.lex_state = 14, .external_lex_state = 2}, - [2581] = {.lex_state = 96, .external_lex_state = 5}, - [2582] = {.lex_state = 14, .external_lex_state = 2}, - [2583] = {.lex_state = 7, .external_lex_state = 3}, - [2584] = {.lex_state = 14, .external_lex_state = 2}, - [2585] = {.lex_state = 96, .external_lex_state = 5}, - [2586] = {.lex_state = 14, .external_lex_state = 2}, - [2587] = {.lex_state = 96, .external_lex_state = 5}, - [2588] = {.lex_state = 14, .external_lex_state = 2}, - [2589] = {.lex_state = 14, .external_lex_state = 2}, - [2590] = {.lex_state = 14, .external_lex_state = 2}, - [2591] = {.lex_state = 14, .external_lex_state = 2}, + [2572] = {.lex_state = 12, .external_lex_state = 5}, + [2573] = {.lex_state = 7, .external_lex_state = 3}, + [2574] = {.lex_state = 12, .external_lex_state = 2}, + [2575] = {.lex_state = 96, .external_lex_state = 2}, + [2576] = {.lex_state = 12, .external_lex_state = 2}, + [2577] = {.lex_state = 12, .external_lex_state = 2}, + [2578] = {.lex_state = 7, .external_lex_state = 3}, + [2579] = {.lex_state = 12, .external_lex_state = 2}, + [2580] = {.lex_state = 96, .external_lex_state = 5}, + [2581] = {.lex_state = 12, .external_lex_state = 2}, + [2582] = {.lex_state = 12, .external_lex_state = 2}, + [2583] = {.lex_state = 96, .external_lex_state = 5}, + [2584] = {.lex_state = 12, .external_lex_state = 2}, + [2585] = {.lex_state = 12, .external_lex_state = 2}, + [2586] = {.lex_state = 12, .external_lex_state = 2}, + [2587] = {.lex_state = 12, .external_lex_state = 2}, + [2588] = {.lex_state = 96, .external_lex_state = 5}, + [2589] = {.lex_state = 8, .external_lex_state = 3}, + [2590] = {.lex_state = 96, .external_lex_state = 5}, + [2591] = {.lex_state = 96, .external_lex_state = 5}, [2592] = {.lex_state = 96, .external_lex_state = 5}, - [2593] = {.lex_state = 14, .external_lex_state = 2}, - [2594] = {.lex_state = 14, .external_lex_state = 2}, + [2593] = {.lex_state = 12, .external_lex_state = 2}, + [2594] = {.lex_state = 96, .external_lex_state = 5}, [2595] = {.lex_state = 96, .external_lex_state = 5}, - [2596] = {.lex_state = 8, .external_lex_state = 3}, - [2597] = {.lex_state = 96, .external_lex_state = 5}, + [2596] = {.lex_state = 96, .external_lex_state = 5}, + [2597] = {.lex_state = 7, .external_lex_state = 3}, [2598] = {.lex_state = 96, .external_lex_state = 5}, - [2599] = {.lex_state = 96, .external_lex_state = 5}, - [2600] = {.lex_state = 14, .external_lex_state = 2}, - [2601] = {.lex_state = 14, .external_lex_state = 2}, - [2602] = {.lex_state = 96, .external_lex_state = 5}, - [2603] = {.lex_state = 14, .external_lex_state = 2}, - [2604] = {.lex_state = 96, .external_lex_state = 5}, - [2605] = {.lex_state = 14, .external_lex_state = 2}, + [2599] = {.lex_state = 12, .external_lex_state = 2}, + [2600] = {.lex_state = 96, .external_lex_state = 5}, + [2601] = {.lex_state = 96, .external_lex_state = 5}, + [2602] = {.lex_state = 7, .external_lex_state = 3}, + [2603] = {.lex_state = 12, .external_lex_state = 2}, + [2604] = {.lex_state = 12, .external_lex_state = 2}, + [2605] = {.lex_state = 7, .external_lex_state = 3}, [2606] = {.lex_state = 96, .external_lex_state = 5}, - [2607] = {.lex_state = 7, .external_lex_state = 3}, - [2608] = {.lex_state = 96, .external_lex_state = 5}, + [2607] = {.lex_state = 12, .external_lex_state = 2}, + [2608] = {.lex_state = 12, .external_lex_state = 2}, [2609] = {.lex_state = 96, .external_lex_state = 5}, - [2610] = {.lex_state = 7, .external_lex_state = 3}, - [2611] = {.lex_state = 7, .external_lex_state = 3}, - [2612] = {.lex_state = 96, .external_lex_state = 5}, - [2613] = {.lex_state = 96, .external_lex_state = 5}, + [2610] = {.lex_state = 96, .external_lex_state = 5}, + [2611] = {.lex_state = 12, .external_lex_state = 2}, + [2612] = {.lex_state = 12, .external_lex_state = 2}, + [2613] = {.lex_state = 7, .external_lex_state = 3}, [2614] = {.lex_state = 7, .external_lex_state = 3}, - [2615] = {.lex_state = 7, .external_lex_state = 3}, + [2615] = {.lex_state = 96, .external_lex_state = 5}, [2616] = {.lex_state = 7, .external_lex_state = 3}, - [2617] = {.lex_state = 14, .external_lex_state = 2}, - [2618] = {.lex_state = 14, .external_lex_state = 5}, + [2617] = {.lex_state = 7, .external_lex_state = 3}, + [2618] = {.lex_state = 12, .external_lex_state = 2}, [2619] = {.lex_state = 7, .external_lex_state = 3}, - [2620] = {.lex_state = 14, .external_lex_state = 5}, - [2621] = {.lex_state = 14, .external_lex_state = 5}, - [2622] = {.lex_state = 14, .external_lex_state = 5}, - [2623] = {.lex_state = 14, .external_lex_state = 5}, - [2624] = {.lex_state = 14, .external_lex_state = 5}, - [2625] = {.lex_state = 14, .external_lex_state = 5}, - [2626] = {.lex_state = 14, .external_lex_state = 5}, - [2627] = {.lex_state = 7, .external_lex_state = 3}, - [2628] = {.lex_state = 14, .external_lex_state = 5}, - [2629] = {.lex_state = 14, .external_lex_state = 5}, - [2630] = {.lex_state = 14, .external_lex_state = 5}, - [2631] = {.lex_state = 14, .external_lex_state = 5}, - [2632] = {.lex_state = 14, .external_lex_state = 5}, - [2633] = {.lex_state = 14, .external_lex_state = 5}, - [2634] = {.lex_state = 14, .external_lex_state = 5}, - [2635] = {.lex_state = 14, .external_lex_state = 5}, - [2636] = {.lex_state = 14, .external_lex_state = 5}, - [2637] = {.lex_state = 14, .external_lex_state = 5}, - [2638] = {.lex_state = 14, .external_lex_state = 5}, - [2639] = {.lex_state = 14, .external_lex_state = 5}, - [2640] = {.lex_state = 7, .external_lex_state = 3}, - [2641] = {.lex_state = 14, .external_lex_state = 5}, - [2642] = {.lex_state = 14, .external_lex_state = 5}, - [2643] = {.lex_state = 14, .external_lex_state = 5}, - [2644] = {.lex_state = 14, .external_lex_state = 5}, - [2645] = {.lex_state = 14, .external_lex_state = 5}, - [2646] = {.lex_state = 14, .external_lex_state = 5}, - [2647] = {.lex_state = 14, .external_lex_state = 5}, - [2648] = {.lex_state = 14, .external_lex_state = 5}, - [2649] = {.lex_state = 14, .external_lex_state = 5}, - [2650] = {.lex_state = 14, .external_lex_state = 5}, - [2651] = {.lex_state = 14, .external_lex_state = 5}, - [2652] = {.lex_state = 14, .external_lex_state = 5}, - [2653] = {.lex_state = 14, .external_lex_state = 5}, - [2654] = {.lex_state = 7, .external_lex_state = 3}, - [2655] = {.lex_state = 14, .external_lex_state = 5}, - [2656] = {.lex_state = 14, .external_lex_state = 5}, - [2657] = {.lex_state = 14, .external_lex_state = 2}, - [2658] = {.lex_state = 7, .external_lex_state = 3}, - [2659] = {.lex_state = 14, .external_lex_state = 5}, - [2660] = {.lex_state = 14, .external_lex_state = 5}, - [2661] = {.lex_state = 14, .external_lex_state = 5}, - [2662] = {.lex_state = 7, .external_lex_state = 3}, - [2663] = {.lex_state = 14, .external_lex_state = 5}, - [2664] = {.lex_state = 14, .external_lex_state = 5}, - [2665] = {.lex_state = 14, .external_lex_state = 5}, - [2666] = {.lex_state = 14, .external_lex_state = 5}, - [2667] = {.lex_state = 14, .external_lex_state = 5}, - [2668] = {.lex_state = 14, .external_lex_state = 5}, + [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 = 12, .external_lex_state = 5}, + [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 = 12, .external_lex_state = 5}, + [2636] = {.lex_state = 12, .external_lex_state = 2}, + [2637] = {.lex_state = 12, .external_lex_state = 5}, + [2638] = {.lex_state = 12, .external_lex_state = 5}, + [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 = 12, .external_lex_state = 5}, + [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 = 7, .external_lex_state = 3}, + [2648] = {.lex_state = 12, .external_lex_state = 5}, + [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 = 7, .external_lex_state = 3}, + [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 = 12, .external_lex_state = 5}, + [2661] = {.lex_state = 12, .external_lex_state = 5}, + [2662] = {.lex_state = 12, .external_lex_state = 5}, + [2663] = {.lex_state = 7, .external_lex_state = 3}, + [2664] = {.lex_state = 12, .external_lex_state = 5}, + [2665] = {.lex_state = 12, .external_lex_state = 5}, + [2666] = {.lex_state = 12, .external_lex_state = 5}, + [2667] = {.lex_state = 7, .external_lex_state = 3}, + [2668] = {.lex_state = 12, .external_lex_state = 2}, [2669] = {.lex_state = 7, .external_lex_state = 3}, - [2670] = {.lex_state = 14, .external_lex_state = 5}, - [2671] = {.lex_state = 14, .external_lex_state = 5}, + [2670] = {.lex_state = 12, .external_lex_state = 5}, + [2671] = {.lex_state = 12, .external_lex_state = 5}, [2672] = {.lex_state = 7, .external_lex_state = 3}, - [2673] = {.lex_state = 14, .external_lex_state = 5}, - [2674] = {.lex_state = 14, .external_lex_state = 5}, - [2675] = {.lex_state = 14, .external_lex_state = 5}, - [2676] = {.lex_state = 14, .external_lex_state = 5}, - [2677] = {.lex_state = 14, .external_lex_state = 5}, - [2678] = {.lex_state = 7, .external_lex_state = 3}, - [2679] = {.lex_state = 14, .external_lex_state = 5}, - [2680] = {.lex_state = 7, .external_lex_state = 3}, - [2681] = {.lex_state = 14, .external_lex_state = 2}, - [2682] = {.lex_state = 14, .external_lex_state = 2}, - [2683] = {.lex_state = 14, .external_lex_state = 2}, - [2684] = {.lex_state = 14, .external_lex_state = 2}, - [2685] = {.lex_state = 14, .external_lex_state = 2}, - [2686] = {.lex_state = 14, .external_lex_state = 2}, - [2687] = {.lex_state = 14, .external_lex_state = 2}, - [2688] = {.lex_state = 14, .external_lex_state = 2}, - [2689] = {.lex_state = 14, .external_lex_state = 2}, - [2690] = {.lex_state = 14, .external_lex_state = 2}, - [2691] = {.lex_state = 14, .external_lex_state = 2}, - [2692] = {.lex_state = 14, .external_lex_state = 2}, - [2693] = {.lex_state = 14, .external_lex_state = 2}, - [2694] = {.lex_state = 14, .external_lex_state = 2}, - [2695] = {.lex_state = 14, .external_lex_state = 2}, - [2696] = {.lex_state = 14, .external_lex_state = 2}, - [2697] = {.lex_state = 14, .external_lex_state = 2}, - [2698] = {.lex_state = 14, .external_lex_state = 2}, - [2699] = {.lex_state = 14, .external_lex_state = 2}, - [2700] = {.lex_state = 14, .external_lex_state = 2}, - [2701] = {.lex_state = 14, .external_lex_state = 2}, - [2702] = {.lex_state = 14, .external_lex_state = 2}, - [2703] = {.lex_state = 14, .external_lex_state = 2}, - [2704] = {.lex_state = 96, .external_lex_state = 2}, - [2705] = {.lex_state = 14, .external_lex_state = 2}, - [2706] = {.lex_state = 96, .external_lex_state = 2}, - [2707] = {.lex_state = 14, .external_lex_state = 2}, - [2708] = {.lex_state = 14, .external_lex_state = 2}, - [2709] = {.lex_state = 14, .external_lex_state = 2}, - [2710] = {.lex_state = 14, .external_lex_state = 2}, - [2711] = {.lex_state = 96, .external_lex_state = 2}, - [2712] = {.lex_state = 14, .external_lex_state = 2}, - [2713] = {.lex_state = 14, .external_lex_state = 2}, - [2714] = {.lex_state = 14, .external_lex_state = 2}, - [2715] = {.lex_state = 14, .external_lex_state = 2}, - [2716] = {.lex_state = 96, .external_lex_state = 2}, - [2717] = {.lex_state = 14, .external_lex_state = 2}, - [2718] = {.lex_state = 14, .external_lex_state = 2}, - [2719] = {.lex_state = 14, .external_lex_state = 2}, - [2720] = {.lex_state = 14, .external_lex_state = 2}, - [2721] = {.lex_state = 14, .external_lex_state = 2}, - [2722] = {.lex_state = 14, .external_lex_state = 2}, - [2723] = {.lex_state = 14, .external_lex_state = 2}, - [2724] = {.lex_state = 14, .external_lex_state = 2}, - [2725] = {.lex_state = 14, .external_lex_state = 2}, - [2726] = {.lex_state = 14, .external_lex_state = 2}, - [2727] = {.lex_state = 14, .external_lex_state = 2}, - [2728] = {.lex_state = 14, .external_lex_state = 2}, - [2729] = {.lex_state = 14, .external_lex_state = 2}, - [2730] = {.lex_state = 14, .external_lex_state = 2}, - [2731] = {.lex_state = 14, .external_lex_state = 2}, - [2732] = {.lex_state = 14, .external_lex_state = 2}, - [2733] = {.lex_state = 96, .external_lex_state = 2}, - [2734] = {.lex_state = 14, .external_lex_state = 2}, - [2735] = {.lex_state = 14, .external_lex_state = 2}, - [2736] = {.lex_state = 14, .external_lex_state = 2}, - [2737] = {.lex_state = 96, .external_lex_state = 2}, + [2673] = {.lex_state = 7, .external_lex_state = 3}, + [2674] = {.lex_state = 12, .external_lex_state = 5}, + [2675] = {.lex_state = 12, .external_lex_state = 5}, + [2676] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 2}, + [2682] = {.lex_state = 7, .external_lex_state = 3}, + [2683] = {.lex_state = 12, .external_lex_state = 5}, + [2684] = {.lex_state = 12, .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 = 12, .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 = 96, .external_lex_state = 2}, + [2701] = {.lex_state = 12, .external_lex_state = 2}, + [2702] = {.lex_state = 12, .external_lex_state = 2}, + [2703] = {.lex_state = 12, .external_lex_state = 2}, + [2704] = {.lex_state = 12, .external_lex_state = 2}, + [2705] = {.lex_state = 12, .external_lex_state = 2}, + [2706] = {.lex_state = 12, .external_lex_state = 2}, + [2707] = {.lex_state = 96, .external_lex_state = 2}, + [2708] = {.lex_state = 12, .external_lex_state = 2}, + [2709] = {.lex_state = 96, .external_lex_state = 2}, + [2710] = {.lex_state = 12, .external_lex_state = 2}, + [2711] = {.lex_state = 12, .external_lex_state = 2}, + [2712] = {.lex_state = 96, .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 = 96, .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 = 12, .external_lex_state = 2}, + [2733] = {.lex_state = 12, .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 = 96, .external_lex_state = 2}, [2739] = {.lex_state = 96, .external_lex_state = 2}, [2740] = {.lex_state = 96, .external_lex_state = 2}, @@ -15852,8 +15876,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2760] = {.lex_state = 96, .external_lex_state = 2}, [2761] = {.lex_state = 96, .external_lex_state = 2}, [2762] = {.lex_state = 96, .external_lex_state = 2}, - [2763] = {.lex_state = 14, .external_lex_state = 2}, - [2764] = {.lex_state = 96, .external_lex_state = 2}, + [2763] = {.lex_state = 96, .external_lex_state = 2}, + [2764] = {.lex_state = 12, .external_lex_state = 2}, [2765] = {.lex_state = 96, .external_lex_state = 2}, [2766] = {.lex_state = 96, .external_lex_state = 2}, [2767] = {.lex_state = 96, .external_lex_state = 2}, @@ -15932,8 +15956,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 15, .external_lex_state = 2}, - [2844] = {.lex_state = 15, .external_lex_state = 2}, + [2843] = {.lex_state = 96, .external_lex_state = 2}, + [2844] = {.lex_state = 96, .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}, @@ -15970,246 +15994,246 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2878] = {.lex_state = 15, .external_lex_state = 2}, [2879] = {.lex_state = 15, .external_lex_state = 2}, [2880] = {.lex_state = 15, .external_lex_state = 2}, - [2881] = {.lex_state = 12, .external_lex_state = 2}, - [2882] = {.lex_state = 12, .external_lex_state = 5}, - [2883] = {.lex_state = 15, .external_lex_state = 5}, - [2884] = {.lex_state = 13, .external_lex_state = 2}, - [2885] = {.lex_state = 15, .external_lex_state = 5}, + [2881] = {.lex_state = 15, .external_lex_state = 2}, + [2882] = {.lex_state = 13, .external_lex_state = 5}, + [2883] = {.lex_state = 13, .external_lex_state = 5}, + [2884] = {.lex_state = 15, .external_lex_state = 2}, + [2885] = {.lex_state = 96, .external_lex_state = 2}, [2886] = {.lex_state = 96, .external_lex_state = 2}, - [2887] = {.lex_state = 96, .external_lex_state = 2}, - [2888] = {.lex_state = 12, .external_lex_state = 2}, + [2887] = {.lex_state = 13, .external_lex_state = 2}, + [2888] = {.lex_state = 96, .external_lex_state = 2}, [2889] = {.lex_state = 96, .external_lex_state = 2}, [2890] = {.lex_state = 96, .external_lex_state = 2}, - [2891] = {.lex_state = 96, .external_lex_state = 2}, - [2892] = {.lex_state = 96, .external_lex_state = 2}, - [2893] = {.lex_state = 15, .external_lex_state = 5}, - [2894] = {.lex_state = 12, .external_lex_state = 2}, - [2895] = {.lex_state = 13, .external_lex_state = 2}, - [2896] = {.lex_state = 12, .external_lex_state = 2}, - [2897] = {.lex_state = 13, .external_lex_state = 2}, - [2898] = {.lex_state = 12, .external_lex_state = 5}, + [2891] = {.lex_state = 13, .external_lex_state = 2}, + [2892] = {.lex_state = 14, .external_lex_state = 2}, + [2893] = {.lex_state = 96, .external_lex_state = 2}, + [2894] = {.lex_state = 14, .external_lex_state = 2}, + [2895] = {.lex_state = 14, .external_lex_state = 2}, + [2896] = {.lex_state = 15, .external_lex_state = 5}, + [2897] = {.lex_state = 14, .external_lex_state = 2}, + [2898] = {.lex_state = 13, .external_lex_state = 2}, [2899] = {.lex_state = 13, .external_lex_state = 2}, - [2900] = {.lex_state = 13, .external_lex_state = 2}, - [2901] = {.lex_state = 96, .external_lex_state = 2}, - [2902] = {.lex_state = 12, .external_lex_state = 2}, + [2900] = {.lex_state = 14, .external_lex_state = 2}, + [2901] = {.lex_state = 15, .external_lex_state = 5}, + [2902] = {.lex_state = 15, .external_lex_state = 5}, [2903] = {.lex_state = 96, .external_lex_state = 2}, [2904] = {.lex_state = 96, .external_lex_state = 2}, [2905] = {.lex_state = 96, .external_lex_state = 2}, - [2906] = {.lex_state = 96, .external_lex_state = 2}, + [2906] = {.lex_state = 13, .external_lex_state = 2}, [2907] = {.lex_state = 96, .external_lex_state = 2}, - [2908] = {.lex_state = 15, .external_lex_state = 6}, + [2908] = {.lex_state = 96, .external_lex_state = 2}, [2909] = {.lex_state = 96, .external_lex_state = 2}, - [2910] = {.lex_state = 96, .external_lex_state = 2}, + [2910] = {.lex_state = 15, .external_lex_state = 6}, [2911] = {.lex_state = 96, .external_lex_state = 2}, - [2912] = {.lex_state = 96, .external_lex_state = 2}, + [2912] = {.lex_state = 4, .external_lex_state = 2}, [2913] = {.lex_state = 96, .external_lex_state = 2}, - [2914] = {.lex_state = 4, .external_lex_state = 2}, + [2914] = {.lex_state = 15, .external_lex_state = 5}, [2915] = {.lex_state = 96, .external_lex_state = 2}, [2916] = {.lex_state = 96, .external_lex_state = 2}, [2917] = {.lex_state = 96, .external_lex_state = 2}, - [2918] = {.lex_state = 96, .external_lex_state = 2}, + [2918] = {.lex_state = 15, .external_lex_state = 5}, [2919] = {.lex_state = 96, .external_lex_state = 2}, [2920] = {.lex_state = 96, .external_lex_state = 2}, [2921] = {.lex_state = 96, .external_lex_state = 2}, [2922] = {.lex_state = 96, .external_lex_state = 2}, [2923] = {.lex_state = 96, .external_lex_state = 2}, - [2924] = {.lex_state = 96, .external_lex_state = 2}, - [2925] = {.lex_state = 12, .external_lex_state = 5}, + [2924] = {.lex_state = 15, .external_lex_state = 5}, + [2925] = {.lex_state = 96, .external_lex_state = 2}, [2926] = {.lex_state = 96, .external_lex_state = 2}, - [2927] = {.lex_state = 96, .external_lex_state = 2}, - [2928] = {.lex_state = 96, .external_lex_state = 2}, + [2927] = {.lex_state = 15, .external_lex_state = 5}, + [2928] = {.lex_state = 15, .external_lex_state = 5}, [2929] = {.lex_state = 96, .external_lex_state = 2}, [2930] = {.lex_state = 96, .external_lex_state = 2}, - [2931] = {.lex_state = 15, .external_lex_state = 5}, - [2932] = {.lex_state = 15, .external_lex_state = 5}, + [2931] = {.lex_state = 96, .external_lex_state = 2}, + [2932] = {.lex_state = 96, .external_lex_state = 2}, [2933] = {.lex_state = 4, .external_lex_state = 2}, - [2934] = {.lex_state = 15, .external_lex_state = 5}, - [2935] = {.lex_state = 15, .external_lex_state = 5}, - [2936] = {.lex_state = 96, .external_lex_state = 2}, - [2937] = {.lex_state = 96, .external_lex_state = 2}, + [2934] = {.lex_state = 15, .external_lex_state = 6}, + [2935] = {.lex_state = 96, .external_lex_state = 2}, + [2936] = {.lex_state = 15, .external_lex_state = 5}, + [2937] = {.lex_state = 4, .external_lex_state = 2}, [2938] = {.lex_state = 96, .external_lex_state = 2}, - [2939] = {.lex_state = 96, .external_lex_state = 2}, - [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}, + [2939] = {.lex_state = 15, .external_lex_state = 5}, + [2940] = {.lex_state = 4, .external_lex_state = 2}, + [2941] = {.lex_state = 4, .external_lex_state = 2}, + [2942] = {.lex_state = 96, .external_lex_state = 2}, + [2943] = {.lex_state = 96, .external_lex_state = 2}, [2944] = {.lex_state = 96, .external_lex_state = 2}, - [2945] = {.lex_state = 4, .external_lex_state = 2}, - [2946] = {.lex_state = 96, .external_lex_state = 2}, + [2945] = {.lex_state = 15, .external_lex_state = 5}, + [2946] = {.lex_state = 15, .external_lex_state = 5}, [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}, + [2949] = {.lex_state = 4, .external_lex_state = 2}, + [2950] = {.lex_state = 15, .external_lex_state = 5}, + [2951] = {.lex_state = 15, .external_lex_state = 6}, [2952] = {.lex_state = 96, .external_lex_state = 2}, [2953] = {.lex_state = 96, .external_lex_state = 2}, - [2954] = {.lex_state = 4, .external_lex_state = 2}, - [2955] = {.lex_state = 15, .external_lex_state = 5}, - [2956] = {.lex_state = 96, .external_lex_state = 2}, - [2957] = {.lex_state = 15, .external_lex_state = 5}, - [2958] = {.lex_state = 15, .external_lex_state = 5}, - [2959] = {.lex_state = 15, .external_lex_state = 5}, - [2960] = {.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 = 4, .external_lex_state = 2}, + [2957] = {.lex_state = 96, .external_lex_state = 2}, + [2958] = {.lex_state = 13, .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 = 15, .external_lex_state = 5}, - [2964] = {.lex_state = 15, .external_lex_state = 5}, - [2965] = {.lex_state = 15, .external_lex_state = 5}, + [2962] = {.lex_state = 4, .external_lex_state = 2}, + [2963] = {.lex_state = 96, .external_lex_state = 2}, + [2964] = {.lex_state = 96, .external_lex_state = 2}, + [2965] = {.lex_state = 96, .external_lex_state = 2}, [2966] = {.lex_state = 96, .external_lex_state = 2}, - [2967] = {.lex_state = 15, .external_lex_state = 5}, - [2968] = {.lex_state = 96, .external_lex_state = 2}, - [2969] = {.lex_state = 96, .external_lex_state = 2}, + [2967] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 4, .external_lex_state = 2}, + [2971] = {.lex_state = 15, .external_lex_state = 5}, [2972] = {.lex_state = 15, .external_lex_state = 5}, - [2973] = {.lex_state = 15, .external_lex_state = 5}, - [2974] = {.lex_state = 15, .external_lex_state = 5}, + [2973] = {.lex_state = 96, .external_lex_state = 2}, + [2974] = {.lex_state = 96, .external_lex_state = 2}, [2975] = {.lex_state = 15, .external_lex_state = 5}, - [2976] = {.lex_state = 96, .external_lex_state = 2}, - [2977] = {.lex_state = 96, .external_lex_state = 2}, - [2978] = {.lex_state = 96, .external_lex_state = 2}, - [2979] = {.lex_state = 96, .external_lex_state = 2}, + [2976] = {.lex_state = 15, .external_lex_state = 5}, + [2977] = {.lex_state = 15, .external_lex_state = 5}, + [2978] = {.lex_state = 15, .external_lex_state = 5}, + [2979] = {.lex_state = 15, .external_lex_state = 5}, [2980] = {.lex_state = 96, .external_lex_state = 2}, [2981] = {.lex_state = 96, .external_lex_state = 2}, - [2982] = {.lex_state = 4, .external_lex_state = 2}, + [2982] = {.lex_state = 15, .external_lex_state = 5}, [2983] = {.lex_state = 15, .external_lex_state = 5}, - [2984] = {.lex_state = 96, .external_lex_state = 2}, - [2985] = {.lex_state = 4, .external_lex_state = 2}, + [2984] = {.lex_state = 15, .external_lex_state = 5}, + [2985] = {.lex_state = 15, .external_lex_state = 5}, [2986] = {.lex_state = 96, .external_lex_state = 2}, - [2987] = {.lex_state = 4, .external_lex_state = 2}, - [2988] = {.lex_state = 15, .external_lex_state = 5}, + [2987] = {.lex_state = 96, .external_lex_state = 2}, + [2988] = {.lex_state = 4, .external_lex_state = 2}, [2989] = {.lex_state = 15, .external_lex_state = 5}, [2990] = {.lex_state = 96, .external_lex_state = 2}, [2991] = {.lex_state = 96, .external_lex_state = 2}, - [2992] = {.lex_state = 96, .external_lex_state = 2}, - [2993] = {.lex_state = 96, .external_lex_state = 2}, - [2994] = {.lex_state = 15, .external_lex_state = 5}, - [2995] = {.lex_state = 4, .external_lex_state = 2}, + [2992] = {.lex_state = 15, .external_lex_state = 5}, + [2993] = {.lex_state = 15, .external_lex_state = 5}, + [2994] = {.lex_state = 96, .external_lex_state = 2}, + [2995] = {.lex_state = 96, .external_lex_state = 2}, [2996] = {.lex_state = 15, .external_lex_state = 5}, - [2997] = {.lex_state = 15, .external_lex_state = 6}, - [2998] = {.lex_state = 15, .external_lex_state = 5}, - [2999] = {.lex_state = 15, .external_lex_state = 6}, - [3000] = {.lex_state = 15, .external_lex_state = 5}, - [3001] = {.lex_state = 96, .external_lex_state = 2}, - [3002] = {.lex_state = 4, .external_lex_state = 2}, + [2997] = {.lex_state = 96, .external_lex_state = 2}, + [2998] = {.lex_state = 96, .external_lex_state = 2}, + [2999] = {.lex_state = 15, .external_lex_state = 5}, + [3000] = {.lex_state = 4, .external_lex_state = 2}, + [3001] = {.lex_state = 15, .external_lex_state = 5}, + [3002] = {.lex_state = 96, .external_lex_state = 2}, [3003] = {.lex_state = 96, .external_lex_state = 2}, [3004] = {.lex_state = 96, .external_lex_state = 2}, [3005] = {.lex_state = 15, .external_lex_state = 5}, - [3006] = {.lex_state = 15, .external_lex_state = 5}, - [3007] = {.lex_state = 15, .external_lex_state = 5}, - [3008] = {.lex_state = 15, .external_lex_state = 5}, + [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 = 15, .external_lex_state = 5}, - [3010] = {.lex_state = 14, .external_lex_state = 5}, - [3011] = {.lex_state = 96, .external_lex_state = 2}, - [3012] = {.lex_state = 96, .external_lex_state = 5}, + [3010] = {.lex_state = 96, .external_lex_state = 2}, + [3011] = {.lex_state = 15, .external_lex_state = 5}, + [3012] = {.lex_state = 96, .external_lex_state = 2}, [3013] = {.lex_state = 96, .external_lex_state = 2}, [3014] = {.lex_state = 96, .external_lex_state = 2}, - [3015] = {.lex_state = 14, .external_lex_state = 5}, - [3016] = {.lex_state = 96, .external_lex_state = 2}, - [3017] = {.lex_state = 14, .external_lex_state = 5}, - [3018] = {.lex_state = 14, .external_lex_state = 5}, - [3019] = {.lex_state = 14, .external_lex_state = 5}, - [3020] = {.lex_state = 14, .external_lex_state = 5}, - [3021] = {.lex_state = 96, .external_lex_state = 2}, - [3022] = {.lex_state = 14, .external_lex_state = 5}, - [3023] = {.lex_state = 14, .external_lex_state = 5}, - [3024] = {.lex_state = 14, .external_lex_state = 5}, - [3025] = {.lex_state = 14, .external_lex_state = 5}, - [3026] = {.lex_state = 14, .external_lex_state = 5}, - [3027] = {.lex_state = 14, .external_lex_state = 5}, - [3028] = {.lex_state = 14, .external_lex_state = 5}, - [3029] = {.lex_state = 96, .external_lex_state = 2}, - [3030] = {.lex_state = 96, .external_lex_state = 2}, - [3031] = {.lex_state = 14, .external_lex_state = 5}, - [3032] = {.lex_state = 96, .external_lex_state = 2}, + [3015] = {.lex_state = 96, .external_lex_state = 2}, + [3016] = {.lex_state = 13, .external_lex_state = 5}, + [3017] = {.lex_state = 12, .external_lex_state = 5}, + [3018] = {.lex_state = 12, .external_lex_state = 5}, + [3019] = {.lex_state = 12, .external_lex_state = 5}, + [3020] = {.lex_state = 12, .external_lex_state = 5}, + [3021] = {.lex_state = 12, .external_lex_state = 5}, + [3022] = {.lex_state = 12, .external_lex_state = 5}, + [3023] = {.lex_state = 12, .external_lex_state = 5}, + [3024] = {.lex_state = 96, .external_lex_state = 2}, + [3025] = {.lex_state = 96, .external_lex_state = 2}, + [3026] = {.lex_state = 12, .external_lex_state = 5}, + [3027] = {.lex_state = 12, .external_lex_state = 5}, + [3028] = {.lex_state = 96, .external_lex_state = 2}, + [3029] = {.lex_state = 12, .external_lex_state = 5}, + [3030] = {.lex_state = 12, .external_lex_state = 5}, + [3031] = {.lex_state = 12, .external_lex_state = 5}, + [3032] = {.lex_state = 96, .external_lex_state = 5}, [3033] = {.lex_state = 12, .external_lex_state = 5}, - [3034] = {.lex_state = 14, .external_lex_state = 5}, - [3035] = {.lex_state = 14, .external_lex_state = 5}, - [3036] = {.lex_state = 14, .external_lex_state = 5}, - [3037] = {.lex_state = 14, .external_lex_state = 5}, - [3038] = {.lex_state = 14, .external_lex_state = 5}, - [3039] = {.lex_state = 14, .external_lex_state = 5}, - [3040] = {.lex_state = 14, .external_lex_state = 5}, - [3041] = {.lex_state = 14, .external_lex_state = 5}, - [3042] = {.lex_state = 96, .external_lex_state = 2}, - [3043] = {.lex_state = 14, .external_lex_state = 5}, - [3044] = {.lex_state = 14, .external_lex_state = 5}, - [3045] = {.lex_state = 14, .external_lex_state = 5}, - [3046] = {.lex_state = 14, .external_lex_state = 5}, - [3047] = {.lex_state = 96, .external_lex_state = 2}, - [3048] = {.lex_state = 96, .external_lex_state = 2}, - [3049] = {.lex_state = 96, .external_lex_state = 2}, - [3050] = {.lex_state = 14, .external_lex_state = 5}, - [3051] = {.lex_state = 14, .external_lex_state = 5}, - [3052] = {.lex_state = 15, .external_lex_state = 6}, + [3034] = {.lex_state = 12, .external_lex_state = 5}, + [3035] = {.lex_state = 12, .external_lex_state = 5}, + [3036] = {.lex_state = 96, .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 = 96, .external_lex_state = 2}, + [3041] = {.lex_state = 12, .external_lex_state = 5}, + [3042] = {.lex_state = 12, .external_lex_state = 5}, + [3043] = {.lex_state = 12, .external_lex_state = 5}, + [3044] = {.lex_state = 12, .external_lex_state = 5}, + [3045] = {.lex_state = 12, .external_lex_state = 5}, + [3046] = {.lex_state = 12, .external_lex_state = 5}, + [3047] = {.lex_state = 12, .external_lex_state = 5}, + [3048] = {.lex_state = 12, .external_lex_state = 5}, + [3049] = {.lex_state = 12, .external_lex_state = 5}, + [3050] = {.lex_state = 96, .external_lex_state = 2}, + [3051] = {.lex_state = 12, .external_lex_state = 5}, + [3052] = {.lex_state = 96, .external_lex_state = 2}, [3053] = {.lex_state = 96, .external_lex_state = 2}, - [3054] = {.lex_state = 15, .external_lex_state = 6}, - [3055] = {.lex_state = 15, .external_lex_state = 6}, - [3056] = {.lex_state = 13, .external_lex_state = 5}, - [3057] = {.lex_state = 15, .external_lex_state = 6}, - [3058] = {.lex_state = 15, .external_lex_state = 6}, - [3059] = {.lex_state = 13, .external_lex_state = 5}, - [3060] = {.lex_state = 14, .external_lex_state = 2}, - [3061] = {.lex_state = 15, .external_lex_state = 6}, - [3062] = {.lex_state = 96, .external_lex_state = 2}, - [3063] = {.lex_state = 12, .external_lex_state = 6}, - [3064] = {.lex_state = 14, .external_lex_state = 5}, - [3065] = {.lex_state = 14, .external_lex_state = 5}, - [3066] = {.lex_state = 15, .external_lex_state = 6}, - [3067] = {.lex_state = 14, .external_lex_state = 5}, - [3068] = {.lex_state = 15, .external_lex_state = 6}, - [3069] = {.lex_state = 96, .external_lex_state = 5}, - [3070] = {.lex_state = 15, .external_lex_state = 6}, - [3071] = {.lex_state = 15, .external_lex_state = 6}, - [3072] = {.lex_state = 13, .external_lex_state = 5}, - [3073] = {.lex_state = 14, .external_lex_state = 5}, + [3054] = {.lex_state = 96, .external_lex_state = 2}, + [3055] = {.lex_state = 13, .external_lex_state = 6}, + [3056] = {.lex_state = 14, .external_lex_state = 5}, + [3057] = {.lex_state = 14, .external_lex_state = 5}, + [3058] = {.lex_state = 14, .external_lex_state = 5}, + [3059] = {.lex_state = 12, .external_lex_state = 5}, + [3060] = {.lex_state = 13, .external_lex_state = 5}, + [3061] = {.lex_state = 96, .external_lex_state = 5}, + [3062] = {.lex_state = 96, .external_lex_state = 5}, + [3063] = {.lex_state = 13, .external_lex_state = 5}, + [3064] = {.lex_state = 96, .external_lex_state = 5}, + [3065] = {.lex_state = 96, .external_lex_state = 5}, + [3066] = {.lex_state = 96, .external_lex_state = 5}, + [3067] = {.lex_state = 96, .external_lex_state = 5}, + [3068] = {.lex_state = 12, .external_lex_state = 5}, + [3069] = {.lex_state = 12, .external_lex_state = 5}, + [3070] = {.lex_state = 96, .external_lex_state = 2}, + [3071] = {.lex_state = 14, .external_lex_state = 5}, + [3072] = {.lex_state = 96, .external_lex_state = 2}, + [3073] = {.lex_state = 12, .external_lex_state = 5}, [3074] = {.lex_state = 96, .external_lex_state = 2}, - [3075] = {.lex_state = 15, .external_lex_state = 6}, - [3076] = {.lex_state = 96, .external_lex_state = 2}, - [3077] = {.lex_state = 13, .external_lex_state = 5}, - [3078] = {.lex_state = 13, .external_lex_state = 5}, - [3079] = {.lex_state = 13, .external_lex_state = 5}, - [3080] = {.lex_state = 14, .external_lex_state = 5}, - [3081] = {.lex_state = 14, .external_lex_state = 5}, + [3075] = {.lex_state = 96, .external_lex_state = 2}, + [3076] = {.lex_state = 14, .external_lex_state = 5}, + [3077] = {.lex_state = 12, .external_lex_state = 2}, + [3078] = {.lex_state = 12, .external_lex_state = 5}, + [3079] = {.lex_state = 96, .external_lex_state = 2}, + [3080] = {.lex_state = 12, .external_lex_state = 5}, + [3081] = {.lex_state = 96, .external_lex_state = 5}, [3082] = {.lex_state = 96, .external_lex_state = 2}, - [3083] = {.lex_state = 96, .external_lex_state = 5}, - [3084] = {.lex_state = 14, .external_lex_state = 5}, - [3085] = {.lex_state = 15, .external_lex_state = 6}, - [3086] = {.lex_state = 15, .external_lex_state = 6}, - [3087] = {.lex_state = 13, .external_lex_state = 5}, - [3088] = {.lex_state = 12, .external_lex_state = 5}, - [3089] = {.lex_state = 96, .external_lex_state = 5}, + [3083] = {.lex_state = 96, .external_lex_state = 2}, + [3084] = {.lex_state = 96, .external_lex_state = 5}, + [3085] = {.lex_state = 14, .external_lex_state = 5}, + [3086] = {.lex_state = 96, .external_lex_state = 2}, + [3087] = {.lex_state = 96, .external_lex_state = 2}, + [3088] = {.lex_state = 96, .external_lex_state = 5}, + [3089] = {.lex_state = 14, .external_lex_state = 5}, [3090] = {.lex_state = 96, .external_lex_state = 5}, - [3091] = {.lex_state = 96, .external_lex_state = 2}, + [3091] = {.lex_state = 14, .external_lex_state = 5}, [3092] = {.lex_state = 12, .external_lex_state = 5}, - [3093] = {.lex_state = 96, .external_lex_state = 5}, - [3094] = {.lex_state = 96, .external_lex_state = 2}, - [3095] = {.lex_state = 96, .external_lex_state = 5}, - [3096] = {.lex_state = 96, .external_lex_state = 5}, + [3093] = {.lex_state = 12, .external_lex_state = 5}, + [3094] = {.lex_state = 13, .external_lex_state = 5}, + [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 = 96, .external_lex_state = 2}, - [3099] = {.lex_state = 96, .external_lex_state = 2}, - [3100] = {.lex_state = 14, .external_lex_state = 5}, - [3101] = {.lex_state = 14, .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 = 15, .external_lex_state = 6}, [3102] = {.lex_state = 15, .external_lex_state = 6}, [3103] = {.lex_state = 15, .external_lex_state = 6}, - [3104] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 12, .external_lex_state = 5}, - [3108] = {.lex_state = 14, .external_lex_state = 5}, - [3109] = {.lex_state = 96, .external_lex_state = 5}, + [3106] = {.lex_state = 12, .external_lex_state = 5}, + [3107] = {.lex_state = 15, .external_lex_state = 6}, + [3108] = {.lex_state = 15, .external_lex_state = 6}, + [3109] = {.lex_state = 12, .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 = 96, .external_lex_state = 2}, + [3115] = {.lex_state = 15, .external_lex_state = 6}, [3116] = {.lex_state = 15, .external_lex_state = 6}, [3117] = {.lex_state = 15, .external_lex_state = 6}, [3118] = {.lex_state = 15, .external_lex_state = 6}, [3119] = {.lex_state = 15, .external_lex_state = 6}, - [3120] = {.lex_state = 13, .external_lex_state = 5}, + [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}, @@ -16217,93 +16241,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3125] = {.lex_state = 15, .external_lex_state = 6}, [3126] = {.lex_state = 15, .external_lex_state = 6}, [3127] = {.lex_state = 15, .external_lex_state = 6}, - [3128] = {.lex_state = 96, .external_lex_state = 5}, - [3129] = {.lex_state = 14, .external_lex_state = 5}, - [3130] = {.lex_state = 14, .external_lex_state = 5}, - [3131] = {.lex_state = 14, .external_lex_state = 5}, - [3132] = {.lex_state = 14, .external_lex_state = 5}, - [3133] = {.lex_state = 96, .external_lex_state = 5}, - [3134] = {.lex_state = 96, .external_lex_state = 6}, - [3135] = {.lex_state = 14, .external_lex_state = 5}, - [3136] = {.lex_state = 14, .external_lex_state = 5}, - [3137] = {.lex_state = 14, .external_lex_state = 5}, - [3138] = {.lex_state = 14, .external_lex_state = 5}, - [3139] = {.lex_state = 14, .external_lex_state = 5}, - [3140] = {.lex_state = 14, .external_lex_state = 5}, - [3141] = {.lex_state = 14, .external_lex_state = 5}, - [3142] = {.lex_state = 14, .external_lex_state = 5}, - [3143] = {.lex_state = 14, .external_lex_state = 5}, - [3144] = {.lex_state = 14, .external_lex_state = 5}, - [3145] = {.lex_state = 14, .external_lex_state = 5}, - [3146] = {.lex_state = 96, .external_lex_state = 5}, - [3147] = {.lex_state = 12, .external_lex_state = 6}, - [3148] = {.lex_state = 14, .external_lex_state = 2}, - [3149] = {.lex_state = 14, .external_lex_state = 5}, - [3150] = {.lex_state = 14, .external_lex_state = 5}, - [3151] = {.lex_state = 14, .external_lex_state = 2}, - [3152] = {.lex_state = 14, .external_lex_state = 5}, - [3153] = {.lex_state = 14, .external_lex_state = 5}, + [3128] = {.lex_state = 15, .external_lex_state = 6}, + [3129] = {.lex_state = 15, .external_lex_state = 6}, + [3130] = {.lex_state = 15, .external_lex_state = 6}, + [3131] = {.lex_state = 12, .external_lex_state = 5}, + [3132] = {.lex_state = 96, .external_lex_state = 5}, + [3133] = {.lex_state = 12, .external_lex_state = 5}, + [3134] = {.lex_state = 12, .external_lex_state = 2}, + [3135] = {.lex_state = 12, .external_lex_state = 5}, + [3136] = {.lex_state = 12, .external_lex_state = 5}, + [3137] = {.lex_state = 96, .external_lex_state = 5}, + [3138] = {.lex_state = 12, .external_lex_state = 5}, + [3139] = {.lex_state = 12, .external_lex_state = 5}, + [3140] = {.lex_state = 12, .external_lex_state = 5}, + [3141] = {.lex_state = 12, .external_lex_state = 5}, + [3142] = {.lex_state = 12, .external_lex_state = 5}, + [3143] = {.lex_state = 96, .external_lex_state = 2}, + [3144] = {.lex_state = 96, .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 = 96, .external_lex_state = 6}, + [3149] = {.lex_state = 12, .external_lex_state = 5}, + [3150] = {.lex_state = 12, .external_lex_state = 5}, + [3151] = {.lex_state = 13, .external_lex_state = 6}, + [3152] = {.lex_state = 96, .external_lex_state = 5}, + [3153] = {.lex_state = 12, .external_lex_state = 5}, [3154] = {.lex_state = 96, .external_lex_state = 5}, - [3155] = {.lex_state = 96, .external_lex_state = 2}, - [3156] = {.lex_state = 15, .external_lex_state = 2}, - [3157] = {.lex_state = 14, .external_lex_state = 5}, - [3158] = {.lex_state = 14, .external_lex_state = 5}, - [3159] = {.lex_state = 14, .external_lex_state = 5}, - [3160] = {.lex_state = 96, .external_lex_state = 5}, - [3161] = {.lex_state = 14, .external_lex_state = 5}, - [3162] = {.lex_state = 14, .external_lex_state = 5}, - [3163] = {.lex_state = 14, .external_lex_state = 5}, - [3164] = {.lex_state = 14, .external_lex_state = 5}, - [3165] = {.lex_state = 14, .external_lex_state = 5}, - [3166] = {.lex_state = 14, .external_lex_state = 5}, - [3167] = {.lex_state = 14, .external_lex_state = 5}, - [3168] = {.lex_state = 96, .external_lex_state = 5}, - [3169] = {.lex_state = 14, .external_lex_state = 5}, - [3170] = {.lex_state = 14, .external_lex_state = 5}, - [3171] = {.lex_state = 14, .external_lex_state = 5}, - [3172] = {.lex_state = 14, .external_lex_state = 2}, - [3173] = {.lex_state = 96, .external_lex_state = 5}, - [3174] = {.lex_state = 96, .external_lex_state = 5}, - [3175] = {.lex_state = 14, .external_lex_state = 5}, - [3176] = {.lex_state = 14, .external_lex_state = 5}, - [3177] = {.lex_state = 96, .external_lex_state = 5}, - [3178] = {.lex_state = 14, .external_lex_state = 5}, - [3179] = {.lex_state = 14, .external_lex_state = 5}, - [3180] = {.lex_state = 14, .external_lex_state = 5}, - [3181] = {.lex_state = 14, .external_lex_state = 5}, - [3182] = {.lex_state = 15, .external_lex_state = 2}, - [3183] = {.lex_state = 15, .external_lex_state = 2}, - [3184] = {.lex_state = 14, .external_lex_state = 5}, - [3185] = {.lex_state = 96, .external_lex_state = 5}, - [3186] = {.lex_state = 96, .external_lex_state = 5}, + [3155] = {.lex_state = 12, .external_lex_state = 5}, + [3156] = {.lex_state = 12, .external_lex_state = 5}, + [3157] = {.lex_state = 12, .external_lex_state = 5}, + [3158] = {.lex_state = 15, .external_lex_state = 2}, + [3159] = {.lex_state = 12, .external_lex_state = 5}, + [3160] = {.lex_state = 15, .external_lex_state = 2}, + [3161] = {.lex_state = 12, .external_lex_state = 5}, + [3162] = {.lex_state = 12, .external_lex_state = 5}, + [3163] = {.lex_state = 96, .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 = 12, .external_lex_state = 5}, + [3169] = {.lex_state = 12, .external_lex_state = 5}, + [3170] = {.lex_state = 12, .external_lex_state = 5}, + [3171] = {.lex_state = 12, .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 = 2}, + [3181] = {.lex_state = 12, .external_lex_state = 5}, + [3182] = {.lex_state = 96, .external_lex_state = 5}, + [3183] = {.lex_state = 96, .external_lex_state = 5}, + [3184] = {.lex_state = 12, .external_lex_state = 2}, + [3185] = {.lex_state = 12, .external_lex_state = 5}, + [3186] = {.lex_state = 15, .external_lex_state = 2}, [3187] = {.lex_state = 96, .external_lex_state = 5}, [3188] = {.lex_state = 96, .external_lex_state = 5}, [3189] = {.lex_state = 96, .external_lex_state = 5}, - [3190] = {.lex_state = 96, .external_lex_state = 5}, - [3191] = {.lex_state = 96, .external_lex_state = 5}, + [3190] = {.lex_state = 14, .external_lex_state = 6}, + [3191] = {.lex_state = 14, .external_lex_state = 6}, [3192] = {.lex_state = 96, .external_lex_state = 5}, - [3193] = {.lex_state = 96, .external_lex_state = 5}, + [3193] = {.lex_state = 14, .external_lex_state = 6}, [3194] = {.lex_state = 96, .external_lex_state = 5}, [3195] = {.lex_state = 96, .external_lex_state = 5}, - [3196] = {.lex_state = 96, .external_lex_state = 5}, - [3197] = {.lex_state = 96, .external_lex_state = 5}, - [3198] = {.lex_state = 96, .external_lex_state = 5}, + [3196] = {.lex_state = 14, .external_lex_state = 6}, + [3197] = {.lex_state = 14, .external_lex_state = 6}, + [3198] = {.lex_state = 14, .external_lex_state = 6}, [3199] = {.lex_state = 96, .external_lex_state = 5}, - [3200] = {.lex_state = 96, .external_lex_state = 5}, - [3201] = {.lex_state = 96, .external_lex_state = 5}, - [3202] = {.lex_state = 96, .external_lex_state = 5}, - [3203] = {.lex_state = 96, .external_lex_state = 5}, - [3204] = {.lex_state = 96, .external_lex_state = 5}, - [3205] = {.lex_state = 96, .external_lex_state = 5}, - [3206] = {.lex_state = 96, .external_lex_state = 5}, - [3207] = {.lex_state = 96, .external_lex_state = 5}, + [3200] = {.lex_state = 13, .external_lex_state = 6}, + [3201] = {.lex_state = 96, .external_lex_state = 6}, + [3202] = {.lex_state = 96, .external_lex_state = 6}, + [3203] = {.lex_state = 13, .external_lex_state = 6}, + [3204] = {.lex_state = 96, .external_lex_state = 6}, + [3205] = {.lex_state = 96, .external_lex_state = 6}, + [3206] = {.lex_state = 96, .external_lex_state = 6}, + [3207] = {.lex_state = 96, .external_lex_state = 6}, [3208] = {.lex_state = 96, .external_lex_state = 5}, - [3209] = {.lex_state = 13, .external_lex_state = 6}, + [3209] = {.lex_state = 96, .external_lex_state = 5}, [3210] = {.lex_state = 96, .external_lex_state = 5}, - [3211] = {.lex_state = 96, .external_lex_state = 5}, + [3211] = {.lex_state = 14, .external_lex_state = 6}, [3212] = {.lex_state = 96, .external_lex_state = 5}, [3213] = {.lex_state = 96, .external_lex_state = 5}, - [3214] = {.lex_state = 96, .external_lex_state = 5}, + [3214] = {.lex_state = 12, .external_lex_state = 5}, [3215] = {.lex_state = 96, .external_lex_state = 5}, [3216] = {.lex_state = 96, .external_lex_state = 5}, [3217] = {.lex_state = 96, .external_lex_state = 5}, @@ -16311,335 +16335,335 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3219] = {.lex_state = 96, .external_lex_state = 5}, [3220] = {.lex_state = 96, .external_lex_state = 5}, [3221] = {.lex_state = 96, .external_lex_state = 5}, - [3222] = {.lex_state = 96, .external_lex_state = 5}, + [3222] = {.lex_state = 13, .external_lex_state = 6}, [3223] = {.lex_state = 96, .external_lex_state = 5}, - [3224] = {.lex_state = 14, .external_lex_state = 5}, - [3225] = {.lex_state = 14, .external_lex_state = 5}, - [3226] = {.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 = 14, .external_lex_state = 6}, [3227] = {.lex_state = 96, .external_lex_state = 5}, [3228] = {.lex_state = 96, .external_lex_state = 5}, - [3229] = {.lex_state = 96, .external_lex_state = 2}, - [3230] = {.lex_state = 12, .external_lex_state = 6}, - [3231] = {.lex_state = 14, .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 = 14, .external_lex_state = 2}, + [3233] = {.lex_state = 96, .external_lex_state = 5}, [3234] = {.lex_state = 96, .external_lex_state = 5}, - [3235] = {.lex_state = 96, .external_lex_state = 5}, + [3235] = {.lex_state = 12, .external_lex_state = 5}, [3236] = {.lex_state = 96, .external_lex_state = 5}, - [3237] = {.lex_state = 13, .external_lex_state = 6}, - [3238] = {.lex_state = 13, .external_lex_state = 6}, - [3239] = {.lex_state = 13, .external_lex_state = 6}, - [3240] = {.lex_state = 13, .external_lex_state = 6}, - [3241] = {.lex_state = 13, .external_lex_state = 6}, - [3242] = {.lex_state = 13, .external_lex_state = 6}, - [3243] = {.lex_state = 12, .external_lex_state = 6}, - [3244] = {.lex_state = 96, .external_lex_state = 6}, - [3245] = {.lex_state = 96, .external_lex_state = 6}, - [3246] = {.lex_state = 12, .external_lex_state = 6}, - [3247] = {.lex_state = 96, .external_lex_state = 6}, - [3248] = {.lex_state = 96, .external_lex_state = 6}, - [3249] = {.lex_state = 96, .external_lex_state = 6}, - [3250] = {.lex_state = 96, .external_lex_state = 6}, - [3251] = {.lex_state = 13, .external_lex_state = 6}, + [3237] = {.lex_state = 96, .external_lex_state = 5}, + [3238] = {.lex_state = 96, .external_lex_state = 5}, + [3239] = {.lex_state = 96, .external_lex_state = 5}, + [3240] = {.lex_state = 96, .external_lex_state = 5}, + [3241] = {.lex_state = 12, .external_lex_state = 5}, + [3242] = {.lex_state = 96, .external_lex_state = 5}, + [3243] = {.lex_state = 12, .external_lex_state = 2}, + [3244] = {.lex_state = 96, .external_lex_state = 5}, + [3245] = {.lex_state = 96, .external_lex_state = 5}, + [3246] = {.lex_state = 96, .external_lex_state = 5}, + [3247] = {.lex_state = 96, .external_lex_state = 5}, + [3248] = {.lex_state = 96, .external_lex_state = 5}, + [3249] = {.lex_state = 96, .external_lex_state = 5}, + [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}, + [3253] = {.lex_state = 96, .external_lex_state = 2}, [3254] = {.lex_state = 96, .external_lex_state = 5}, [3255] = {.lex_state = 96, .external_lex_state = 5}, - [3256] = {.lex_state = 12, .external_lex_state = 2}, - [3257] = {.lex_state = 96, .external_lex_state = 2}, - [3258] = {.lex_state = 12, .external_lex_state = 2}, - [3259] = {.lex_state = 12, .external_lex_state = 2}, - [3260] = {.lex_state = 12, .external_lex_state = 2}, - [3261] = {.lex_state = 14, .external_lex_state = 2}, - [3262] = {.lex_state = 12, .external_lex_state = 2}, - [3263] = {.lex_state = 96, .external_lex_state = 2}, - [3264] = {.lex_state = 12, .external_lex_state = 2}, - [3265] = {.lex_state = 12, .external_lex_state = 2}, - [3266] = {.lex_state = 96, .external_lex_state = 2}, - [3267] = {.lex_state = 96, .external_lex_state = 6}, - [3268] = {.lex_state = 96, .external_lex_state = 5}, - [3269] = {.lex_state = 14, .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 = 2}, + [3259] = {.lex_state = 13, .external_lex_state = 2}, + [3260] = {.lex_state = 13, .external_lex_state = 2}, + [3261] = {.lex_state = 13, .external_lex_state = 2}, + [3262] = {.lex_state = 13, .external_lex_state = 2}, + [3263] = {.lex_state = 96, .external_lex_state = 5}, + [3264] = {.lex_state = 96, .external_lex_state = 5}, + [3265] = {.lex_state = 96, .external_lex_state = 2}, + [3266] = {.lex_state = 96, .external_lex_state = 5}, + [3267] = {.lex_state = 12, .external_lex_state = 2}, + [3268] = {.lex_state = 13, .external_lex_state = 2}, + [3269] = {.lex_state = 96, .external_lex_state = 2}, [3270] = {.lex_state = 96, .external_lex_state = 6}, - [3271] = {.lex_state = 96, .external_lex_state = 5}, - [3272] = {.lex_state = 96, .external_lex_state = 2}, - [3273] = {.lex_state = 96, .external_lex_state = 6}, - [3274] = {.lex_state = 12, .external_lex_state = 2}, - [3275] = {.lex_state = 96, .external_lex_state = 5}, - [3276] = {.lex_state = 96, .external_lex_state = 6}, - [3277] = {.lex_state = 12, .external_lex_state = 2}, - [3278] = {.lex_state = 96, .external_lex_state = 5}, - [3279] = {.lex_state = 96, .external_lex_state = 6}, - [3280] = {.lex_state = 96, .external_lex_state = 2}, - [3281] = {.lex_state = 96, .external_lex_state = 2}, - [3282] = {.lex_state = 12, .external_lex_state = 2}, - [3283] = {.lex_state = 96, .external_lex_state = 5}, - [3284] = {.lex_state = 96, .external_lex_state = 6}, - [3285] = {.lex_state = 96, .external_lex_state = 6}, + [3271] = {.lex_state = 12, .external_lex_state = 5}, + [3272] = {.lex_state = 96, .external_lex_state = 6}, + [3273] = {.lex_state = 13, .external_lex_state = 2}, + [3274] = {.lex_state = 96, .external_lex_state = 2}, + [3275] = {.lex_state = 96, .external_lex_state = 6}, + [3276] = {.lex_state = 96, .external_lex_state = 5}, + [3277] = {.lex_state = 13, .external_lex_state = 2}, + [3278] = {.lex_state = 96, .external_lex_state = 6}, + [3279] = {.lex_state = 13, .external_lex_state = 2}, + [3280] = {.lex_state = 96, .external_lex_state = 6}, + [3281] = {.lex_state = 96, .external_lex_state = 6}, + [3282] = {.lex_state = 96, .external_lex_state = 6}, + [3283] = {.lex_state = 13, .external_lex_state = 2}, + [3284] = {.lex_state = 96, .external_lex_state = 2}, + [3285] = {.lex_state = 13, .external_lex_state = 2}, [3286] = {.lex_state = 96, .external_lex_state = 6}, - [3287] = {.lex_state = 12, .external_lex_state = 2}, - [3288] = {.lex_state = 14, .external_lex_state = 2}, - [3289] = {.lex_state = 12, .external_lex_state = 2}, - [3290] = {.lex_state = 12, .external_lex_state = 2}, - [3291] = {.lex_state = 96, .external_lex_state = 5}, - [3292] = {.lex_state = 96, .external_lex_state = 2}, - [3293] = {.lex_state = 12, .external_lex_state = 2}, - [3294] = {.lex_state = 96, .external_lex_state = 6}, - [3295] = {.lex_state = 96, .external_lex_state = 6}, - [3296] = {.lex_state = 96, .external_lex_state = 5}, - [3297] = {.lex_state = 15, .external_lex_state = 2}, - [3298] = {.lex_state = 12, .external_lex_state = 2}, - [3299] = {.lex_state = 96, .external_lex_state = 6}, + [3287] = {.lex_state = 13, .external_lex_state = 2}, + [3288] = {.lex_state = 96, .external_lex_state = 2}, + [3289] = {.lex_state = 96, .external_lex_state = 5}, + [3290] = {.lex_state = 96, .external_lex_state = 5}, + [3291] = {.lex_state = 15, .external_lex_state = 2}, + [3292] = {.lex_state = 13, .external_lex_state = 2}, + [3293] = {.lex_state = 96, .external_lex_state = 2}, + [3294] = {.lex_state = 13, .external_lex_state = 2}, + [3295] = {.lex_state = 13, .external_lex_state = 2}, + [3296] = {.lex_state = 13, .external_lex_state = 2}, + [3297] = {.lex_state = 13, .external_lex_state = 2}, + [3298] = {.lex_state = 96, .external_lex_state = 6}, + [3299] = {.lex_state = 15, .external_lex_state = 2}, [3300] = {.lex_state = 96, .external_lex_state = 5}, - [3301] = {.lex_state = 15, .external_lex_state = 2}, - [3302] = {.lex_state = 12, .external_lex_state = 2}, - [3303] = {.lex_state = 96, .external_lex_state = 5}, - [3304] = {.lex_state = 96, .external_lex_state = 6}, - [3305] = {.lex_state = 14, .external_lex_state = 2}, - [3306] = {.lex_state = 96, .external_lex_state = 5}, - [3307] = {.lex_state = 96, .external_lex_state = 5}, - [3308] = {.lex_state = 96, .external_lex_state = 2}, - [3309] = {.lex_state = 96, .external_lex_state = 6}, - [3310] = {.lex_state = 12, .external_lex_state = 2}, - [3311] = {.lex_state = 12, .external_lex_state = 2}, + [3301] = {.lex_state = 96, .external_lex_state = 5}, + [3302] = {.lex_state = 96, .external_lex_state = 5}, + [3303] = {.lex_state = 15, .external_lex_state = 2}, + [3304] = {.lex_state = 15, .external_lex_state = 2}, + [3305] = {.lex_state = 96, .external_lex_state = 2}, + [3306] = {.lex_state = 12, .external_lex_state = 2}, + [3307] = {.lex_state = 15, .external_lex_state = 2}, + [3308] = {.lex_state = 13, .external_lex_state = 2}, + [3309] = {.lex_state = 13, .external_lex_state = 2}, + [3310] = {.lex_state = 96, .external_lex_state = 2}, + [3311] = {.lex_state = 15, .external_lex_state = 2}, [3312] = {.lex_state = 96, .external_lex_state = 5}, - [3313] = {.lex_state = 12, .external_lex_state = 2}, - [3314] = {.lex_state = 96, .external_lex_state = 5}, - [3315] = {.lex_state = 15, .external_lex_state = 2}, - [3316] = {.lex_state = 96, .external_lex_state = 5}, + [3313] = {.lex_state = 96, .external_lex_state = 2}, + [3314] = {.lex_state = 15, .external_lex_state = 2}, + [3315] = {.lex_state = 96, .external_lex_state = 6}, + [3316] = {.lex_state = 15, .external_lex_state = 2}, [3317] = {.lex_state = 96, .external_lex_state = 6}, - [3318] = {.lex_state = 96, .external_lex_state = 5}, - [3319] = {.lex_state = 96, .external_lex_state = 5}, + [3318] = {.lex_state = 15, .external_lex_state = 2}, + [3319] = {.lex_state = 15, .external_lex_state = 2}, [3320] = {.lex_state = 96, .external_lex_state = 5}, - [3321] = {.lex_state = 96, .external_lex_state = 5}, - [3322] = {.lex_state = 96, .external_lex_state = 5}, + [3321] = {.lex_state = 96, .external_lex_state = 2}, + [3322] = {.lex_state = 12, .external_lex_state = 2}, [3323] = {.lex_state = 96, .external_lex_state = 5}, - [3324] = {.lex_state = 96, .external_lex_state = 5}, + [3324] = {.lex_state = 13, .external_lex_state = 2}, [3325] = {.lex_state = 96, .external_lex_state = 5}, [3326] = {.lex_state = 96, .external_lex_state = 5}, - [3327] = {.lex_state = 96, .external_lex_state = 5}, + [3327] = {.lex_state = 12, .external_lex_state = 2}, [3328] = {.lex_state = 96, .external_lex_state = 5}, [3329] = {.lex_state = 96, .external_lex_state = 2}, [3330] = {.lex_state = 96, .external_lex_state = 5}, - [3331] = {.lex_state = 96, .external_lex_state = 6}, - [3332] = {.lex_state = 96, .external_lex_state = 2}, + [3331] = {.lex_state = 96, .external_lex_state = 5}, + [3332] = {.lex_state = 15, .external_lex_state = 2}, [3333] = {.lex_state = 96, .external_lex_state = 5}, [3334] = {.lex_state = 96, .external_lex_state = 5}, - [3335] = {.lex_state = 96, .external_lex_state = 6}, - [3336] = {.lex_state = 15, .external_lex_state = 2}, - [3337] = {.lex_state = 12, .external_lex_state = 2}, - [3338] = {.lex_state = 96, .external_lex_state = 6}, - [3339] = {.lex_state = 12, .external_lex_state = 2}, - [3340] = {.lex_state = 96, .external_lex_state = 5}, - [3341] = {.lex_state = 96, .external_lex_state = 6}, - [3342] = {.lex_state = 15, .external_lex_state = 2}, + [3335] = {.lex_state = 96, .external_lex_state = 5}, + [3336] = {.lex_state = 96, .external_lex_state = 6}, + [3337] = {.lex_state = 13, .external_lex_state = 2}, + [3338] = {.lex_state = 96, .external_lex_state = 5}, + [3339] = {.lex_state = 96, .external_lex_state = 5}, + [3340] = {.lex_state = 13, .external_lex_state = 2}, + [3341] = {.lex_state = 96, .external_lex_state = 2}, + [3342] = {.lex_state = 96, .external_lex_state = 6}, [3343] = {.lex_state = 96, .external_lex_state = 5}, - [3344] = {.lex_state = 96, .external_lex_state = 2}, + [3344] = {.lex_state = 96, .external_lex_state = 6}, [3345] = {.lex_state = 96, .external_lex_state = 6}, - [3346] = {.lex_state = 12, .external_lex_state = 2}, - [3347] = {.lex_state = 96, .external_lex_state = 5}, - [3348] = {.lex_state = 96, .external_lex_state = 5}, - [3349] = {.lex_state = 15, .external_lex_state = 2}, - [3350] = {.lex_state = 15, .external_lex_state = 2}, - [3351] = {.lex_state = 96, .external_lex_state = 6}, + [3346] = {.lex_state = 96, .external_lex_state = 6}, + [3347] = {.lex_state = 96, .external_lex_state = 6}, + [3348] = {.lex_state = 96, .external_lex_state = 6}, + [3349] = {.lex_state = 96, .external_lex_state = 6}, + [3350] = {.lex_state = 12, .external_lex_state = 2}, + [3351] = {.lex_state = 96, .external_lex_state = 5}, [3352] = {.lex_state = 96, .external_lex_state = 5}, - [3353] = {.lex_state = 14, .external_lex_state = 2}, - [3354] = {.lex_state = 96, .external_lex_state = 5}, + [3353] = {.lex_state = 13, .external_lex_state = 2}, + [3354] = {.lex_state = 96, .external_lex_state = 6}, [3355] = {.lex_state = 12, .external_lex_state = 2}, [3356] = {.lex_state = 96, .external_lex_state = 2}, [3357] = {.lex_state = 96, .external_lex_state = 5}, - [3358] = {.lex_state = 15, .external_lex_state = 2}, - [3359] = {.lex_state = 96, .external_lex_state = 2}, - [3360] = {.lex_state = 96, .external_lex_state = 2}, - [3361] = {.lex_state = 14, .external_lex_state = 2}, + [3358] = {.lex_state = 96, .external_lex_state = 6}, + [3359] = {.lex_state = 96, .external_lex_state = 6}, + [3360] = {.lex_state = 96, .external_lex_state = 6}, + [3361] = {.lex_state = 96, .external_lex_state = 6}, [3362] = {.lex_state = 96, .external_lex_state = 6}, - [3363] = {.lex_state = 15, .external_lex_state = 2}, - [3364] = {.lex_state = 96, .external_lex_state = 2}, + [3363] = {.lex_state = 96, .external_lex_state = 6}, + [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 = 5}, - [3369] = {.lex_state = 12, .external_lex_state = 2}, - [3370] = {.lex_state = 15, .external_lex_state = 2}, - [3371] = {.lex_state = 96, .external_lex_state = 5}, - [3372] = {.lex_state = 96, .external_lex_state = 6}, - [3373] = {.lex_state = 96, .external_lex_state = 6}, - [3374] = {.lex_state = 96, .external_lex_state = 6}, - [3375] = {.lex_state = 96, .external_lex_state = 6}, - [3376] = {.lex_state = 12, .external_lex_state = 2}, + [3368] = {.lex_state = 96, .external_lex_state = 6}, + [3369] = {.lex_state = 15, .external_lex_state = 2}, + [3370] = {.lex_state = 96, .external_lex_state = 6}, + [3371] = {.lex_state = 11, .external_lex_state = 2}, + [3372] = {.lex_state = 13, .external_lex_state = 2}, + [3373] = {.lex_state = 96, .external_lex_state = 5}, + [3374] = {.lex_state = 96, .external_lex_state = 5}, + [3375] = {.lex_state = 13, .external_lex_state = 2}, + [3376] = {.lex_state = 13, .external_lex_state = 2}, [3377] = {.lex_state = 96, .external_lex_state = 6}, - [3378] = {.lex_state = 14, .external_lex_state = 2}, - [3379] = {.lex_state = 96, .external_lex_state = 5}, - [3380] = {.lex_state = 96, .external_lex_state = 5}, + [3378] = {.lex_state = 96, .external_lex_state = 5}, + [3379] = {.lex_state = 12, .external_lex_state = 2}, + [3380] = {.lex_state = 96, .external_lex_state = 6}, [3381] = {.lex_state = 96, .external_lex_state = 5}, - [3382] = {.lex_state = 96, .external_lex_state = 5}, - [3383] = {.lex_state = 15, .external_lex_state = 2}, + [3382] = {.lex_state = 96, .external_lex_state = 6}, + [3383] = {.lex_state = 96, .external_lex_state = 5}, [3384] = {.lex_state = 96, .external_lex_state = 5}, - [3385] = {.lex_state = 96, .external_lex_state = 6}, - [3386] = {.lex_state = 12, .external_lex_state = 2}, - [3387] = {.lex_state = 15, .external_lex_state = 2}, + [3385] = {.lex_state = 96, .external_lex_state = 5}, + [3386] = {.lex_state = 96, .external_lex_state = 5}, + [3387] = {.lex_state = 96, .external_lex_state = 6}, [3388] = {.lex_state = 96, .external_lex_state = 6}, - [3389] = {.lex_state = 15, .external_lex_state = 2}, + [3389] = {.lex_state = 96, .external_lex_state = 5}, [3390] = {.lex_state = 96, .external_lex_state = 6}, - [3391] = {.lex_state = 96, .external_lex_state = 6}, + [3391] = {.lex_state = 12, .external_lex_state = 2}, [3392] = {.lex_state = 96, .external_lex_state = 5}, - [3393] = {.lex_state = 96, .external_lex_state = 6}, + [3393] = {.lex_state = 96, .external_lex_state = 5}, [3394] = {.lex_state = 96, .external_lex_state = 6}, [3395] = {.lex_state = 96, .external_lex_state = 6}, - [3396] = {.lex_state = 96, .external_lex_state = 6}, - [3397] = {.lex_state = 96, .external_lex_state = 6}, - [3398] = {.lex_state = 96, .external_lex_state = 6}, - [3399] = {.lex_state = 96, .external_lex_state = 6}, - [3400] = {.lex_state = 96, .external_lex_state = 6}, + [3396] = {.lex_state = 96, .external_lex_state = 5}, + [3397] = {.lex_state = 96, .external_lex_state = 5}, + [3398] = {.lex_state = 13, .external_lex_state = 2}, + [3399] = {.lex_state = 11, .external_lex_state = 2}, + [3400] = {.lex_state = 96, .external_lex_state = 5}, [3401] = {.lex_state = 96, .external_lex_state = 6}, [3402] = {.lex_state = 96, .external_lex_state = 6}, - [3403] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 15, .external_lex_state = 2}, - [3407] = {.lex_state = 11, .external_lex_state = 2}, + [3406] = {.lex_state = 13, .external_lex_state = 2}, + [3407] = {.lex_state = 96, .external_lex_state = 5}, [3408] = {.lex_state = 12, .external_lex_state = 2}, [3409] = {.lex_state = 96, .external_lex_state = 5}, - [3410] = {.lex_state = 12, .external_lex_state = 2}, - [3411] = {.lex_state = 96, .external_lex_state = 6}, - [3412] = {.lex_state = 15, .external_lex_state = 2}, - [3413] = {.lex_state = 96, .external_lex_state = 6}, - [3414] = {.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 = 96, .external_lex_state = 5}, + [3413] = {.lex_state = 15, .external_lex_state = 2}, + [3414] = {.lex_state = 96, .external_lex_state = 2}, [3415] = {.lex_state = 15, .external_lex_state = 2}, - [3416] = {.lex_state = 96, .external_lex_state = 6}, - [3417] = {.lex_state = 96, .external_lex_state = 5}, + [3416] = {.lex_state = 13, .external_lex_state = 2}, + [3417] = {.lex_state = 96, .external_lex_state = 6}, [3418] = {.lex_state = 96, .external_lex_state = 6}, [3419] = {.lex_state = 96, .external_lex_state = 6}, - [3420] = {.lex_state = 96, .external_lex_state = 6}, - [3421] = {.lex_state = 11, .external_lex_state = 2}, - [3422] = {.lex_state = 15, .external_lex_state = 2}, + [3420] = {.lex_state = 11, .external_lex_state = 2}, + [3421] = {.lex_state = 96, .external_lex_state = 6}, + [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 = 14, .external_lex_state = 2}, - [3427] = {.lex_state = 12, .external_lex_state = 2}, + [3425] = {.lex_state = 15, .external_lex_state = 2}, + [3426] = {.lex_state = 13, .external_lex_state = 2}, + [3427] = {.lex_state = 96, .external_lex_state = 6}, [3428] = {.lex_state = 96, .external_lex_state = 6}, - [3429] = {.lex_state = 11, .external_lex_state = 2}, + [3429] = {.lex_state = 96, .external_lex_state = 6}, [3430] = {.lex_state = 96, .external_lex_state = 6}, [3431] = {.lex_state = 96, .external_lex_state = 6}, - [3432] = {.lex_state = 96, .external_lex_state = 6}, - [3433] = {.lex_state = 14, .external_lex_state = 2}, - [3434] = {.lex_state = 96, .external_lex_state = 2}, - [3435] = {.lex_state = 96, .external_lex_state = 5}, + [3432] = {.lex_state = 15, .external_lex_state = 2}, + [3433] = {.lex_state = 96, .external_lex_state = 5}, + [3434] = {.lex_state = 13, .external_lex_state = 2}, + [3435] = {.lex_state = 96, .external_lex_state = 2}, [3436] = {.lex_state = 96, .external_lex_state = 6}, - [3437] = {.lex_state = 96, .external_lex_state = 5}, - [3438] = {.lex_state = 14, .external_lex_state = 2}, - [3439] = {.lex_state = 96, .external_lex_state = 5}, - [3440] = {.lex_state = 96, .external_lex_state = 5}, + [3437] = {.lex_state = 96, .external_lex_state = 6}, + [3438] = {.lex_state = 96, .external_lex_state = 5}, + [3439] = {.lex_state = 96, .external_lex_state = 6}, + [3440] = {.lex_state = 12, .external_lex_state = 2}, [3441] = {.lex_state = 96, .external_lex_state = 5}, - [3442] = {.lex_state = 96, .external_lex_state = 5}, - [3443] = {.lex_state = 96, .external_lex_state = 5}, - [3444] = {.lex_state = 96, .external_lex_state = 5}, + [3442] = {.lex_state = 96, .external_lex_state = 6}, + [3443] = {.lex_state = 96, .external_lex_state = 6}, + [3444] = {.lex_state = 96, .external_lex_state = 6}, [3445] = {.lex_state = 96, .external_lex_state = 6}, [3446] = {.lex_state = 96, .external_lex_state = 5}, - [3447] = {.lex_state = 96, .external_lex_state = 5}, + [3447] = {.lex_state = 15, .external_lex_state = 2}, [3448] = {.lex_state = 96, .external_lex_state = 5}, - [3449] = {.lex_state = 96, .external_lex_state = 6}, - [3450] = {.lex_state = 14, .external_lex_state = 2}, - [3451] = {.lex_state = 96, .external_lex_state = 6}, - [3452] = {.lex_state = 96, .external_lex_state = 6}, + [3449] = {.lex_state = 96, .external_lex_state = 5}, + [3450] = {.lex_state = 96, .external_lex_state = 5}, + [3451] = {.lex_state = 96, .external_lex_state = 5}, + [3452] = {.lex_state = 96, .external_lex_state = 5}, [3453] = {.lex_state = 96, .external_lex_state = 5}, - [3454] = {.lex_state = 18, .external_lex_state = 7}, - [3455] = {.lex_state = 96, .external_lex_state = 5}, - [3456] = {.lex_state = 18, .external_lex_state = 7}, - [3457] = {.lex_state = 18, .external_lex_state = 2}, - [3458] = {.lex_state = 96, .external_lex_state = 5}, + [3454] = {.lex_state = 96, .external_lex_state = 6}, + [3455] = {.lex_state = 96, .external_lex_state = 2}, + [3456] = {.lex_state = 12, .external_lex_state = 2}, + [3457] = {.lex_state = 18, .external_lex_state = 7}, + [3458] = {.lex_state = 96, .external_lex_state = 2}, [3459] = {.lex_state = 18, .external_lex_state = 2}, - [3460] = {.lex_state = 18, .external_lex_state = 7}, + [3460] = {.lex_state = 14, .external_lex_state = 2}, [3461] = {.lex_state = 96, .external_lex_state = 2}, - [3462] = {.lex_state = 18, .external_lex_state = 7}, - [3463] = {.lex_state = 18, .external_lex_state = 2}, - [3464] = {.lex_state = 96, .external_lex_state = 2}, - [3465] = {.lex_state = 96, .external_lex_state = 2}, - [3466] = {.lex_state = 13, .external_lex_state = 2}, + [3462] = {.lex_state = 96, .external_lex_state = 2}, + [3463] = {.lex_state = 14, .external_lex_state = 2}, + [3464] = {.lex_state = 18, .external_lex_state = 7}, + [3465] = {.lex_state = 18, .external_lex_state = 2}, + [3466] = {.lex_state = 18, .external_lex_state = 2}, [3467] = {.lex_state = 18, .external_lex_state = 7}, - [3468] = {.lex_state = 96, .external_lex_state = 2}, - [3469] = {.lex_state = 96, .external_lex_state = 2}, - [3470] = {.lex_state = 96, .external_lex_state = 6}, - [3471] = {.lex_state = 18, .external_lex_state = 7}, - [3472] = {.lex_state = 18, .external_lex_state = 2}, + [3468] = {.lex_state = 96, .external_lex_state = 5}, + [3469] = {.lex_state = 96, .external_lex_state = 5}, + [3470] = {.lex_state = 96, .external_lex_state = 2}, + [3471] = {.lex_state = 18, .external_lex_state = 2}, + [3472] = {.lex_state = 96, .external_lex_state = 2}, [3473] = {.lex_state = 96, .external_lex_state = 2}, - [3474] = {.lex_state = 18, .external_lex_state = 7}, - [3475] = {.lex_state = 96, .external_lex_state = 5}, - [3476] = {.lex_state = 96, .external_lex_state = 5}, - [3477] = {.lex_state = 18, .external_lex_state = 2}, - [3478] = {.lex_state = 96, .external_lex_state = 2}, - [3479] = {.lex_state = 18, .external_lex_state = 2}, - [3480] = {.lex_state = 14, .external_lex_state = 2}, - [3481] = {.lex_state = 13, .external_lex_state = 2}, - [3482] = {.lex_state = 96, .external_lex_state = 2}, - [3483] = {.lex_state = 96, .external_lex_state = 2}, - [3484] = {.lex_state = 18, .external_lex_state = 2}, - [3485] = {.lex_state = 96, .external_lex_state = 2}, - [3486] = {.lex_state = 18, .external_lex_state = 2}, - [3487] = {.lex_state = 18, .external_lex_state = 2}, - [3488] = {.lex_state = 96, .external_lex_state = 2}, - [3489] = {.lex_state = 18, .external_lex_state = 7}, - [3490] = {.lex_state = 96, .external_lex_state = 5}, - [3491] = {.lex_state = 96, .external_lex_state = 2}, - [3492] = {.lex_state = 13, .external_lex_state = 2}, - [3493] = {.lex_state = 96, .external_lex_state = 5}, - [3494] = {.lex_state = 96, .external_lex_state = 5}, + [3474] = {.lex_state = 96, .external_lex_state = 2}, + [3475] = {.lex_state = 18, .external_lex_state = 7}, + [3476] = {.lex_state = 96, .external_lex_state = 2}, + [3477] = {.lex_state = 18, .external_lex_state = 7}, + [3478] = {.lex_state = 18, .external_lex_state = 7}, + [3479] = {.lex_state = 96, .external_lex_state = 2}, + [3480] = {.lex_state = 18, .external_lex_state = 7}, + [3481] = {.lex_state = 18, .external_lex_state = 2}, + [3482] = {.lex_state = 18, .external_lex_state = 2}, + [3483] = {.lex_state = 96, .external_lex_state = 6}, + [3484] = {.lex_state = 96, .external_lex_state = 5}, + [3485] = {.lex_state = 96, .external_lex_state = 5}, + [3486] = {.lex_state = 18, .external_lex_state = 7}, + [3487] = {.lex_state = 96, .external_lex_state = 5}, + [3488] = {.lex_state = 96, .external_lex_state = 5}, + [3489] = {.lex_state = 18, .external_lex_state = 2}, + [3490] = {.lex_state = 14, .external_lex_state = 2}, + [3491] = {.lex_state = 18, .external_lex_state = 2}, + [3492] = {.lex_state = 96, .external_lex_state = 2}, + [3493] = {.lex_state = 18, .external_lex_state = 2}, + [3494] = {.lex_state = 96, .external_lex_state = 2}, [3495] = {.lex_state = 96, .external_lex_state = 5}, - [3496] = {.lex_state = 96, .external_lex_state = 2}, - [3497] = {.lex_state = 96, .external_lex_state = 5}, + [3496] = {.lex_state = 96, .external_lex_state = 5}, + [3497] = {.lex_state = 96, .external_lex_state = 2}, [3498] = {.lex_state = 96, .external_lex_state = 2}, - [3499] = {.lex_state = 96, .external_lex_state = 2}, - [3500] = {.lex_state = 96, .external_lex_state = 5}, - [3501] = {.lex_state = 96, .external_lex_state = 5}, - [3502] = {.lex_state = 96, .external_lex_state = 5}, - [3503] = {.lex_state = 14, .external_lex_state = 2}, - [3504] = {.lex_state = 96, .external_lex_state = 5}, - [3505] = {.lex_state = 96, .external_lex_state = 5}, - [3506] = {.lex_state = 96, .external_lex_state = 5}, + [3499] = {.lex_state = 96, .external_lex_state = 5}, + [3500] = {.lex_state = 96, .external_lex_state = 2}, + [3501] = {.lex_state = 96, .external_lex_state = 2}, + [3502] = {.lex_state = 96, .external_lex_state = 2}, + [3503] = {.lex_state = 96, .external_lex_state = 2}, + [3504] = {.lex_state = 96, .external_lex_state = 2}, + [3505] = {.lex_state = 96, .external_lex_state = 2}, + [3506] = {.lex_state = 12, .external_lex_state = 2}, [3507] = {.lex_state = 96, .external_lex_state = 5}, - [3508] = {.lex_state = 96, .external_lex_state = 2}, - [3509] = {.lex_state = 96, .external_lex_state = 5}, - [3510] = {.lex_state = 96, .external_lex_state = 5}, - [3511] = {.lex_state = 96, .external_lex_state = 2}, + [3508] = {.lex_state = 96, .external_lex_state = 5}, + [3509] = {.lex_state = 96, .external_lex_state = 2}, + [3510] = {.lex_state = 96, .external_lex_state = 2}, + [3511] = {.lex_state = 12, .external_lex_state = 2}, [3512] = {.lex_state = 96, .external_lex_state = 5}, - [3513] = {.lex_state = 96, .external_lex_state = 5}, - [3514] = {.lex_state = 96, .external_lex_state = 2}, + [3513] = {.lex_state = 96, .external_lex_state = 2}, + [3514] = {.lex_state = 96, .external_lex_state = 5}, [3515] = {.lex_state = 96, .external_lex_state = 5}, [3516] = {.lex_state = 96, .external_lex_state = 5}, [3517] = {.lex_state = 96, .external_lex_state = 2}, - [3518] = {.lex_state = 96, .external_lex_state = 5}, + [3518] = {.lex_state = 12, .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 = 5}, [3522] = {.lex_state = 96, .external_lex_state = 5}, [3523] = {.lex_state = 96, .external_lex_state = 5}, - [3524] = {.lex_state = 96, .external_lex_state = 5}, + [3524] = {.lex_state = 12, .external_lex_state = 2}, [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 = 96, .external_lex_state = 5}, - [3529] = {.lex_state = 14, .external_lex_state = 2}, - [3530] = {.lex_state = 96, .external_lex_state = 5}, - [3531] = {.lex_state = 96, .external_lex_state = 5}, - [3532] = {.lex_state = 96, .external_lex_state = 2}, + [3529] = {.lex_state = 96, .external_lex_state = 2}, + [3530] = {.lex_state = 12, .external_lex_state = 2}, + [3531] = {.lex_state = 96, .external_lex_state = 2}, + [3532] = {.lex_state = 96, .external_lex_state = 5}, [3533] = {.lex_state = 96, .external_lex_state = 5}, - [3534] = {.lex_state = 96, .external_lex_state = 5}, + [3534] = {.lex_state = 96, .external_lex_state = 2}, [3535] = {.lex_state = 96, .external_lex_state = 5}, - [3536] = {.lex_state = 96, .external_lex_state = 5}, + [3536] = {.lex_state = 96, .external_lex_state = 2}, [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}, + [3540] = {.lex_state = 96, .external_lex_state = 2}, [3541] = {.lex_state = 96, .external_lex_state = 5}, [3542] = {.lex_state = 96, .external_lex_state = 5}, [3543] = {.lex_state = 96, .external_lex_state = 5}, - [3544] = {.lex_state = 96, .external_lex_state = 5}, - [3545] = {.lex_state = 14, .external_lex_state = 2}, + [3544] = {.lex_state = 96, .external_lex_state = 2}, + [3545] = {.lex_state = 96, .external_lex_state = 5}, [3546] = {.lex_state = 96, .external_lex_state = 5}, - [3547] = {.lex_state = 96, .external_lex_state = 2}, - [3548] = {.lex_state = 96, .external_lex_state = 2}, - [3549] = {.lex_state = 96, .external_lex_state = 5}, - [3550] = {.lex_state = 14, .external_lex_state = 2}, + [3547] = {.lex_state = 96, .external_lex_state = 5}, + [3548] = {.lex_state = 96, .external_lex_state = 5}, + [3549] = {.lex_state = 96, .external_lex_state = 2}, + [3550] = {.lex_state = 96, .external_lex_state = 5}, [3551] = {.lex_state = 96, .external_lex_state = 5}, [3552] = {.lex_state = 96, .external_lex_state = 5}, [3553] = {.lex_state = 96, .external_lex_state = 5}, @@ -16648,109 +16672,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3556] = {.lex_state = 96, .external_lex_state = 5}, [3557] = {.lex_state = 96, .external_lex_state = 5}, [3558] = {.lex_state = 96, .external_lex_state = 5}, - [3559] = {.lex_state = 96, .external_lex_state = 5}, + [3559] = {.lex_state = 96, .external_lex_state = 2}, [3560] = {.lex_state = 96, .external_lex_state = 5}, [3561] = {.lex_state = 96, .external_lex_state = 5}, [3562] = {.lex_state = 96, .external_lex_state = 5}, - [3563] = {.lex_state = 96, .external_lex_state = 5}, - [3564] = {.lex_state = 96, .external_lex_state = 5}, + [3563] = {.lex_state = 96, .external_lex_state = 2}, + [3564] = {.lex_state = 96, .external_lex_state = 2}, [3565] = {.lex_state = 96, .external_lex_state = 5}, [3566] = {.lex_state = 96, .external_lex_state = 5}, - [3567] = {.lex_state = 96, .external_lex_state = 2}, - [3568] = {.lex_state = 14, .external_lex_state = 2}, + [3567] = {.lex_state = 96, .external_lex_state = 5}, + [3568] = {.lex_state = 12, .external_lex_state = 2}, [3569] = {.lex_state = 96, .external_lex_state = 5}, [3570] = {.lex_state = 96, .external_lex_state = 5}, - [3571] = {.lex_state = 96, .external_lex_state = 2}, - [3572] = {.lex_state = 96, .external_lex_state = 5}, - [3573] = {.lex_state = 14, .external_lex_state = 2}, + [3571] = {.lex_state = 96, .external_lex_state = 5}, + [3572] = {.lex_state = 96, .external_lex_state = 2}, + [3573] = {.lex_state = 96, .external_lex_state = 5}, [3574] = {.lex_state = 96, .external_lex_state = 5}, - [3575] = {.lex_state = 96, .external_lex_state = 2}, - [3576] = {.lex_state = 96, .external_lex_state = 2}, + [3575] = {.lex_state = 96, .external_lex_state = 5}, + [3576] = {.lex_state = 96, .external_lex_state = 5}, [3577] = {.lex_state = 96, .external_lex_state = 5}, - [3578] = {.lex_state = 14, .external_lex_state = 2}, - [3579] = {.lex_state = 96, .external_lex_state = 2}, + [3578] = {.lex_state = 96, .external_lex_state = 5}, + [3579] = {.lex_state = 96, .external_lex_state = 5}, [3580] = {.lex_state = 96, .external_lex_state = 5}, [3581] = {.lex_state = 96, .external_lex_state = 2}, - [3582] = {.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 = 2}, - [3588] = {.lex_state = 96, .external_lex_state = 2}, - [3589] = {.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 = 2}, [3590] = {.lex_state = 96, .external_lex_state = 5}, [3591] = {.lex_state = 96, .external_lex_state = 5}, - [3592] = {.lex_state = 96, .external_lex_state = 5}, + [3592] = {.lex_state = 96, .external_lex_state = 2}, [3593] = {.lex_state = 96, .external_lex_state = 5}, [3594] = {.lex_state = 96, .external_lex_state = 5}, [3595] = {.lex_state = 96, .external_lex_state = 5}, [3596] = {.lex_state = 96, .external_lex_state = 2}, [3597] = {.lex_state = 96, .external_lex_state = 5}, - [3598] = {.lex_state = 96, .external_lex_state = 2}, + [3598] = {.lex_state = 96, .external_lex_state = 5}, [3599] = {.lex_state = 96, .external_lex_state = 5}, [3600] = {.lex_state = 96, .external_lex_state = 5}, [3601] = {.lex_state = 96, .external_lex_state = 5}, [3602] = {.lex_state = 96, .external_lex_state = 5}, - [3603] = {.lex_state = 96, .external_lex_state = 2}, - [3604] = {.lex_state = 14, .external_lex_state = 2}, + [3603] = {.lex_state = 96, .external_lex_state = 5}, + [3604] = {.lex_state = 96, .external_lex_state = 5}, [3605] = {.lex_state = 96, .external_lex_state = 5}, [3606] = {.lex_state = 96, .external_lex_state = 5}, - [3607] = {.lex_state = 96, .external_lex_state = 5}, - [3608] = {.lex_state = 96, .external_lex_state = 5}, + [3607] = {.lex_state = 96, .external_lex_state = 2}, + [3608] = {.lex_state = 96, .external_lex_state = 2}, [3609] = {.lex_state = 96, .external_lex_state = 2}, - [3610] = {.lex_state = 96, .external_lex_state = 5}, + [3610] = {.lex_state = 96, .external_lex_state = 2}, [3611] = {.lex_state = 96, .external_lex_state = 5}, - [3612] = {.lex_state = 14, .external_lex_state = 2}, - [3613] = {.lex_state = 96, .external_lex_state = 2}, - [3614] = {.lex_state = 14, .external_lex_state = 2}, + [3612] = {.lex_state = 12, .external_lex_state = 2}, + [3613] = {.lex_state = 96, .external_lex_state = 5}, + [3614] = {.lex_state = 96, .external_lex_state = 5}, [3615] = {.lex_state = 96, .external_lex_state = 5}, - [3616] = {.lex_state = 96, .external_lex_state = 2}, - [3617] = {.lex_state = 14, .external_lex_state = 2}, + [3616] = {.lex_state = 96, .external_lex_state = 5}, + [3617] = {.lex_state = 96, .external_lex_state = 5}, [3618] = {.lex_state = 96, .external_lex_state = 5}, - [3619] = {.lex_state = 14, .external_lex_state = 2}, - [3620] = {.lex_state = 96, .external_lex_state = 2}, - [3621] = {.lex_state = 96, .external_lex_state = 2}, - [3622] = {.lex_state = 96, .external_lex_state = 5}, - [3623] = {.lex_state = 14, .external_lex_state = 2}, + [3619] = {.lex_state = 96, .external_lex_state = 5}, + [3620] = {.lex_state = 96, .external_lex_state = 5}, + [3621] = {.lex_state = 96, .external_lex_state = 5}, + [3622] = {.lex_state = 96, .external_lex_state = 2}, + [3623] = {.lex_state = 96, .external_lex_state = 2}, [3624] = {.lex_state = 96, .external_lex_state = 5}, [3625] = {.lex_state = 96, .external_lex_state = 5}, [3626] = {.lex_state = 96, .external_lex_state = 5}, - [3627] = {.lex_state = 96, .external_lex_state = 2}, - [3628] = {.lex_state = 96, .external_lex_state = 2}, + [3627] = {.lex_state = 96, .external_lex_state = 5}, + [3628] = {.lex_state = 96, .external_lex_state = 5}, [3629] = {.lex_state = 96, .external_lex_state = 2}, - [3630] = {.lex_state = 96, .external_lex_state = 2}, - [3631] = {.lex_state = 96, .external_lex_state = 5}, - [3632] = {.lex_state = 96, .external_lex_state = 2}, - [3633] = {.lex_state = 96, .external_lex_state = 2}, - [3634] = {.lex_state = 96, .external_lex_state = 2}, + [3630] = {.lex_state = 12, .external_lex_state = 2}, + [3631] = {.lex_state = 96, .external_lex_state = 2}, + [3632] = {.lex_state = 96, .external_lex_state = 5}, + [3633] = {.lex_state = 96, .external_lex_state = 5}, + [3634] = {.lex_state = 96, .external_lex_state = 5}, [3635] = {.lex_state = 96, .external_lex_state = 5}, [3636] = {.lex_state = 96, .external_lex_state = 5}, - [3637] = {.lex_state = 96, .external_lex_state = 5}, - [3638] = {.lex_state = 96, .external_lex_state = 5}, + [3637] = {.lex_state = 96, .external_lex_state = 2}, + [3638] = {.lex_state = 12, .external_lex_state = 2}, [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 = 5}, [3643] = {.lex_state = 96, .external_lex_state = 5}, - [3644] = {.lex_state = 96, .external_lex_state = 5}, + [3644] = {.lex_state = 12, .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 = 2}, [3648] = {.lex_state = 96, .external_lex_state = 5}, [3649] = {.lex_state = 96, .external_lex_state = 5}, - [3650] = {.lex_state = 96, .external_lex_state = 2}, - [3651] = {.lex_state = 96, .external_lex_state = 2}, - [3652] = {.lex_state = 96, .external_lex_state = 2}, - [3653] = {.lex_state = 14, .external_lex_state = 2}, - [3654] = {.lex_state = 96, .external_lex_state = 5}, - [3655] = {.lex_state = 96, .external_lex_state = 5}, - [3656] = {.lex_state = 96, .external_lex_state = 2}, + [3650] = {.lex_state = 12, .external_lex_state = 2}, + [3651] = {.lex_state = 96, .external_lex_state = 5}, + [3652] = {.lex_state = 96, .external_lex_state = 5}, + [3653] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 2}, [3658] = {.lex_state = 96, .external_lex_state = 2}, [3659] = {.lex_state = 96, .external_lex_state = 2}, - [3660] = {.lex_state = 14, .external_lex_state = 2}, - [3661] = {.lex_state = 96, .external_lex_state = 5}, + [3660] = {.lex_state = 96, .external_lex_state = 2}, + [3661] = {.lex_state = 96, .external_lex_state = 2}, [3662] = {.lex_state = 96, .external_lex_state = 5}, [3663] = {.lex_state = 96, .external_lex_state = 5}, [3664] = {.lex_state = 96, .external_lex_state = 5}, @@ -16763,329 +16787,329 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3674] = {.lex_state = 96, .external_lex_state = 5}, [3675] = {.lex_state = 96, .external_lex_state = 5}, - [3676] = {.lex_state = 96, .external_lex_state = 2}, + [3676] = {.lex_state = 96, .external_lex_state = 5}, [3677] = {.lex_state = 96, .external_lex_state = 5}, - [3678] = {.lex_state = 14, .external_lex_state = 2}, + [3678] = {.lex_state = 96, .external_lex_state = 2}, [3679] = {.lex_state = 96, .external_lex_state = 5}, - [3680] = {.lex_state = 14, .external_lex_state = 2}, + [3680] = {.lex_state = 12, .external_lex_state = 2}, [3681] = {.lex_state = 96, .external_lex_state = 5}, - [3682] = {.lex_state = 96, .external_lex_state = 2}, - [3683] = {.lex_state = 96, .external_lex_state = 5}, - [3684] = {.lex_state = 96, .external_lex_state = 2}, - [3685] = {.lex_state = 96, .external_lex_state = 2}, - [3686] = {.lex_state = 96, .external_lex_state = 5}, - [3687] = {.lex_state = 96, .external_lex_state = 2}, - [3688] = {.lex_state = 14, .external_lex_state = 2}, - [3689] = {.lex_state = 96, .external_lex_state = 2}, - [3690] = {.lex_state = 14, .external_lex_state = 2}, + [3682] = {.lex_state = 96, .external_lex_state = 5}, + [3683] = {.lex_state = 12, .external_lex_state = 2}, + [3684] = {.lex_state = 96, .external_lex_state = 5}, + [3685] = {.lex_state = 96, .external_lex_state = 5}, + [3686] = {.lex_state = 12, .external_lex_state = 2}, + [3687] = {.lex_state = 96, .external_lex_state = 5}, + [3688] = {.lex_state = 96, .external_lex_state = 5}, + [3689] = {.lex_state = 12, .external_lex_state = 2}, + [3690] = {.lex_state = 96, .external_lex_state = 5}, [3691] = {.lex_state = 96, .external_lex_state = 2}, [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 = 96, .external_lex_state = 5}, - [3697] = {.lex_state = 96, .external_lex_state = 5}, + [3697] = {.lex_state = 12, .external_lex_state = 2}, [3698] = {.lex_state = 96, .external_lex_state = 2}, - [3699] = {.lex_state = 96, .external_lex_state = 5}, - [3700] = {.lex_state = 96, .external_lex_state = 5}, - [3701] = {.lex_state = 96, .external_lex_state = 5}, + [3699] = {.lex_state = 96, .external_lex_state = 2}, + [3700] = {.lex_state = 12, .external_lex_state = 2}, + [3701] = {.lex_state = 96, .external_lex_state = 2}, [3702] = {.lex_state = 96, .external_lex_state = 5}, [3703] = {.lex_state = 96, .external_lex_state = 5}, - [3704] = {.lex_state = 96, .external_lex_state = 5}, + [3704] = {.lex_state = 12, .external_lex_state = 2}, [3705] = {.lex_state = 96, .external_lex_state = 2}, [3706] = {.lex_state = 96, .external_lex_state = 5}, [3707] = {.lex_state = 96, .external_lex_state = 5}, - [3708] = {.lex_state = 96, .external_lex_state = 5}, + [3708] = {.lex_state = 12, .external_lex_state = 2}, [3709] = {.lex_state = 96, .external_lex_state = 5}, [3710] = {.lex_state = 96, .external_lex_state = 5}, - [3711] = {.lex_state = 96, .external_lex_state = 2}, - [3712] = {.lex_state = 96, .external_lex_state = 5}, + [3711] = {.lex_state = 96, .external_lex_state = 5}, + [3712] = {.lex_state = 96, .external_lex_state = 2}, [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 = 14, .external_lex_state = 2}, + [3716] = {.lex_state = 96, .external_lex_state = 2}, [3717] = {.lex_state = 96, .external_lex_state = 5}, - [3718] = {.lex_state = 96, .external_lex_state = 2}, - [3719] = {.lex_state = 96, .external_lex_state = 2}, + [3718] = {.lex_state = 96, .external_lex_state = 5}, + [3719] = {.lex_state = 96, .external_lex_state = 5}, [3720] = {.lex_state = 96, .external_lex_state = 5}, - [3721] = {.lex_state = 96, .external_lex_state = 2}, - [3722] = {.lex_state = 96, .external_lex_state = 2}, - [3723] = {.lex_state = 96, .external_lex_state = 6}, + [3721] = {.lex_state = 96, .external_lex_state = 5}, + [3722] = {.lex_state = 96, .external_lex_state = 6}, + [3723] = {.lex_state = 12, .external_lex_state = 2}, [3724] = {.lex_state = 96, .external_lex_state = 5}, - [3725] = {.lex_state = 14, .external_lex_state = 2}, - [3726] = {.lex_state = 14, .external_lex_state = 2}, - [3727] = {.lex_state = 96, .external_lex_state = 5}, - [3728] = {.lex_state = 14, .external_lex_state = 2}, - [3729] = {.lex_state = 14, .external_lex_state = 2}, - [3730] = {.lex_state = 96, .external_lex_state = 5}, - [3731] = {.lex_state = 96, .external_lex_state = 5}, - [3732] = {.lex_state = 96, .external_lex_state = 5}, - [3733] = {.lex_state = 96, .external_lex_state = 2}, - [3734] = {.lex_state = 96, .external_lex_state = 2}, - [3735] = {.lex_state = 14, .external_lex_state = 2}, - [3736] = {.lex_state = 14, .external_lex_state = 2}, - [3737] = {.lex_state = 14, .external_lex_state = 2}, + [3725] = {.lex_state = 96, .external_lex_state = 2}, + [3726] = {.lex_state = 96, .external_lex_state = 2}, + [3727] = {.lex_state = 96, .external_lex_state = 2}, + [3728] = {.lex_state = 12, .external_lex_state = 2}, + [3729] = {.lex_state = 12, .external_lex_state = 2}, + [3730] = {.lex_state = 96, .external_lex_state = 6}, + [3731] = {.lex_state = 96, .external_lex_state = 6}, + [3732] = {.lex_state = 18, .external_lex_state = 7}, + [3733] = {.lex_state = 96, .external_lex_state = 5}, + [3734] = {.lex_state = 96, .external_lex_state = 6}, + [3735] = {.lex_state = 96, .external_lex_state = 2}, + [3736] = {.lex_state = 96, .external_lex_state = 5}, + [3737] = {.lex_state = 96, .external_lex_state = 2}, [3738] = {.lex_state = 96, .external_lex_state = 2}, [3739] = {.lex_state = 96, .external_lex_state = 6}, - [3740] = {.lex_state = 96, .external_lex_state = 5}, + [3740] = {.lex_state = 12, .external_lex_state = 2}, [3741] = {.lex_state = 96, .external_lex_state = 2}, - [3742] = {.lex_state = 14, .external_lex_state = 2}, + [3742] = {.lex_state = 96, .external_lex_state = 5}, [3743] = {.lex_state = 96, .external_lex_state = 2}, - [3744] = {.lex_state = 96, .external_lex_state = 2}, - [3745] = {.lex_state = 96, .external_lex_state = 2}, - [3746] = {.lex_state = 96, .external_lex_state = 5}, - [3747] = {.lex_state = 14, .external_lex_state = 2}, - [3748] = {.lex_state = 18, .external_lex_state = 7}, + [3744] = {.lex_state = 12, .external_lex_state = 2}, + [3745] = {.lex_state = 12, .external_lex_state = 2}, + [3746] = {.lex_state = 96, .external_lex_state = 2}, + [3747] = {.lex_state = 96, .external_lex_state = 2}, + [3748] = {.lex_state = 12, .external_lex_state = 2}, [3749] = {.lex_state = 96, .external_lex_state = 5}, - [3750] = {.lex_state = 14, .external_lex_state = 2}, - [3751] = {.lex_state = 96, .external_lex_state = 2}, - [3752] = {.lex_state = 14, .external_lex_state = 2}, - [3753] = {.lex_state = 96, .external_lex_state = 2}, - [3754] = {.lex_state = 96, .external_lex_state = 2}, - [3755] = {.lex_state = 96, .external_lex_state = 5}, - [3756] = {.lex_state = 96, .external_lex_state = 5}, - [3757] = {.lex_state = 96, .external_lex_state = 5}, - [3758] = {.lex_state = 14, .external_lex_state = 2}, + [3750] = {.lex_state = 96, .external_lex_state = 6}, + [3751] = {.lex_state = 96, .external_lex_state = 6}, + [3752] = {.lex_state = 96, .external_lex_state = 2}, + [3753] = {.lex_state = 12, .external_lex_state = 2}, + [3754] = {.lex_state = 96, .external_lex_state = 6}, + [3755] = {.lex_state = 96, .external_lex_state = 2}, + [3756] = {.lex_state = 12, .external_lex_state = 2}, + [3757] = {.lex_state = 12, .external_lex_state = 2}, + [3758] = {.lex_state = 12, .external_lex_state = 2}, [3759] = {.lex_state = 96, .external_lex_state = 2}, - [3760] = {.lex_state = 96, .external_lex_state = 5}, - [3761] = {.lex_state = 96, .external_lex_state = 2}, - [3762] = {.lex_state = 14, .external_lex_state = 2}, - [3763] = {.lex_state = 14, .external_lex_state = 2}, - [3764] = {.lex_state = 14, .external_lex_state = 2}, - [3765] = {.lex_state = 96, .external_lex_state = 5}, - [3766] = {.lex_state = 96, .external_lex_state = 2}, - [3767] = {.lex_state = 14, .external_lex_state = 2}, - [3768] = {.lex_state = 96, .external_lex_state = 5}, - [3769] = {.lex_state = 96, .external_lex_state = 5}, - [3770] = {.lex_state = 96, .external_lex_state = 2}, - [3771] = {.lex_state = 14, .external_lex_state = 2}, + [3760] = {.lex_state = 18, .external_lex_state = 7}, + [3761] = {.lex_state = 96, .external_lex_state = 5}, + [3762] = {.lex_state = 96, .external_lex_state = 5}, + [3763] = {.lex_state = 96, .external_lex_state = 5}, + [3764] = {.lex_state = 96, .external_lex_state = 6}, + [3765] = {.lex_state = 12, .external_lex_state = 2}, + [3766] = {.lex_state = 96, .external_lex_state = 5}, + [3767] = {.lex_state = 96, .external_lex_state = 6}, + [3768] = {.lex_state = 12, .external_lex_state = 2}, + [3769] = {.lex_state = 15, .external_lex_state = 2}, + [3770] = {.lex_state = 12, .external_lex_state = 2}, + [3771] = {.lex_state = 96, .external_lex_state = 5}, [3772] = {.lex_state = 96, .external_lex_state = 5}, - [3773] = {.lex_state = 96, .external_lex_state = 2}, - [3774] = {.lex_state = 96, .external_lex_state = 6}, - [3775] = {.lex_state = 14, .external_lex_state = 2}, - [3776] = {.lex_state = 14, .external_lex_state = 2}, - [3777] = {.lex_state = 18, .external_lex_state = 7}, - [3778] = {.lex_state = 96, .external_lex_state = 5}, - [3779] = {.lex_state = 96, .external_lex_state = 6}, - [3780] = {.lex_state = 96, .external_lex_state = 6}, + [3773] = {.lex_state = 96, .external_lex_state = 6}, + [3774] = {.lex_state = 96, .external_lex_state = 5}, + [3775] = {.lex_state = 12, .external_lex_state = 2}, + [3776] = {.lex_state = 96, .external_lex_state = 2}, + [3777] = {.lex_state = 96, .external_lex_state = 2}, + [3778] = {.lex_state = 12, .external_lex_state = 2}, + [3779] = {.lex_state = 96, .external_lex_state = 2}, + [3780] = {.lex_state = 96, .external_lex_state = 2}, [3781] = {.lex_state = 96, .external_lex_state = 5}, - [3782] = {.lex_state = 14, .external_lex_state = 2}, - [3783] = {.lex_state = 96, .external_lex_state = 2}, - [3784] = {.lex_state = 14, .external_lex_state = 2}, + [3782] = {.lex_state = 12, .external_lex_state = 2}, + [3783] = {.lex_state = 96, .external_lex_state = 5}, + [3784] = {.lex_state = 12, .external_lex_state = 2}, [3785] = {.lex_state = 96, .external_lex_state = 2}, - [3786] = {.lex_state = 14, .external_lex_state = 2}, - [3787] = {.lex_state = 96, .external_lex_state = 5}, - [3788] = {.lex_state = 96, .external_lex_state = 5}, - [3789] = {.lex_state = 96, .external_lex_state = 2}, - [3790] = {.lex_state = 14, .external_lex_state = 2}, - [3791] = {.lex_state = 96, .external_lex_state = 2}, - [3792] = {.lex_state = 96, .external_lex_state = 5}, + [3786] = {.lex_state = 12, .external_lex_state = 2}, + [3787] = {.lex_state = 96, .external_lex_state = 2}, + [3788] = {.lex_state = 12, .external_lex_state = 2}, + [3789] = {.lex_state = 96, .external_lex_state = 6}, + [3790] = {.lex_state = 96, .external_lex_state = 5}, + [3791] = {.lex_state = 12, .external_lex_state = 2}, + [3792] = {.lex_state = 12, .external_lex_state = 2}, [3793] = {.lex_state = 96, .external_lex_state = 2}, - [3794] = {.lex_state = 96, .external_lex_state = 6}, - [3795] = {.lex_state = 96, .external_lex_state = 5}, - [3796] = {.lex_state = 96, .external_lex_state = 5}, - [3797] = {.lex_state = 14, .external_lex_state = 2}, - [3798] = {.lex_state = 14, .external_lex_state = 2}, + [3794] = {.lex_state = 96, .external_lex_state = 2}, + [3795] = {.lex_state = 96, .external_lex_state = 6}, + [3796] = {.lex_state = 96, .external_lex_state = 2}, + [3797] = {.lex_state = 96, .external_lex_state = 5}, + [3798] = {.lex_state = 18, .external_lex_state = 7}, [3799] = {.lex_state = 96, .external_lex_state = 6}, - [3800] = {.lex_state = 15, .external_lex_state = 2}, - [3801] = {.lex_state = 96, .external_lex_state = 2}, - [3802] = {.lex_state = 96, .external_lex_state = 2}, + [3800] = {.lex_state = 12, .external_lex_state = 2}, + [3801] = {.lex_state = 12, .external_lex_state = 2}, + [3802] = {.lex_state = 96, .external_lex_state = 6}, [3803] = {.lex_state = 96, .external_lex_state = 2}, - [3804] = {.lex_state = 96, .external_lex_state = 2}, - [3805] = {.lex_state = 96, .external_lex_state = 6}, - [3806] = {.lex_state = 18, .external_lex_state = 7}, - [3807] = {.lex_state = 96, .external_lex_state = 2}, - [3808] = {.lex_state = 14, .external_lex_state = 2}, + [3804] = {.lex_state = 12, .external_lex_state = 2}, + [3805] = {.lex_state = 12, .external_lex_state = 2}, + [3806] = {.lex_state = 96, .external_lex_state = 6}, + [3807] = {.lex_state = 12, .external_lex_state = 2}, + [3808] = {.lex_state = 18, .external_lex_state = 7}, [3809] = {.lex_state = 96, .external_lex_state = 2}, - [3810] = {.lex_state = 96, .external_lex_state = 5}, - [3811] = {.lex_state = 14, .external_lex_state = 2}, - [3812] = {.lex_state = 96, .external_lex_state = 2}, - [3813] = {.lex_state = 96, .external_lex_state = 2}, - [3814] = {.lex_state = 14, .external_lex_state = 2}, - [3815] = {.lex_state = 96, .external_lex_state = 6}, - [3816] = {.lex_state = 14, .external_lex_state = 2}, - [3817] = {.lex_state = 96, .external_lex_state = 6}, - [3818] = {.lex_state = 96, .external_lex_state = 2}, - [3819] = {.lex_state = 96, .external_lex_state = 6}, + [3810] = {.lex_state = 96, .external_lex_state = 2}, + [3811] = {.lex_state = 96, .external_lex_state = 6}, + [3812] = {.lex_state = 96, .external_lex_state = 6}, + [3813] = {.lex_state = 96, .external_lex_state = 6}, + [3814] = {.lex_state = 96, .external_lex_state = 6}, + [3815] = {.lex_state = 96, .external_lex_state = 2}, + [3816] = {.lex_state = 12, .external_lex_state = 2}, + [3817] = {.lex_state = 12, .external_lex_state = 2}, + [3818] = {.lex_state = 12, .external_lex_state = 2}, + [3819] = {.lex_state = 12, .external_lex_state = 2}, [3820] = {.lex_state = 96, .external_lex_state = 2}, - [3821] = {.lex_state = 96, .external_lex_state = 2}, - [3822] = {.lex_state = 14, .external_lex_state = 2}, - [3823] = {.lex_state = 96, .external_lex_state = 6}, - [3824] = {.lex_state = 14, .external_lex_state = 2}, - [3825] = {.lex_state = 14, .external_lex_state = 2}, - [3826] = {.lex_state = 18, .external_lex_state = 7}, + [3821] = {.lex_state = 12, .external_lex_state = 2}, + [3822] = {.lex_state = 96, .external_lex_state = 2}, + [3823] = {.lex_state = 96, .external_lex_state = 2}, + [3824] = {.lex_state = 12, .external_lex_state = 2}, + [3825] = {.lex_state = 96, .external_lex_state = 2}, + [3826] = {.lex_state = 96, .external_lex_state = 5}, [3827] = {.lex_state = 96, .external_lex_state = 2}, - [3828] = {.lex_state = 14, .external_lex_state = 2}, - [3829] = {.lex_state = 14, .external_lex_state = 2}, - [3830] = {.lex_state = 96, .external_lex_state = 6}, - [3831] = {.lex_state = 14, .external_lex_state = 2}, - [3832] = {.lex_state = 96, .external_lex_state = 6}, - [3833] = {.lex_state = 96, .external_lex_state = 6}, - [3834] = {.lex_state = 14, .external_lex_state = 2}, + [3828] = {.lex_state = 96, .external_lex_state = 2}, + [3829] = {.lex_state = 12, .external_lex_state = 2}, + [3830] = {.lex_state = 12, .external_lex_state = 2}, + [3831] = {.lex_state = 12, .external_lex_state = 2}, + [3832] = {.lex_state = 12, .external_lex_state = 2}, + [3833] = {.lex_state = 12, .external_lex_state = 2}, + [3834] = {.lex_state = 12, .external_lex_state = 2}, [3835] = {.lex_state = 96, .external_lex_state = 2}, [3836] = {.lex_state = 96, .external_lex_state = 6}, - [3837] = {.lex_state = 14, .external_lex_state = 2}, - [3838] = {.lex_state = 14, .external_lex_state = 2}, - [3839] = {.lex_state = 96, .external_lex_state = 6}, - [3840] = {.lex_state = 96, .external_lex_state = 6}, - [3841] = {.lex_state = 14, .external_lex_state = 2}, - [3842] = {.lex_state = 96, .external_lex_state = 6}, - [3843] = {.lex_state = 14, .external_lex_state = 2}, - [3844] = {.lex_state = 96, .external_lex_state = 2}, + [3837] = {.lex_state = 12, .external_lex_state = 2}, + [3838] = {.lex_state = 12, .external_lex_state = 2}, + [3839] = {.lex_state = 12, .external_lex_state = 2}, + [3840] = {.lex_state = 12, .external_lex_state = 2}, + [3841] = {.lex_state = 96, .external_lex_state = 5}, + [3842] = {.lex_state = 96, .external_lex_state = 5}, + [3843] = {.lex_state = 96, .external_lex_state = 5}, + [3844] = {.lex_state = 12, .external_lex_state = 2}, [3845] = {.lex_state = 96, .external_lex_state = 6}, - [3846] = {.lex_state = 14, .external_lex_state = 2}, - [3847] = {.lex_state = 96, .external_lex_state = 6}, - [3848] = {.lex_state = 96, .external_lex_state = 5}, - [3849] = {.lex_state = 14, .external_lex_state = 2}, - [3850] = {.lex_state = 96, .external_lex_state = 6}, - [3851] = {.lex_state = 14, .external_lex_state = 2}, + [3846] = {.lex_state = 18, .external_lex_state = 7}, + [3847] = {.lex_state = 96, .external_lex_state = 2}, + [3848] = {.lex_state = 96, .external_lex_state = 2}, + [3849] = {.lex_state = 96, .external_lex_state = 2}, + [3850] = {.lex_state = 96, .external_lex_state = 2}, + [3851] = {.lex_state = 12, .external_lex_state = 2}, [3852] = {.lex_state = 96, .external_lex_state = 2}, [3853] = {.lex_state = 96, .external_lex_state = 2}, - [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 = 14, .external_lex_state = 2}, + [3854] = {.lex_state = 12, .external_lex_state = 2}, + [3855] = {.lex_state = 12, .external_lex_state = 2}, + [3856] = {.lex_state = 96, .external_lex_state = 5}, + [3857] = {.lex_state = 96, .external_lex_state = 5}, [3858] = {.lex_state = 96, .external_lex_state = 5}, [3859] = {.lex_state = 96, .external_lex_state = 5}, - [3860] = {.lex_state = 14, .external_lex_state = 2}, - [3861] = {.lex_state = 96, .external_lex_state = 6}, - [3862] = {.lex_state = 14, .external_lex_state = 2}, - [3863] = {.lex_state = 15, .external_lex_state = 2}, + [3860] = {.lex_state = 96, .external_lex_state = 2}, + [3861] = {.lex_state = 96, .external_lex_state = 5}, + [3862] = {.lex_state = 12, .external_lex_state = 2}, + [3863] = {.lex_state = 96, .external_lex_state = 2}, [3864] = {.lex_state = 96, .external_lex_state = 6}, - [3865] = {.lex_state = 14, .external_lex_state = 2}, - [3866] = {.lex_state = 96, .external_lex_state = 2}, - [3867] = {.lex_state = 96, .external_lex_state = 6}, - [3868] = {.lex_state = 96, .external_lex_state = 6}, - [3869] = {.lex_state = 96, .external_lex_state = 5}, - [3870] = {.lex_state = 96, .external_lex_state = 5}, - [3871] = {.lex_state = 14, .external_lex_state = 2}, + [3865] = {.lex_state = 96, .external_lex_state = 6}, + [3866] = {.lex_state = 96, .external_lex_state = 5}, + [3867] = {.lex_state = 12, .external_lex_state = 2}, + [3868] = {.lex_state = 96, .external_lex_state = 5}, + [3869] = {.lex_state = 96, .external_lex_state = 6}, + [3870] = {.lex_state = 15, .external_lex_state = 2}, + [3871] = {.lex_state = 96, .external_lex_state = 5}, [3872] = {.lex_state = 96, .external_lex_state = 6}, [3873] = {.lex_state = 96, .external_lex_state = 5}, - [3874] = {.lex_state = 14, .external_lex_state = 2}, - [3875] = {.lex_state = 96, .external_lex_state = 5}, + [3874] = {.lex_state = 96, .external_lex_state = 5}, + [3875] = {.lex_state = 96, .external_lex_state = 2}, [3876] = {.lex_state = 96, .external_lex_state = 5}, [3877] = {.lex_state = 96, .external_lex_state = 5}, [3878] = {.lex_state = 96, .external_lex_state = 5}, [3879] = {.lex_state = 96, .external_lex_state = 5}, [3880] = {.lex_state = 96, .external_lex_state = 5}, - [3881] = {.lex_state = 96, .external_lex_state = 5}, + [3881] = {.lex_state = 96, .external_lex_state = 2}, [3882] = {.lex_state = 96, .external_lex_state = 5}, [3883] = {.lex_state = 96, .external_lex_state = 5}, - [3884] = {.lex_state = 96, .external_lex_state = 6}, + [3884] = {.lex_state = 96, .external_lex_state = 2}, [3885] = {.lex_state = 96, .external_lex_state = 5}, - [3886] = {.lex_state = 96, .external_lex_state = 6}, - [3887] = {.lex_state = 14, .external_lex_state = 2}, - [3888] = {.lex_state = 96, .external_lex_state = 6}, + [3886] = {.lex_state = 96, .external_lex_state = 5}, + [3887] = {.lex_state = 96, .external_lex_state = 5}, + [3888] = {.lex_state = 96, .external_lex_state = 2}, [3889] = {.lex_state = 96, .external_lex_state = 5}, [3890] = {.lex_state = 96, .external_lex_state = 5}, - [3891] = {.lex_state = 96, .external_lex_state = 2}, + [3891] = {.lex_state = 96, .external_lex_state = 5}, [3892] = {.lex_state = 96, .external_lex_state = 5}, [3893] = {.lex_state = 96, .external_lex_state = 5}, - [3894] = {.lex_state = 96, .external_lex_state = 5}, + [3894] = {.lex_state = 96, .external_lex_state = 2}, [3895] = {.lex_state = 96, .external_lex_state = 5}, - [3896] = {.lex_state = 96, .external_lex_state = 5}, + [3896] = {.lex_state = 96, .external_lex_state = 2}, [3897] = {.lex_state = 96, .external_lex_state = 5}, - [3898] = {.lex_state = 96, .external_lex_state = 5}, - [3899] = {.lex_state = 18, .external_lex_state = 8}, - [3900] = {.lex_state = 96, .external_lex_state = 2}, + [3898] = {.lex_state = 96, .external_lex_state = 2}, + [3899] = {.lex_state = 12, .external_lex_state = 2}, + [3900] = {.lex_state = 96, .external_lex_state = 5}, [3901] = {.lex_state = 96, .external_lex_state = 5}, [3902] = {.lex_state = 96, .external_lex_state = 5}, [3903] = {.lex_state = 96, .external_lex_state = 5}, - [3904] = {.lex_state = 96, .external_lex_state = 2}, + [3904] = {.lex_state = 96, .external_lex_state = 5}, [3905] = {.lex_state = 96, .external_lex_state = 5}, - [3906] = {.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}, + [3909] = {.lex_state = 18, .external_lex_state = 8}, [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 = 2}, - [3914] = {.lex_state = 96, .external_lex_state = 2}, - [3915] = {.lex_state = 96, .external_lex_state = 6}, - [3916] = {.lex_state = 96, .external_lex_state = 5}, - [3917] = {.lex_state = 96, .external_lex_state = 5}, - [3918] = {.lex_state = 15, .external_lex_state = 2}, + [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 = 2}, + [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}, + [3920] = {.lex_state = 96, .external_lex_state = 6}, + [3921] = {.lex_state = 96, .external_lex_state = 5}, + [3922] = {.lex_state = 96, .external_lex_state = 2}, [3923] = {.lex_state = 96, .external_lex_state = 5}, - [3924] = {.lex_state = 96, .external_lex_state = 5}, - [3925] = {.lex_state = 96, .external_lex_state = 5}, - [3926] = {.lex_state = 4, .external_lex_state = 2}, - [3927] = {.lex_state = 96, .external_lex_state = 5}, + [3924] = {.lex_state = 12, .external_lex_state = 2}, + [3925] = {.lex_state = 96, .external_lex_state = 2}, + [3926] = {.lex_state = 96, .external_lex_state = 2}, + [3927] = {.lex_state = 18, .external_lex_state = 8}, [3928] = {.lex_state = 96, .external_lex_state = 5}, [3929] = {.lex_state = 96, .external_lex_state = 5}, [3930] = {.lex_state = 96, .external_lex_state = 5}, [3931] = {.lex_state = 96, .external_lex_state = 5}, [3932] = {.lex_state = 96, .external_lex_state = 5}, [3933] = {.lex_state = 96, .external_lex_state = 5}, - [3934] = {.lex_state = 96, .external_lex_state = 5}, - [3935] = {.lex_state = 96, .external_lex_state = 6}, + [3934] = {.lex_state = 96, .external_lex_state = 2}, + [3935] = {.lex_state = 4, .external_lex_state = 2}, [3936] = {.lex_state = 96, .external_lex_state = 5}, [3937] = {.lex_state = 96, .external_lex_state = 5}, [3938] = {.lex_state = 96, .external_lex_state = 5}, [3939] = {.lex_state = 96, .external_lex_state = 5}, - [3940] = {.lex_state = 96, .external_lex_state = 6}, + [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 = 5}, - [3947] = {.lex_state = 96, .external_lex_state = 5}, - [3948] = {.lex_state = 96, .external_lex_state = 2}, - [3949] = {.lex_state = 96, .external_lex_state = 2}, + [3947] = {.lex_state = 96, .external_lex_state = 6}, + [3948] = {.lex_state = 96, .external_lex_state = 5}, + [3949] = {.lex_state = 96, .external_lex_state = 5}, [3950] = {.lex_state = 96, .external_lex_state = 5}, [3951] = {.lex_state = 96, .external_lex_state = 5}, - [3952] = {.lex_state = 96, .external_lex_state = 5}, - [3953] = {.lex_state = 96, .external_lex_state = 2}, + [3952] = {.lex_state = 96, .external_lex_state = 6}, + [3953] = {.lex_state = 96, .external_lex_state = 5}, [3954] = {.lex_state = 96, .external_lex_state = 5}, [3955] = {.lex_state = 96, .external_lex_state = 5}, - [3956] = {.lex_state = 96, .external_lex_state = 5}, - [3957] = {.lex_state = 96, .external_lex_state = 5}, - [3958] = {.lex_state = 96, .external_lex_state = 5}, - [3959] = {.lex_state = 96, .external_lex_state = 6}, - [3960] = {.lex_state = 96, .external_lex_state = 5}, + [3956] = {.lex_state = 96, .external_lex_state = 2}, + [3957] = {.lex_state = 96, .external_lex_state = 2}, + [3958] = {.lex_state = 96, .external_lex_state = 2}, + [3959] = {.lex_state = 96, .external_lex_state = 5}, + [3960] = {.lex_state = 12, .external_lex_state = 2}, [3961] = {.lex_state = 96, .external_lex_state = 5}, [3962] = {.lex_state = 96, .external_lex_state = 5}, - [3963] = {.lex_state = 14, .external_lex_state = 2}, + [3963] = {.lex_state = 96, .external_lex_state = 6}, [3964] = {.lex_state = 96, .external_lex_state = 5}, [3965] = {.lex_state = 96, .external_lex_state = 5}, - [3966] = {.lex_state = 96, .external_lex_state = 2}, + [3966] = {.lex_state = 96, .external_lex_state = 5}, [3967] = {.lex_state = 96, .external_lex_state = 5}, - [3968] = {.lex_state = 96, .external_lex_state = 5}, + [3968] = {.lex_state = 12, .external_lex_state = 2}, [3969] = {.lex_state = 96, .external_lex_state = 5}, [3970] = {.lex_state = 96, .external_lex_state = 5}, - [3971] = {.lex_state = 96, .external_lex_state = 5}, + [3971] = {.lex_state = 96, .external_lex_state = 2}, [3972] = {.lex_state = 96, .external_lex_state = 5}, [3973] = {.lex_state = 96, .external_lex_state = 5}, [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 = 14, .external_lex_state = 2}, + [3977] = {.lex_state = 96, .external_lex_state = 5}, [3978] = {.lex_state = 96, .external_lex_state = 5}, - [3979] = {.lex_state = 96, .external_lex_state = 5}, - [3980] = {.lex_state = 14, .external_lex_state = 2}, + [3979] = {.lex_state = 12, .external_lex_state = 2}, + [3980] = {.lex_state = 96, .external_lex_state = 5}, [3981] = {.lex_state = 96, .external_lex_state = 5}, - [3982] = {.lex_state = 14, .external_lex_state = 2}, + [3982] = {.lex_state = 96, .external_lex_state = 5}, [3983] = {.lex_state = 96, .external_lex_state = 5}, - [3984] = {.lex_state = 96, .external_lex_state = 5}, - [3985] = {.lex_state = 14, .external_lex_state = 2}, - [3986] = {.lex_state = 14, .external_lex_state = 2}, - [3987] = {.lex_state = 96, .external_lex_state = 5}, + [3984] = {.lex_state = 12, .external_lex_state = 2}, + [3985] = {.lex_state = 12, .external_lex_state = 2}, + [3986] = {.lex_state = 96, .external_lex_state = 5}, + [3987] = {.lex_state = 12, .external_lex_state = 2}, [3988] = {.lex_state = 96, .external_lex_state = 5}, - [3989] = {.lex_state = 96, .external_lex_state = 5}, + [3989] = {.lex_state = 12, .external_lex_state = 2}, [3990] = {.lex_state = 96, .external_lex_state = 5}, - [3991] = {.lex_state = 96, .external_lex_state = 5}, + [3991] = {.lex_state = 12, .external_lex_state = 2}, [3992] = {.lex_state = 96, .external_lex_state = 5}, [3993] = {.lex_state = 96, .external_lex_state = 5}, [3994] = {.lex_state = 96, .external_lex_state = 5}, [3995] = {.lex_state = 96, .external_lex_state = 5}, - [3996] = {.lex_state = 14, .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 = 5}, @@ -17093,43 +17117,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4001] = {.lex_state = 96, .external_lex_state = 5}, [4002] = {.lex_state = 96, .external_lex_state = 5}, [4003] = {.lex_state = 96, .external_lex_state = 5}, - [4004] = {.lex_state = 14, .external_lex_state = 2}, - [4005] = {.lex_state = 96, .external_lex_state = 5}, + [4004] = {.lex_state = 96, .external_lex_state = 5}, + [4005] = {.lex_state = 12, .external_lex_state = 2}, [4006] = {.lex_state = 96, .external_lex_state = 5}, - [4007] = {.lex_state = 96, .external_lex_state = 5}, + [4007] = {.lex_state = 96, .external_lex_state = 2}, [4008] = {.lex_state = 96, .external_lex_state = 5}, - [4009] = {.lex_state = 96, .external_lex_state = 5}, - [4010] = {.lex_state = 96, .external_lex_state = 5}, - [4011] = {.lex_state = 14, .external_lex_state = 2}, - [4012] = {.lex_state = 96, .external_lex_state = 5}, - [4013] = {.lex_state = 96, .external_lex_state = 5}, - [4014] = {.lex_state = 96, .external_lex_state = 5}, + [4009] = {.lex_state = 96, .external_lex_state = 2}, + [4010] = {.lex_state = 12, .external_lex_state = 2}, + [4011] = {.lex_state = 96, .external_lex_state = 5}, + [4012] = {.lex_state = 96, .external_lex_state = 2}, + [4013] = {.lex_state = 96, .external_lex_state = 2}, + [4014] = {.lex_state = 18, .external_lex_state = 8}, [4015] = {.lex_state = 96, .external_lex_state = 5}, - [4016] = {.lex_state = 96, .external_lex_state = 5}, - [4017] = {.lex_state = 14, .external_lex_state = 2}, - [4018] = {.lex_state = 96, .external_lex_state = 5}, - [4019] = {.lex_state = 96, .external_lex_state = 6}, - [4020] = {.lex_state = 96, .external_lex_state = 5}, + [4016] = {.lex_state = 96, .external_lex_state = 6}, + [4017] = {.lex_state = 96, .external_lex_state = 5}, + [4018] = {.lex_state = 18, .external_lex_state = 8}, + [4019] = {.lex_state = 96, .external_lex_state = 5}, + [4020] = {.lex_state = 96, .external_lex_state = 6}, [4021] = {.lex_state = 96, .external_lex_state = 5}, - [4022] = {.lex_state = 18, .external_lex_state = 8}, - [4023] = {.lex_state = 96, .external_lex_state = 5}, + [4022] = {.lex_state = 96, .external_lex_state = 5}, + [4023] = {.lex_state = 96, .external_lex_state = 2}, [4024] = {.lex_state = 96, .external_lex_state = 5}, [4025] = {.lex_state = 96, .external_lex_state = 2}, - [4026] = {.lex_state = 96, .external_lex_state = 5}, - [4027] = {.lex_state = 96, .external_lex_state = 6}, + [4026] = {.lex_state = 96, .external_lex_state = 2}, + [4027] = {.lex_state = 96, .external_lex_state = 5}, [4028] = {.lex_state = 96, .external_lex_state = 5}, - [4029] = {.lex_state = 14, .external_lex_state = 2}, - [4030] = {.lex_state = 18, .external_lex_state = 8}, + [4029] = {.lex_state = 96, .external_lex_state = 5}, + [4030] = {.lex_state = 96, .external_lex_state = 5}, [4031] = {.lex_state = 96, .external_lex_state = 5}, [4032] = {.lex_state = 96, .external_lex_state = 5}, - [4033] = {.lex_state = 96, .external_lex_state = 6}, - [4034] = {.lex_state = 96, .external_lex_state = 5}, + [4033] = {.lex_state = 96, .external_lex_state = 5}, + [4034] = {.lex_state = 18, .external_lex_state = 8}, [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 = 5}, - [4040] = {.lex_state = 96, .external_lex_state = 5}, + [4037] = {.lex_state = 18, .external_lex_state = 8}, + [4038] = {.lex_state = 12, .external_lex_state = 2}, + [4039] = {.lex_state = 12, .external_lex_state = 2}, + [4040] = {.lex_state = 96, .external_lex_state = 6}, [4041] = {.lex_state = 96, .external_lex_state = 5}, [4042] = {.lex_state = 96, .external_lex_state = 5}, [4043] = {.lex_state = 96, .external_lex_state = 5}, @@ -17140,165 +17164,165 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4048] = {.lex_state = 96, .external_lex_state = 5}, [4049] = {.lex_state = 96, .external_lex_state = 5}, [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 = 96, .external_lex_state = 5}, + [4051] = {.lex_state = 18, .external_lex_state = 8}, + [4052] = {.lex_state = 12, .external_lex_state = 2}, + [4053] = {.lex_state = 96, .external_lex_state = 2}, [4054] = {.lex_state = 96, .external_lex_state = 5}, - [4055] = {.lex_state = 96, .external_lex_state = 5}, + [4055] = {.lex_state = 18, .external_lex_state = 8}, [4056] = {.lex_state = 96, .external_lex_state = 5}, - [4057] = {.lex_state = 18, .external_lex_state = 8}, - [4058] = {.lex_state = 96, .external_lex_state = 5}, + [4057] = {.lex_state = 96, .external_lex_state = 5}, + [4058] = {.lex_state = 12, .external_lex_state = 2}, [4059] = {.lex_state = 96, .external_lex_state = 5}, [4060] = {.lex_state = 96, .external_lex_state = 5}, [4061] = {.lex_state = 96, .external_lex_state = 5}, [4062] = {.lex_state = 96, .external_lex_state = 5}, - [4063] = {.lex_state = 18, .external_lex_state = 8}, - [4064] = {.lex_state = 96, .external_lex_state = 5}, + [4063] = {.lex_state = 96, .external_lex_state = 5}, + [4064] = {.lex_state = 96, .external_lex_state = 2}, [4065] = {.lex_state = 96, .external_lex_state = 5}, - [4066] = {.lex_state = 96, .external_lex_state = 5}, + [4066] = {.lex_state = 96, .external_lex_state = 2}, [4067] = {.lex_state = 96, .external_lex_state = 5}, - [4068] = {.lex_state = 96, .external_lex_state = 5}, + [4068] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [4072] = {.lex_state = 12, .external_lex_state = 2}, [4073] = {.lex_state = 96, .external_lex_state = 5}, [4074] = {.lex_state = 96, .external_lex_state = 5}, - [4075] = {.lex_state = 14, .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 = 2}, + [4079] = {.lex_state = 96, .external_lex_state = 5}, [4080] = {.lex_state = 96, .external_lex_state = 5}, - [4081] = {.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 = 96, .external_lex_state = 5}, - [4085] = {.lex_state = 18, .external_lex_state = 8}, + [4085] = {.lex_state = 12, .external_lex_state = 2}, [4086] = {.lex_state = 96, .external_lex_state = 5}, [4087] = {.lex_state = 96, .external_lex_state = 5}, - [4088] = {.lex_state = 96, .external_lex_state = 2}, - [4089] = {.lex_state = 96, .external_lex_state = 2}, + [4088] = {.lex_state = 12, .external_lex_state = 2}, + [4089] = {.lex_state = 12, .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}, + [4091] = {.lex_state = 96, .external_lex_state = 2}, + [4092] = {.lex_state = 12, .external_lex_state = 2}, [4093] = {.lex_state = 96, .external_lex_state = 5}, - [4094] = {.lex_state = 96, .external_lex_state = 5}, - [4095] = {.lex_state = 96, .external_lex_state = 5}, - [4096] = {.lex_state = 96, .external_lex_state = 5}, + [4094] = {.lex_state = 12, .external_lex_state = 2}, + [4095] = {.lex_state = 96, .external_lex_state = 2}, + [4096] = {.lex_state = 12, .external_lex_state = 2}, [4097] = {.lex_state = 96, .external_lex_state = 5}, - [4098] = {.lex_state = 96, .external_lex_state = 5}, - [4099] = {.lex_state = 96, .external_lex_state = 2}, - [4100] = {.lex_state = 96, .external_lex_state = 5}, + [4098] = {.lex_state = 12, .external_lex_state = 2}, + [4099] = {.lex_state = 96, .external_lex_state = 5}, + [4100] = {.lex_state = 12, .external_lex_state = 2}, [4101] = {.lex_state = 96, .external_lex_state = 5}, [4102] = {.lex_state = 96, .external_lex_state = 5}, - [4103] = {.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 = 2}, - [4106] = {.lex_state = 96, .external_lex_state = 2}, - [4107] = {.lex_state = 18, .external_lex_state = 8}, + [4106] = {.lex_state = 96, .external_lex_state = 5}, + [4107] = {.lex_state = 96, .external_lex_state = 2}, [4108] = {.lex_state = 96, .external_lex_state = 5}, - [4109] = {.lex_state = 18, .external_lex_state = 8}, - [4110] = {.lex_state = 96, .external_lex_state = 2}, + [4109] = {.lex_state = 96, .external_lex_state = 5}, + [4110] = {.lex_state = 96, .external_lex_state = 5}, [4111] = {.lex_state = 96, .external_lex_state = 5}, - [4112] = {.lex_state = 96, .external_lex_state = 5}, + [4112] = {.lex_state = 18, .external_lex_state = 8}, [4113] = {.lex_state = 96, .external_lex_state = 5}, - [4114] = {.lex_state = 96, .external_lex_state = 5}, - [4115] = {.lex_state = 96, .external_lex_state = 5}, - [4116] = {.lex_state = 96, .external_lex_state = 5}, - [4117] = {.lex_state = 96, .external_lex_state = 5}, + [4114] = {.lex_state = 12, .external_lex_state = 2}, + [4115] = {.lex_state = 12, .external_lex_state = 2}, + [4116] = {.lex_state = 12, .external_lex_state = 2}, + [4117] = {.lex_state = 12, .external_lex_state = 2}, [4118] = {.lex_state = 96, .external_lex_state = 5}, - [4119] = {.lex_state = 14, .external_lex_state = 2}, - [4120] = {.lex_state = 96, .external_lex_state = 2}, + [4119] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 96, .external_lex_state = 5}, + [4122] = {.lex_state = 96, .external_lex_state = 2}, + [4123] = {.lex_state = 96, .external_lex_state = 2}, [4124] = {.lex_state = 96, .external_lex_state = 5}, - [4125] = {.lex_state = 96, .external_lex_state = 2}, - [4126] = {.lex_state = 96, .external_lex_state = 2}, - [4127] = {.lex_state = 14, .external_lex_state = 2}, + [4125] = {.lex_state = 12, .external_lex_state = 2}, + [4126] = {.lex_state = 12, .external_lex_state = 2}, + [4127] = {.lex_state = 96, .external_lex_state = 2}, [4128] = {.lex_state = 96, .external_lex_state = 5}, [4129] = {.lex_state = 96, .external_lex_state = 5}, - [4130] = {.lex_state = 14, .external_lex_state = 2}, + [4130] = {.lex_state = 96, .external_lex_state = 2}, [4131] = {.lex_state = 96, .external_lex_state = 5}, - [4132] = {.lex_state = 96, .external_lex_state = 5}, - [4133] = {.lex_state = 96, .external_lex_state = 5}, - [4134] = {.lex_state = 14, .external_lex_state = 2}, - [4135] = {.lex_state = 14, .external_lex_state = 2}, - [4136] = {.lex_state = 96, .external_lex_state = 5}, - [4137] = {.lex_state = 96, .external_lex_state = 2}, - [4138] = {.lex_state = 96, .external_lex_state = 5}, - [4139] = {.lex_state = 96, .external_lex_state = 5}, + [4132] = {.lex_state = 12, .external_lex_state = 2}, + [4133] = {.lex_state = 12, .external_lex_state = 2}, + [4134] = {.lex_state = 96, .external_lex_state = 5}, + [4135] = {.lex_state = 12, .external_lex_state = 2}, + [4136] = {.lex_state = 96, .external_lex_state = 2}, + [4137] = {.lex_state = 18, .external_lex_state = 8}, + [4138] = {.lex_state = 12, .external_lex_state = 2}, + [4139] = {.lex_state = 96, .external_lex_state = 2}, [4140] = {.lex_state = 96, .external_lex_state = 5}, - [4141] = {.lex_state = 96, .external_lex_state = 5}, + [4141] = {.lex_state = 96, .external_lex_state = 2}, [4142] = {.lex_state = 96, .external_lex_state = 5}, - [4143] = {.lex_state = 14, .external_lex_state = 2}, + [4143] = {.lex_state = 12, .external_lex_state = 2}, [4144] = {.lex_state = 96, .external_lex_state = 5}, [4145] = {.lex_state = 96, .external_lex_state = 5}, - [4146] = {.lex_state = 96, .external_lex_state = 5}, + [4146] = {.lex_state = 96, .external_lex_state = 6}, [4147] = {.lex_state = 96, .external_lex_state = 5}, - [4148] = {.lex_state = 14, .external_lex_state = 2}, - [4149] = {.lex_state = 14, .external_lex_state = 2}, - [4150] = {.lex_state = 14, .external_lex_state = 2}, - [4151] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 14, .external_lex_state = 2}, - [4155] = {.lex_state = 96, .external_lex_state = 2}, + [4153] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 14, .external_lex_state = 2}, - [4158] = {.lex_state = 14, .external_lex_state = 2}, + [4157] = {.lex_state = 96, .external_lex_state = 2}, + [4158] = {.lex_state = 96, .external_lex_state = 2}, [4159] = {.lex_state = 96, .external_lex_state = 5}, - [4160] = {.lex_state = 14, .external_lex_state = 2}, - [4161] = {.lex_state = 96, .external_lex_state = 5}, - [4162] = {.lex_state = 96, .external_lex_state = 5}, - [4163] = {.lex_state = 14, .external_lex_state = 2}, - [4164] = {.lex_state = 96, .external_lex_state = 6}, - [4165] = {.lex_state = 14, .external_lex_state = 2}, + [4160] = {.lex_state = 96, .external_lex_state = 5}, + [4161] = {.lex_state = 12, .external_lex_state = 2}, + [4162] = {.lex_state = 12, .external_lex_state = 2}, + [4163] = {.lex_state = 15, .external_lex_state = 2}, + [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 = 14, .external_lex_state = 2}, - [4168] = {.lex_state = 96, .external_lex_state = 5}, - [4169] = {.lex_state = 14, .external_lex_state = 2}, - [4170] = {.lex_state = 96, .external_lex_state = 5}, + [4167] = {.lex_state = 96, .external_lex_state = 2}, + [4168] = {.lex_state = 96, .external_lex_state = 2}, + [4169] = {.lex_state = 12, .external_lex_state = 2}, + [4170] = {.lex_state = 12, .external_lex_state = 2}, [4171] = {.lex_state = 96, .external_lex_state = 5}, - [4172] = {.lex_state = 14, .external_lex_state = 2}, - [4173] = {.lex_state = 96, .external_lex_state = 5}, - [4174] = {.lex_state = 96, .external_lex_state = 2}, - [4175] = {.lex_state = 96, .external_lex_state = 5}, + [4172] = {.lex_state = 12, .external_lex_state = 2}, + [4173] = {.lex_state = 12, .external_lex_state = 2}, + [4174] = {.lex_state = 96, .external_lex_state = 5}, + [4175] = {.lex_state = 12, .external_lex_state = 2}, [4176] = {.lex_state = 96, .external_lex_state = 5}, - [4177] = {.lex_state = 14, .external_lex_state = 2}, - [4178] = {.lex_state = 96, .external_lex_state = 5}, - [4179] = {.lex_state = 14, .external_lex_state = 2}, - [4180] = {.lex_state = 96, .external_lex_state = 5}, - [4181] = {.lex_state = 14, .external_lex_state = 2}, - [4182] = {.lex_state = 96, .external_lex_state = 2}, - [4183] = {.lex_state = 96, .external_lex_state = 2}, - [4184] = {.lex_state = 4, .external_lex_state = 2}, + [4177] = {.lex_state = 96, .external_lex_state = 2}, + [4178] = {.lex_state = 12, .external_lex_state = 2}, + [4179] = {.lex_state = 96, .external_lex_state = 2}, + [4180] = {.lex_state = 12, .external_lex_state = 2}, + [4181] = {.lex_state = 4, .external_lex_state = 2}, + [4182] = {.lex_state = 96, .external_lex_state = 5}, + [4183] = {.lex_state = 96, .external_lex_state = 5}, + [4184] = {.lex_state = 96, .external_lex_state = 2}, [4185] = {.lex_state = 96, .external_lex_state = 5}, [4186] = {.lex_state = 96, .external_lex_state = 5}, [4187] = {.lex_state = 96, .external_lex_state = 5}, [4188] = {.lex_state = 96, .external_lex_state = 5}, - [4189] = {.lex_state = 96, .external_lex_state = 5}, + [4189] = {.lex_state = 12, .external_lex_state = 2}, [4190] = {.lex_state = 96, .external_lex_state = 5}, - [4191] = {.lex_state = 14, .external_lex_state = 2}, - [4192] = {.lex_state = 14, .external_lex_state = 2}, - [4193] = {.lex_state = 96, .external_lex_state = 2}, - [4194] = {.lex_state = 96, .external_lex_state = 2}, - [4195] = {.lex_state = 96, .external_lex_state = 2}, - [4196] = {.lex_state = 14, .external_lex_state = 2}, - [4197] = {.lex_state = 96, .external_lex_state = 2}, - [4198] = {.lex_state = 14, .external_lex_state = 2}, - [4199] = {.lex_state = 96, .external_lex_state = 2}, - [4200] = {.lex_state = 14, .external_lex_state = 2}, + [4191] = {.lex_state = 12, .external_lex_state = 2}, + [4192] = {.lex_state = 96, .external_lex_state = 6}, + [4193] = {.lex_state = 96, .external_lex_state = 5}, + [4194] = {.lex_state = 96, .external_lex_state = 5}, + [4195] = {.lex_state = 96, .external_lex_state = 5}, + [4196] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 14, .external_lex_state = 2}, + [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 = 96, .external_lex_state = 5}, - [4207] = {.lex_state = 14, .external_lex_state = 2}, + [4207] = {.lex_state = 96, .external_lex_state = 5}, [4208] = {.lex_state = 96, .external_lex_state = 5}, - [4209] = {.lex_state = 18, .external_lex_state = 8}, + [4209] = {.lex_state = 96, .external_lex_state = 5}, [4210] = {.lex_state = 96, .external_lex_state = 5}, [4211] = {.lex_state = 96, .external_lex_state = 5}, [4212] = {.lex_state = 96, .external_lex_state = 5}, @@ -17312,15 +17336,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, + [4223] = {.lex_state = 96, .external_lex_state = 5}, [4224] = {.lex_state = 96, .external_lex_state = 5}, - [4225] = {.lex_state = 96, .external_lex_state = 2}, - [4226] = {.lex_state = 14, .external_lex_state = 2}, - [4227] = {.lex_state = 14, .external_lex_state = 2}, + [4225] = {.lex_state = 96, .external_lex_state = 5}, + [4226] = {.lex_state = 96, .external_lex_state = 5}, + [4227] = {.lex_state = 96, .external_lex_state = 5}, [4228] = {.lex_state = 96, .external_lex_state = 5}, - [4229] = {.lex_state = 14, .external_lex_state = 2}, - [4230] = {.lex_state = 96, .external_lex_state = 6}, - [4231] = {.lex_state = 96, .external_lex_state = 5}, + [4229] = {.lex_state = 96, .external_lex_state = 5}, + [4230] = {.lex_state = 96, .external_lex_state = 5}, + [4231] = {.lex_state = 12, .external_lex_state = 2}, [4232] = {.lex_state = 96, .external_lex_state = 5}, [4233] = {.lex_state = 96, .external_lex_state = 5}, [4234] = {.lex_state = 96, .external_lex_state = 5}, @@ -17329,86 +17353,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4237] = {.lex_state = 96, .external_lex_state = 5}, [4238] = {.lex_state = 96, .external_lex_state = 5}, [4239] = {.lex_state = 96, .external_lex_state = 5}, - [4240] = {.lex_state = 14, .external_lex_state = 2}, + [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}, + [4244] = {.lex_state = 96, .external_lex_state = 6}, [4245] = {.lex_state = 96, .external_lex_state = 5}, [4246] = {.lex_state = 96, .external_lex_state = 5}, - [4247] = {.lex_state = 96, .external_lex_state = 5}, + [4247] = {.lex_state = 12, .external_lex_state = 2}, [4248] = {.lex_state = 96, .external_lex_state = 5}, [4249] = {.lex_state = 96, .external_lex_state = 5}, - [4250] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, + [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 = 2}, - [4258] = {.lex_state = 96, .external_lex_state = 2}, - [4259] = {.lex_state = 14, .external_lex_state = 2}, - [4260] = {.lex_state = 14, .external_lex_state = 2}, - [4261] = {.lex_state = 14, .external_lex_state = 2}, - [4262] = {.lex_state = 96, .external_lex_state = 2}, + [4256] = {.lex_state = 96, .external_lex_state = 2}, + [4257] = {.lex_state = 12, .external_lex_state = 2}, + [4258] = {.lex_state = 12, .external_lex_state = 2}, + [4259] = {.lex_state = 96, .external_lex_state = 6}, + [4260] = {.lex_state = 96, .external_lex_state = 5}, + [4261] = {.lex_state = 96, .external_lex_state = 5}, + [4262] = {.lex_state = 12, .external_lex_state = 2}, [4263] = {.lex_state = 96, .external_lex_state = 5}, - [4264] = {.lex_state = 14, .external_lex_state = 2}, - [4265] = {.lex_state = 96, .external_lex_state = 5}, - [4266] = {.lex_state = 14, .external_lex_state = 2}, - [4267] = {.lex_state = 14, .external_lex_state = 2}, - [4268] = {.lex_state = 14, .external_lex_state = 2}, - [4269] = {.lex_state = 14, .external_lex_state = 2}, + [4264] = {.lex_state = 96, .external_lex_state = 5}, + [4265] = {.lex_state = 12, .external_lex_state = 2}, + [4266] = {.lex_state = 18, .external_lex_state = 8}, + [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 = 96, .external_lex_state = 2}, - [4272] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, - [4275] = {.lex_state = 14, .external_lex_state = 2}, + [4274] = {.lex_state = 96, .external_lex_state = 6}, + [4275] = {.lex_state = 96, .external_lex_state = 6}, [4276] = {.lex_state = 96, .external_lex_state = 5}, - [4277] = {.lex_state = 96, .external_lex_state = 5}, - [4278] = {.lex_state = 96, .external_lex_state = 2}, - [4279] = {.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 = 6}, [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 = 2}, + [4282] = {.lex_state = 12, .external_lex_state = 2}, + [4283] = {.lex_state = 96, .external_lex_state = 5}, [4284] = {.lex_state = 96, .external_lex_state = 5}, - [4285] = {.lex_state = 96, .external_lex_state = 6}, - [4286] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 14, .external_lex_state = 2}, + [4288] = {.lex_state = 96, .external_lex_state = 5}, [4289] = {.lex_state = 96, .external_lex_state = 5}, - [4290] = {.lex_state = 96, .external_lex_state = 2}, - [4291] = {.lex_state = 96, .external_lex_state = 2}, - [4292] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 2}, + [4294] = {.lex_state = 96, .external_lex_state = 5}, [4295] = {.lex_state = 96, .external_lex_state = 5}, [4296] = {.lex_state = 96, .external_lex_state = 5}, - [4297] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 5}, - [4301] = {.lex_state = 96, .external_lex_state = 5}, - [4302] = {.lex_state = 14, .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 = 2}, - [4306] = {.lex_state = 96, .external_lex_state = 2}, - [4307] = {.lex_state = 96, .external_lex_state = 5}, - [4308] = {.lex_state = 96, .external_lex_state = 5}, + [4301] = {.lex_state = 12, .external_lex_state = 2}, + [4302] = {.lex_state = 96, .external_lex_state = 5}, + [4303] = {.lex_state = 96, .external_lex_state = 2}, + [4304] = {.lex_state = 96, .external_lex_state = 2}, + [4305] = {.lex_state = 12, .external_lex_state = 2}, + [4306] = {.lex_state = 96, .external_lex_state = 5}, + [4307] = {.lex_state = 96, .external_lex_state = 2}, + [4308] = {.lex_state = 96, .external_lex_state = 2}, [4309] = {.lex_state = 96, .external_lex_state = 5}, - [4310] = {.lex_state = 96, .external_lex_state = 5}, + [4310] = {.lex_state = 96, .external_lex_state = 2}, [4311] = {.lex_state = 96, .external_lex_state = 5}, [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 = 2}, + [4315] = {.lex_state = 96, .external_lex_state = 5}, [4316] = {.lex_state = 96, .external_lex_state = 5}, - [4317] = {.lex_state = 14, .external_lex_state = 2}, + [4317] = {.lex_state = 96, .external_lex_state = 5}, [4318] = {.lex_state = 96, .external_lex_state = 5}, - [4319] = {.lex_state = 14, .external_lex_state = 2}, + [4319] = {.lex_state = 96, .external_lex_state = 5}, [4320] = {.lex_state = 96, .external_lex_state = 5}, [4321] = {.lex_state = 96, .external_lex_state = 5}, [4322] = {.lex_state = 96, .external_lex_state = 5}, @@ -17421,271 +17445,271 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4329] = {.lex_state = 96, .external_lex_state = 5}, [4330] = {.lex_state = 96, .external_lex_state = 5}, [4331] = {.lex_state = 96, .external_lex_state = 5}, - [4332] = {.lex_state = 96, .external_lex_state = 5}, - [4333] = {.lex_state = 14, .external_lex_state = 2}, + [4332] = {.lex_state = 12, .external_lex_state = 2}, + [4333] = {.lex_state = 12, .external_lex_state = 2}, [4334] = {.lex_state = 96, .external_lex_state = 5}, - [4335] = {.lex_state = 96, .external_lex_state = 5}, + [4335] = {.lex_state = 12, .external_lex_state = 2}, [4336] = {.lex_state = 96, .external_lex_state = 5}, - [4337] = {.lex_state = 96, .external_lex_state = 5}, + [4337] = {.lex_state = 12, .external_lex_state = 2}, [4338] = {.lex_state = 96, .external_lex_state = 5}, [4339] = {.lex_state = 96, .external_lex_state = 5}, - [4340] = {.lex_state = 96, .external_lex_state = 2}, - [4341] = {.lex_state = 96, .external_lex_state = 2}, - [4342] = {.lex_state = 96, .external_lex_state = 2}, - [4343] = {.lex_state = 96, .external_lex_state = 2}, + [4340] = {.lex_state = 96, .external_lex_state = 5}, + [4341] = {.lex_state = 96, .external_lex_state = 5}, + [4342] = {.lex_state = 96, .external_lex_state = 5}, + [4343] = {.lex_state = 96, .external_lex_state = 5}, [4344] = {.lex_state = 96, .external_lex_state = 5}, - [4345] = {.lex_state = 14, .external_lex_state = 2}, - [4346] = {.lex_state = 14, .external_lex_state = 2}, - [4347] = {.lex_state = 21, .external_lex_state = 9}, - [4348] = {.lex_state = 14, .external_lex_state = 2}, - [4349] = {.lex_state = 96, .external_lex_state = 2}, - [4350] = {.lex_state = 14, .external_lex_state = 2}, + [4345] = {.lex_state = 96, .external_lex_state = 5}, + [4346] = {.lex_state = 96, .external_lex_state = 5}, + [4347] = {.lex_state = 96, .external_lex_state = 2}, + [4348] = {.lex_state = 96, .external_lex_state = 5}, + [4349] = {.lex_state = 96, .external_lex_state = 5}, + [4350] = {.lex_state = 96, .external_lex_state = 5}, [4351] = {.lex_state = 96, .external_lex_state = 5}, - [4352] = {.lex_state = 96, .external_lex_state = 2}, - [4353] = {.lex_state = 96, .external_lex_state = 2}, - [4354] = {.lex_state = 96, .external_lex_state = 2}, - [4355] = {.lex_state = 17, .external_lex_state = 9}, - [4356] = {.lex_state = 21, .external_lex_state = 9}, - [4357] = {.lex_state = 96, .external_lex_state = 2}, - [4358] = {.lex_state = 17, .external_lex_state = 9}, + [4352] = {.lex_state = 96, .external_lex_state = 5}, + [4353] = {.lex_state = 12, .external_lex_state = 2}, + [4354] = {.lex_state = 12, .external_lex_state = 2}, + [4355] = {.lex_state = 4, .external_lex_state = 2}, + [4356] = {.lex_state = 4, .external_lex_state = 2}, + [4357] = {.lex_state = 17, .external_lex_state = 9}, + [4358] = {.lex_state = 96, .external_lex_state = 2}, [4359] = {.lex_state = 21, .external_lex_state = 9}, - [4360] = {.lex_state = 96, .external_lex_state = 2}, - [4361] = {.lex_state = 96, .external_lex_state = 2}, + [4360] = {.lex_state = 17, .external_lex_state = 9}, + [4361] = {.lex_state = 21, .external_lex_state = 9}, [4362] = {.lex_state = 96, .external_lex_state = 2}, - [4363] = {.lex_state = 4, .external_lex_state = 2}, - [4364] = {.lex_state = 4, .external_lex_state = 2}, - [4365] = {.lex_state = 4, .external_lex_state = 2}, + [4363] = {.lex_state = 96, .external_lex_state = 6}, + [4364] = {.lex_state = 96, .external_lex_state = 2}, + [4365] = {.lex_state = 96, .external_lex_state = 2}, [4366] = {.lex_state = 96, .external_lex_state = 2}, - [4367] = {.lex_state = 96, .external_lex_state = 2}, + [4367] = {.lex_state = 17, .external_lex_state = 9}, [4368] = {.lex_state = 96, .external_lex_state = 2}, - [4369] = {.lex_state = 4, .external_lex_state = 2}, - [4370] = {.lex_state = 17, .external_lex_state = 9}, - [4371] = {.lex_state = 21, .external_lex_state = 9}, + [4369] = {.lex_state = 96, .external_lex_state = 2}, + [4370] = {.lex_state = 21, .external_lex_state = 9}, + [4371] = {.lex_state = 18, .external_lex_state = 7}, [4372] = {.lex_state = 96, .external_lex_state = 2}, - [4373] = {.lex_state = 17, .external_lex_state = 9}, - [4374] = {.lex_state = 96, .external_lex_state = 2}, - [4375] = {.lex_state = 96, .external_lex_state = 2}, - [4376] = {.lex_state = 96, .external_lex_state = 5}, - [4377] = {.lex_state = 96, .external_lex_state = 5}, - [4378] = {.lex_state = 96, .external_lex_state = 5}, - [4379] = {.lex_state = 96, .external_lex_state = 2}, - [4380] = {.lex_state = 96, .external_lex_state = 2}, - [4381] = {.lex_state = 96, .external_lex_state = 5}, + [4373] = {.lex_state = 96, .external_lex_state = 5}, + [4374] = {.lex_state = 12, .external_lex_state = 2}, + [4375] = {.lex_state = 4, .external_lex_state = 2}, + [4376] = {.lex_state = 96, .external_lex_state = 2}, + [4377] = {.lex_state = 12, .external_lex_state = 2}, + [4378] = {.lex_state = 12, .external_lex_state = 2}, + [4379] = {.lex_state = 12, .external_lex_state = 2}, + [4380] = {.lex_state = 17, .external_lex_state = 9}, + [4381] = {.lex_state = 96, .external_lex_state = 2}, [4382] = {.lex_state = 96, .external_lex_state = 2}, - [4383] = {.lex_state = 96, .external_lex_state = 5}, - [4384] = {.lex_state = 96, .external_lex_state = 2}, - [4385] = {.lex_state = 96, .external_lex_state = 2}, + [4383] = {.lex_state = 4, .external_lex_state = 2}, + [4384] = {.lex_state = 12, .external_lex_state = 2}, + [4385] = {.lex_state = 21, .external_lex_state = 9}, [4386] = {.lex_state = 96, .external_lex_state = 2}, - [4387] = {.lex_state = 96, .external_lex_state = 5}, + [4387] = {.lex_state = 96, .external_lex_state = 2}, [4388] = {.lex_state = 96, .external_lex_state = 2}, - [4389] = {.lex_state = 96, .external_lex_state = 5}, + [4389] = {.lex_state = 96, .external_lex_state = 2}, [4390] = {.lex_state = 96, .external_lex_state = 2}, - [4391] = {.lex_state = 96, .external_lex_state = 2}, - [4392] = {.lex_state = 96, .external_lex_state = 2}, - [4393] = {.lex_state = 96, .external_lex_state = 2}, - [4394] = {.lex_state = 96, .external_lex_state = 5}, - [4395] = {.lex_state = 96, .external_lex_state = 2}, + [4391] = {.lex_state = 96, .external_lex_state = 5}, + [4392] = {.lex_state = 96, .external_lex_state = 5}, + [4393] = {.lex_state = 17, .external_lex_state = 9}, + [4394] = {.lex_state = 17, .external_lex_state = 9}, + [4395] = {.lex_state = 12, .external_lex_state = 2}, [4396] = {.lex_state = 96, .external_lex_state = 2}, - [4397] = {.lex_state = 14, .external_lex_state = 2}, + [4397] = {.lex_state = 96, .external_lex_state = 2}, [4398] = {.lex_state = 96, .external_lex_state = 2}, - [4399] = {.lex_state = 14, .external_lex_state = 2}, - [4400] = {.lex_state = 96, .external_lex_state = 2}, + [4399] = {.lex_state = 21, .external_lex_state = 9}, + [4400] = {.lex_state = 12, .external_lex_state = 2}, [4401] = {.lex_state = 96, .external_lex_state = 2}, [4402] = {.lex_state = 96, .external_lex_state = 2}, - [4403] = {.lex_state = 96, .external_lex_state = 5}, + [4403] = {.lex_state = 17, .external_lex_state = 9}, [4404] = {.lex_state = 96, .external_lex_state = 2}, - [4405] = {.lex_state = 96, .external_lex_state = 2}, - [4406] = {.lex_state = 17, .external_lex_state = 9}, - [4407] = {.lex_state = 21, .external_lex_state = 9}, - [4408] = {.lex_state = 14, .external_lex_state = 2}, - [4409] = {.lex_state = 14, .external_lex_state = 2}, - [4410] = {.lex_state = 14, .external_lex_state = 2}, - [4411] = {.lex_state = 96, .external_lex_state = 5}, - [4412] = {.lex_state = 96, .external_lex_state = 5}, - [4413] = {.lex_state = 14, .external_lex_state = 2}, + [4405] = {.lex_state = 21, .external_lex_state = 9}, + [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 = 12, .external_lex_state = 2}, + [4411] = {.lex_state = 17, .external_lex_state = 9}, + [4412] = {.lex_state = 21, .external_lex_state = 9}, + [4413] = {.lex_state = 96, .external_lex_state = 2}, [4414] = {.lex_state = 96, .external_lex_state = 2}, - [4415] = {.lex_state = 14, .external_lex_state = 2}, + [4415] = {.lex_state = 96, .external_lex_state = 2}, [4416] = {.lex_state = 17, .external_lex_state = 9}, [4417] = {.lex_state = 21, .external_lex_state = 9}, - [4418] = {.lex_state = 96, .external_lex_state = 2}, + [4418] = {.lex_state = 12, .external_lex_state = 2}, [4419] = {.lex_state = 96, .external_lex_state = 2}, [4420] = {.lex_state = 96, .external_lex_state = 2}, - [4421] = {.lex_state = 14, .external_lex_state = 2}, - [4422] = {.lex_state = 96, .external_lex_state = 2}, - [4423] = {.lex_state = 17, .external_lex_state = 9}, - [4424] = {.lex_state = 4, .external_lex_state = 2}, + [4421] = {.lex_state = 12, .external_lex_state = 2}, + [4422] = {.lex_state = 12, .external_lex_state = 2}, + [4423] = {.lex_state = 12, .external_lex_state = 2}, + [4424] = {.lex_state = 96, .external_lex_state = 2}, [4425] = {.lex_state = 96, .external_lex_state = 2}, - [4426] = {.lex_state = 21, .external_lex_state = 9}, - [4427] = {.lex_state = 96, .external_lex_state = 5}, - [4428] = {.lex_state = 17, .external_lex_state = 9}, - [4429] = {.lex_state = 21, .external_lex_state = 9}, - [4430] = {.lex_state = 96, .external_lex_state = 5}, - [4431] = {.lex_state = 96, .external_lex_state = 5}, - [4432] = {.lex_state = 96, .external_lex_state = 2}, - [4433] = {.lex_state = 17, .external_lex_state = 9}, - [4434] = {.lex_state = 21, .external_lex_state = 9}, - [4435] = {.lex_state = 96, .external_lex_state = 5}, - [4436] = {.lex_state = 17, .external_lex_state = 9}, + [4426] = {.lex_state = 4, .external_lex_state = 2}, + [4427] = {.lex_state = 96, .external_lex_state = 2}, + [4428] = {.lex_state = 96, .external_lex_state = 5}, + [4429] = {.lex_state = 96, .external_lex_state = 5}, + [4430] = {.lex_state = 17, .external_lex_state = 9}, + [4431] = {.lex_state = 96, .external_lex_state = 2}, + [4432] = {.lex_state = 12, .external_lex_state = 2}, + [4433] = {.lex_state = 96, .external_lex_state = 2}, + [4434] = {.lex_state = 12, .external_lex_state = 2}, + [4435] = {.lex_state = 96, .external_lex_state = 2}, + [4436] = {.lex_state = 96, .external_lex_state = 2}, [4437] = {.lex_state = 96, .external_lex_state = 5}, - [4438] = {.lex_state = 96, .external_lex_state = 5}, - [4439] = {.lex_state = 96, .external_lex_state = 6}, - [4440] = {.lex_state = 21, .external_lex_state = 9}, - [4441] = {.lex_state = 14, .external_lex_state = 2}, - [4442] = {.lex_state = 96, .external_lex_state = 5}, - [4443] = {.lex_state = 21, .external_lex_state = 9}, - [4444] = {.lex_state = 96, .external_lex_state = 2}, - [4445] = {.lex_state = 96, .external_lex_state = 2}, - [4446] = {.lex_state = 14, .external_lex_state = 2}, - [4447] = {.lex_state = 14, .external_lex_state = 2}, - [4448] = {.lex_state = 14, .external_lex_state = 2}, - [4449] = {.lex_state = 96, .external_lex_state = 5}, + [4438] = {.lex_state = 12, .external_lex_state = 2}, + [4439] = {.lex_state = 96, .external_lex_state = 2}, + [4440] = {.lex_state = 96, .external_lex_state = 5}, + [4441] = {.lex_state = 96, .external_lex_state = 5}, + [4442] = {.lex_state = 96, .external_lex_state = 2}, + [4443] = {.lex_state = 96, .external_lex_state = 2}, + [4444] = {.lex_state = 17, .external_lex_state = 9}, + [4445] = {.lex_state = 18, .external_lex_state = 7}, + [4446] = {.lex_state = 21, .external_lex_state = 9}, + [4447] = {.lex_state = 17, .external_lex_state = 9}, + [4448] = {.lex_state = 21, .external_lex_state = 9}, + [4449] = {.lex_state = 12, .external_lex_state = 2}, [4450] = {.lex_state = 96, .external_lex_state = 2}, [4451] = {.lex_state = 96, .external_lex_state = 2}, - [4452] = {.lex_state = 96, .external_lex_state = 2}, - [4453] = {.lex_state = 96, .external_lex_state = 2}, - [4454] = {.lex_state = 96, .external_lex_state = 2}, - [4455] = {.lex_state = 96, .external_lex_state = 2}, - [4456] = {.lex_state = 96, .external_lex_state = 2}, - [4457] = {.lex_state = 96, .external_lex_state = 2}, - [4458] = {.lex_state = 14, .external_lex_state = 2}, + [4452] = {.lex_state = 12, .external_lex_state = 2}, + [4453] = {.lex_state = 12, .external_lex_state = 2}, + [4454] = {.lex_state = 12, .external_lex_state = 2}, + [4455] = {.lex_state = 21, .external_lex_state = 9}, + [4456] = {.lex_state = 17, .external_lex_state = 9}, + [4457] = {.lex_state = 96, .external_lex_state = 5}, + [4458] = {.lex_state = 21, .external_lex_state = 9}, [4459] = {.lex_state = 96, .external_lex_state = 2}, - [4460] = {.lex_state = 17, .external_lex_state = 9}, - [4461] = {.lex_state = 96, .external_lex_state = 2}, - [4462] = {.lex_state = 14, .external_lex_state = 2}, + [4460] = {.lex_state = 96, .external_lex_state = 2}, + [4461] = {.lex_state = 21, .external_lex_state = 9}, + [4462] = {.lex_state = 17, .external_lex_state = 9}, [4463] = {.lex_state = 21, .external_lex_state = 9}, - [4464] = {.lex_state = 14, .external_lex_state = 2}, + [4464] = {.lex_state = 17, .external_lex_state = 9}, [4465] = {.lex_state = 96, .external_lex_state = 2}, - [4466] = {.lex_state = 17, .external_lex_state = 9}, - [4467] = {.lex_state = 17, .external_lex_state = 9}, - [4468] = {.lex_state = 21, .external_lex_state = 9}, - [4469] = {.lex_state = 17, .external_lex_state = 9}, - [4470] = {.lex_state = 18, .external_lex_state = 7}, - [4471] = {.lex_state = 17, .external_lex_state = 9}, - [4472] = {.lex_state = 14, .external_lex_state = 2}, - [4473] = {.lex_state = 21, .external_lex_state = 9}, - [4474] = {.lex_state = 14, .external_lex_state = 2}, + [4466] = {.lex_state = 96, .external_lex_state = 2}, + [4467] = {.lex_state = 21, .external_lex_state = 9}, + [4468] = {.lex_state = 96, .external_lex_state = 5}, + [4469] = {.lex_state = 96, .external_lex_state = 5}, + [4470] = {.lex_state = 96, .external_lex_state = 2}, + [4471] = {.lex_state = 96, .external_lex_state = 2}, + [4472] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 21, .external_lex_state = 9}, - [4477] = {.lex_state = 14, .external_lex_state = 2}, + [4476] = {.lex_state = 96, .external_lex_state = 5}, + [4477] = {.lex_state = 96, .external_lex_state = 2}, [4478] = {.lex_state = 96, .external_lex_state = 2}, - [4479] = {.lex_state = 14, .external_lex_state = 2}, - [4480] = {.lex_state = 18, .external_lex_state = 7}, + [4479] = {.lex_state = 96, .external_lex_state = 5}, + [4480] = {.lex_state = 96, .external_lex_state = 2}, [4481] = {.lex_state = 96, .external_lex_state = 5}, - [4482] = {.lex_state = 96, .external_lex_state = 5}, - [4483] = {.lex_state = 96, .external_lex_state = 2}, + [4482] = {.lex_state = 96, .external_lex_state = 2}, + [4483] = {.lex_state = 12, .external_lex_state = 2}, [4484] = {.lex_state = 96, .external_lex_state = 5}, - [4485] = {.lex_state = 96, .external_lex_state = 5}, - [4486] = {.lex_state = 96, .external_lex_state = 5}, - [4487] = {.lex_state = 96, .external_lex_state = 5}, - [4488] = {.lex_state = 96, .external_lex_state = 5}, - [4489] = {.lex_state = 96, .external_lex_state = 5}, - [4490] = {.lex_state = 96, .external_lex_state = 2}, - [4491] = {.lex_state = 4, .external_lex_state = 2}, + [4485] = {.lex_state = 12, .external_lex_state = 2}, + [4486] = {.lex_state = 96, .external_lex_state = 2}, + [4487] = {.lex_state = 96, .external_lex_state = 2}, + [4488] = {.lex_state = 96, .external_lex_state = 2}, + [4489] = {.lex_state = 96, .external_lex_state = 2}, + [4490] = {.lex_state = 96, .external_lex_state = 5}, + [4491] = {.lex_state = 96, .external_lex_state = 5}, [4492] = {.lex_state = 96, .external_lex_state = 5}, - [4493] = {.lex_state = 96, .external_lex_state = 2}, + [4493] = {.lex_state = 96, .external_lex_state = 5}, [4494] = {.lex_state = 96, .external_lex_state = 5}, [4495] = {.lex_state = 96, .external_lex_state = 5}, [4496] = {.lex_state = 96, .external_lex_state = 5}, [4497] = {.lex_state = 96, .external_lex_state = 5}, [4498] = {.lex_state = 96, .external_lex_state = 5}, - [4499] = {.lex_state = 96, .external_lex_state = 2}, - [4500] = {.lex_state = 96, .external_lex_state = 5}, - [4501] = {.lex_state = 96, .external_lex_state = 2}, - [4502] = {.lex_state = 96, .external_lex_state = 5}, - [4503] = {.lex_state = 96, .external_lex_state = 2}, + [4499] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 5}, [4504] = {.lex_state = 96, .external_lex_state = 5}, [4505] = {.lex_state = 96, .external_lex_state = 5}, - [4506] = {.lex_state = 96, .external_lex_state = 5}, - [4507] = {.lex_state = 96, .external_lex_state = 2}, + [4506] = {.lex_state = 4, .external_lex_state = 2}, + [4507] = {.lex_state = 96, .external_lex_state = 5}, [4508] = {.lex_state = 96, .external_lex_state = 2}, [4509] = {.lex_state = 96, .external_lex_state = 5}, - [4510] = {.lex_state = 1, .external_lex_state = 2}, - [4511] = {.lex_state = 96, .external_lex_state = 5}, + [4510] = {.lex_state = 96, .external_lex_state = 2}, + [4511] = {.lex_state = 96, .external_lex_state = 2}, [4512] = {.lex_state = 96, .external_lex_state = 2}, [4513] = {.lex_state = 96, .external_lex_state = 2}, [4514] = {.lex_state = 96, .external_lex_state = 5}, - [4515] = {.lex_state = 96, .external_lex_state = 5}, + [4515] = {.lex_state = 96, .external_lex_state = 2}, [4516] = {.lex_state = 96, .external_lex_state = 5}, - [4517] = {.lex_state = 96, .external_lex_state = 2}, + [4517] = {.lex_state = 96, .external_lex_state = 5}, [4518] = {.lex_state = 96, .external_lex_state = 2}, - [4519] = {.lex_state = 96, .external_lex_state = 2}, + [4519] = {.lex_state = 96, .external_lex_state = 5}, [4520] = {.lex_state = 96, .external_lex_state = 2}, - [4521] = {.lex_state = 96, .external_lex_state = 5}, - [4522] = {.lex_state = 96, .external_lex_state = 2}, + [4521] = {.lex_state = 96, .external_lex_state = 2}, + [4522] = {.lex_state = 96, .external_lex_state = 5}, [4523] = {.lex_state = 96, .external_lex_state = 2}, [4524] = {.lex_state = 96, .external_lex_state = 5}, - [4525] = {.lex_state = 96, .external_lex_state = 5}, - [4526] = {.lex_state = 96, .external_lex_state = 5}, + [4525] = {.lex_state = 96, .external_lex_state = 2}, + [4526] = {.lex_state = 96, .external_lex_state = 2}, [4527] = {.lex_state = 96, .external_lex_state = 2}, - [4528] = {.lex_state = 96, .external_lex_state = 5}, + [4528] = {.lex_state = 96, .external_lex_state = 2}, [4529] = {.lex_state = 96, .external_lex_state = 5}, [4530] = {.lex_state = 96, .external_lex_state = 2}, [4531] = {.lex_state = 96, .external_lex_state = 5}, [4532] = {.lex_state = 96, .external_lex_state = 5}, [4533] = {.lex_state = 96, .external_lex_state = 2}, - [4534] = {.lex_state = 96, .external_lex_state = 2}, - [4535] = {.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 = 5}, [4537] = {.lex_state = 96, .external_lex_state = 5}, [4538] = {.lex_state = 96, .external_lex_state = 5}, - [4539] = {.lex_state = 96, .external_lex_state = 5}, + [4539] = {.lex_state = 96, .external_lex_state = 2}, [4540] = {.lex_state = 96, .external_lex_state = 5}, - [4541] = {.lex_state = 96, .external_lex_state = 5}, + [4541] = {.lex_state = 4, .external_lex_state = 2}, [4542] = {.lex_state = 96, .external_lex_state = 5}, [4543] = {.lex_state = 96, .external_lex_state = 5}, - [4544] = {.lex_state = 96, .external_lex_state = 5}, + [4544] = {.lex_state = 1, .external_lex_state = 2}, [4545] = {.lex_state = 96, .external_lex_state = 5}, [4546] = {.lex_state = 96, .external_lex_state = 5}, [4547] = {.lex_state = 96, .external_lex_state = 5}, [4548] = {.lex_state = 96, .external_lex_state = 5}, - [4549] = {.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}, + [4551] = {.lex_state = 96, .external_lex_state = 2}, [4552] = {.lex_state = 96, .external_lex_state = 5}, - [4553] = {.lex_state = 96, .external_lex_state = 5}, + [4553] = {.lex_state = 96, .external_lex_state = 2}, [4554] = {.lex_state = 96, .external_lex_state = 5}, [4555] = {.lex_state = 96, .external_lex_state = 5}, [4556] = {.lex_state = 96, .external_lex_state = 5}, - [4557] = {.lex_state = 96, .external_lex_state = 2}, - [4558] = {.lex_state = 96, .external_lex_state = 5}, + [4557] = {.lex_state = 96, .external_lex_state = 5}, + [4558] = {.lex_state = 4, .external_lex_state = 2}, [4559] = {.lex_state = 96, .external_lex_state = 5}, [4560] = {.lex_state = 96, .external_lex_state = 5}, [4561] = {.lex_state = 96, .external_lex_state = 5}, [4562] = {.lex_state = 96, .external_lex_state = 5}, - [4563] = {.lex_state = 96, .external_lex_state = 5}, - [4564] = {.lex_state = 96, .external_lex_state = 2}, - [4565] = {.lex_state = 96, .external_lex_state = 5}, - [4566] = {.lex_state = 96, .external_lex_state = 2}, - [4567] = {.lex_state = 96, .external_lex_state = 2}, + [4563] = {.lex_state = 96, .external_lex_state = 2}, + [4564] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 2}, - [4569] = {.lex_state = 96, .external_lex_state = 5}, - [4570] = {.lex_state = 96, .external_lex_state = 2}, - [4571] = {.lex_state = 96, .external_lex_state = 2}, + [4569] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 5}, - [4575] = {.lex_state = 96, .external_lex_state = 2}, + [4575] = {.lex_state = 96, .external_lex_state = 5}, [4576] = {.lex_state = 96, .external_lex_state = 2}, - [4577] = {.lex_state = 96, .external_lex_state = 2}, + [4577] = {.lex_state = 96, .external_lex_state = 5}, [4578] = {.lex_state = 96, .external_lex_state = 2}, - [4579] = {.lex_state = 96, .external_lex_state = 5}, - [4580] = {.lex_state = 96, .external_lex_state = 2}, + [4579] = {.lex_state = 96, .external_lex_state = 2}, + [4580] = {.lex_state = 96, .external_lex_state = 5}, [4581] = {.lex_state = 96, .external_lex_state = 2}, - [4582] = {.lex_state = 96, .external_lex_state = 5}, - [4583] = {.lex_state = 96, .external_lex_state = 2}, + [4582] = {.lex_state = 96, .external_lex_state = 2}, + [4583] = {.lex_state = 96, .external_lex_state = 5}, [4584] = {.lex_state = 96, .external_lex_state = 5}, [4585] = {.lex_state = 96, .external_lex_state = 5}, [4586] = {.lex_state = 96, .external_lex_state = 5}, - [4587] = {.lex_state = 96, .external_lex_state = 5}, - [4588] = {.lex_state = 96, .external_lex_state = 5}, - [4589] = {.lex_state = 96, .external_lex_state = 5}, - [4590] = {.lex_state = 96, .external_lex_state = 5}, + [4587] = {.lex_state = 96, .external_lex_state = 2}, + [4588] = {.lex_state = 96, .external_lex_state = 2}, + [4589] = {.lex_state = 96, .external_lex_state = 2}, + [4590] = {.lex_state = 96, .external_lex_state = 2}, [4591] = {.lex_state = 96, .external_lex_state = 5}, [4592] = {.lex_state = 96, .external_lex_state = 2}, [4593] = {.lex_state = 96, .external_lex_state = 5}, - [4594] = {.lex_state = 96, .external_lex_state = 5}, + [4594] = {.lex_state = 96, .external_lex_state = 2}, [4595] = {.lex_state = 96, .external_lex_state = 5}, - [4596] = {.lex_state = 96, .external_lex_state = 5}, + [4596] = {.lex_state = 96, .external_lex_state = 2}, [4597] = {.lex_state = 96, .external_lex_state = 5}, [4598] = {.lex_state = 96, .external_lex_state = 5}, [4599] = {.lex_state = 96, .external_lex_state = 5}, @@ -17700,77 +17724,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4608] = {.lex_state = 96, .external_lex_state = 5}, [4609] = {.lex_state = 96, .external_lex_state = 5}, [4610] = {.lex_state = 96, .external_lex_state = 5}, - [4611] = {.lex_state = 96, .external_lex_state = 2}, + [4611] = {.lex_state = 96, .external_lex_state = 5}, [4612] = {.lex_state = 96, .external_lex_state = 5}, [4613] = {.lex_state = 96, .external_lex_state = 5}, [4614] = {.lex_state = 96, .external_lex_state = 5}, [4615] = {.lex_state = 96, .external_lex_state = 5}, - [4616] = {.lex_state = 96, .external_lex_state = 2}, + [4616] = {.lex_state = 96, .external_lex_state = 5}, [4617] = {.lex_state = 96, .external_lex_state = 5}, [4618] = {.lex_state = 96, .external_lex_state = 2}, - [4619] = {.lex_state = 96, .external_lex_state = 2}, + [4619] = {.lex_state = 96, .external_lex_state = 5}, [4620] = {.lex_state = 96, .external_lex_state = 5}, - [4621] = {.lex_state = 96, .external_lex_state = 5}, + [4621] = {.lex_state = 96, .external_lex_state = 2}, [4622] = {.lex_state = 96, .external_lex_state = 2}, [4623] = {.lex_state = 96, .external_lex_state = 5}, - [4624] = {.lex_state = 4, .external_lex_state = 2}, + [4624] = {.lex_state = 96, .external_lex_state = 5}, [4625] = {.lex_state = 96, .external_lex_state = 5}, - [4626] = {.lex_state = 96, .external_lex_state = 5}, - [4627] = {.lex_state = 96, .external_lex_state = 2}, - [4628] = {.lex_state = 96, .external_lex_state = 2}, - [4629] = {.lex_state = 96, .external_lex_state = 5}, + [4626] = {.lex_state = 1, .external_lex_state = 2}, + [4627] = {.lex_state = 96, .external_lex_state = 5}, + [4628] = {.lex_state = 96, .external_lex_state = 5}, + [4629] = {.lex_state = 96, .external_lex_state = 2}, [4630] = {.lex_state = 96, .external_lex_state = 2}, [4631] = {.lex_state = 96, .external_lex_state = 2}, - [4632] = {.lex_state = 96, .external_lex_state = 2}, - [4633] = {.lex_state = 4, .external_lex_state = 2}, + [4632] = {.lex_state = 96, .external_lex_state = 5}, + [4633] = {.lex_state = 96, .external_lex_state = 5}, [4634] = {.lex_state = 96, .external_lex_state = 5}, [4635] = {.lex_state = 96, .external_lex_state = 2}, - [4636] = {.lex_state = 96, .external_lex_state = 2}, + [4636] = {.lex_state = 96, .external_lex_state = 5}, [4637] = {.lex_state = 96, .external_lex_state = 5}, [4638] = {.lex_state = 96, .external_lex_state = 5}, - [4639] = {.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 = 5}, [4642] = {.lex_state = 96, .external_lex_state = 5}, - [4643] = {.lex_state = 96, .external_lex_state = 2}, - [4644] = {.lex_state = 96, .external_lex_state = 2}, - [4645] = {.lex_state = 96, .external_lex_state = 2}, - [4646] = {.lex_state = 96, .external_lex_state = 5}, + [4643] = {.lex_state = 96, .external_lex_state = 5}, + [4644] = {.lex_state = 96, .external_lex_state = 5}, + [4645] = {.lex_state = 96, .external_lex_state = 5}, + [4646] = {.lex_state = 96, .external_lex_state = 2}, [4647] = {.lex_state = 96, .external_lex_state = 2}, - [4648] = {.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 = 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 = 2}, + [4653] = {.lex_state = 96, .external_lex_state = 5}, + [4654] = {.lex_state = 96, .external_lex_state = 5}, [4655] = {.lex_state = 96, .external_lex_state = 5}, [4656] = {.lex_state = 96, .external_lex_state = 5}, - [4657] = {.lex_state = 96, .external_lex_state = 2}, - [4658] = {.lex_state = 96, .external_lex_state = 2}, - [4659] = {.lex_state = 96, .external_lex_state = 5}, - [4660] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 96, .external_lex_state = 5}, [4662] = {.lex_state = 96, .external_lex_state = 5}, [4663] = {.lex_state = 96, .external_lex_state = 5}, [4664] = {.lex_state = 96, .external_lex_state = 5}, - [4665] = {.lex_state = 4, .external_lex_state = 2}, + [4665] = {.lex_state = 96, .external_lex_state = 2}, [4666] = {.lex_state = 96, .external_lex_state = 2}, - [4667] = {.lex_state = 96, .external_lex_state = 2}, + [4667] = {.lex_state = 96, .external_lex_state = 5}, [4668] = {.lex_state = 96, .external_lex_state = 5}, - [4669] = {.lex_state = 96, .external_lex_state = 5}, + [4669] = {.lex_state = 96, .external_lex_state = 2}, [4670] = {.lex_state = 96, .external_lex_state = 2}, [4671] = {.lex_state = 96, .external_lex_state = 5}, [4672] = {.lex_state = 96, .external_lex_state = 5}, [4673] = {.lex_state = 96, .external_lex_state = 2}, - [4674] = {.lex_state = 96, .external_lex_state = 5}, - [4675] = {.lex_state = 96, .external_lex_state = 5}, + [4674] = {.lex_state = 96, .external_lex_state = 2}, + [4675] = {.lex_state = 96, .external_lex_state = 2}, [4676] = {.lex_state = 96, .external_lex_state = 5}, - [4677] = {.lex_state = 96, .external_lex_state = 2}, - [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 = 5}, + [4677] = {.lex_state = 96, .external_lex_state = 5}, + [4678] = {.lex_state = 96, .external_lex_state = 2}, + [4679] = {.lex_state = 96, .external_lex_state = 5}, + [4680] = {.lex_state = 96, .external_lex_state = 2}, + [4681] = {.lex_state = 96, .external_lex_state = 2}, [4682] = {.lex_state = 96, .external_lex_state = 5}, [4683] = {.lex_state = 96, .external_lex_state = 5}, [4684] = {.lex_state = 96, .external_lex_state = 5}, @@ -17779,46 +17803,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4687] = {.lex_state = 96, .external_lex_state = 5}, [4688] = {.lex_state = 96, .external_lex_state = 5}, [4689] = {.lex_state = 96, .external_lex_state = 5}, - [4690] = {.lex_state = 96, .external_lex_state = 5}, - [4691] = {.lex_state = 96, .external_lex_state = 5}, - [4692] = {.lex_state = 96, .external_lex_state = 5}, + [4690] = {.lex_state = 96, .external_lex_state = 2}, + [4691] = {.lex_state = 12, .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 = 5}, - [4696] = {.lex_state = 96, .external_lex_state = 5}, + [4695] = {.lex_state = 96, .external_lex_state = 2}, + [4696] = {.lex_state = 96, .external_lex_state = 2}, [4697] = {.lex_state = 96, .external_lex_state = 5}, [4698] = {.lex_state = 96, .external_lex_state = 5}, - [4699] = {.lex_state = 96, .external_lex_state = 5}, + [4699] = {.lex_state = 96, .external_lex_state = 2}, [4700] = {.lex_state = 96, .external_lex_state = 5}, - [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 = 2}, + [4701] = {.lex_state = 96, .external_lex_state = 2}, + [4702] = {.lex_state = 1, .external_lex_state = 2}, + [4703] = {.lex_state = 96, .external_lex_state = 5}, + [4704] = {.lex_state = 96, .external_lex_state = 5}, [4705] = {.lex_state = 96, .external_lex_state = 2}, [4706] = {.lex_state = 96, .external_lex_state = 2}, [4707] = {.lex_state = 96, .external_lex_state = 2}, [4708] = {.lex_state = 96, .external_lex_state = 2}, - [4709] = {.lex_state = 96, .external_lex_state = 5}, + [4709] = {.lex_state = 4, .external_lex_state = 2}, [4710] = {.lex_state = 96, .external_lex_state = 2}, [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}, + [4712] = {.lex_state = 96, .external_lex_state = 2}, + [4713] = {.lex_state = 96, .external_lex_state = 2}, + [4714] = {.lex_state = 96, .external_lex_state = 2}, [4715] = {.lex_state = 96, .external_lex_state = 5}, - [4716] = {.lex_state = 1, .external_lex_state = 2}, - [4717] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 5}, - [4722] = {.lex_state = 96, .external_lex_state = 5}, + [4722] = {.lex_state = 1, .external_lex_state = 2}, [4723] = {.lex_state = 96, .external_lex_state = 5}, [4724] = {.lex_state = 96, .external_lex_state = 5}, [4725] = {.lex_state = 96, .external_lex_state = 5}, [4726] = {.lex_state = 96, .external_lex_state = 5}, [4727] = {.lex_state = 96, .external_lex_state = 5}, - [4728] = {.lex_state = 96, .external_lex_state = 5}, - [4729] = {.lex_state = 96, .external_lex_state = 5}, + [4728] = {.lex_state = 96, .external_lex_state = 2}, + [4729] = {.lex_state = 96, .external_lex_state = 2}, [4730] = {.lex_state = 96, .external_lex_state = 5}, [4731] = {.lex_state = 96, .external_lex_state = 5}, [4732] = {.lex_state = 96, .external_lex_state = 5}, @@ -17826,31 +17850,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4737] = {.lex_state = 96, .external_lex_state = 2}, [4738] = {.lex_state = 96, .external_lex_state = 5}, - [4739] = {.lex_state = 96, .external_lex_state = 5}, + [4739] = {.lex_state = 96, .external_lex_state = 2}, [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 = 2}, - [4744] = {.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 = 2}, - [4747] = {.lex_state = 96, .external_lex_state = 5}, - [4748] = {.lex_state = 96, .external_lex_state = 5}, - [4749] = {.lex_state = 96, .external_lex_state = 5}, + [4747] = {.lex_state = 96, .external_lex_state = 2}, + [4748] = {.lex_state = 96, .external_lex_state = 2}, + [4749] = {.lex_state = 96, .external_lex_state = 2}, [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}, + [4753] = {.lex_state = 96, .external_lex_state = 2}, [4754] = {.lex_state = 96, .external_lex_state = 2}, - [4755] = {.lex_state = 96, .external_lex_state = 5}, + [4755] = {.lex_state = 96, .external_lex_state = 2}, [4756] = {.lex_state = 96, .external_lex_state = 2}, - [4757] = {.lex_state = 96, .external_lex_state = 2}, + [4757] = {.lex_state = 96, .external_lex_state = 5}, [4758] = {.lex_state = 96, .external_lex_state = 5}, - [4759] = {.lex_state = 4, .external_lex_state = 2}, - [4760] = {.lex_state = 96, .external_lex_state = 5}, - [4761] = {.lex_state = 96, .external_lex_state = 2}, + [4759] = {.lex_state = 96, .external_lex_state = 5}, + [4760] = {.lex_state = 96, .external_lex_state = 2}, + [4761] = {.lex_state = 96, .external_lex_state = 5}, [4762] = {.lex_state = 96, .external_lex_state = 2}, [4763] = {.lex_state = 96, .external_lex_state = 5}, [4764] = {.lex_state = 96, .external_lex_state = 5}, @@ -17864,79 +17888,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, - [4776] = {.lex_state = 96, .external_lex_state = 5}, - [4777] = {.lex_state = 96, .external_lex_state = 5}, - [4778] = {.lex_state = 96, .external_lex_state = 2}, - [4779] = {.lex_state = 96, .external_lex_state = 5}, + [4775] = {.lex_state = 96, .external_lex_state = 5}, + [4776] = {.lex_state = 96, .external_lex_state = 2}, + [4777] = {.lex_state = 96, .external_lex_state = 2}, + [4778] = {.lex_state = 96, .external_lex_state = 5}, + [4779] = {.lex_state = 4, .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 = 2}, - [4784] = {.lex_state = 96, .external_lex_state = 2}, - [4785] = {.lex_state = 96, .external_lex_state = 5}, - [4786] = {.lex_state = 96, .external_lex_state = 5}, + [4781] = {.lex_state = 96, .external_lex_state = 2}, + [4782] = {.lex_state = 4, .external_lex_state = 2}, + [4783] = {.lex_state = 96, .external_lex_state = 5}, + [4784] = {.lex_state = 96, .external_lex_state = 5}, + [4785] = {.lex_state = 96, .external_lex_state = 2}, + [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}, + [4789] = {.lex_state = 96, .external_lex_state = 2}, [4790] = {.lex_state = 96, .external_lex_state = 5}, - [4791] = {.lex_state = 96, .external_lex_state = 5}, + [4791] = {.lex_state = 96, .external_lex_state = 2}, [4792] = {.lex_state = 96, .external_lex_state = 5}, - [4793] = {.lex_state = 96, .external_lex_state = 2}, + [4793] = {.lex_state = 4, .external_lex_state = 2}, [4794] = {.lex_state = 96, .external_lex_state = 2}, [4795] = {.lex_state = 96, .external_lex_state = 5}, [4796] = {.lex_state = 96, .external_lex_state = 2}, - [4797] = {.lex_state = 96, .external_lex_state = 2}, - [4798] = {.lex_state = 96, .external_lex_state = 5}, + [4797] = {.lex_state = 96, .external_lex_state = 5}, + [4798] = {.lex_state = 96, .external_lex_state = 2}, [4799] = {.lex_state = 96, .external_lex_state = 5}, [4800] = {.lex_state = 96, .external_lex_state = 5}, [4801] = {.lex_state = 96, .external_lex_state = 5}, [4802] = {.lex_state = 96, .external_lex_state = 5}, - [4803] = {.lex_state = 96, .external_lex_state = 5}, + [4803] = {.lex_state = 96, .external_lex_state = 2}, [4804] = {.lex_state = 96, .external_lex_state = 5}, [4805] = {.lex_state = 96, .external_lex_state = 5}, - [4806] = {.lex_state = 96, .external_lex_state = 5}, + [4806] = {.lex_state = 96, .external_lex_state = 2}, [4807] = {.lex_state = 96, .external_lex_state = 5}, [4808] = {.lex_state = 96, .external_lex_state = 5}, - [4809] = {.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}, + [4812] = {.lex_state = 96, .external_lex_state = 2}, [4813] = {.lex_state = 96, .external_lex_state = 5}, - [4814] = {.lex_state = 96, .external_lex_state = 5}, + [4814] = {.lex_state = 96, .external_lex_state = 2}, [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 = 2}, + [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 = 5}, + [4820] = {.lex_state = 96, .external_lex_state = 5}, + [4821] = {.lex_state = 96, .external_lex_state = 2}, [4822] = {.lex_state = 96, .external_lex_state = 5}, - [4823] = {.lex_state = 96, .external_lex_state = 5}, - [4824] = {.lex_state = 96, .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 = 2}, + [4826] = {.lex_state = 96, .external_lex_state = 5}, [4827] = {.lex_state = 96, .external_lex_state = 5}, [4828] = {.lex_state = 96, .external_lex_state = 5}, - [4829] = {.lex_state = 96, .external_lex_state = 5}, - [4830] = {.lex_state = 96, .external_lex_state = 5}, + [4829] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 5}, + [4833] = {.lex_state = 96, .external_lex_state = 2}, + [4834] = {.lex_state = 96, .external_lex_state = 2}, [4835] = {.lex_state = 96, .external_lex_state = 5}, - [4836] = {.lex_state = 96, .external_lex_state = 2}, + [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}, + [4840] = {.lex_state = 96, .external_lex_state = 2}, + [4841] = {.lex_state = 96, .external_lex_state = 2}, [4842] = {.lex_state = 96, .external_lex_state = 5}, [4843] = {.lex_state = 96, .external_lex_state = 5}, - [4844] = {.lex_state = 96, .external_lex_state = 2}, + [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}, + [4847] = {.lex_state = 96, .external_lex_state = 2}, [4848] = {.lex_state = 96, .external_lex_state = 5}, [4849] = {.lex_state = 96, .external_lex_state = 5}, [4850] = {.lex_state = 96, .external_lex_state = 5}, @@ -17947,29 +17971,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4855] = {.lex_state = 96, .external_lex_state = 5}, [4856] = {.lex_state = 96, .external_lex_state = 5}, [4857] = {.lex_state = 96, .external_lex_state = 2}, - [4858] = {.lex_state = 96, .external_lex_state = 5}, + [4858] = {.lex_state = 96, .external_lex_state = 2}, [4859] = {.lex_state = 96, .external_lex_state = 5}, - [4860] = {.lex_state = 96, .external_lex_state = 2}, - [4861] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 4, .external_lex_state = 2}, - [4866] = {.lex_state = 96, .external_lex_state = 2}, + [4865] = {.lex_state = 96, .external_lex_state = 5}, + [4866] = {.lex_state = 96, .external_lex_state = 5}, [4867] = {.lex_state = 96, .external_lex_state = 5}, [4868] = {.lex_state = 96, .external_lex_state = 5}, [4869] = {.lex_state = 96, .external_lex_state = 2}, - [4870] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, + [4874] = {.lex_state = 96, .external_lex_state = 2}, + [4875] = {.lex_state = 96, .external_lex_state = 5}, [4876] = {.lex_state = 96, .external_lex_state = 5}, [4877] = {.lex_state = 96, .external_lex_state = 5}, - [4878] = {.lex_state = 96, .external_lex_state = 2}, + [4878] = {.lex_state = 96, .external_lex_state = 5}, [4879] = {.lex_state = 96, .external_lex_state = 5}, - [4880] = {.lex_state = 96, .external_lex_state = 5}, + [4880] = {.lex_state = 96, .external_lex_state = 2}, [4881] = {.lex_state = 96, .external_lex_state = 5}, [4882] = {.lex_state = 96, .external_lex_state = 5}, [4883] = {.lex_state = 96, .external_lex_state = 5}, @@ -17981,9 +18005,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [4892] = {.lex_state = 1, .external_lex_state = 2}, + [4893] = {.lex_state = 96, .external_lex_state = 2}, + [4894] = {.lex_state = 96, .external_lex_state = 5}, [4895] = {.lex_state = 96, .external_lex_state = 5}, [4896] = {.lex_state = 96, .external_lex_state = 5}, [4897] = {.lex_state = 96, .external_lex_state = 5}, @@ -17991,62 +18015,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4899] = {.lex_state = 96, .external_lex_state = 5}, [4900] = {.lex_state = 96, .external_lex_state = 5}, [4901] = {.lex_state = 96, .external_lex_state = 5}, - [4902] = {.lex_state = 96, .external_lex_state = 5}, - [4903] = {.lex_state = 96, .external_lex_state = 5}, + [4902] = {.lex_state = 96, .external_lex_state = 2}, + [4903] = {.lex_state = 96, .external_lex_state = 2}, [4904] = {.lex_state = 96, .external_lex_state = 5}, - [4905] = {.lex_state = 96, .external_lex_state = 5}, + [4905] = {.lex_state = 96, .external_lex_state = 2}, [4906] = {.lex_state = 96, .external_lex_state = 5}, [4907] = {.lex_state = 96, .external_lex_state = 5}, [4908] = {.lex_state = 96, .external_lex_state = 5}, - [4909] = {.lex_state = 96, .external_lex_state = 2}, - [4910] = {.lex_state = 96, .external_lex_state = 2}, - [4911] = {.lex_state = 14, .external_lex_state = 2}, - [4912] = {.lex_state = 96, .external_lex_state = 2}, + [4909] = {.lex_state = 96, .external_lex_state = 5}, + [4910] = {.lex_state = 4, .external_lex_state = 2}, + [4911] = {.lex_state = 96, .external_lex_state = 5}, + [4912] = {.lex_state = 96, .external_lex_state = 5}, [4913] = {.lex_state = 96, .external_lex_state = 2}, [4914] = {.lex_state = 96, .external_lex_state = 2}, [4915] = {.lex_state = 96, .external_lex_state = 5}, - [4916] = {.lex_state = 96, .external_lex_state = 2}, + [4916] = {.lex_state = 96, .external_lex_state = 5}, [4917] = {.lex_state = 96, .external_lex_state = 5}, - [4918] = {.lex_state = 96, .external_lex_state = 2}, - [4919] = {.lex_state = 96, .external_lex_state = 5}, - [4920] = {.lex_state = 96, .external_lex_state = 5}, - [4921] = {.lex_state = 96, .external_lex_state = 2}, - [4922] = {.lex_state = 18, .external_lex_state = 8}, - [4923] = {.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 = 2}, + [4921] = {.lex_state = 96, .external_lex_state = 5}, + [4922] = {.lex_state = 96, .external_lex_state = 5}, + [4923] = {.lex_state = 96, .external_lex_state = 2}, [4924] = {.lex_state = 96, .external_lex_state = 5}, - [4925] = {.lex_state = 96, .external_lex_state = 5}, + [4925] = {.lex_state = 96, .external_lex_state = 2}, [4926] = {.lex_state = 96, .external_lex_state = 5}, [4927] = {.lex_state = 96, .external_lex_state = 2}, - [4928] = {.lex_state = 96, .external_lex_state = 2}, - [4929] = {.lex_state = 96, .external_lex_state = 2}, - [4930] = {.lex_state = 1, .external_lex_state = 2}, - [4931] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, [4934] = {.lex_state = 96, .external_lex_state = 2}, [4935] = {.lex_state = 96, .external_lex_state = 5}, [4936] = {.lex_state = 96, .external_lex_state = 2}, [4937] = {.lex_state = 96, .external_lex_state = 2}, - [4938] = {.lex_state = 4, .external_lex_state = 2}, + [4938] = {.lex_state = 96, .external_lex_state = 5}, [4939] = {.lex_state = 96, .external_lex_state = 5}, - [4940] = {.lex_state = 96, .external_lex_state = 5}, + [4940] = {.lex_state = 96, .external_lex_state = 2}, [4941] = {.lex_state = 96, .external_lex_state = 2}, [4942] = {.lex_state = 96, .external_lex_state = 5}, [4943] = {.lex_state = 96, .external_lex_state = 5}, - [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}, + [4944] = {.lex_state = 96, .external_lex_state = 2}, + [4945] = {.lex_state = 96, .external_lex_state = 5}, + [4946] = {.lex_state = 96, .external_lex_state = 5}, + [4947] = {.lex_state = 96, .external_lex_state = 2}, [4948] = {.lex_state = 96, .external_lex_state = 2}, - [4949] = {.lex_state = 96, .external_lex_state = 5}, - [4950] = {.lex_state = 96, .external_lex_state = 2}, - [4951] = {.lex_state = 96, .external_lex_state = 2}, - [4952] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 5}, [4954] = {.lex_state = 96, .external_lex_state = 5}, - [4955] = {.lex_state = 96, .external_lex_state = 2}, - [4956] = {.lex_state = 96, .external_lex_state = 2}, - [4957] = {.lex_state = 96, .external_lex_state = 2}, + [4955] = {.lex_state = 96, .external_lex_state = 5}, + [4956] = {.lex_state = 96, .external_lex_state = 5}, + [4957] = {.lex_state = 96, .external_lex_state = 5}, [4958] = {.lex_state = 96, .external_lex_state = 5}, [4959] = {.lex_state = 96, .external_lex_state = 2}, [4960] = {.lex_state = 96, .external_lex_state = 5}, @@ -18054,51 +18078,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4962] = {.lex_state = 96, .external_lex_state = 5}, [4963] = {.lex_state = 96, .external_lex_state = 2}, [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 = 2}, + [4965] = {.lex_state = 96, .external_lex_state = 5}, + [4966] = {.lex_state = 12, .external_lex_state = 2}, + [4967] = {.lex_state = 96, .external_lex_state = 5}, [4968] = {.lex_state = 96, .external_lex_state = 5}, - [4969] = {.lex_state = 14, .external_lex_state = 2}, + [4969] = {.lex_state = 96, .external_lex_state = 5}, [4970] = {.lex_state = 96, .external_lex_state = 2}, [4971] = {.lex_state = 96, .external_lex_state = 5}, - [4972] = {.lex_state = 96, .external_lex_state = 2}, + [4972] = {.lex_state = 96, .external_lex_state = 5}, [4973] = {.lex_state = 96, .external_lex_state = 2}, [4974] = {.lex_state = 96, .external_lex_state = 2}, - [4975] = {.lex_state = 96, .external_lex_state = 2}, + [4975] = {.lex_state = 96, .external_lex_state = 5}, [4976] = {.lex_state = 96, .external_lex_state = 5}, [4977] = {.lex_state = 96, .external_lex_state = 2}, - [4978] = {.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 = 2}, - [4982] = {.lex_state = 1, .external_lex_state = 2}, - [4983] = {.lex_state = 96, .external_lex_state = 5}, - [4984] = {.lex_state = 96, .external_lex_state = 2}, - [4985] = {.lex_state = 96, .external_lex_state = 2}, + [4981] = {.lex_state = 96, .external_lex_state = 5}, + [4982] = {.lex_state = 96, .external_lex_state = 5}, + [4983] = {.lex_state = 96, .external_lex_state = 2}, + [4984] = {.lex_state = 96, .external_lex_state = 5}, + [4985] = {.lex_state = 18, .external_lex_state = 8}, [4986] = {.lex_state = 96, .external_lex_state = 5}, - [4987] = {.lex_state = 1, .external_lex_state = 2}, + [4987] = {.lex_state = 96, .external_lex_state = 5}, [4988] = {.lex_state = 96, .external_lex_state = 2}, - [4989] = {.lex_state = 96, .external_lex_state = 5}, + [4989] = {.lex_state = 96, .external_lex_state = 2}, [4990] = {.lex_state = 96, .external_lex_state = 5}, - [4991] = {.lex_state = 96, .external_lex_state = 2}, - [4992] = {.lex_state = 96, .external_lex_state = 2}, - [4993] = {.lex_state = 96, .external_lex_state = 2}, - [4994] = {.lex_state = 96, .external_lex_state = 2}, + [4991] = {.lex_state = 96, .external_lex_state = 5}, + [4992] = {.lex_state = 96, .external_lex_state = 5}, + [4993] = {.lex_state = 96, .external_lex_state = 5}, + [4994] = {.lex_state = 96, .external_lex_state = 5}, [4995] = {.lex_state = 96, .external_lex_state = 2}, - [4996] = {.lex_state = 96, .external_lex_state = 2}, + [4996] = {.lex_state = 96, .external_lex_state = 5}, [4997] = {.lex_state = 96, .external_lex_state = 5}, - [4998] = {.lex_state = 96, .external_lex_state = 2}, + [4998] = {.lex_state = 96, .external_lex_state = 5}, [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}, + [5000] = {.lex_state = 96, .external_lex_state = 5}, + [5001] = {.lex_state = 96, .external_lex_state = 5}, + [5002] = {.lex_state = 96, .external_lex_state = 2}, [5003] = {.lex_state = 96, .external_lex_state = 2}, [5004] = {.lex_state = 96, .external_lex_state = 5}, [5005] = {.lex_state = 96, .external_lex_state = 2}, [5006] = {.lex_state = 96, .external_lex_state = 2}, [5007] = {.lex_state = 96, .external_lex_state = 5}, - [5008] = {.lex_state = 96, .external_lex_state = 5}, - [5009] = {.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 = 5}, [5011] = {.lex_state = 96, .external_lex_state = 5}, [5012] = {.lex_state = 96, .external_lex_state = 5}, @@ -18108,96 +18132,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5019] = {.lex_state = 96, .external_lex_state = 5}, [5020] = {.lex_state = 96, .external_lex_state = 5}, [5021] = {.lex_state = 96, .external_lex_state = 5}, - [5022] = {.lex_state = 96, .external_lex_state = 5}, + [5022] = {.lex_state = 96, .external_lex_state = 2}, [5023] = {.lex_state = 96, .external_lex_state = 5}, - [5024] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, - [5028] = {.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 = 5}, [5031] = {.lex_state = 96, .external_lex_state = 5}, - [5032] = {.lex_state = 96, .external_lex_state = 5}, + [5032] = {.lex_state = 96, .external_lex_state = 2}, [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}, + [5036] = {.lex_state = 96, .external_lex_state = 5}, [5037] = {.lex_state = 96, .external_lex_state = 5}, [5038] = {.lex_state = 96, .external_lex_state = 5}, - [5039] = {.lex_state = 96, .external_lex_state = 2}, + [5039] = {.lex_state = 96, .external_lex_state = 5}, [5040] = {.lex_state = 96, .external_lex_state = 5}, - [5041] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, - [5046] = {.lex_state = 96, .external_lex_state = 2}, - [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}, + [5045] = {.lex_state = 96, .external_lex_state = 5}, + [5046] = {.lex_state = 96, .external_lex_state = 5}, + [5047] = {.lex_state = 96, .external_lex_state = 2}, + [5048] = {.lex_state = 96, .external_lex_state = 2}, + [5049] = {.lex_state = 4, .external_lex_state = 2}, + [5050] = {.lex_state = 4, .external_lex_state = 2}, [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 = 2}, + [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 = 4, .external_lex_state = 2}, - [5058] = {.lex_state = 4, .external_lex_state = 2}, + [5057] = {.lex_state = 96, .external_lex_state = 5}, + [5058] = {.lex_state = 96, .external_lex_state = 5}, [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}, + [5061] = {.lex_state = 96, .external_lex_state = 2}, + [5062] = {.lex_state = 96, .external_lex_state = 2}, + [5063] = {.lex_state = 96, .external_lex_state = 2}, [5064] = {.lex_state = 96, .external_lex_state = 5}, - [5065] = {.lex_state = 96, .external_lex_state = 5}, + [5065] = {.lex_state = 96, .external_lex_state = 2}, [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}, + [5070] = {.lex_state = 96, .external_lex_state = 2}, [5071] = {.lex_state = 96, .external_lex_state = 5}, [5072] = {.lex_state = 96, .external_lex_state = 2}, [5073] = {.lex_state = 96, .external_lex_state = 5}, - [5074] = {.lex_state = 96, .external_lex_state = 2}, + [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}, + [5078] = {.lex_state = 96, .external_lex_state = 2}, [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 = 4, .external_lex_state = 2}, + [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 = 2}, + [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}, + [5093] = {.lex_state = 96, .external_lex_state = 2}, [5094] = {.lex_state = 96, .external_lex_state = 5}, [5095] = {.lex_state = 96, .external_lex_state = 5}, - [5096] = {.lex_state = 96, .external_lex_state = 2}, - [5097] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, - [5100] = {.lex_state = 96, .external_lex_state = 2}, + [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 = 2}, + [5102] = {.lex_state = 96, .external_lex_state = 5}, [5103] = {.lex_state = 96, .external_lex_state = 2}, [5104] = {.lex_state = 96, .external_lex_state = 2}, [5105] = {.lex_state = 96, .external_lex_state = 2}, - [5106] = {.lex_state = 96, .external_lex_state = 2}, + [5106] = {.lex_state = 96, .external_lex_state = 5}, [5107] = {.lex_state = 96, .external_lex_state = 2}, - [5108] = {.lex_state = 96, .external_lex_state = 5}, + [5108] = {.lex_state = 96, .external_lex_state = 2}, [5109] = {.lex_state = 96, .external_lex_state = 2}, [5110] = {.lex_state = 96, .external_lex_state = 2}, [5111] = {.lex_state = 96, .external_lex_state = 2}, @@ -18206,13 +18230,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5114] = {.lex_state = 96, .external_lex_state = 2}, [5115] = {.lex_state = 96, .external_lex_state = 2}, [5116] = {.lex_state = 96, .external_lex_state = 2}, - [5117] = {.lex_state = 96, .external_lex_state = 5}, + [5117] = {.lex_state = 96, .external_lex_state = 2}, [5118] = {.lex_state = 96, .external_lex_state = 2}, [5119] = {.lex_state = 96, .external_lex_state = 2}, [5120] = {.lex_state = 96, .external_lex_state = 2}, [5121] = {.lex_state = 96, .external_lex_state = 2}, [5122] = {.lex_state = 96, .external_lex_state = 2}, - [5123] = {.lex_state = 96, .external_lex_state = 5}, + [5123] = {.lex_state = 96, .external_lex_state = 2}, [5124] = {.lex_state = 96, .external_lex_state = 2}, [5125] = {.lex_state = 96, .external_lex_state = 2}, [5126] = {.lex_state = 96, .external_lex_state = 2}, @@ -18220,13 +18244,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5128] = {.lex_state = 96, .external_lex_state = 2}, [5129] = {.lex_state = 96, .external_lex_state = 2}, [5130] = {.lex_state = 96, .external_lex_state = 2}, - [5131] = {.lex_state = 96, .external_lex_state = 5}, + [5131] = {.lex_state = 96, .external_lex_state = 2}, [5132] = {.lex_state = 96, .external_lex_state = 2}, - [5133] = {.lex_state = 96, .external_lex_state = 5}, + [5133] = {.lex_state = 96, .external_lex_state = 2}, [5134] = {.lex_state = 96, .external_lex_state = 2}, [5135] = {.lex_state = 96, .external_lex_state = 2}, [5136] = {.lex_state = 96, .external_lex_state = 2}, - [5137] = {.lex_state = 96, .external_lex_state = 2}, + [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}, @@ -18240,7 +18264,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5148] = {.lex_state = 96, .external_lex_state = 2}, [5149] = {.lex_state = 96, .external_lex_state = 2}, [5150] = {.lex_state = 96, .external_lex_state = 2}, - [5151] = {.lex_state = 96, .external_lex_state = 2}, + [5151] = {.lex_state = 96, .external_lex_state = 5}, [5152] = {.lex_state = 96, .external_lex_state = 2}, [5153] = {.lex_state = 96, .external_lex_state = 2}, [5154] = {.lex_state = 96, .external_lex_state = 2}, @@ -18251,23 +18275,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5159] = {.lex_state = 96, .external_lex_state = 2}, [5160] = {.lex_state = 96, .external_lex_state = 2}, [5161] = {.lex_state = 96, .external_lex_state = 2}, - [5162] = {.lex_state = 96, .external_lex_state = 5}, + [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}, + [5169] = {.lex_state = 96, .external_lex_state = 5}, + [5170] = {.lex_state = 96, .external_lex_state = 5}, [5171] = {.lex_state = 96, .external_lex_state = 2}, - [5172] = {.lex_state = 96, .external_lex_state = 5}, - [5173] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 2}, [5177] = {.lex_state = 96, .external_lex_state = 2}, - [5178] = {.lex_state = 96, .external_lex_state = 5}, + [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}, @@ -18280,7 +18304,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5}, + [5191] = {.lex_state = 96, .external_lex_state = 2}, [5192] = {.lex_state = 96, .external_lex_state = 5}, [5193] = {.lex_state = 96, .external_lex_state = 2}, [5194] = {.lex_state = 96, .external_lex_state = 2}, @@ -18303,7 +18327,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5214] = {.lex_state = 96, .external_lex_state = 5}, [5215] = {.lex_state = 96, .external_lex_state = 2}, [5216] = {.lex_state = 96, .external_lex_state = 2}, [5217] = {.lex_state = 96, .external_lex_state = 2}, @@ -18330,24 +18354,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5241] = {.lex_state = 96, .external_lex_state = 5}, [5242] = {.lex_state = 96, .external_lex_state = 2}, - [5243] = {.lex_state = 96, .external_lex_state = 2}, + [5243] = {.lex_state = 96, .external_lex_state = 5}, [5244] = {.lex_state = 96, .external_lex_state = 2}, [5245] = {.lex_state = 96, .external_lex_state = 2}, - [5246] = {.lex_state = 96, .external_lex_state = 5}, + [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 = 5}, + [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 = 2}, [5256] = {.lex_state = 96, .external_lex_state = 2}, [5257] = {.lex_state = 96, .external_lex_state = 2}, - [5258] = {.lex_state = 96, .external_lex_state = 5}, + [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}, @@ -18360,14 +18384,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5}, + [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}, + [5277] = {.lex_state = 96, .external_lex_state = 5}, + [5278] = {.lex_state = 96, .external_lex_state = 5}, [5279] = {.lex_state = 96, .external_lex_state = 2}, [5280] = {.lex_state = 96, .external_lex_state = 2}, [5281] = {.lex_state = 96, .external_lex_state = 2}, @@ -18378,7 +18402,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5289] = {.lex_state = 96, .external_lex_state = 5}, [5290] = {.lex_state = 96, .external_lex_state = 2}, [5291] = {.lex_state = 96, .external_lex_state = 2}, [5292] = {.lex_state = 96, .external_lex_state = 2}, @@ -18389,7 +18413,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5}, + [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}, @@ -18415,16 +18439,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5}, + [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 = 5}, + [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}, + [5334] = {.lex_state = 96, .external_lex_state = 5}, + [5335] = {.lex_state = 96, .external_lex_state = 5}, [5336] = {.lex_state = 96, .external_lex_state = 2}, [5337] = {.lex_state = 96, .external_lex_state = 2}, [5338] = {.lex_state = 96, .external_lex_state = 2}, @@ -18435,12 +18459,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5343] = {.lex_state = 96, .external_lex_state = 2}, [5344] = {.lex_state = 96, .external_lex_state = 2}, [5345] = {.lex_state = 96, .external_lex_state = 2}, - [5346] = {.lex_state = 96, .external_lex_state = 5}, + [5346] = {.lex_state = 96, .external_lex_state = 2}, [5347] = {.lex_state = 96, .external_lex_state = 2}, [5348] = {.lex_state = 96, .external_lex_state = 2}, [5349] = {.lex_state = 96, .external_lex_state = 2}, [5350] = {.lex_state = 96, .external_lex_state = 2}, - [5351] = {.lex_state = 96, .external_lex_state = 5}, + [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}, @@ -18467,14 +18491,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5375] = {.lex_state = 96, .external_lex_state = 2}, [5376] = {.lex_state = 96, .external_lex_state = 2}, [5377] = {.lex_state = 96, .external_lex_state = 2}, - [5378] = {.lex_state = 96, .external_lex_state = 2}, + [5378] = {.lex_state = 96, .external_lex_state = 5}, [5379] = {.lex_state = 96, .external_lex_state = 2}, - [5380] = {.lex_state = 96, .external_lex_state = 2}, + [5380] = {.lex_state = 96, .external_lex_state = 5}, [5381] = {.lex_state = 96, .external_lex_state = 2}, - [5382] = {.lex_state = 96, .external_lex_state = 5}, + [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}, + [5385] = {.lex_state = 96, .external_lex_state = 5}, [5386] = {.lex_state = 96, .external_lex_state = 2}, [5387] = {.lex_state = 96, .external_lex_state = 2}, [5388] = {.lex_state = 96, .external_lex_state = 2}, @@ -18484,34 +18508,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5}, + [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 = 5}, + [5399] = {.lex_state = 96, .external_lex_state = 2}, [5400] = {.lex_state = 96, .external_lex_state = 2}, - [5401] = {.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 = 2}, - [5404] = {.lex_state = 96, .external_lex_state = 2}, + [5404] = {.lex_state = 96, .external_lex_state = 5}, [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}, + [5409] = {.lex_state = 96, .external_lex_state = 5}, [5410] = {.lex_state = 96, .external_lex_state = 2}, [5411] = {.lex_state = 96, .external_lex_state = 2}, - [5412] = {.lex_state = 96, .external_lex_state = 2}, + [5412] = {.lex_state = 96, .external_lex_state = 5}, [5413] = {.lex_state = 96, .external_lex_state = 2}, - [5414] = {.lex_state = 96, .external_lex_state = 2}, + [5414] = {.lex_state = 96, .external_lex_state = 5}, [5415] = {.lex_state = 96, .external_lex_state = 2}, [5416] = {.lex_state = 96, .external_lex_state = 2}, - [5417] = {.lex_state = 96, .external_lex_state = 5}, + [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}, + [5422] = {.lex_state = 96, .external_lex_state = 5}, [5423] = {.lex_state = 96, .external_lex_state = 2}, [5424] = {.lex_state = 96, .external_lex_state = 5}, [5425] = {.lex_state = 96, .external_lex_state = 5}, @@ -18519,18 +18543,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5430] = {.lex_state = 96, .external_lex_state = 5}, [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 = 2, .external_lex_state = 10}, + [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 = 2}, + [5438] = {.lex_state = 96, .external_lex_state = 5}, + [5439] = {.lex_state = 96, .external_lex_state = 5}, [5440] = {.lex_state = 96, .external_lex_state = 2}, - [5441] = {.lex_state = 28, .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}, @@ -18560,7 +18584,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5471] = {.lex_state = 28, .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 = 2}, @@ -18597,11 +18621,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5508] = {.lex_state = 2, .external_lex_state = 10}, [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}, + [5512] = {.lex_state = 28, .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}, @@ -18645,14 +18669,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 28, .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 = 2, .external_lex_state = 10}, + [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}, @@ -18670,7 +18694,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5581] = {.lex_state = 2, .external_lex_state = 10}, [5582] = {.lex_state = 96, .external_lex_state = 2}, [5583] = {.lex_state = 96, .external_lex_state = 2}, [5584] = {.lex_state = 96, .external_lex_state = 2}, @@ -18682,7 +18706,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 10}, + [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}, @@ -18694,7 +18718,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 28, .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}, @@ -18720,8 +18744,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 96, .external_lex_state = 2}, + [5631] = {.lex_state = 28, .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}, @@ -18745,7 +18769,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 10}, + [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}, @@ -18854,8 +18878,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 28, .external_lex_state = 2}, - [5766] = {.lex_state = 96, .external_lex_state = 2}, + [5765] = {.lex_state = 96, .external_lex_state = 2}, + [5766] = {.lex_state = 2, .external_lex_state = 10}, [5767] = {.lex_state = 96, .external_lex_state = 2}, [5768] = {.lex_state = 96, .external_lex_state = 2}, [5769] = {.lex_state = 96, .external_lex_state = 2}, @@ -18869,14 +18893,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5780] = {.lex_state = 28, .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 = 28, .external_lex_state = 2}, + [5785] = {.lex_state = 96, .external_lex_state = 2}, [5786] = {.lex_state = 96, .external_lex_state = 2}, - [5787] = {.lex_state = 2, .external_lex_state = 10}, + [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}, @@ -18900,17 +18924,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5811] = {.lex_state = 2, .external_lex_state = 10}, [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}, + [5816] = {.lex_state = 28, .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}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18932,6 +18964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), @@ -19076,86 +19109,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5678), - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_program] = STATE(5646), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3794), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -19236,78 +19269,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_pattern] = STATE(4257), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_pattern] = STATE(4009), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -19424,78 +19457,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_pattern] = STATE(4257), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_pattern] = STATE(4009), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -19612,97 +19645,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5640), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5640), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5640), - [sym_spread_element] = STATE(4707), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4707), - [sym_pair] = STATE(4707), - [sym_pair_pattern] = STATE(4647), - [sym__property_name] = STATE(3653), - [sym_computed_property_name] = STATE(3653), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_accessibility_modifier] = STATE(2748), - [sym_override_modifier] = STATE(2758), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5520), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5520), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5520), + [sym_spread_element] = STATE(4796), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2301), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_pair_pattern] = STATE(4753), + [sym__property_name] = STATE(3630), + [sym_computed_property_name] = STATE(3630), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2740), + [sym_override_modifier] = STATE(2780), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3733), - [aux_sym_object_repeat1] = STATE(4836), - [aux_sym_object_pattern_repeat1] = STATE(4931), + [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_object_repeat1] = STATE(4685), + [aux_sym_object_pattern_repeat1] = STATE(4692), [sym_identifier] = ACTIONS(229), [anon_sym_export] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(233), @@ -19785,97 +19818,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5640), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5640), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5640), - [sym_spread_element] = STATE(4707), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4707), - [sym_pair] = STATE(4707), - [sym_pair_pattern] = STATE(4647), - [sym__property_name] = STATE(3653), - [sym_computed_property_name] = STATE(3653), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_accessibility_modifier] = STATE(2748), - [sym_override_modifier] = STATE(2758), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3733), - [aux_sym_object_repeat1] = STATE(4836), - [aux_sym_object_pattern_repeat1] = STATE(4931), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5520), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5520), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5520), + [sym_spread_element] = STATE(4796), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2301), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_pair_pattern] = STATE(4753), + [sym__property_name] = STATE(3630), + [sym_computed_property_name] = STATE(3630), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2740), + [sym_override_modifier] = STATE(2780), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_object_repeat1] = STATE(4685), + [aux_sym_object_pattern_repeat1] = STATE(4692), [sym_identifier] = ACTIONS(229), [anon_sym_export] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(233), @@ -19958,97 +19991,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5640), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5640), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5640), - [sym_spread_element] = STATE(4844), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), - [sym__property_name] = STATE(3653), - [sym_computed_property_name] = STATE(3653), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_accessibility_modifier] = STATE(2748), - [sym_override_modifier] = STATE(2758), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5520), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5520), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5520), + [sym_spread_element] = STATE(4812), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2301), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), + [sym__property_name] = STATE(3630), + [sym_computed_property_name] = STATE(3630), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2740), + [sym_override_modifier] = STATE(2780), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3733), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), + [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), [sym_identifier] = ACTIONS(275), [anon_sym_export] = ACTIONS(277), [anon_sym_STAR] = ACTIONS(233), @@ -20131,110 +20164,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5640), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5640), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5640), - [sym_spread_element] = STATE(4844), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), - [sym__property_name] = STATE(3653), - [sym_computed_property_name] = STATE(3653), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_accessibility_modifier] = STATE(2748), - [sym_override_modifier] = STATE(2758), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3733), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(307), - [anon_sym_export] = ACTIONS(309), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5520), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5520), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5520), + [sym_spread_element] = STATE(4796), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2301), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_pair_pattern] = STATE(4753), + [sym__property_name] = STATE(3630), + [sym_computed_property_name] = STATE(3630), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2740), + [sym_override_modifier] = STATE(2780), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_object_repeat1] = STATE(4685), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(229), + [anon_sym_export] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(311), - [anon_sym_namespace] = ACTIONS(313), + [anon_sym_type] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(237), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(315), + [anon_sym_let] = ACTIONS(243), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20257,9 +20290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(317), + [anon_sym_async] = ACTIONS(247), [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(319), + [anon_sym_new] = ACTIONS(249), [anon_sym_using] = ACTIONS(81), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), @@ -20282,132 +20315,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [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_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), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5640), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5640), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5640), - [sym_spread_element] = STATE(4707), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4707), - [sym_pair] = STATE(4707), - [sym_pair_pattern] = STATE(4647), - [sym__property_name] = STATE(3653), - [sym_computed_property_name] = STATE(3653), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_accessibility_modifier] = STATE(2748), - [sym_override_modifier] = STATE(2758), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3733), - [aux_sym_object_repeat1] = STATE(4836), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5520), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5520), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5520), + [sym_spread_element] = STATE(4812), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2301), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), + [sym__property_name] = STATE(3630), + [sym_computed_property_name] = STATE(3630), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2740), + [sym_override_modifier] = STATE(2780), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(309), + [anon_sym_export] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [anon_sym_type] = ACTIONS(313), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(283), [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(317), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20430,9 +20463,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(247), + [anon_sym_async] = ACTIONS(319), [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(249), + [anon_sym_new] = ACTIONS(321), [anon_sym_using] = ACTIONS(81), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), @@ -20455,107 +20488,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [ts_builtin_sym_end] = ACTIONS(339), [sym_identifier] = ACTIONS(341), [anon_sym_export] = ACTIONS(344), @@ -20638,85 +20671,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(496), @@ -20798,85 +20831,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(500), @@ -20958,85 +20991,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(504), @@ -21118,85 +21151,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(508), @@ -21278,85 +21311,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -21436,85 +21469,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [ts_builtin_sym_end] = ACTIONS(514), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -21594,91 +21627,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3794), + [ts_builtin_sym_end] = ACTIONS(516), [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), @@ -21752,91 +21785,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), - [ts_builtin_sym_end] = ACTIONS(518), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(518), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21910,85 +21943,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22068,91 +22101,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3794), + [ts_builtin_sym_end] = ACTIONS(516), [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_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22226,91 +22259,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(522), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22384,91 +22417,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(524), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22542,91 +22575,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(526), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22700,91 +22733,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(528), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22858,91 +22891,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(530), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23016,91 +23049,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(532), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23174,91 +23207,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(534), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23332,91 +23365,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(29), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(536), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23490,91 +23523,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(538), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23648,91 +23681,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3733), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3794), [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(540), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23806,91 +23839,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3733), - [ts_builtin_sym_end] = ACTIONS(518), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(28), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(3794), [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), @@ -23964,84 +23997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(796), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(788), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -24120,399 +24153,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(851), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), - [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_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_try] = ACTIONS(49), - [anon_sym_break] = ACTIONS(51), - [anon_sym_continue] = ACTIONS(53), - [anon_sym_debugger] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_throw] = ACTIONS(59), - [anon_sym_SEMI] = 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_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(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), - }, - [33] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(905), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), - [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_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), - [anon_sym_do] = ACTIONS(47), - [anon_sym_try] = ACTIONS(49), - [anon_sym_break] = ACTIONS(51), - [anon_sym_continue] = ACTIONS(53), - [anon_sym_debugger] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_throw] = ACTIONS(59), - [anon_sym_SEMI] = 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(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [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(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_html_comment] = ACTIONS(5), - }, - [34] = { - [sym_import] = STATE(3349), + [sym_import] = STATE(3332), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4957), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4967), - [aux_sym_array_pattern_repeat1] = STATE(4970), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4970), + [sym_optional_tuple_parameter] = STATE(4970), + [sym_optional_type] = STATE(4970), + [sym_rest_type] = STATE(4970), + [sym__tuple_type_member] = STATE(4970), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -24587,259 +24308,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(818), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), - [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_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), - [anon_sym_do] = ACTIONS(47), - [anon_sym_try] = ACTIONS(49), - [anon_sym_break] = ACTIONS(51), - [anon_sym_continue] = ACTIONS(53), - [anon_sym_debugger] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_throw] = ACTIONS(59), - [anon_sym_SEMI] = 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(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [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(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_html_comment] = ACTIONS(5), - }, - [36] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(851), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [33] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(883), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), + [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_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -24853,10 +24418,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24878,124 +24443,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [37] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [34] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(822), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), + [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_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25009,10 +24574,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25034,106 +24599,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [38] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(901), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), + [35] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(757), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25211,85 +24776,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(796), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), + [36] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(858), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25367,85 +24932,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), + [37] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(848), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25523,241 +25088,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_import] = STATE(3349), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [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_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [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(85), - [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), - [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), - }, - [42] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(768), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), + [38] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(872), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25835,85 +25244,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(905), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), + [39] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(835), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25991,415 +25400,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_import] = STATE(3349), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [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_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [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(85), - [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), - [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), - }, - [45] = { - [sym_import] = STATE(3349), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [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_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [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(85), - [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), - [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), - }, - [46] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(820), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [40] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(835), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), + [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(25), + [anon_sym_with] = ACTIONS(554), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(556), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(558), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(562), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26413,10 +25510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_class] = ACTIONS(564), + [anon_sym_async] = ACTIONS(566), + [anon_sym_function] = ACTIONS(568), + [anon_sym_new] = ACTIONS(570), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26438,106 +25535,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(901), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), + [41] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(822), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -26615,103 +25712,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(818), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [42] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(4699), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), + [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(25), + [anon_sym_with] = ACTIONS(554), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(556), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(558), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(562), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26725,10 +25822,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_class] = ACTIONS(564), + [anon_sym_async] = ACTIONS(566), + [anon_sym_function] = ACTIONS(568), + [anon_sym_new] = ACTIONS(570), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26750,280 +25847,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_html_comment] = ACTIONS(5), }, - [49] = { - [sym_import] = STATE(3349), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [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_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [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(85), - [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), - [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), - }, - [50] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(831), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3733), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [43] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(848), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), + [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(25), + [anon_sym_with] = ACTIONS(554), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(556), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(558), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(562), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27037,10 +25978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_class] = ACTIONS(564), + [anon_sym_async] = ACTIONS(566), + [anon_sym_function] = ACTIONS(568), + [anon_sym_new] = ACTIONS(570), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27062,106 +26003,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(5558), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), + [44] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(872), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -27239,95 +26180,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_import] = STATE(3349), + [45] = { + [sym_import] = STATE(3332), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4669), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4681), + [aux_sym_array_pattern_repeat1] = STATE(4696), [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_COMMA] = ACTIONS(642), [anon_sym_typeof] = ACTIONS(590), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), @@ -27337,7 +26278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(650), + [anon_sym_RBRACK] = ACTIONS(644), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -27395,85 +26336,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(4677), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), + [46] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -27551,251 +26492,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_import] = STATE(3349), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [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_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [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), + [47] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(883), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), + [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_await] = ACTIONS(43), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(47), + [anon_sym_try] = ACTIONS(49), + [anon_sym_break] = ACTIONS(51), + [anon_sym_continue] = ACTIONS(53), + [anon_sym_debugger] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_SEMI] = 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(564), + [anon_sym_async] = ACTIONS(566), + [anon_sym_function] = ACTIONS(568), + [anon_sym_new] = ACTIONS(570), + [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(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_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(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_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_html_comment] = ACTIONS(5), }, - [55] = { - [sym_import] = STATE(3349), + [48] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(858), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), + [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_await] = ACTIONS(43), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(47), + [anon_sym_try] = ACTIONS(49), + [anon_sym_break] = ACTIONS(51), + [anon_sym_continue] = ACTIONS(53), + [anon_sym_debugger] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_SEMI] = 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(564), + [anon_sym_async] = ACTIONS(566), + [anon_sym_function] = ACTIONS(568), + [anon_sym_new] = ACTIONS(570), + [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(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_html_comment] = ACTIONS(5), + }, + [49] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(788), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), + [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_await] = ACTIONS(43), + [anon_sym_while] = ACTIONS(45), + [anon_sym_do] = ACTIONS(47), + [anon_sym_try] = ACTIONS(49), + [anon_sym_break] = ACTIONS(51), + [anon_sym_continue] = ACTIONS(53), + [anon_sym_debugger] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_SEMI] = 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_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(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), + }, + [50] = { + [sym_import] = STATE(3332), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4957), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4967), - [aux_sym_array_pattern_repeat1] = STATE(4970), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), [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_COMMA] = ACTIONS(642), [anon_sym_typeof] = ACTIONS(590), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), @@ -27805,7 +27058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(646), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -27863,95 +27116,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_import] = STATE(3349), + [51] = { + [sym_import] = STATE(3332), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), [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_COMMA] = ACTIONS(642), [anon_sym_typeof] = ACTIONS(590), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), @@ -27961,7 +27214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(648), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -28019,95 +27272,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_import] = STATE(3349), + [52] = { + [sym_import] = STATE(3332), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4283), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(4088), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4972), - [sym_optional_tuple_parameter] = STATE(4972), - [sym_optional_type] = STATE(4972), - [sym_rest_type] = STATE(4972), - [sym__tuple_type_member] = STATE(4972), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5422), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), [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(658), + [anon_sym_COMMA] = ACTIONS(642), [anon_sym_typeof] = ACTIONS(590), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), @@ -28117,7 +27370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(660), + [anon_sym_RBRACK] = ACTIONS(650), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -28175,103 +27428,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(820), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [53] = { + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3794), + [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_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -28285,10 +27538,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28310,106 +27563,886 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, + [54] = { + [sym_import] = STATE(3332), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [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(642), + [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_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(602), + [anon_sym_function] = ACTIONS(157), + [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(85), + [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), + [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), + }, + [55] = { + [sym_import] = STATE(3332), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [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(642), + [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_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(602), + [anon_sym_function] = ACTIONS(157), + [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(85), + [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), + [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), + }, + [56] = { + [sym_import] = STATE(3332), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [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(642), + [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(656), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(602), + [anon_sym_function] = ACTIONS(157), + [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(85), + [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), + [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_import] = STATE(3332), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4669), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4681), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [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(642), + [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_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(602), + [anon_sym_function] = ACTIONS(157), + [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(85), + [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), + [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), + }, + [58] = { + [sym_import] = STATE(3332), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4297), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(4122), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [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(642), + [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_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(602), + [anon_sym_function] = ACTIONS(157), + [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(85), + [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), + [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), + }, [59] = { - [sym_export_statement] = STATE(850), - [sym_declaration] = STATE(850), - [sym_import] = STATE(3315), - [sym_import_statement] = STATE(850), - [sym_statement] = STATE(831), - [sym_expression_statement] = STATE(850), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_for_in_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_with_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_debugger_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_empty_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(3866), + [sym_export_statement] = STATE(847), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3432), + [sym_import_statement] = STATE(847), + [sym_statement] = STATE(5551), + [sym_expression_statement] = STATE(847), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_for_in_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_with_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_debugger_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_empty_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3735), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -28488,51 +28521,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -28642,51 +28675,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -28796,51 +28829,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -28950,51 +28983,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4257), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4009), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(699), + [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(701), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(703), + [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(706), + [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(709), + [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(711), + [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(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(714), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(193), + [sym_this] = ACTIONS(719), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(721), + [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(723), + [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_html_comment] = ACTIONS(5), + }, + [64] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4009), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -29102,86 +29288,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [sym_import] = STATE(3363), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3914), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3914), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [65] = { + [sym_import] = STATE(3413), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1520), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4012), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4012), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3914), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5755), - [sym_string] = STATE(2165), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4012), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5538), + [sym_string] = STATE(2263), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), + [sym_rest_pattern] = STATE(3712), [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4352), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(425), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4401), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(379), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(725), [anon_sym_export] = ACTIONS(727), [anon_sym_STAR] = ACTIONS(582), @@ -29255,52 +29441,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [65] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4257), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [66] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3916), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -29380,7 +29566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(714), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(719), + [sym_this] = ACTIONS(787), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), @@ -29408,52 +29594,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(3900), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [67] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3922), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -29533,7 +29719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(714), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(787), + [sym_this] = ACTIONS(789), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), @@ -29561,86 +29747,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_import] = STATE(3363), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3914), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3914), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [68] = { + [sym_import] = STATE(3413), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1567), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4012), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4012), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3914), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5755), - [sym_string] = STATE(2165), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4012), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5462), + [sym_string] = STATE(2263), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), + [sym_rest_pattern] = STATE(3712), [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4432), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(425), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4401), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(379), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(725), [anon_sym_export] = ACTIONS(727), [anon_sym_STAR] = ACTIONS(582), @@ -29714,205 +29900,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(3891), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(699), - [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(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [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(706), - [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(709), - [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(711), - [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(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [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(723), - [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_html_comment] = ACTIONS(5), - }, [69] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4271), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4064), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -30021,51 +30054,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4193), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3894), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -30174,51 +30207,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4194), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3898), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -30327,51 +30360,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4199), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3888), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -30480,85 +30513,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(3363), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1563), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3914), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3914), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_import] = STATE(3413), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1567), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4012), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4012), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3914), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5679), - [sym_string] = STATE(2165), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4012), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5462), + [sym_string] = STATE(2263), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), + [sym_rest_pattern] = STATE(3712), [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4432), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(425), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4420), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(379), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(725), [anon_sym_export] = ACTIONS(727), [anon_sym_STAR] = ACTIONS(582), @@ -30633,234 +30666,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4432), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), - [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(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [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(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), - [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_html_comment] = ACTIONS(5), - }, - [75] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(809), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(809), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(809), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -30905,7 +30786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -30913,260 +30794,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(831), - [anon_sym_RBRACE] = ACTIONS(831), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(831), + [75] = { + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_pattern] = STATE(4025), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4401), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), + [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(180), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [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(823), + [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_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [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(180), - [anon_sym_void] = ACTIONS(184), + [anon_sym_void] = ACTIONS(182), [anon_sym_delete] = ACTIONS(184), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(189), + [sym_number] = ACTIONS(191), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), + [sym_this] = ACTIONS(827), [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(833), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_true] = ACTIONS(199), + [sym_false] = ACTIONS(199), + [sym_null] = ACTIONS(199), + [sym_undefined] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(829), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), + [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_html_comment] = ACTIONS(5), }, - [77] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [76] = { + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4366), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4419), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(582), @@ -31207,7 +31088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), + [sym_this] = ACTIONS(827), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(199), [sym_false] = ACTIONS(199), @@ -31215,15 +31096,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(201), [anon_sym_AT] = ACTIONS(775), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(829), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), @@ -31240,85 +31121,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, + [77] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(811), + [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(813), + [anon_sym_RBRACK] = ACTIONS(128), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(819), + [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(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [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(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, [78] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4444), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4420), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(582), @@ -31359,7 +31392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), + [sym_this] = ACTIONS(827), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(199), [sym_false] = ACTIONS(199), @@ -31367,15 +31400,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(201), [anon_sym_AT] = ACTIONS(775), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(829), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), @@ -31393,84 +31426,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4354), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4382), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(582), @@ -31511,7 +31544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), + [sym_this] = ACTIONS(827), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(199), [sym_false] = ACTIONS(199), @@ -31519,15 +31552,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(201), [anon_sym_AT] = ACTIONS(775), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(829), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), @@ -31545,84 +31578,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4352), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4489), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(582), @@ -31663,7 +31696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), + [sym_this] = ACTIONS(827), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(199), [sym_false] = ACTIONS(199), @@ -31671,15 +31704,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(201), [anon_sym_AT] = ACTIONS(775), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(829), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(207), [anon_sym_number] = ACTIONS(207), @@ -31697,228 +31730,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), - [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(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [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(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [82] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(835), [anon_sym_export] = ACTIONS(837), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(837), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(845), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(843), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(847), [anon_sym_using] = ACTIONS(165), @@ -31947,7 +31830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -31965,21 +31848,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [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(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(837), [anon_sym_readonly] = ACTIONS(837), [anon_sym_get] = ACTIONS(837), [anon_sym_set] = ACTIONS(837), - [anon_sym_QMARK] = ACTIONS(723), [anon_sym_declare] = ACTIONS(837), [anon_sym_public] = ACTIONS(837), [anon_sym_private] = ACTIONS(837), @@ -31993,62 +31875,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(837), [anon_sym_object] = ACTIONS(837), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [82] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(664), @@ -32057,7 +31941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(851), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), @@ -32146,81 +32029,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), + [83] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(681), - [anon_sym_function] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(687), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -32247,7 +32130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -32265,86 +32148,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), [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(691), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [84] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), @@ -32355,9 +32238,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(184), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(853), - [anon_sym_of] = ACTIONS(856), + [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), @@ -32446,81 +32329,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [85] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(681), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(687), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -32547,7 +32430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -32565,112 +32448,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [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(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [86] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(855), + [anon_sym_export] = ACTIONS(857), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), + [anon_sym_type] = ACTIONS(857), [anon_sym_EQ] = ACTIONS(221), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(224), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(857), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [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(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(865), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(867), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -32715,7 +32598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -32723,104 +32606,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [anon_sym_object] = ACTIONS(857), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), + [87] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(871), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_type] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_namespace] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(681), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(877), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(687), + [anon_sym_new] = ACTIONS(881), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -32847,7 +32731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -32865,86 +32749,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), [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(691), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(871), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [anon_sym_declare] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_override] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_any] = ACTIONS(871), + [anon_sym_number] = ACTIONS(871), + [anon_sym_boolean] = ACTIONS(871), + [anon_sym_string] = ACTIONS(871), + [anon_sym_symbol] = ACTIONS(871), + [anon_sym_object] = ACTIONS(871), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [88] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), @@ -32955,9 +32838,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(184), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(858), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), @@ -33046,232 +32929,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(868), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(872), - [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(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [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(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), - [anon_sym_AT] = ACTIONS(99), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [91] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [89] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -33316,7 +33048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -33324,84 +33056,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(876), + [90] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(878), + [anon_sym_type] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(880), + [anon_sym_namespace] = ACTIONS(841), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(876), + [anon_sym_let] = ACTIONS(837), [anon_sym_BANG] = ACTIONS(184), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), @@ -33416,11 +33149,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(882), + [anon_sym_async] = ACTIONS(843), [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(886), + [anon_sym_new] = ACTIONS(847), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -33447,7 +33180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -33475,103 +33208,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(876), - [anon_sym_readonly] = ACTIONS(876), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [anon_sym_declare] = ACTIONS(876), - [anon_sym_public] = ACTIONS(876), - [anon_sym_private] = ACTIONS(876), - [anon_sym_protected] = ACTIONS(876), - [anon_sym_override] = ACTIONS(876), - [anon_sym_module] = ACTIONS(876), - [anon_sym_any] = ACTIONS(876), - [anon_sym_number] = ACTIONS(876), - [anon_sym_boolean] = ACTIONS(876), - [anon_sym_string] = ACTIONS(876), - [anon_sym_symbol] = ACTIONS(876), - [anon_sym_object] = ACTIONS(876), + [anon_sym_static] = ACTIONS(837), + [anon_sym_readonly] = ACTIONS(837), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(837), + [anon_sym_public] = ACTIONS(837), + [anon_sym_private] = ACTIONS(837), + [anon_sym_protected] = ACTIONS(837), + [anon_sym_override] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), + [anon_sym_object] = ACTIONS(837), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [91] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(862), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(872), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -33616,7 +33348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -33624,103 +33356,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [94] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(876), + [92] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(871), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(878), + [anon_sym_type] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_namespace] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(876), + [anon_sym_let] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(882), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(877), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(886), + [anon_sym_new] = ACTIONS(881), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -33747,7 +33481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -33765,112 +33499,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), [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(691), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(876), - [anon_sym_readonly] = ACTIONS(876), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [anon_sym_declare] = ACTIONS(876), - [anon_sym_public] = ACTIONS(876), - [anon_sym_private] = ACTIONS(876), - [anon_sym_protected] = ACTIONS(876), - [anon_sym_override] = ACTIONS(876), - [anon_sym_module] = ACTIONS(876), - [anon_sym_any] = ACTIONS(876), - [anon_sym_number] = ACTIONS(876), - [anon_sym_boolean] = ACTIONS(876), - [anon_sym_string] = ACTIONS(876), - [anon_sym_symbol] = ACTIONS(876), - [anon_sym_object] = ACTIONS(876), + [anon_sym_static] = ACTIONS(871), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [anon_sym_declare] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_override] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_any] = ACTIONS(871), + [anon_sym_number] = ACTIONS(871), + [anon_sym_boolean] = ACTIONS(871), + [anon_sym_string] = ACTIONS(871), + [anon_sym_symbol] = ACTIONS(871), + [anon_sym_object] = ACTIONS(871), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [93] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(855), + [anon_sym_export] = ACTIONS(857), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(221), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(224), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(857), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(224), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(865), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(867), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -33915,7 +33648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -33923,104 +33656,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [anon_sym_object] = ACTIONS(857), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [94] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(862), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(872), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -34065,7 +33799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -34073,103 +33807,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(893), - [anon_sym_export] = ACTIONS(895), + [95] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(897), + [anon_sym_type] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(895), + [anon_sym_let] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(888), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(681), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(908), + [anon_sym_new] = ACTIONS(687), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -34196,7 +33930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -34214,111 +33948,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [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(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(895), - [anon_sym_readonly] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_override] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_object] = ACTIONS(895), + [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(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [96] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(871), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(862), + [anon_sym_let] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [anon_sym_RBRACK] = ACTIONS(890), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(877), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(872), + [anon_sym_new] = ACTIONS(881), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -34363,7 +34098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -34371,103 +34106,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [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_static] = ACTIONS(871), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [anon_sym_declare] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_override] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_any] = ACTIONS(871), + [anon_sym_number] = ACTIONS(871), + [anon_sym_boolean] = ACTIONS(871), + [anon_sym_string] = ACTIONS(871), + [anon_sym_symbol] = ACTIONS(871), + [anon_sym_object] = ACTIONS(871), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [97] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [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(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -34512,7 +34247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -34520,103 +34255,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [98] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(855), + [anon_sym_export] = ACTIONS(857), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(893), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(857), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [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(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(865), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(867), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -34661,7 +34396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -34669,103 +34404,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [anon_sym_object] = ACTIONS(857), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [99] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(871), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_namespace] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(890), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(837), + [anon_sym_let] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(809), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(890), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(877), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(847), + [anon_sym_new] = ACTIONS(881), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -34810,7 +34545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -34818,103 +34553,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(871), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [anon_sym_declare] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_override] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_any] = ACTIONS(871), + [anon_sym_number] = ACTIONS(871), + [anon_sym_boolean] = ACTIONS(871), + [anon_sym_string] = ACTIONS(871), + [anon_sym_symbol] = ACTIONS(871), + [anon_sym_object] = ACTIONS(871), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [100] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(897), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(899), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(862), + [anon_sym_let] = ACTIONS(897), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(904), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(906), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(872), + [anon_sym_new] = ACTIONS(910), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -34959,7 +34694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -34967,101 +34702,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [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_static] = ACTIONS(897), + [anon_sym_readonly] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(897), + [anon_sym_public] = ACTIONS(897), + [anon_sym_private] = ACTIONS(897), + [anon_sym_protected] = ACTIONS(897), + [anon_sym_override] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_any] = ACTIONS(897), + [anon_sym_number] = ACTIONS(897), + [anon_sym_boolean] = ACTIONS(897), + [anon_sym_string] = ACTIONS(897), + [anon_sym_symbol] = ACTIONS(897), + [anon_sym_object] = ACTIONS(897), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [101] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(855), + [anon_sym_export] = ACTIONS(857), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(893), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(857), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), + [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(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(865), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(867), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -35106,7 +34843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -35114,103 +34851,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [anon_sym_object] = ACTIONS(857), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5352), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [102] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(871), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(862), + [anon_sym_type] = ACTIONS(871), [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(224), [anon_sym_RBRACE] = ACTIONS(224), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(862), + [anon_sym_let] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(877), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(872), + [anon_sym_new] = ACTIONS(881), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -35255,7 +34992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -35263,101 +35000,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [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_static] = ACTIONS(871), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [anon_sym_declare] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_override] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_any] = ACTIONS(871), + [anon_sym_number] = ACTIONS(871), + [anon_sym_boolean] = ACTIONS(871), + [anon_sym_string] = ACTIONS(871), + [anon_sym_symbol] = ACTIONS(871), + [anon_sym_object] = ACTIONS(871), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(917), - [anon_sym_export] = ACTIONS(919), + [103] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(897), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(919), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_type] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(919), + [anon_sym_let] = ACTIONS(897), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(917), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(906), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(929), + [anon_sym_new] = ACTIONS(910), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -35384,7 +35122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -35402,111 +35140,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), [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(691), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(919), - [anon_sym_readonly] = ACTIONS(919), - [anon_sym_get] = ACTIONS(919), - [anon_sym_set] = ACTIONS(919), - [anon_sym_declare] = ACTIONS(919), - [anon_sym_public] = ACTIONS(919), - [anon_sym_private] = ACTIONS(919), - [anon_sym_protected] = ACTIONS(919), - [anon_sym_override] = ACTIONS(919), - [anon_sym_module] = ACTIONS(919), - [anon_sym_any] = ACTIONS(919), - [anon_sym_number] = ACTIONS(919), - [anon_sym_boolean] = ACTIONS(919), - [anon_sym_string] = ACTIONS(919), - [anon_sym_symbol] = ACTIONS(919), - [anon_sym_object] = ACTIONS(919), + [anon_sym_static] = ACTIONS(897), + [anon_sym_readonly] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(897), + [anon_sym_public] = ACTIONS(897), + [anon_sym_private] = ACTIONS(897), + [anon_sym_protected] = ACTIONS(897), + [anon_sym_override] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_any] = ACTIONS(897), + [anon_sym_number] = ACTIONS(897), + [anon_sym_boolean] = ACTIONS(897), + [anon_sym_string] = ACTIONS(897), + [anon_sym_symbol] = ACTIONS(897), + [anon_sym_object] = ACTIONS(897), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(893), - [anon_sym_export] = ACTIONS(895), + [104] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(897), + [anon_sym_type] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(895), + [anon_sym_let] = ACTIONS(921), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(908), + [anon_sym_new] = ACTIONS(931), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -35533,7 +35269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -35551,109 +35287,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [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(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(895), - [anon_sym_readonly] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_override] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_object] = ACTIONS(895), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [anon_sym_object] = ACTIONS(921), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [105] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3956), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5358), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(871), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_RBRACE] = ACTIONS(224), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(877), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(881), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -35698,7 +35436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -35706,103 +35444,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(871), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [anon_sym_declare] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_override] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_any] = ACTIONS(871), + [anon_sym_number] = ACTIONS(871), + [anon_sym_boolean] = ACTIONS(871), + [anon_sym_string] = ACTIONS(871), + [anon_sym_symbol] = ACTIONS(871), + [anon_sym_object] = ACTIONS(871), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(893), - [anon_sym_export] = ACTIONS(895), + [106] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4303), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5434), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(869), + [anon_sym_export] = ACTIONS(871), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_type] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(224), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(895), + [anon_sym_let] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(902), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(904), + [anon_sym_async] = ACTIONS(877), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(908), + [anon_sym_new] = ACTIONS(881), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -35847,7 +35584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -35855,250 +35592,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(895), - [anon_sym_readonly] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_override] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_object] = ACTIONS(895), + [anon_sym_static] = ACTIONS(871), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [anon_sym_declare] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_override] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_any] = ACTIONS(871), + [anon_sym_number] = ACTIONS(871), + [anon_sym_boolean] = ACTIONS(871), + [anon_sym_string] = ACTIONS(871), + [anon_sym_symbol] = ACTIONS(871), + [anon_sym_object] = ACTIONS(871), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1321), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1714), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1321), - [sym_subscript_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1321), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(917), - [anon_sym_export] = ACTIONS(919), + [107] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(919), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(919), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(927), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(929), - [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(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [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(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [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(691), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(919), - [anon_sym_readonly] = ACTIONS(919), - [anon_sym_get] = ACTIONS(919), - [anon_sym_set] = ACTIONS(919), - [anon_sym_declare] = ACTIONS(919), - [anon_sym_public] = ACTIONS(919), - [anon_sym_private] = ACTIONS(919), - [anon_sym_protected] = ACTIONS(919), - [anon_sym_override] = ACTIONS(919), - [anon_sym_module] = ACTIONS(919), - [anon_sym_any] = ACTIONS(919), - [anon_sym_number] = ACTIONS(919), - [anon_sym_boolean] = ACTIONS(919), - [anon_sym_string] = ACTIONS(919), - [anon_sym_symbol] = ACTIONS(919), - [anon_sym_object] = ACTIONS(919), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [110] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4290), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5426), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(872), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -36143,7 +35731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -36151,102 +35739,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(893), - [anon_sym_export] = ACTIONS(895), + [108] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(897), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_type] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(899), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(895), + [anon_sym_let] = ACTIONS(897), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(933), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(904), + [anon_sym_async] = ACTIONS(906), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(908), + [anon_sym_new] = ACTIONS(910), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -36291,7 +35880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -36299,101 +35888,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(895), - [anon_sym_readonly] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_override] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_object] = ACTIONS(895), + [anon_sym_static] = ACTIONS(897), + [anon_sym_readonly] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(897), + [anon_sym_public] = ACTIONS(897), + [anon_sym_private] = ACTIONS(897), + [anon_sym_protected] = ACTIONS(897), + [anon_sym_override] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_any] = ACTIONS(897), + [anon_sym_number] = ACTIONS(897), + [anon_sym_boolean] = ACTIONS(897), + [anon_sym_string] = ACTIONS(897), + [anon_sym_symbol] = ACTIONS(897), + [anon_sym_object] = ACTIONS(897), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), + [109] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(897), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_type] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(937), + [anon_sym_let] = ACTIONS(897), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(904), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(943), + [anon_sym_async] = ACTIONS(906), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(945), + [anon_sym_new] = ACTIONS(910), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -36420,7 +36010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -36438,7 +36028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -36446,100 +36036,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(897), + [anon_sym_readonly] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(897), + [anon_sym_public] = ACTIONS(897), + [anon_sym_private] = ACTIONS(897), + [anon_sym_protected] = ACTIONS(897), + [anon_sym_override] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_any] = ACTIONS(897), + [anon_sym_number] = ACTIONS(897), + [anon_sym_boolean] = ACTIONS(897), + [anon_sym_string] = ACTIONS(897), + [anon_sym_symbol] = ACTIONS(897), + [anon_sym_object] = ACTIONS(897), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), + [110] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(935), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_type] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(937), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(937), + [anon_sym_let] = ACTIONS(935), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(943), + [anon_sym_async] = ACTIONS(941), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_EQ_GT] = ACTIONS(943), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(945), [anon_sym_using] = ACTIONS(165), @@ -36586,7 +36175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -36594,102 +36183,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(935), + [anon_sym_readonly] = ACTIONS(935), + [anon_sym_get] = ACTIONS(935), + [anon_sym_set] = ACTIONS(935), + [anon_sym_declare] = ACTIONS(935), + [anon_sym_public] = ACTIONS(935), + [anon_sym_private] = ACTIONS(935), + [anon_sym_protected] = ACTIONS(935), + [anon_sym_override] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_any] = ACTIONS(935), + [anon_sym_number] = ACTIONS(935), + [anon_sym_boolean] = ACTIONS(935), + [anon_sym_string] = ACTIONS(935), + [anon_sym_symbol] = ACTIONS(935), + [anon_sym_object] = ACTIONS(935), [anon_sym_satisfies] = ACTIONS(122), [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [111] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1282), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1797), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1282), + [sym_subscript_expression] = STATE(1282), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1282), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(921), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(931), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -36716,7 +36305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -36734,109 +36323,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [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(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [anon_sym_object] = ACTIONS(921), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [112] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(853), - [anon_sym_of] = ACTIONS(856), + [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_EQ_GT] = ACTIONS(943), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -36881,7 +36471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -36889,101 +36479,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [113] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(935), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(937), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(161), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(935), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(941), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(943), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(945), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -37010,7 +36601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -37028,7 +36619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -37036,101 +36627,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(935), + [anon_sym_readonly] = ACTIONS(935), + [anon_sym_get] = ACTIONS(935), + [anon_sym_set] = ACTIONS(935), + [anon_sym_declare] = ACTIONS(935), + [anon_sym_public] = ACTIONS(935), + [anon_sym_private] = ACTIONS(935), + [anon_sym_protected] = ACTIONS(935), + [anon_sym_override] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_any] = ACTIONS(935), + [anon_sym_number] = ACTIONS(935), + [anon_sym_boolean] = ACTIONS(935), + [anon_sym_string] = ACTIONS(935), + [anon_sym_symbol] = ACTIONS(935), + [anon_sym_object] = ACTIONS(935), [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), + [114] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(953), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(809), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(959), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(963), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -37175,7 +36767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -37183,101 +36775,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(893), - [anon_sym_export] = ACTIONS(895), + [115] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(949), + [anon_sym_export] = ACTIONS(951), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_type] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(895), + [anon_sym_let] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(904), + [anon_sym_async] = ACTIONS(957), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(959), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(908), + [anon_sym_new] = ACTIONS(961), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -37322,7 +36914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -37330,101 +36922,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(895), - [anon_sym_readonly] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_override] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_object] = ACTIONS(895), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(965), - [anon_sym_export] = ACTIONS(967), + [116] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(897), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_type] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(967), + [anon_sym_let] = ACTIONS(897), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(973), + [anon_sym_async] = ACTIONS(906), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(975), + [anon_sym_new] = ACTIONS(910), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -37451,7 +37043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), @@ -37469,7 +37061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -37477,101 +37069,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(897), + [anon_sym_readonly] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(897), + [anon_sym_public] = ACTIONS(897), + [anon_sym_private] = ACTIONS(897), + [anon_sym_protected] = ACTIONS(897), + [anon_sym_override] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_any] = ACTIONS(897), + [anon_sym_number] = ACTIONS(897), + [anon_sym_boolean] = ACTIONS(897), + [anon_sym_string] = ACTIONS(897), + [anon_sym_symbol] = ACTIONS(897), + [anon_sym_object] = ACTIONS(897), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), + [117] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), + [anon_sym_type] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(967), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(953), + [anon_sym_let] = ACTIONS(965), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_of] = ACTIONS(122), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(971), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(973), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(975), + [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(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [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(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [118] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(959), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(963), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -37616,7 +37355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -37624,101 +37363,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(893), - [anon_sym_export] = ACTIONS(895), + [119] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(897), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_type] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(895), + [anon_sym_let] = ACTIONS(897), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(904), + [anon_sym_async] = ACTIONS(906), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(908), + [anon_sym_new] = ACTIONS(910), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -37763,7 +37502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -37771,101 +37510,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(895), - [anon_sym_readonly] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_override] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_object] = ACTIONS(895), + [anon_sym_static] = ACTIONS(897), + [anon_sym_readonly] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(897), + [anon_sym_public] = ACTIONS(897), + [anon_sym_private] = ACTIONS(897), + [anon_sym_protected] = ACTIONS(897), + [anon_sym_override] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_any] = ACTIONS(897), + [anon_sym_number] = ACTIONS(897), + [anon_sym_boolean] = ACTIONS(897), + [anon_sym_string] = ACTIONS(897), + [anon_sym_symbol] = ACTIONS(897), + [anon_sym_object] = ACTIONS(897), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [120] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(949), + [anon_sym_export] = ACTIONS(951), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(161), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(957), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(959), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(961), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -37910,7 +37649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -37918,101 +37657,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [121] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(161), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(959), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(819), + [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(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [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(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [122] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [anon_sym_RBRACK] = ACTIONS(161), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -38057,7 +37943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -38065,99 +37951,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(965), - [anon_sym_export] = ACTIONS(967), + [123] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(965), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_type] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(967), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(967), + [anon_sym_let] = ACTIONS(965), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(973), + [anon_sym_async] = ACTIONS(971), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(973), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(975), [anon_sym_using] = ACTIONS(165), @@ -38204,7 +38090,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(965), + [anon_sym_readonly] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [anon_sym_public] = ACTIONS(965), + [anon_sym_private] = ACTIONS(965), + [anon_sym_protected] = ACTIONS(965), + [anon_sym_override] = ACTIONS(965), + [anon_sym_module] = ACTIONS(965), + [anon_sym_any] = ACTIONS(965), + [anon_sym_number] = ACTIONS(965), + [anon_sym_boolean] = ACTIONS(965), + [anon_sym_string] = ACTIONS(965), + [anon_sym_symbol] = ACTIONS(965), + [anon_sym_object] = ACTIONS(965), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [124] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(973), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(819), + [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(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [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(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -38212,100 +38245,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(801), [anon_sym_EQ] = ACTIONS(979), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -38350,7 +38383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -38358,100 +38391,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(801), [anon_sym_EQ] = ACTIONS(981), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -38496,7 +38529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -38504,100 +38537,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4089), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3318), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(5396), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5496), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2030), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3926), + [sym_pattern] = STATE(5048), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3263), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5314), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(983), + [anon_sym_export] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_type] = ACTIONS(580), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(580), + [anon_sym_const] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(995), + [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(602), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(997), + [anon_sym_using] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_void] = ACTIONS(1005), + [anon_sym_delete] = ACTIONS(620), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_DASH_DASH] = ACTIONS(622), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1007), + [sym_number] = ACTIONS(1009), + [sym_private_property_identifier] = ACTIONS(624), + [sym_this] = ACTIONS(1011), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_undefined] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(1017), + [anon_sym_get] = ACTIONS(580), + [anon_sym_set] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(1019), + [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(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), + }, + [128] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(1035), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -38642,7 +38821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -38650,100 +38829,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [129] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(1037), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -38788,7 +38967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -38796,100 +38975,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [130] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(983), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(1039), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -38934,7 +39113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -38942,100 +39121,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [131] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4123), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5370), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(985), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -39080,7 +39259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -39088,100 +39267,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [132] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(987), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(1041), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -39226,7 +39405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -39234,100 +39413,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [133] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(989), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(1043), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -39372,7 +39551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -39380,100 +39559,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [134] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(991), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(1045), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -39518,7 +39697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -39526,246 +39705,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(3415), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(5241), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5467), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1950), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3920), - [sym_pattern] = STATE(4913), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3268), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(993), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1005), - [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(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1007), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(1015), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1017), - [sym_number] = ACTIONS(1019), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1021), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - [sym_null] = ACTIONS(1023), - [sym_undefined] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(1027), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(1029), - [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(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(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, [135] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(1047), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -39810,7 +39843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -39818,100 +39851,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_type] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -39956,7 +39989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -39964,100 +39997,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1485), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1481), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(801), [anon_sym_EQ] = ACTIONS(1049), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(815), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -40102,7 +40135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -40110,100 +40143,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(3350), + [sym_import] = STATE(3299), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5734), - [sym_string] = STATE(2165), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5795), + [sym_string] = STATE(2263), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4645), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(4106), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(4368), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4729), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(4136), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(4465), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1051), [anon_sym_export] = ACTIONS(1053), [anon_sym_STAR] = ACTIONS(582), @@ -40276,76 +40309,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3363), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1713), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(425), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3314), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2247), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(600), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1077), [anon_sym_export] = ACTIONS(1079), [anon_sym_STAR] = ACTIONS(582), @@ -40356,43 +40389,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1079), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1091), - [anon_sym_using] = ACTIONS(749), + [anon_sym_new] = ACTIONS(1097), + [anon_sym_using] = ACTIONS(1099), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(757), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1095), - [sym_number] = ACTIONS(1097), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1103), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_number] = ACTIONS(1111), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(1115), [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1101), - [sym_false] = ACTIONS(1101), - [sym_null] = ACTIONS(1101), - [sym_undefined] = ACTIONS(1103), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1105), + [anon_sym_readonly] = ACTIONS(1121), [anon_sym_get] = ACTIONS(1079), [anon_sym_set] = ACTIONS(1079), [anon_sym_QMARK] = ACTIONS(779), @@ -40402,12 +40435,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1079), [anon_sym_override] = ACTIONS(1079), [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1107), - [anon_sym_number] = ACTIONS(1107), - [anon_sym_boolean] = ACTIONS(1107), - [anon_sym_string] = ACTIONS(1107), - [anon_sym_symbol] = ACTIONS(1107), - [anon_sym_object] = ACTIONS(1107), + [anon_sym_any] = ACTIONS(1123), + [anon_sym_number] = ACTIONS(1123), + [anon_sym_boolean] = ACTIONS(1123), + [anon_sym_string] = ACTIONS(1123), + [anon_sym_symbol] = ACTIONS(1123), + [anon_sym_object] = ACTIONS(1123), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), [anon_sym_keyof] = ACTIONS(213), @@ -40418,103 +40451,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3297), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2332), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1109), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3447), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3655), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3655), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3655), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2551), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4130), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1125), + [anon_sym_export] = ACTIONS(1127), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_typeof] = ACTIONS(1113), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_typeof] = ACTIONS(1133), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(1127), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1135), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1137), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1139), [anon_sym_using] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1141), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(180), @@ -40523,33 +40556,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1121), - [sym_number] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1143), + [sym_number] = ACTIONS(1145), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1125), + [sym_this] = ACTIONS(1147), [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), - [sym_undefined] = ACTIONS(1129), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1151), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(1131), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1153), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(1133), - [anon_sym_number] = ACTIONS(1133), - [anon_sym_boolean] = ACTIONS(1133), - [anon_sym_string] = ACTIONS(1133), - [anon_sym_symbol] = ACTIONS(1133), - [anon_sym_object] = ACTIONS(1133), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1155), + [anon_sym_number] = ACTIONS(1155), + [anon_sym_boolean] = ACTIONS(1155), + [anon_sym_string] = ACTIONS(1155), + [anon_sym_symbol] = ACTIONS(1155), + [anon_sym_object] = ACTIONS(1155), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), [anon_sym_keyof] = ACTIONS(213), @@ -40560,138 +40593,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3297), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2255), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2332), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(554), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1137), + [sym_import] = STATE(3415), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2048), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3793), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(404), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1157), + [anon_sym_export] = ACTIONS(1159), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(1165), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), + [anon_sym_let] = ACTIONS(1159), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1115), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_using] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1169), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1173), + [anon_sym_using] = ACTIONS(81), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1159), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1121), - [sym_number] = ACTIONS(1123), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(1125), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), - [sym_undefined] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1177), + [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(1179), + [sym_number] = ACTIONS(1181), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(1183), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(1185), + [sym_false] = ACTIONS(1185), + [sym_null] = ACTIONS(1185), + [sym_undefined] = ACTIONS(1187), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1169), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1189), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1171), - [anon_sym_number] = ACTIONS(1171), - [anon_sym_boolean] = ACTIONS(1171), - [anon_sym_string] = ACTIONS(1171), - [anon_sym_symbol] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(1171), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [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), @@ -40702,138 +40735,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(3389), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2288), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2332), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(586), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1173), - [anon_sym_export] = ACTIONS(1175), + [sym_import] = STATE(3415), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2048), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3793), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(495), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1195), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(1199), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), + [anon_sym_let] = ACTIONS(1195), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1115), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1189), - [anon_sym_using] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1169), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1209), + [anon_sym_using] = ACTIONS(1211), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1195), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1121), - [sym_number] = ACTIONS(1123), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(1125), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), - [sym_undefined] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1215), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1179), + [sym_number] = ACTIONS(1181), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(1183), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(1185), + [sym_false] = ACTIONS(1185), + [sym_null] = ACTIONS(1185), + [sym_undefined] = ACTIONS(1223), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1205), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_any] = ACTIONS(1207), - [anon_sym_number] = ACTIONS(1207), - [anon_sym_boolean] = ACTIONS(1207), - [anon_sym_string] = ACTIONS(1207), - [anon_sym_symbol] = ACTIONS(1207), - [anon_sym_object] = ACTIONS(1207), + [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(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_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), [anon_sym_keyof] = ACTIONS(213), @@ -40844,230 +40877,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4253), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4253), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4253), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2230), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4103), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1209), - [anon_sym_export] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1211), - [anon_sym_namespace] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1211), - [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_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1219), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [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(1221), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1211), - [anon_sym_set] = ACTIONS(1211), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1211), - [anon_sym_public] = ACTIONS(1211), - [anon_sym_private] = ACTIONS(1211), - [anon_sym_protected] = ACTIONS(1211), - [anon_sym_override] = ACTIONS(1211), - [anon_sym_module] = ACTIONS(1211), - [anon_sym_any] = ACTIONS(1225), - [anon_sym_number] = ACTIONS(1225), - [anon_sym_boolean] = ACTIONS(1225), - [anon_sym_string] = ACTIONS(1225), - [anon_sym_symbol] = ACTIONS(1225), - [anon_sym_object] = ACTIONS(1225), - [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), - }, - [144] = { - [sym_import] = STATE(3383), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(1996), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3745), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(456), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1227), - [anon_sym_export] = ACTIONS(1229), + [sym_import] = STATE(3303), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2461), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3793), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(432), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1229), + [anon_sym_export] = ACTIONS(1231), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_typeof] = ACTIONS(1235), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(1237), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1231), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1167), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), [anon_sym_LBRACK] = ACTIONS(1245), @@ -41083,9 +40974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1255), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -41101,17 +40992,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1269), [sym_undefined] = ACTIONS(1271), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), [anon_sym_readonly] = ACTIONS(1273), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), [anon_sym_any] = ACTIONS(1275), [anon_sym_number] = ACTIONS(1275), [anon_sym_boolean] = ACTIONS(1275), @@ -41127,124 +41018,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_import] = STATE(3383), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1719), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(1996), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3745), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(480), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4422), + [144] = { + [sym_import] = STATE(3413), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(379), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1277), [anon_sym_export] = ACTIONS(1279), [anon_sym_STAR] = ACTIONS(582), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_typeof] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_using] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1287), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1291), + [anon_sym_using] = ACTIONS(749), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1291), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(757), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1261), - [sym_number] = ACTIONS(1263), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1267), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_null] = ACTIONS(1269), - [sym_undefined] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [sym_number] = ACTIONS(1297), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(1299), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [sym_null] = ACTIONS(1301), + [sym_undefined] = ACTIONS(1303), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1305), [anon_sym_get] = ACTIONS(1279), [anon_sym_set] = ACTIONS(1279), [anon_sym_QMARK] = ACTIONS(779), @@ -41254,12 +41145,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1279), [anon_sym_override] = ACTIONS(1279), [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1297), - [anon_sym_number] = ACTIONS(1297), - [anon_sym_boolean] = ACTIONS(1297), - [anon_sym_string] = ACTIONS(1297), - [anon_sym_symbol] = ACTIONS(1297), - [anon_sym_object] = ACTIONS(1297), + [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), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), [anon_sym_keyof] = ACTIONS(213), @@ -41269,226 +41160,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_import] = STATE(3370), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2483), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3745), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(393), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_typeof] = ACTIONS(1307), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1315), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1325), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1331), - [sym_number] = ACTIONS(1333), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(1337), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [sym_null] = ACTIONS(1339), - [sym_undefined] = ACTIONS(1341), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1345), - [anon_sym_number] = ACTIONS(1345), - [anon_sym_boolean] = ACTIONS(1345), - [anon_sym_string] = ACTIONS(1345), - [anon_sym_symbol] = ACTIONS(1345), - [anon_sym_object] = ACTIONS(1345), - [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), - }, - [147] = { - [sym_import] = STATE(3350), + [145] = { + [sym_import] = STATE(3299), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1713), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(422), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1347), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1309), [anon_sym_export] = ACTIONS(1053), [anon_sym_STAR] = ACTIONS(582), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_typeof] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1311), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_const] = ACTIONS(134), @@ -41496,7 +41245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1287), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -41507,8 +41256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(592), @@ -41517,15 +41266,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1095), - [sym_number] = ACTIONS(1097), + [anon_sym_BQUOTE] = ACTIONS(1295), + [sym_number] = ACTIONS(1297), [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1099), + [sym_this] = ACTIONS(1299), [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1101), - [sym_false] = ACTIONS(1101), - [sym_null] = ACTIONS(1101), - [sym_undefined] = ACTIONS(1353), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [sym_null] = ACTIONS(1301), + [sym_undefined] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1073), @@ -41538,12 +41287,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1053), [anon_sym_override] = ACTIONS(1053), [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1317), + [anon_sym_number] = ACTIONS(1317), + [anon_sym_boolean] = ACTIONS(1317), + [anon_sym_string] = ACTIONS(1317), + [anon_sym_symbol] = ACTIONS(1317), + [anon_sym_object] = ACTIONS(1317), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), [anon_sym_keyof] = ACTIONS(213), @@ -41553,104 +41302,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(3297), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3630), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3630), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1403), - [sym_subscript_expression] = STATE(1403), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3630), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2546), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1403), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4103), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1357), - [anon_sym_export] = ACTIONS(1359), + [146] = { + [sym_import] = STATE(3447), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2247), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(520), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1359), - [anon_sym_namespace] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_typeof] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_typeof] = ACTIONS(1323), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1359), + [anon_sym_let] = ACTIONS(801), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1093), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1369), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1371), + [anon_sym_new] = ACTIONS(1325), [anon_sym_using] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(180), @@ -41659,27 +41408,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1375), - [sym_number] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_number] = ACTIONS(1111), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1379), + [sym_this] = ACTIONS(1115), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), + [sym_undefined] = ACTIONS(1329), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(1333), + [anon_sym_number] = ACTIONS(1333), + [anon_sym_boolean] = ACTIONS(1333), + [anon_sym_string] = ACTIONS(1333), + [anon_sym_symbol] = ACTIONS(1333), + [anon_sym_object] = ACTIONS(1333), + [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), + }, + [147] = { + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4107), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4107), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1323), + [sym_subscript_expression] = STATE(1323), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4107), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2162), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1323), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4130), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1335), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_type] = ACTIONS(1337), + [anon_sym_namespace] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1337), + [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_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_using] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [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(1347), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_readonly] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(1337), + [anon_sym_set] = ACTIONS(1337), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_declare] = ACTIONS(1337), + [anon_sym_public] = ACTIONS(1337), + [anon_sym_private] = ACTIONS(1337), + [anon_sym_protected] = ACTIONS(1337), + [anon_sym_override] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_number] = ACTIONS(1351), + [anon_sym_boolean] = ACTIONS(1351), + [anon_sym_string] = ACTIONS(1351), + [anon_sym_symbol] = ACTIONS(1351), + [anon_sym_object] = ACTIONS(1351), + [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), + }, + [148] = { + [sym_import] = STATE(3447), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2247), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(574), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1353), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_typeof] = ACTIONS(1359), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(134), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1093), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_number] = ACTIONS(1111), + [sym_private_property_identifier] = ACTIONS(1381), + [sym_this] = ACTIONS(1115), [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1381), - [sym_false] = ACTIONS(1381), - [sym_null] = ACTIONS(1381), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), [sym_undefined] = ACTIONS(1383), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1355), [anon_sym_readonly] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(1359), - [anon_sym_set] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1359), - [anon_sym_public] = ACTIONS(1359), - [anon_sym_private] = ACTIONS(1359), - [anon_sym_protected] = ACTIONS(1359), - [anon_sym_override] = ACTIONS(1359), - [anon_sym_module] = ACTIONS(1359), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), [anon_sym_any] = ACTIONS(1387), [anon_sym_number] = ACTIONS(1387), [anon_sym_boolean] = ACTIONS(1387), @@ -41696,82 +41729,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3297), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(2332), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(611), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3299), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1909), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1736), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(548), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1389), [anon_sym_export] = ACTIONS(1391), [anon_sym_STAR] = ACTIONS(582), [anon_sym_type] = ACTIONS(1391), [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1395), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1391), @@ -41780,7 +41813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_await] = ACTIONS(1399), [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1287), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -41793,7 +41826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_void] = ACTIONS(1411), @@ -41801,14 +41834,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1415), [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1121), - [sym_number] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1295), + [sym_number] = ACTIONS(1297), [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(1125), + [sym_this] = ACTIONS(1299), [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [sym_null] = ACTIONS(1301), [sym_undefined] = ACTIONS(1419), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1391), @@ -41838,82 +41871,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(3350), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_nested_identifier] = STATE(5522), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1713), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(4079), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_type_arguments] = STATE(376), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5182), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3447), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_nested_identifier] = STATE(5452), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(2247), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(4095), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_type_arguments] = STATE(626), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5287), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1425), [anon_sym_export] = ACTIONS(1427), [anon_sym_STAR] = ACTIONS(582), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1321), [anon_sym_typeof] = ACTIONS(1431), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), @@ -41922,7 +41955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1093), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -41935,7 +41968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(1445), [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1447), @@ -41943,14 +41976,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1095), - [sym_number] = ACTIONS(1097), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_number] = ACTIONS(1111), [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(1099), + [sym_this] = ACTIONS(1115), [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1101), - [sym_false] = ACTIONS(1101), - [sym_null] = ACTIONS(1101), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), [sym_undefined] = ACTIONS(1455), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), @@ -41980,201 +42013,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1640), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_GT_GT_GT] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_STAR_STAR] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1467), - [anon_sym_instanceof] = ACTIONS(1465), - [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [anon_sym_satisfies] = ACTIONS(1465), - [sym__automatic_semicolon] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1467), - [sym_html_comment] = ACTIONS(5), - }, - [152] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1651), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1463), [anon_sym_type] = ACTIONS(1053), [anon_sym_as] = ACTIONS(1465), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(1467), [anon_sym_RBRACE] = ACTIONS(1467), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_in] = ACTIONS(1465), [anon_sym_COLON] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [anon_sym_RBRACK] = ACTIONS(1467), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(1465), @@ -42185,7 +42085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), @@ -42215,7 +42115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -42223,7 +42123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -42245,68 +42145,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, + [152] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1694), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1465), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_in] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_QMARK_DOT] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(81), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_GT_GT_GT] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_QMARK_QMARK] = ACTIONS(1467), + [anon_sym_instanceof] = ACTIONS(1465), + [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(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [anon_sym_satisfies] = ACTIONS(1465), + [sym__automatic_semicolon] = ACTIONS(1467), + [sym__ternary_qmark] = ACTIONS(1467), + [sym_html_comment] = ACTIONS(5), + }, [153] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), + [anon_sym_export] = ACTIONS(1195), [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1229), + [anon_sym_type] = ACTIONS(1195), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1217), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1203), [anon_sym_in] = ACTIONS(1465), [anon_sym_of] = ACTIONS(1465), [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_yield] = ACTIONS(1205), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1465), @@ -42314,11 +42347,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), + [anon_sym_using] = ACTIONS(1211), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42327,9 +42360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -42341,15 +42374,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -42357,97 +42390,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [anon_sym_satisfies] = ACTIONS(1465), [sym__automatic_semicolon] = ACTIONS(1467), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1874), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), + [anon_sym_export] = ACTIONS(1279), [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1279), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(1467), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1467), [anon_sym_await] = ACTIONS(739), [anon_sym_in] = ACTIONS(1465), [anon_sym_COLON] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1491), @@ -42480,7 +42513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -42490,86 +42523,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1989), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), + [anon_sym_export] = ACTIONS(1231), [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1231), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1257), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), + [anon_sym_await] = ACTIONS(1241), [anon_sym_in] = ACTIONS(1465), [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_yield] = ACTIONS(1243), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1465), @@ -42577,11 +42610,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), + [anon_sym_using] = ACTIONS(1251), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42590,8 +42623,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), @@ -42604,15 +42637,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -42620,99 +42653,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [anon_sym_satisfies] = ACTIONS(1465), [sym__automatic_semicolon] = ACTIONS(1467), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1932), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), + [anon_sym_export] = ACTIONS(1391), [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1391), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), [anon_sym_in] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), + [anon_sym_using] = ACTIONS(1407), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42721,8 +42754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), [anon_sym_SLASH] = ACTIONS(947), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), @@ -42735,15 +42768,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -42751,99 +42784,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [anon_sym_satisfies] = ACTIONS(1465), [anon_sym_implements] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1355), [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1355), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), [anon_sym_in] = ACTIONS(1465), - [anon_sym_of] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), + [anon_sym_using] = ACTIONS(1371), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42852,9 +42885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -42866,15 +42899,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -42882,98 +42915,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2399), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), + [anon_sym_export] = ACTIONS(1079), [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1137), + [anon_sym_type] = ACTIONS(1079), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), [anon_sym_in] = ACTIONS(1465), - [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(1467), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), + [anon_sym_using] = ACTIONS(1099), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42982,8 +43015,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), @@ -42996,15 +43029,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -43012,98 +43045,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), + [anon_sym_export] = ACTIONS(1427), [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1427), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), [anon_sym_in] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(1467), + [anon_sym_of] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), + [anon_sym_using] = ACTIONS(1443), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -43112,9 +43145,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -43126,15 +43159,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -43142,96 +43175,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(801), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(1465), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), @@ -43261,7 +43294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -43269,122 +43302,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_declaration] = STATE(897), - [sym_import] = STATE(3315), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2060), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4340), + [sym_declaration] = STATE(3886), + [sym_import] = STATE(3432), + [sym_variable_declaration] = STATE(4071), + [sym_lexical_declaration] = STATE(4071), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2138), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(4071), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(4071), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(4071), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_function_signature] = STATE(4071), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(4071), + [sym_abstract_class_declaration] = STATE(4071), + [sym_module] = STATE(4071), + [sym_internal_module] = STATE(2210), + [sym_import_alias] = STATE(4071), + [sym_interface_declaration] = STATE(4071), + [sym_enum_declaration] = STATE(4071), + [sym_type_alias_declaration] = STATE(4071), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4168), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), + [anon_sym_export] = ACTIONS(1231), [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(1541), - [anon_sym_var] = ACTIONS(27), + [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_import] = ACTIONS(1539), + [anon_sym_var] = ACTIONS(1541), [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(1545), - [anon_sym_function] = ACTIONS(77), + [anon_sym_class] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1551), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -43392,81 +43425,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1547), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1565), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -43490,12 +43523,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -43508,14 +43541,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -43536,60 +43569,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_declaration] = STATE(4152), + [sym_import] = STATE(3432), + [sym_variable_declaration] = STATE(4071), + [sym_lexical_declaration] = STATE(4071), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(4071), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(4071), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(4071), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_function_signature] = STATE(4071), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(4071), + [sym_abstract_class_declaration] = STATE(4071), + [sym_module] = STATE(4071), + [sym_internal_module] = STATE(2210), + [sym_import_alias] = STATE(4071), + [sym_interface_declaration] = STATE(4071), + [sym_enum_declaration] = STATE(4071), + [sym_type_alias_declaration] = STATE(4071), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4168), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_import] = ACTIONS(1539), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(1547), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), + [sym_html_comment] = ACTIONS(5), + }, + [164] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1565), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -43613,12 +43767,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -43631,14 +43785,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -43654,103 +43808,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_declaration] = STATE(897), - [sym_import] = STATE(3315), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2060), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4126), + [165] = { + [sym_declaration] = STATE(834), + [sym_import] = STATE(3432), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2114), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3875), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_import] = ACTIONS(1597), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1599), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(564), - [anon_sym_async] = ACTIONS(1581), - [anon_sym_function] = ACTIONS(568), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1601), + [anon_sym_function] = ACTIONS(77), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -43758,121 +43913,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1547), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1603), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_declaration] = STATE(4289), - [sym_import] = STATE(3315), - [sym_variable_declaration] = STATE(4247), - [sym_lexical_declaration] = STATE(4247), - [sym_parenthesized_expression] = STATE(1386), + [166] = { + [sym_declaration] = STATE(792), + [sym_import] = STATE(3432), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1383), [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(4247), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(4247), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(4247), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_function_signature] = STATE(4247), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(4247), - [sym_abstract_class_declaration] = STATE(4247), - [sym_module] = STATE(4247), - [sym_internal_module] = STATE(2228), - [sym_import_alias] = STATE(4247), - [sym_interface_declaration] = STATE(4247), - [sym_enum_declaration] = STATE(4247), - [sym_type_alias_declaration] = STATE(4247), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4195), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(225), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(3875), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_import] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(1593), - [anon_sym_async] = ACTIONS(1595), - [anon_sym_function] = ACTIONS(1597), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1601), + [anon_sym_function] = ACTIONS(77), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -43880,121 +44035,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1599), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1601), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [anon_sym_abstract] = ACTIONS(1603), - [anon_sym_interface] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1603), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_declaration] = STATE(805), - [sym_import] = STATE(3315), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2070), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(2353), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4126), + [167] = { + [sym_declaration] = STATE(834), + [sym_import] = STATE(3432), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2114), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4091), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_import] = ACTIONS(1597), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1599), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(564), - [anon_sym_async] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1607), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44002,243 +44157,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1547), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1603), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_declaration] = STATE(3964), - [sym_import] = STATE(3315), - [sym_variable_declaration] = STATE(4247), - [sym_lexical_declaration] = STATE(4247), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1992), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(4247), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(4247), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(4247), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_function_signature] = STATE(4247), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(4247), - [sym_abstract_class_declaration] = STATE(4247), - [sym_module] = STATE(4247), - [sym_internal_module] = STATE(2228), - [sym_import_alias] = STATE(4247), - [sym_interface_declaration] = STATE(4247), - [sym_enum_declaration] = STATE(4247), - [sym_type_alias_declaration] = STATE(4247), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4195), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(1593), - [anon_sym_async] = ACTIONS(1595), - [anon_sym_function] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1599), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1601), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [anon_sym_abstract] = ACTIONS(1603), - [anon_sym_interface] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1607), - [sym_html_comment] = ACTIONS(5), - }, [168] = { - [sym_declaration] = STATE(805), - [sym_import] = STATE(3315), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2070), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_class_declaration] = STATE(868), - [sym_function_expression] = STATE(2361), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(2361), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_function_signature] = STATE(868), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(210), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4340), + [sym_declaration] = STATE(792), + [sym_import] = STATE(3432), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2209), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2209), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2161), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4091), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1539), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_import] = ACTIONS(1597), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1599), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(1545), - [anon_sym_function] = ACTIONS(77), + [anon_sym_class] = ACTIONS(564), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44246,81 +44279,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1547), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1603), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1565), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_COLON] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -44344,12 +44378,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -44362,14 +44396,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -44385,64 +44419,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1565), [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_COLON] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(890), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -44466,12 +44499,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -44484,14 +44517,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -44511,59 +44544,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_EQ] = ACTIONS(893), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1565), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -44587,12 +44620,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -44605,14 +44638,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -44632,59 +44665,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1565), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -44708,12 +44741,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -44726,14 +44759,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -44753,57 +44786,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(937), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(943), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -44827,12 +44860,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -44845,14 +44878,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -44862,48 +44895,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3190), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3257), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), [anon_sym_STAR] = ACTIONS(1611), [anon_sym_EQ] = ACTIONS(912), @@ -44913,7 +44946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(224), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_in] = ACTIONS(122), @@ -44922,7 +44955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(1625), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -44953,7 +44986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -44962,7 +44995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(161), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_void] = ACTIONS(1031), [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), @@ -44975,75 +45008,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), [anon_sym_QMARK] = ACTIONS(1643), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), + [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(122), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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(161), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3658), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(224), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1645), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -45064,15 +45098,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP] = ACTIONS(1647), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -45085,26 +45119,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(205), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1653), [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_abstract] = ACTIONS(636), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), + [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), @@ -45113,58 +45146,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3633), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1645), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -45185,15 +45217,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -45206,84 +45238,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [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(636), + [anon_sym_abstract] = ACTIONS(209), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [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(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(959), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -45307,12 +45340,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -45325,14 +45358,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -45352,57 +45385,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(967), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_of] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(973), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -45426,12 +45459,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -45444,14 +45477,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -45471,57 +45504,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -45545,12 +45578,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -45563,14 +45596,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -45590,57 +45623,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_COLON] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -45664,12 +45697,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -45682,14 +45715,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -45709,56 +45742,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1577), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -45782,12 +45815,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(171), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1581), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -45800,14 +45833,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(205), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -45827,72 +45860,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3914), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3914), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1567), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4012), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4012), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3914), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5755), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4012), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5462), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), + [sym_rest_pattern] = STATE(3712), [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(1655), [anon_sym_export] = ACTIONS(727), [anon_sym_type] = ACTIONS(727), [anon_sym_namespace] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -45912,7 +45945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(1659), @@ -45941,72 +45974,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1563), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3914), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3914), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1520), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4012), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4012), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3914), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5679), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4012), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5538), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), + [sym_rest_pattern] = STATE(3712), [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(1655), [anon_sym_export] = ACTIONS(727), [anon_sym_type] = ACTIONS(727), [anon_sym_namespace] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -46026,7 +46059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(1659), @@ -46055,57 +46088,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5320), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(4923), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5320), - [sym_optional_parameter] = STATE(5320), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4923), + [sym_optional_parameter] = STATE(4923), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46115,7 +46148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1665), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), @@ -46139,7 +46172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46154,10 +46187,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46168,57 +46201,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5320), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5141), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5320), - [sym_optional_parameter] = STATE(5320), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5141), + [sym_optional_parameter] = STATE(5141), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46228,7 +46261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1673), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), @@ -46252,7 +46285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46267,10 +46300,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46281,57 +46314,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(4998), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5141), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(4998), - [sym_optional_parameter] = STATE(4998), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5141), + [sym_optional_parameter] = STATE(5141), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46341,7 +46374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1675), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), @@ -46365,7 +46398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46380,10 +46413,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46394,57 +46427,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5041), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5141), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5041), - [sym_optional_parameter] = STATE(5041), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5141), + [sym_optional_parameter] = STATE(5141), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46454,8 +46487,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1677), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -46478,7 +46511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46493,10 +46526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46507,57 +46540,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5320), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5141), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5320), - [sym_optional_parameter] = STATE(5320), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5141), + [sym_optional_parameter] = STATE(5141), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46567,8 +46600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1679), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -46591,7 +46624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46606,10 +46639,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46620,57 +46653,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5320), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(4675), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5320), - [sym_optional_parameter] = STATE(5320), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(4675), + [sym_optional_parameter] = STATE(4675), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46680,8 +46713,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -46704,7 +46737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46719,10 +46752,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46733,57 +46766,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5320), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5141), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5320), - [sym_optional_parameter] = STATE(5320), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5141), + [sym_optional_parameter] = STATE(5141), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46793,7 +46826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1681), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), @@ -46817,7 +46850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46832,10 +46865,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46846,57 +46879,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5320), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5078), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5320), - [sym_optional_parameter] = STATE(5320), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5078), + [sym_optional_parameter] = STATE(5078), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -46906,7 +46939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1683), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), @@ -46930,7 +46963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -46945,10 +46978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46959,57 +46992,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(4918), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5141), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(4918), - [sym_optional_parameter] = STATE(4918), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5141), + [sym_optional_parameter] = STATE(5141), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -47019,7 +47052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1685), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), @@ -47043,7 +47076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(1669), @@ -47058,10 +47091,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -47072,301 +47105,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_as] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_with] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_await] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_debugger] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_throw] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [sym_glimmer_opening_tag] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_DOT] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(1689), - [anon_sym_QMARK_DOT] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_GT_GT_GT] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_PERCENT] = ACTIONS(1695), - [anon_sym_STAR_STAR] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_QMARK_QMARK] = ACTIONS(1695), - [anon_sym_instanceof] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_delete] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_number] = ACTIONS(1687), - [sym_private_property_identifier] = ACTIONS(1687), - [sym_this] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_undefined] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_get] = ACTIONS(1689), - [anon_sym_set] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_private] = ACTIONS(1689), - [anon_sym_protected] = ACTIONS(1689), - [anon_sym_override] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_number] = ACTIONS(1689), - [anon_sym_boolean] = ACTIONS(1689), - [anon_sym_string] = ACTIONS(1689), - [anon_sym_symbol] = ACTIONS(1689), - [anon_sym_object] = ACTIONS(1689), - [anon_sym_abstract] = ACTIONS(1689), - [anon_sym_satisfies] = ACTIONS(1691), - [anon_sym_interface] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [sym__automatic_semicolon] = ACTIONS(1697), - [sym__ternary_qmark] = ACTIONS(1695), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4669), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4681), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1691), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(602), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1693), + [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(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1695), + [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), }, [194] = { - [sym_statement_block] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_export] = ACTIONS(1701), + [ts_builtin_sym_end] = ACTIONS(1697), + [sym_identifier] = ACTIONS(1699), + [anon_sym_export] = ACTIONS(1699), [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1699), + [anon_sym_EQ] = ACTIONS(1703), [anon_sym_as] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [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_await] = ACTIONS(1701), + [anon_sym_namespace] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_var] = ACTIONS(1699), + [anon_sym_let] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1699), [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_SEMI] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_glimmer_opening_tag] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_debugger] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_throw] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_case] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1697), + [sym_glimmer_opening_tag] = ACTIONS(1697), [anon_sym_GT] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1705), - [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_DOT] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1699), + [anon_sym_function] = ACTIONS(1699), + [anon_sym_QMARK_DOT] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1699), + [anon_sym_using] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_GT_GT_GT] = ACTIONS(1699), - [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_GT_GT_GT] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1705), [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_CARET] = ACTIONS(1705), [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_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1699), + [anon_sym_PERCENT] = ACTIONS(1705), + [anon_sym_STAR_STAR] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1705), [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1699), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1705), [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_BANG_EQ_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_QMARK_QMARK] = ACTIONS(1705), [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_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1697), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1697), + [sym_number] = ACTIONS(1697), + [sym_private_property_identifier] = ACTIONS(1697), + [sym_this] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_null] = ACTIONS(1699), + [sym_undefined] = ACTIONS(1699), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_readonly] = ACTIONS(1699), + [anon_sym_get] = ACTIONS(1699), + [anon_sym_set] = ACTIONS(1699), + [anon_sym_declare] = ACTIONS(1699), + [anon_sym_public] = ACTIONS(1699), + [anon_sym_private] = ACTIONS(1699), + [anon_sym_protected] = ACTIONS(1699), + [anon_sym_override] = ACTIONS(1699), + [anon_sym_module] = ACTIONS(1699), + [anon_sym_any] = ACTIONS(1699), + [anon_sym_number] = ACTIONS(1699), + [anon_sym_boolean] = ACTIONS(1699), + [anon_sym_string] = ACTIONS(1699), + [anon_sym_symbol] = ACTIONS(1699), + [anon_sym_object] = ACTIONS(1699), + [anon_sym_abstract] = ACTIONS(1699), [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), + [anon_sym_interface] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [sym__automatic_semicolon] = ACTIONS(1707), + [sym__ternary_qmark] = ACTIONS(1705), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1709), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -47379,7 +47412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -47387,7 +47420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -47408,301 +47441,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym__formal_parameter] = STATE(5320), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(275), - [sym_override_modifier] = STATE(289), - [sym_required_parameter] = STATE(5320), - [sym_optional_parameter] = STATE(5320), - [sym__parameter_name] = STATE(3684), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(699), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), - [sym_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(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), - [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), - }, - [197] = { - [sym_statement_block] = STATE(214), - [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(1703), - [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_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_SEMI] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_glimmer_opening_tag] = 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), - }, - [198] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4957), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4967), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1711), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -47715,7 +47524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -47723,7 +47532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -47743,78 +47552,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(3342), + [197] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1713), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -47827,7 +47636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -47835,7 +47644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -47855,70 +47664,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(3342), + [198] = { + [sym_statement_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_COMMA] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1717), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_var] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_in] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_debugger] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1715), + [sym_glimmer_opening_tag] = ACTIONS(1715), + [anon_sym_GT] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_function] = ACTIONS(1717), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_using] = ACTIONS(1717), + [anon_sym_AMP_AMP] = ACTIONS(1715), + [anon_sym_PIPE_PIPE] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_STAR_STAR] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1715), + [anon_sym_EQ_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1715), + [anon_sym_BANG_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1715), + [anon_sym_GT_EQ] = ACTIONS(1715), + [anon_sym_QMARK_QMARK] = ACTIONS(1715), + [anon_sym_instanceof] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_delete] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_number] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_null] = ACTIONS(1717), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_get] = ACTIONS(1717), + [anon_sym_set] = ACTIONS(1717), + [anon_sym_declare] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_private] = ACTIONS(1717), + [anon_sym_protected] = ACTIONS(1717), + [anon_sym_override] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_number] = ACTIONS(1717), + [anon_sym_boolean] = ACTIONS(1717), + [anon_sym_string] = ACTIONS(1717), + [anon_sym_symbol] = ACTIONS(1717), + [anon_sym_object] = ACTIONS(1717), + [anon_sym_abstract] = ACTIONS(1717), + [anon_sym_satisfies] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [sym__automatic_semicolon] = ACTIONS(1715), + [sym__ternary_qmark] = ACTIONS(1715), + [sym_html_comment] = ACTIONS(5), + }, + [199] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4957), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4967), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [anon_sym_RBRACK] = ACTIONS(1721), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), @@ -47926,7 +47847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -47939,7 +47860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -47947,7 +47868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -47967,190 +47888,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_statement_block] = STATE(214), - [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(1703), - [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_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_SEMI] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_glimmer_opening_tag] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1723), - [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), - }, - [202] = { - [sym_import] = STATE(3342), + [200] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(1942), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4669), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4681), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1723), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -48163,7 +47972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -48171,7 +47980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -48191,78 +48000,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(3342), + [201] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4518), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4526), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1725), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -48275,7 +48084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -48283,7 +48092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -48303,78 +48112,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(3342), + [202] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4493), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4503), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4669), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4681), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1723), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -48387,7 +48196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -48395,7 +48204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -48415,205 +48224,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4957), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4967), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1707), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_typeof] = ACTIONS(620), + [203] = { + [sym_statement_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_COMMA] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1717), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_var] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_in] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_debugger] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1715), + [sym_glimmer_opening_tag] = ACTIONS(1715), + [anon_sym_GT] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_function] = ACTIONS(1717), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_using] = ACTIONS(1717), + [anon_sym_AMP_AMP] = ACTIONS(1715), + [anon_sym_PIPE_PIPE] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_STAR_STAR] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1715), + [anon_sym_EQ_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1715), + [anon_sym_BANG_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1715), + [anon_sym_GT_EQ] = ACTIONS(1715), + [anon_sym_QMARK_QMARK] = ACTIONS(1715), + [anon_sym_instanceof] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_delete] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_number] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_null] = ACTIONS(1717), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_get] = ACTIONS(1717), + [anon_sym_set] = ACTIONS(1717), + [anon_sym_declare] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_private] = ACTIONS(1717), + [anon_sym_protected] = ACTIONS(1717), + [anon_sym_override] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_number] = ACTIONS(1717), + [anon_sym_boolean] = ACTIONS(1717), + [anon_sym_string] = ACTIONS(1717), + [anon_sym_symbol] = ACTIONS(1717), + [anon_sym_object] = ACTIONS(1717), + [anon_sym_abstract] = ACTIONS(1717), + [anon_sym_satisfies] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [sym__automatic_semicolon] = ACTIONS(1715), + [sym__ternary_qmark] = ACTIONS(1715), + [sym_html_comment] = ACTIONS(5), + }, + [204] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym__formal_parameter] = STATE(5141), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4025), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(287), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5141), + [sym_optional_parameter] = STATE(5141), + [sym__parameter_name] = STATE(3647), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(1667), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), + [anon_sym_async] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(709), + [anon_sym_using] = ACTIONS(165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), + [sym_private_property_identifier] = ACTIONS(193), + [sym_this] = ACTIONS(1669), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), - [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_undefined] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), + [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), + }, + [205] = { + [sym_statement_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_COMMA] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1717), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_var] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_in] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_debugger] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1715), + [sym_glimmer_opening_tag] = ACTIONS(1715), + [anon_sym_GT] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_function] = ACTIONS(1717), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_using] = ACTIONS(1717), + [anon_sym_AMP_AMP] = ACTIONS(1715), + [anon_sym_PIPE_PIPE] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_STAR_STAR] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1715), + [anon_sym_EQ_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1715), + [anon_sym_BANG_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1715), + [anon_sym_GT_EQ] = ACTIONS(1715), + [anon_sym_QMARK_QMARK] = ACTIONS(1715), + [anon_sym_instanceof] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_delete] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_number] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_null] = ACTIONS(1717), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_get] = ACTIONS(1717), + [anon_sym_set] = ACTIONS(1717), + [anon_sym_declare] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_private] = ACTIONS(1717), + [anon_sym_protected] = ACTIONS(1717), + [anon_sym_override] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_number] = ACTIONS(1717), + [anon_sym_boolean] = ACTIONS(1717), + [anon_sym_string] = ACTIONS(1717), + [anon_sym_symbol] = ACTIONS(1717), + [anon_sym_object] = ACTIONS(1717), + [anon_sym_abstract] = ACTIONS(1717), + [anon_sym_satisfies] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [sym__automatic_semicolon] = ACTIONS(1715), + [sym__ternary_qmark] = ACTIONS(1715), [sym_html_comment] = ACTIONS(5), }, [206] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), + [sym_import] = STATE(3432), + [sym_expression_statement] = STATE(284), + [sym_variable_declaration] = STATE(284), + [sym_lexical_declaration] = STATE(284), + [sym_empty_statement] = STATE(284), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(4744), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(4744), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(4744), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1335), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1731), [anon_sym_export] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1733), [anon_sym_type] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1737), - [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_await] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1735), - [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_SEMI] = ACTIONS(1731), - [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(1735), - [anon_sym_DOT] = ACTIONS(1735), - [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(1737), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_using] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_GT_GT] = ACTIONS(1735), - [anon_sym_GT_GT_GT] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_PERCENT] = ACTIONS(1737), - [anon_sym_STAR_STAR] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_QMARK_QMARK] = ACTIONS(1737), - [anon_sym_instanceof] = ACTIONS(1735), - [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_namespace] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(132), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1745), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1749), + [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(1751), + [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1733), [anon_sym_readonly] = ACTIONS(1733), [anon_sym_get] = ACTIONS(1733), @@ -48630,752 +48669,968 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1733), [anon_sym_symbol] = ACTIONS(1733), [anon_sym_object] = ACTIONS(1733), - [anon_sym_abstract] = ACTIONS(1733), - [anon_sym_satisfies] = ACTIONS(1735), - [anon_sym_interface] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [sym__automatic_semicolon] = ACTIONS(1739), - [sym__ternary_qmark] = ACTIONS(1737), [sym_html_comment] = ACTIONS(5), }, [207] = { - [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_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_SEMI] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1741), - [sym_glimmer_opening_tag] = 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), + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1757), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_typeof] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_with] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_await] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_debugger] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_yield] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [sym_glimmer_opening_tag] = ACTIONS(1753), + [anon_sym_GT] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1753), + [anon_sym_SQUOTE] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_async] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_QMARK_DOT] = ACTIONS(1759), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_AMP_AMP] = ACTIONS(1759), + [anon_sym_PIPE_PIPE] = ACTIONS(1759), + [anon_sym_GT_GT] = ACTIONS(1757), + [anon_sym_GT_GT_GT] = ACTIONS(1759), + [anon_sym_LT_LT] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PERCENT] = ACTIONS(1759), + [anon_sym_STAR_STAR] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1759), + [anon_sym_EQ_EQ] = ACTIONS(1757), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1759), + [anon_sym_BANG_EQ] = ACTIONS(1757), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1759), + [anon_sym_GT_EQ] = ACTIONS(1759), + [anon_sym_QMARK_QMARK] = ACTIONS(1759), + [anon_sym_instanceof] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_void] = ACTIONS(1755), + [anon_sym_delete] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1753), + [sym_number] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1753), + [sym_this] = ACTIONS(1755), + [sym_super] = ACTIONS(1755), + [sym_true] = ACTIONS(1755), + [sym_false] = ACTIONS(1755), + [sym_null] = ACTIONS(1755), + [sym_undefined] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_readonly] = ACTIONS(1755), + [anon_sym_get] = ACTIONS(1755), + [anon_sym_set] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_protected] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_any] = ACTIONS(1755), + [anon_sym_number] = ACTIONS(1755), + [anon_sym_boolean] = ACTIONS(1755), + [anon_sym_string] = ACTIONS(1755), + [anon_sym_symbol] = ACTIONS(1755), + [anon_sym_object] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_satisfies] = ACTIONS(1757), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [sym__automatic_semicolon] = ACTIONS(1761), + [sym__ternary_qmark] = ACTIONS(1759), [sym_html_comment] = ACTIONS(5), }, [208] = { - [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_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_SEMI] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [sym_glimmer_opening_tag] = 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), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_namespace] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_typeof] = ACTIONS(1765), + [anon_sym_import] = ACTIONS(1765), + [anon_sym_with] = ACTIONS(1765), + [anon_sym_var] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_switch] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_await] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_debugger] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_throw] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_case] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1763), + [sym_glimmer_opening_tag] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1763), + [anon_sym_class] = ACTIONS(1765), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1765), + [anon_sym_using] = ACTIONS(1765), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1765), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1769), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_QMARK_QMARK] = ACTIONS(1769), + [anon_sym_instanceof] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_void] = ACTIONS(1765), + [anon_sym_delete] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1763), + [sym_number] = ACTIONS(1763), + [sym_private_property_identifier] = ACTIONS(1763), + [sym_this] = ACTIONS(1765), + [sym_super] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_undefined] = ACTIONS(1765), + [anon_sym_AT] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(1765), + [anon_sym_get] = ACTIONS(1765), + [anon_sym_set] = ACTIONS(1765), + [anon_sym_declare] = ACTIONS(1765), + [anon_sym_public] = ACTIONS(1765), + [anon_sym_private] = ACTIONS(1765), + [anon_sym_protected] = ACTIONS(1765), + [anon_sym_override] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_any] = ACTIONS(1765), + [anon_sym_number] = ACTIONS(1765), + [anon_sym_boolean] = ACTIONS(1765), + [anon_sym_string] = ACTIONS(1765), + [anon_sym_symbol] = ACTIONS(1765), + [anon_sym_object] = ACTIONS(1765), + [anon_sym_abstract] = ACTIONS(1765), + [anon_sym_satisfies] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(1771), + [sym__ternary_qmark] = ACTIONS(1769), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5072), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5072), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1390), - [sym_subscript_expression] = STATE(1390), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5072), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1390), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_mapped_type_clause] = STATE(5690), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1761), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_RBRACK] = ACTIONS(1773), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_export] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_as] = ACTIONS(1777), + [anon_sym_namespace] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_typeof] = ACTIONS(1775), + [anon_sym_import] = ACTIONS(1775), + [anon_sym_with] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(1775), + [anon_sym_let] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_else] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1775), + [anon_sym_in] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_do] = ACTIONS(1775), + [anon_sym_try] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_debugger] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_throw] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1775), + [anon_sym_yield] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1773), + [sym_glimmer_opening_tag] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1777), + [anon_sym_DOT] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_class] = ACTIONS(1775), [anon_sym_async] = ACTIONS(1775), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1777), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(99), - [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_function] = ACTIONS(1775), + [anon_sym_QMARK_DOT] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1775), + [anon_sym_using] = ACTIONS(1775), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_GT_GT] = ACTIONS(1777), + [anon_sym_GT_GT_GT] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_SLASH] = ACTIONS(1775), + [anon_sym_PERCENT] = ACTIONS(1779), + [anon_sym_STAR_STAR] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ] = ACTIONS(1777), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1777), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_QMARK_QMARK] = ACTIONS(1779), + [anon_sym_instanceof] = ACTIONS(1777), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_void] = ACTIONS(1775), + [anon_sym_delete] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1773), + [sym_number] = ACTIONS(1773), + [sym_private_property_identifier] = ACTIONS(1773), + [sym_this] = ACTIONS(1775), + [sym_super] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_null] = ACTIONS(1775), + [sym_undefined] = ACTIONS(1775), + [anon_sym_AT] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1775), + [anon_sym_readonly] = ACTIONS(1775), + [anon_sym_get] = ACTIONS(1775), + [anon_sym_set] = ACTIONS(1775), + [anon_sym_declare] = ACTIONS(1775), + [anon_sym_public] = ACTIONS(1775), + [anon_sym_private] = ACTIONS(1775), + [anon_sym_protected] = ACTIONS(1775), + [anon_sym_override] = ACTIONS(1775), + [anon_sym_module] = ACTIONS(1775), + [anon_sym_any] = ACTIONS(1775), + [anon_sym_number] = ACTIONS(1775), + [anon_sym_boolean] = ACTIONS(1775), + [anon_sym_string] = ACTIONS(1775), + [anon_sym_symbol] = ACTIONS(1775), + [anon_sym_object] = ACTIONS(1775), + [anon_sym_abstract] = ACTIONS(1775), + [anon_sym_satisfies] = ACTIONS(1777), + [anon_sym_interface] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [sym__automatic_semicolon] = ACTIONS(1781), + [sym__ternary_qmark] = ACTIONS(1779), [sym_html_comment] = ACTIONS(5), }, [210] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [sym_glimmer_opening_tag] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_QMARK_DOT] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1787), - [anon_sym_STAR_STAR] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1787), - [anon_sym_QMARK_QMARK] = ACTIONS(1787), - [anon_sym_instanceof] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_private_property_identifier] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_override] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_satisfies] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [sym__automatic_semicolon] = ACTIONS(1787), - [sym__ternary_qmark] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_var] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_debugger] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_throw] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_case] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1783), + [sym_glimmer_opening_tag] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(1785), + [anon_sym_QMARK_DOT] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_STAR_STAR] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_QMARK_QMARK] = ACTIONS(1789), + [anon_sym_instanceof] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_void] = ACTIONS(1785), + [anon_sym_delete] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1783), + [sym_number] = ACTIONS(1783), + [sym_private_property_identifier] = ACTIONS(1783), + [sym_this] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), + [sym_null] = ACTIONS(1785), + [sym_undefined] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_get] = ACTIONS(1785), + [anon_sym_set] = ACTIONS(1785), + [anon_sym_declare] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_private] = ACTIONS(1785), + [anon_sym_protected] = ACTIONS(1785), + [anon_sym_override] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_any] = ACTIONS(1785), + [anon_sym_number] = ACTIONS(1785), + [anon_sym_boolean] = ACTIONS(1785), + [anon_sym_string] = ACTIONS(1785), + [anon_sym_symbol] = ACTIONS(1785), + [anon_sym_object] = ACTIONS(1785), + [anon_sym_abstract] = ACTIONS(1785), + [anon_sym_satisfies] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [sym__automatic_semicolon] = ACTIONS(1791), + [sym__ternary_qmark] = ACTIONS(1789), [sym_html_comment] = ACTIONS(5), }, [211] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1795), - [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_await] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1793), - [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_SEMI] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1793), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_AMP_AMP] = ACTIONS(1795), - [anon_sym_PIPE_PIPE] = ACTIONS(1795), - [anon_sym_GT_GT] = ACTIONS(1793), - [anon_sym_GT_GT_GT] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1795), - [anon_sym_STAR_STAR] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1795), - [anon_sym_EQ_EQ] = ACTIONS(1793), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ] = ACTIONS(1793), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1795), - [anon_sym_GT_EQ] = ACTIONS(1795), - [anon_sym_QMARK_QMARK] = ACTIONS(1795), - [anon_sym_instanceof] = ACTIONS(1793), - [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), - [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(1793), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1797), - [sym__ternary_qmark] = ACTIONS(1795), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [sym_glimmer_opening_tag] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1797), + [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_AMP_AMP] = ACTIONS(1799), + [anon_sym_PIPE_PIPE] = ACTIONS(1799), + [anon_sym_GT_GT] = ACTIONS(1797), + [anon_sym_GT_GT_GT] = ACTIONS(1799), + [anon_sym_LT_LT] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_PERCENT] = ACTIONS(1799), + [anon_sym_STAR_STAR] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1799), + [anon_sym_EQ_EQ] = ACTIONS(1797), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ] = ACTIONS(1797), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1799), + [anon_sym_QMARK_QMARK] = ACTIONS(1799), + [anon_sym_instanceof] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_satisfies] = ACTIONS(1797), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [sym__automatic_semicolon] = ACTIONS(1801), + [sym__ternary_qmark] = ACTIONS(1799), [sym_html_comment] = ACTIONS(5), }, [212] = { - [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_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_SEMI] = ACTIONS(1799), - [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_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_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), - [sym__ternary_qmark] = ACTIONS(1805), + [ts_builtin_sym_end] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_namespace] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_COMMA] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_typeof] = ACTIONS(1805), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_with] = ACTIONS(1805), + [anon_sym_var] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_switch] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1805), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_debugger] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_throw] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1803), + [sym_glimmer_opening_tag] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1803), + [anon_sym_SQUOTE] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_function] = ACTIONS(1805), + [anon_sym_QMARK_DOT] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1805), + [anon_sym_using] = ACTIONS(1805), + [anon_sym_AMP_AMP] = ACTIONS(1803), + [anon_sym_PIPE_PIPE] = ACTIONS(1803), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1803), + [anon_sym_LT_LT] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(1803), + [anon_sym_STAR_STAR] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1803), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_QMARK_QMARK] = ACTIONS(1803), + [anon_sym_instanceof] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_void] = ACTIONS(1805), + [anon_sym_delete] = ACTIONS(1805), + [anon_sym_PLUS_PLUS] = ACTIONS(1803), + [anon_sym_DASH_DASH] = ACTIONS(1803), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1803), + [sym_number] = ACTIONS(1803), + [sym_private_property_identifier] = ACTIONS(1803), + [sym_this] = ACTIONS(1805), + [sym_super] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), + [sym_null] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_readonly] = ACTIONS(1805), + [anon_sym_get] = ACTIONS(1805), + [anon_sym_set] = ACTIONS(1805), + [anon_sym_declare] = ACTIONS(1805), + [anon_sym_public] = ACTIONS(1805), + [anon_sym_private] = ACTIONS(1805), + [anon_sym_protected] = ACTIONS(1805), + [anon_sym_override] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_any] = ACTIONS(1805), + [anon_sym_number] = ACTIONS(1805), + [anon_sym_boolean] = ACTIONS(1805), + [anon_sym_string] = ACTIONS(1805), + [anon_sym_symbol] = ACTIONS(1805), + [anon_sym_object] = ACTIONS(1805), + [anon_sym_abstract] = ACTIONS(1805), + [anon_sym_satisfies] = ACTIONS(1805), + [anon_sym_interface] = ACTIONS(1805), + [anon_sym_enum] = ACTIONS(1805), + [sym__automatic_semicolon] = ACTIONS(1803), + [sym__ternary_qmark] = ACTIONS(1803), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(3315), - [sym_expression_statement] = STATE(282), - [sym_variable_declaration] = STATE(282), - [sym_lexical_declaration] = STATE(282), - [sym_empty_statement] = STATE(282), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(4916), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(4916), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(4916), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1336), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(1697), + [sym_identifier] = ACTIONS(1699), + [anon_sym_export] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1699), + [anon_sym_namespace] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_var] = ACTIONS(1699), + [anon_sym_let] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_in] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_debugger] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_throw] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_case] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1697), + [sym_glimmer_opening_tag] = ACTIONS(1697), + [anon_sym_GT] = ACTIONS(1699), + [anon_sym_DOT] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1699), + [anon_sym_function] = ACTIONS(1699), + [anon_sym_QMARK_DOT] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1699), + [anon_sym_using] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1697), + [anon_sym_PIPE_PIPE] = ACTIONS(1697), + [anon_sym_GT_GT] = ACTIONS(1699), + [anon_sym_GT_GT_GT] = ACTIONS(1697), + [anon_sym_LT_LT] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_CARET] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1699), + [anon_sym_PERCENT] = ACTIONS(1697), + [anon_sym_STAR_STAR] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1697), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1697), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1697), + [anon_sym_GT_EQ] = ACTIONS(1697), + [anon_sym_QMARK_QMARK] = ACTIONS(1697), + [anon_sym_instanceof] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1697), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1697), + [sym_number] = ACTIONS(1697), + [sym_private_property_identifier] = ACTIONS(1697), + [sym_this] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_null] = ACTIONS(1699), + [sym_undefined] = ACTIONS(1699), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_readonly] = ACTIONS(1699), + [anon_sym_get] = ACTIONS(1699), + [anon_sym_set] = ACTIONS(1699), + [anon_sym_declare] = ACTIONS(1699), + [anon_sym_public] = ACTIONS(1699), + [anon_sym_private] = ACTIONS(1699), + [anon_sym_protected] = ACTIONS(1699), + [anon_sym_override] = ACTIONS(1699), + [anon_sym_module] = ACTIONS(1699), + [anon_sym_any] = ACTIONS(1699), + [anon_sym_number] = ACTIONS(1699), + [anon_sym_boolean] = ACTIONS(1699), + [anon_sym_string] = ACTIONS(1699), + [anon_sym_symbol] = ACTIONS(1699), + [anon_sym_object] = ACTIONS(1699), + [anon_sym_abstract] = ACTIONS(1699), + [anon_sym_satisfies] = ACTIONS(1699), + [anon_sym_interface] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [sym__automatic_semicolon] = ACTIONS(1807), + [sym__ternary_qmark] = ACTIONS(1697), + [sym_html_comment] = ACTIONS(5), + }, + [214] = { + [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_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_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_SEMI] = ACTIONS(1809), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [sym_glimmer_opening_tag] = 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), + [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_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), + }, + [215] = { + [sym_import] = STATE(3432), + [sym_expression_statement] = STATE(285), + [sym_variable_declaration] = STATE(285), + [sym_lexical_declaration] = STATE(285), + [sym_empty_statement] = STATE(285), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(4744), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(4744), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(4744), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1335), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1731), + [anon_sym_export] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_namespace] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1745), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1747), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1749), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49395,27 +49650,693 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1751), + [anon_sym_AT] = ACTIONS(99), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [216] = { + [ts_builtin_sym_end] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1815), + [anon_sym_export] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_as] = ACTIONS(1815), + [anon_sym_namespace] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = 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(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_await] = ACTIONS(1815), + [anon_sym_in] = 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_SEMI] = ACTIONS(1813), + [anon_sym_case] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1813), + [sym_glimmer_opening_tag] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1815), + [anon_sym_DOT] = ACTIONS(1815), + [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(1813), + [anon_sym_new] = ACTIONS(1815), + [anon_sym_using] = ACTIONS(1815), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1815), + [anon_sym_GT_GT_GT] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_SLASH] = ACTIONS(1815), + [anon_sym_PERCENT] = ACTIONS(1813), + [anon_sym_STAR_STAR] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1815), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1815), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_QMARK_QMARK] = ACTIONS(1813), + [anon_sym_instanceof] = ACTIONS(1815), + [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(1815), + [anon_sym_interface] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [sym__automatic_semicolon] = ACTIONS(1813), + [sym__ternary_qmark] = ACTIONS(1813), + [sym_html_comment] = ACTIONS(5), + }, + [217] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_RBRACK] = ACTIONS(1817), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_extends] = ACTIONS(1819), + [sym_html_comment] = ACTIONS(5), + }, + [218] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_COMMA] = 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(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_await] = ACTIONS(1823), + [anon_sym_in] = 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_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_QMARK_DOT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1821), + [anon_sym_PIPE_PIPE] = ACTIONS(1821), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_GT_GT_GT] = ACTIONS(1821), + [anon_sym_LT_LT] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_CARET] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1821), + [anon_sym_STAR_STAR] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1821), + [anon_sym_EQ_EQ] = ACTIONS(1823), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), + [anon_sym_BANG_EQ] = ACTIONS(1823), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), + [anon_sym_GT_EQ] = ACTIONS(1821), + [anon_sym_QMARK_QMARK] = ACTIONS(1821), + [anon_sym_instanceof] = 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), + [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(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1821), + [sym__ternary_qmark] = ACTIONS(1821), + [sym_html_comment] = ACTIONS(5), + }, + [219] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_COMMA] = 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(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_await] = ACTIONS(1823), + [anon_sym_in] = 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_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_QMARK_DOT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1821), + [anon_sym_PIPE_PIPE] = ACTIONS(1821), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_GT_GT_GT] = ACTIONS(1821), + [anon_sym_LT_LT] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_CARET] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1821), + [anon_sym_STAR_STAR] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1821), + [anon_sym_EQ_EQ] = ACTIONS(1823), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), + [anon_sym_BANG_EQ] = ACTIONS(1823), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), + [anon_sym_GT_EQ] = ACTIONS(1821), + [anon_sym_QMARK_QMARK] = ACTIONS(1821), + [anon_sym_instanceof] = 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), + [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(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1825), + [sym__ternary_qmark] = ACTIONS(1821), + [sym_html_comment] = ACTIONS(5), + }, + [220] = { + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_namespace] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_typeof] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(1829), + [anon_sym_with] = ACTIONS(1829), + [anon_sym_var] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_switch] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_await] = ACTIONS(1829), + [anon_sym_in] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_debugger] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_throw] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_case] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1827), + [sym_glimmer_opening_tag] = ACTIONS(1827), + [anon_sym_GT] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_function] = ACTIONS(1829), + [anon_sym_QMARK_DOT] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1829), + [anon_sym_using] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1829), + [anon_sym_GT_GT_GT] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_SLASH] = ACTIONS(1829), + [anon_sym_PERCENT] = ACTIONS(1827), + [anon_sym_STAR_STAR] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_LT_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1829), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ] = ACTIONS(1829), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1827), + [anon_sym_QMARK_QMARK] = ACTIONS(1827), + [anon_sym_instanceof] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1827), + [anon_sym_void] = ACTIONS(1829), + [anon_sym_delete] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1827), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [sym_private_property_identifier] = ACTIONS(1827), + [sym_this] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_true] = ACTIONS(1829), + [sym_false] = ACTIONS(1829), + [sym_null] = ACTIONS(1829), [sym_undefined] = ACTIONS(1829), + [anon_sym_AT] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_readonly] = ACTIONS(1829), + [anon_sym_get] = ACTIONS(1829), + [anon_sym_set] = ACTIONS(1829), + [anon_sym_declare] = ACTIONS(1829), + [anon_sym_public] = ACTIONS(1829), + [anon_sym_private] = ACTIONS(1829), + [anon_sym_protected] = ACTIONS(1829), + [anon_sym_override] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_any] = ACTIONS(1829), + [anon_sym_number] = ACTIONS(1829), + [anon_sym_boolean] = ACTIONS(1829), + [anon_sym_string] = ACTIONS(1829), + [anon_sym_symbol] = ACTIONS(1829), + [anon_sym_object] = ACTIONS(1829), + [anon_sym_abstract] = ACTIONS(1829), + [anon_sym_satisfies] = ACTIONS(1829), + [anon_sym_interface] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [sym__automatic_semicolon] = ACTIONS(1827), + [sym__ternary_qmark] = ACTIONS(1827), + [sym_html_comment] = ACTIONS(5), + }, + [221] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(1817), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), [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), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_extends] = ACTIONS(1819), + [anon_sym_PIPE_RBRACE] = ACTIONS(1817), + [sym__automatic_semicolon] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [214] = { + [222] = { [ts_builtin_sym_end] = ACTIONS(1831), [sym_identifier] = ACTIONS(1833), [anon_sym_export] = ACTIONS(1833), @@ -49526,7 +50447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1831), [sym_html_comment] = ACTIONS(5), }, - [215] = { + [223] = { [ts_builtin_sym_end] = ACTIONS(1835), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1837), @@ -49637,17 +50558,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1835), [sym_html_comment] = ACTIONS(5), }, - [216] = { + [224] = { [ts_builtin_sym_end] = ACTIONS(1839), [sym_identifier] = ACTIONS(1841), [anon_sym_export] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1841), [anon_sym_default] = ACTIONS(1841), [anon_sym_type] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1841), [anon_sym_namespace] = ACTIONS(1841), [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1839), [anon_sym_RBRACE] = ACTIONS(1839), [anon_sym_typeof] = ACTIONS(1841), [anon_sym_import] = ACTIONS(1841), @@ -49662,7 +50583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1841), [anon_sym_LPAREN] = ACTIONS(1839), [anon_sym_await] = ACTIONS(1841), - [anon_sym_in] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1841), [anon_sym_while] = ACTIONS(1841), [anon_sym_do] = ACTIONS(1841), [anon_sym_try] = ACTIONS(1841), @@ -49676,38 +50597,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1841), [anon_sym_LBRACK] = ACTIONS(1839), [sym_glimmer_opening_tag] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(1843), + [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(1845), + [anon_sym_QMARK_DOT] = ACTIONS(1839), [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_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(1845), - [anon_sym_STAR_STAR] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1839), + [anon_sym_STAR_STAR] = ACTIONS(1839), [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_QMARK_QMARK] = ACTIONS(1845), - [anon_sym_instanceof] = ACTIONS(1843), + [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), @@ -49741,1467 +50662,1023 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1841), [anon_sym_object] = ACTIONS(1841), [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_satisfies] = ACTIONS(1843), + [anon_sym_satisfies] = ACTIONS(1841), [anon_sym_interface] = ACTIONS(1841), [anon_sym_enum] = ACTIONS(1841), - [sym__automatic_semicolon] = ACTIONS(1847), - [sym__ternary_qmark] = ACTIONS(1845), + [sym__automatic_semicolon] = ACTIONS(1839), + [sym__ternary_qmark] = ACTIONS(1839), [sym_html_comment] = ACTIONS(5), }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), + [225] = { + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_namespace] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1843), [anon_sym_COMMA] = 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(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_await] = ACTIONS(1851), - [anon_sym_in] = 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_SEMI] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [sym_glimmer_opening_tag] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [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_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_await] = ACTIONS(1845), + [anon_sym_in] = ACTIONS(1847), + [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_SEMI] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1843), + [sym_glimmer_opening_tag] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1847), + [anon_sym_DOT] = 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(1849), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1845), [anon_sym_AMP_AMP] = ACTIONS(1849), [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1851), + [anon_sym_GT_GT] = ACTIONS(1847), [anon_sym_GT_GT_GT] = ACTIONS(1849), [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1847), [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), [anon_sym_PERCENT] = ACTIONS(1849), [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1845), [anon_sym_LT_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ] = ACTIONS(1851), + [anon_sym_EQ_EQ] = ACTIONS(1847), [anon_sym_EQ_EQ_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ] = ACTIONS(1847), [anon_sym_BANG_EQ_EQ] = ACTIONS(1849), [anon_sym_GT_EQ] = ACTIONS(1849), [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = 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), - [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(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), + [anon_sym_instanceof] = ACTIONS(1847), + [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(1847), + [anon_sym_interface] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), [sym__automatic_semicolon] = ACTIONS(1849), [sym__ternary_qmark] = ACTIONS(1849), [sym_html_comment] = ACTIONS(5), }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1857), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1859), - [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_await] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1857), - [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_SEMI] = ACTIONS(1853), - [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(1857), - [anon_sym_DOT] = ACTIONS(1857), - [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(1859), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1859), - [anon_sym_PIPE_PIPE] = ACTIONS(1859), - [anon_sym_GT_GT] = ACTIONS(1857), - [anon_sym_GT_GT_GT] = ACTIONS(1859), - [anon_sym_LT_LT] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_CARET] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1859), - [anon_sym_STAR_STAR] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1859), - [anon_sym_EQ_EQ] = ACTIONS(1857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), - [anon_sym_BANG_EQ] = ACTIONS(1857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), - [anon_sym_GT_EQ] = ACTIONS(1859), - [anon_sym_QMARK_QMARK] = ACTIONS(1859), - [anon_sym_instanceof] = ACTIONS(1857), - [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(1857), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [sym__automatic_semicolon] = ACTIONS(1861), - [sym__ternary_qmark] = ACTIONS(1859), - [sym_html_comment] = ACTIONS(5), - }, - [219] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_identifier] = ACTIONS(1865), - [anon_sym_export] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_typeof] = ACTIONS(1865), - [anon_sym_import] = ACTIONS(1865), - [anon_sym_with] = ACTIONS(1865), - [anon_sym_var] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_switch] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_await] = ACTIONS(1865), - [anon_sym_in] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_do] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_debugger] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_throw] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [sym_glimmer_opening_tag] = ACTIONS(1863), - [anon_sym_GT] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1863), - [anon_sym_SQUOTE] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1865), - [anon_sym_async] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1865), - [anon_sym_QMARK_DOT] = ACTIONS(1869), - [anon_sym_new] = ACTIONS(1865), - [anon_sym_using] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_PIPE_PIPE] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1867), - [anon_sym_GT_GT_GT] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_SLASH] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1869), - [anon_sym_STAR_STAR] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1867), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1869), - [anon_sym_QMARK_QMARK] = ACTIONS(1869), - [anon_sym_instanceof] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_void] = ACTIONS(1865), - [anon_sym_delete] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1863), - [sym_number] = ACTIONS(1863), - [sym_private_property_identifier] = ACTIONS(1863), - [sym_this] = ACTIONS(1865), - [sym_super] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_null] = ACTIONS(1865), - [sym_undefined] = ACTIONS(1865), - [anon_sym_AT] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1865), - [anon_sym_readonly] = ACTIONS(1865), - [anon_sym_get] = ACTIONS(1865), - [anon_sym_set] = ACTIONS(1865), - [anon_sym_declare] = ACTIONS(1865), - [anon_sym_public] = ACTIONS(1865), - [anon_sym_private] = ACTIONS(1865), - [anon_sym_protected] = ACTIONS(1865), - [anon_sym_override] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_any] = ACTIONS(1865), - [anon_sym_number] = ACTIONS(1865), - [anon_sym_boolean] = ACTIONS(1865), - [anon_sym_string] = ACTIONS(1865), - [anon_sym_symbol] = ACTIONS(1865), - [anon_sym_object] = ACTIONS(1865), - [anon_sym_abstract] = ACTIONS(1865), - [anon_sym_satisfies] = ACTIONS(1867), - [anon_sym_interface] = ACTIONS(1865), - [anon_sym_enum] = ACTIONS(1865), - [sym__automatic_semicolon] = ACTIONS(1871), - [sym__ternary_qmark] = ACTIONS(1869), - [sym_html_comment] = ACTIONS(5), - }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_COMMA] = 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(1875), - [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_await] = ACTIONS(1875), - [anon_sym_in] = 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_SEMI] = ACTIONS(1873), - [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_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_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_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_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_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_satisfies] = ACTIONS(1875), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [sym__automatic_semicolon] = ACTIONS(1873), - [sym__ternary_qmark] = ACTIONS(1873), + [226] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [sym_glimmer_opening_tag] = ACTIONS(1851), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_QMARK_DOT] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_STAR_STAR] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_instanceof] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_satisfies] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym__automatic_semicolon] = ACTIONS(1859), + [sym__ternary_qmark] = ACTIONS(1857), [sym_html_comment] = ACTIONS(5), }, - [221] = { - [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_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_SEMI] = ACTIONS(1877), - [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), + [227] = { + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_typeof] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_debugger] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [sym_glimmer_opening_tag] = ACTIONS(1861), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_QMARK_DOT] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_GT_GT] = ACTIONS(1865), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_QMARK_QMARK] = ACTIONS(1867), + [anon_sym_instanceof] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_void] = ACTIONS(1863), + [anon_sym_delete] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1861), + [sym_number] = ACTIONS(1861), + [sym_private_property_identifier] = ACTIONS(1861), + [sym_this] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [sym_undefined] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_satisfies] = ACTIONS(1865), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym__automatic_semicolon] = ACTIONS(1869), + [sym__ternary_qmark] = ACTIONS(1867), [sym_html_comment] = ACTIONS(5), }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), + [228] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), [anon_sym_as] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_COMMA] = 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(1875), - [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_await] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), [anon_sym_in] = 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_SEMI] = ACTIONS(1873), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), [anon_sym_GT] = ACTIONS(1875), [anon_sym_DOT] = ACTIONS(1875), - [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_new] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_PIPE_PIPE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), [anon_sym_GT_GT] = ACTIONS(1875), - [anon_sym_GT_GT_GT] = ACTIONS(1873), - [anon_sym_LT_LT] = ACTIONS(1873), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_CARET] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1877), [anon_sym_PIPE] = ACTIONS(1875), - [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_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_LT_EQ] = ACTIONS(1877), [anon_sym_EQ_EQ] = ACTIONS(1875), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), [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_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_QMARK_QMARK] = ACTIONS(1877), [anon_sym_instanceof] = ACTIONS(1875), - [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_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), [anon_sym_satisfies] = ACTIONS(1875), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [sym__automatic_semicolon] = ACTIONS(1887), - [sym__ternary_qmark] = ACTIONS(1873), - [sym_html_comment] = ACTIONS(5), - }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1893), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(1891), - [anon_sym_import] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), - [anon_sym_var] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_debugger] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1889), - [sym_glimmer_opening_tag] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_function] = ACTIONS(1891), - [anon_sym_QMARK_DOT] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_AMP_AMP] = ACTIONS(1895), - [anon_sym_PIPE_PIPE] = ACTIONS(1895), - [anon_sym_GT_GT] = ACTIONS(1893), - [anon_sym_GT_GT_GT] = ACTIONS(1895), - [anon_sym_LT_LT] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_PERCENT] = ACTIONS(1895), - [anon_sym_STAR_STAR] = ACTIONS(1895), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_LT_EQ] = ACTIONS(1895), - [anon_sym_EQ_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1895), - [anon_sym_BANG_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(1895), - [anon_sym_QMARK_QMARK] = ACTIONS(1895), - [anon_sym_instanceof] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_void] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1889), - [sym_number] = ACTIONS(1889), - [sym_private_property_identifier] = ACTIONS(1889), - [sym_this] = ACTIONS(1891), - [sym_super] = ACTIONS(1891), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_undefined] = ACTIONS(1891), - [anon_sym_AT] = ACTIONS(1889), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_readonly] = ACTIONS(1891), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1891), - [anon_sym_public] = ACTIONS(1891), - [anon_sym_private] = ACTIONS(1891), - [anon_sym_protected] = ACTIONS(1891), - [anon_sym_override] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_any] = ACTIONS(1891), - [anon_sym_number] = ACTIONS(1891), - [anon_sym_boolean] = ACTIONS(1891), - [anon_sym_string] = ACTIONS(1891), - [anon_sym_symbol] = ACTIONS(1891), - [anon_sym_object] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1891), - [anon_sym_satisfies] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym__ternary_qmark] = ACTIONS(1895), - [sym_html_comment] = ACTIONS(5), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_typeof] = ACTIONS(1901), - [anon_sym_import] = ACTIONS(1901), - [anon_sym_with] = ACTIONS(1901), - [anon_sym_var] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_switch] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_debugger] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_throw] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [sym_glimmer_opening_tag] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_function] = ACTIONS(1901), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_using] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1901), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1901), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_STAR_STAR] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_QMARK_QMARK] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_void] = ACTIONS(1901), - [anon_sym_delete] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1899), - [sym_number] = ACTIONS(1899), - [sym_private_property_identifier] = ACTIONS(1899), - [sym_this] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_true] = ACTIONS(1901), - [sym_false] = ACTIONS(1901), - [sym_null] = ACTIONS(1901), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_readonly] = ACTIONS(1901), - [anon_sym_get] = ACTIONS(1901), - [anon_sym_set] = ACTIONS(1901), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1901), - [anon_sym_private] = ACTIONS(1901), - [anon_sym_protected] = ACTIONS(1901), - [anon_sym_override] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_any] = ACTIONS(1901), - [anon_sym_number] = ACTIONS(1901), - [anon_sym_boolean] = ACTIONS(1901), - [anon_sym_string] = ACTIONS(1901), - [anon_sym_symbol] = ACTIONS(1901), - [anon_sym_object] = ACTIONS(1901), - [anon_sym_abstract] = ACTIONS(1901), - [anon_sym_satisfies] = ACTIONS(1901), - [anon_sym_interface] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [sym__automatic_semicolon] = ACTIONS(1899), - [sym__ternary_qmark] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(1879), + [sym__ternary_qmark] = ACTIONS(1877), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(620), + [229] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2296), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5070), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5070), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5070), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_mapped_type_clause] = STATE(5442), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [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(1889), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1893), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1895), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1899), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [anon_sym_extends] = ACTIONS(1905), - [anon_sym_PIPE_RBRACE] = ACTIONS(1903), - [sym__automatic_semicolon] = ACTIONS(1903), + [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), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1909), - [anon_sym_type] = ACTIONS(1909), - [anon_sym_as] = ACTIONS(1909), - [anon_sym_namespace] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_typeof] = ACTIONS(1909), - [anon_sym_import] = ACTIONS(1909), - [anon_sym_with] = ACTIONS(1909), - [anon_sym_var] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_switch] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_in] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_debugger] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_case] = ACTIONS(1909), - [anon_sym_yield] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1907), - [sym_glimmer_opening_tag] = ACTIONS(1907), - [anon_sym_GT] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1907), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_class] = ACTIONS(1909), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_function] = ACTIONS(1909), - [anon_sym_QMARK_DOT] = ACTIONS(1907), - [anon_sym_new] = ACTIONS(1909), - [anon_sym_using] = ACTIONS(1909), - [anon_sym_AMP_AMP] = ACTIONS(1907), - [anon_sym_PIPE_PIPE] = ACTIONS(1907), - [anon_sym_GT_GT] = ACTIONS(1909), - [anon_sym_GT_GT_GT] = ACTIONS(1907), - [anon_sym_LT_LT] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_SLASH] = ACTIONS(1909), - [anon_sym_PERCENT] = ACTIONS(1907), - [anon_sym_STAR_STAR] = ACTIONS(1907), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_LT_EQ] = ACTIONS(1907), - [anon_sym_EQ_EQ] = ACTIONS(1909), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1907), - [anon_sym_BANG_EQ] = ACTIONS(1909), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(1907), - [anon_sym_QMARK_QMARK] = ACTIONS(1907), - [anon_sym_instanceof] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_void] = ACTIONS(1909), - [anon_sym_delete] = ACTIONS(1909), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1907), - [sym_number] = ACTIONS(1907), - [sym_private_property_identifier] = ACTIONS(1907), - [sym_this] = ACTIONS(1909), - [sym_super] = ACTIONS(1909), - [sym_true] = ACTIONS(1909), - [sym_false] = ACTIONS(1909), - [sym_null] = ACTIONS(1909), - [sym_undefined] = ACTIONS(1909), - [anon_sym_AT] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_readonly] = ACTIONS(1909), - [anon_sym_get] = ACTIONS(1909), - [anon_sym_set] = ACTIONS(1909), - [anon_sym_declare] = ACTIONS(1909), - [anon_sym_public] = ACTIONS(1909), - [anon_sym_private] = ACTIONS(1909), - [anon_sym_protected] = ACTIONS(1909), - [anon_sym_override] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_any] = ACTIONS(1909), - [anon_sym_number] = ACTIONS(1909), - [anon_sym_boolean] = ACTIONS(1909), - [anon_sym_string] = ACTIONS(1909), - [anon_sym_symbol] = ACTIONS(1909), - [anon_sym_object] = ACTIONS(1909), - [anon_sym_abstract] = ACTIONS(1909), - [anon_sym_satisfies] = ACTIONS(1909), - [anon_sym_interface] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [sym__automatic_semicolon] = ACTIONS(1907), - [sym__ternary_qmark] = ACTIONS(1907), + [230] = { + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_as] = ACTIONS(1903), + [anon_sym_namespace] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_COMMA] = 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(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_await] = ACTIONS(1903), + [anon_sym_in] = 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_SEMI] = ACTIONS(1901), + [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(1903), + [anon_sym_DOT] = ACTIONS(1903), + [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(1901), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_using] = ACTIONS(1903), + [anon_sym_AMP_AMP] = ACTIONS(1901), + [anon_sym_PIPE_PIPE] = ACTIONS(1901), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_GT_GT_GT] = ACTIONS(1901), + [anon_sym_LT_LT] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1901), + [anon_sym_STAR_STAR] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1901), + [anon_sym_EQ_EQ] = ACTIONS(1903), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), + [anon_sym_BANG_EQ] = ACTIONS(1903), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), + [anon_sym_GT_EQ] = ACTIONS(1901), + [anon_sym_QMARK_QMARK] = ACTIONS(1901), + [anon_sym_instanceof] = 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_satisfies] = ACTIONS(1903), + [anon_sym_interface] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [sym__automatic_semicolon] = ACTIONS(1901), + [sym__ternary_qmark] = ACTIONS(1901), [sym_html_comment] = ACTIONS(5), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1913), - [anon_sym_export] = ACTIONS(1913), + [231] = { + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_namespace] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_typeof] = ACTIONS(1907), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_with] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_switch] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_await] = ACTIONS(1907), + [anon_sym_in] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_debugger] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1905), + [sym_glimmer_opening_tag] = ACTIONS(1905), + [anon_sym_GT] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1905), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_async] = ACTIONS(1907), + [anon_sym_function] = ACTIONS(1907), + [anon_sym_QMARK_DOT] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_using] = ACTIONS(1907), + [anon_sym_AMP_AMP] = ACTIONS(1905), + [anon_sym_PIPE_PIPE] = ACTIONS(1905), + [anon_sym_GT_GT] = ACTIONS(1907), + [anon_sym_GT_GT_GT] = ACTIONS(1905), + [anon_sym_LT_LT] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_PERCENT] = ACTIONS(1905), + [anon_sym_STAR_STAR] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(1905), + [anon_sym_EQ_EQ] = ACTIONS(1907), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1905), + [anon_sym_BANG_EQ] = ACTIONS(1907), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1905), + [anon_sym_GT_EQ] = ACTIONS(1905), + [anon_sym_QMARK_QMARK] = ACTIONS(1905), + [anon_sym_instanceof] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_void] = ACTIONS(1907), + [anon_sym_delete] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1905), + [sym_number] = ACTIONS(1905), + [sym_private_property_identifier] = ACTIONS(1905), + [sym_this] = ACTIONS(1907), + [sym_super] = ACTIONS(1907), + [sym_true] = ACTIONS(1907), + [sym_false] = ACTIONS(1907), + [sym_null] = ACTIONS(1907), + [sym_undefined] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_readonly] = ACTIONS(1907), + [anon_sym_get] = ACTIONS(1907), + [anon_sym_set] = ACTIONS(1907), + [anon_sym_declare] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_protected] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_any] = ACTIONS(1907), + [anon_sym_number] = ACTIONS(1907), + [anon_sym_boolean] = ACTIONS(1907), + [anon_sym_string] = ACTIONS(1907), + [anon_sym_symbol] = ACTIONS(1907), + [anon_sym_object] = ACTIONS(1907), + [anon_sym_abstract] = ACTIONS(1907), + [anon_sym_satisfies] = ACTIONS(1907), + [anon_sym_interface] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [sym__automatic_semicolon] = ACTIONS(1905), + [sym__ternary_qmark] = ACTIONS(1905), + [sym_html_comment] = ACTIONS(5), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [anon_sym_export] = ACTIONS(1911), [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), + [anon_sym_default] = ACTIONS(1911), + [anon_sym_type] = ACTIONS(1911), [anon_sym_as] = ACTIONS(1913), - [anon_sym_namespace] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(1913), - [anon_sym_import] = ACTIONS(1913), - [anon_sym_with] = ACTIONS(1913), - [anon_sym_var] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_switch] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_await] = ACTIONS(1913), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1915), + [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_await] = ACTIONS(1911), [anon_sym_in] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_debugger] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_throw] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1913), - [anon_sym_yield] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1911), - [sym_glimmer_opening_tag] = 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_SEMI] = ACTIONS(1909), + [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(1913), [anon_sym_DOT] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_class] = ACTIONS(1913), - [anon_sym_async] = ACTIONS(1913), - [anon_sym_function] = ACTIONS(1913), - [anon_sym_QMARK_DOT] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(1913), - [anon_sym_using] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1911), - [anon_sym_PIPE_PIPE] = 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(1915), + [anon_sym_new] = ACTIONS(1911), + [anon_sym_using] = ACTIONS(1911), + [anon_sym_AMP_AMP] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1915), [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_GT_GT_GT] = ACTIONS(1911), - [anon_sym_LT_LT] = ACTIONS(1911), + [anon_sym_GT_GT_GT] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1915), [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1911), - [anon_sym_STAR_STAR] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_STAR_STAR] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_LT_EQ] = ACTIONS(1915), [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1911), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1915), [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1911), - [anon_sym_GT_EQ] = ACTIONS(1911), - [anon_sym_QMARK_QMARK] = ACTIONS(1911), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1915), + [anon_sym_QMARK_QMARK] = ACTIONS(1915), [anon_sym_instanceof] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1911), - [anon_sym_void] = ACTIONS(1913), - [anon_sym_delete] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1911), - [sym_number] = ACTIONS(1911), - [sym_private_property_identifier] = ACTIONS(1911), - [sym_this] = ACTIONS(1913), - [sym_super] = ACTIONS(1913), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_null] = ACTIONS(1913), - [sym_undefined] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(1911), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_readonly] = ACTIONS(1913), - [anon_sym_get] = ACTIONS(1913), - [anon_sym_set] = ACTIONS(1913), - [anon_sym_declare] = ACTIONS(1913), - [anon_sym_public] = ACTIONS(1913), - [anon_sym_private] = ACTIONS(1913), - [anon_sym_protected] = ACTIONS(1913), - [anon_sym_override] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_any] = ACTIONS(1913), - [anon_sym_number] = ACTIONS(1913), - [anon_sym_boolean] = ACTIONS(1913), - [anon_sym_string] = ACTIONS(1913), - [anon_sym_symbol] = ACTIONS(1913), - [anon_sym_object] = ACTIONS(1913), - [anon_sym_abstract] = ACTIONS(1913), + [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(1913), - [anon_sym_interface] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [sym__automatic_semicolon] = ACTIONS(1911), - [sym__ternary_qmark] = ACTIONS(1911), + [anon_sym_interface] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [sym__automatic_semicolon] = ACTIONS(1917), + [sym__ternary_qmark] = ACTIONS(1915), [sym_html_comment] = ACTIONS(5), }, - [228] = { - [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_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_SEMI] = ACTIONS(1915), - [anon_sym_case] = ACTIONS(1917), - [anon_sym_yield] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [sym_glimmer_opening_tag] = ACTIONS(1915), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1915), - [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_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), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [229] = { - [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), + [233] = { + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_export] = ACTIONS(1921), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_as] = ACTIONS(1923), + [anon_sym_namespace] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1919), [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_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_SEMI] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_function] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_typeof] = ACTIONS(1921), + [anon_sym_import] = ACTIONS(1921), + [anon_sym_with] = ACTIONS(1921), + [anon_sym_var] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_else] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_switch] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_await] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_debugger] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_throw] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_case] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1919), + [sym_glimmer_opening_tag] = ACTIONS(1919), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_function] = ACTIONS(1921), [anon_sym_QMARK_DOT] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_using] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(1921), [anon_sym_AMP_AMP] = ACTIONS(1925), [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_GT_GT] = ACTIONS(1923), [anon_sym_GT_GT_GT] = ACTIONS(1925), [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1923), [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_PIPE] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_SLASH] = ACTIONS(1921), [anon_sym_PERCENT] = ACTIONS(1925), [anon_sym_STAR_STAR] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1921), [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_EQ_EQ] = ACTIONS(1927), + [anon_sym_EQ_EQ] = ACTIONS(1923), [anon_sym_EQ_EQ_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ] = ACTIONS(1927), + [anon_sym_BANG_EQ] = ACTIONS(1923), [anon_sym_BANG_EQ_EQ] = ACTIONS(1925), [anon_sym_GT_EQ] = ACTIONS(1925), [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), - [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), + [anon_sym_instanceof] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_void] = ACTIONS(1921), + [anon_sym_delete] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1919), + [sym_number] = ACTIONS(1919), + [sym_private_property_identifier] = ACTIONS(1919), + [sym_this] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_true] = ACTIONS(1921), + [sym_false] = ACTIONS(1921), + [sym_null] = ACTIONS(1921), + [sym_undefined] = ACTIONS(1921), + [anon_sym_AT] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_readonly] = ACTIONS(1921), + [anon_sym_get] = ACTIONS(1921), + [anon_sym_set] = ACTIONS(1921), + [anon_sym_declare] = ACTIONS(1921), + [anon_sym_public] = ACTIONS(1921), + [anon_sym_private] = ACTIONS(1921), + [anon_sym_protected] = ACTIONS(1921), + [anon_sym_override] = ACTIONS(1921), + [anon_sym_module] = ACTIONS(1921), + [anon_sym_any] = ACTIONS(1921), + [anon_sym_number] = ACTIONS(1921), + [anon_sym_boolean] = ACTIONS(1921), + [anon_sym_string] = ACTIONS(1921), + [anon_sym_symbol] = ACTIONS(1921), + [anon_sym_object] = ACTIONS(1921), + [anon_sym_abstract] = ACTIONS(1921), + [anon_sym_satisfies] = ACTIONS(1923), + [anon_sym_interface] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [sym__automatic_semicolon] = ACTIONS(1927), [sym__ternary_qmark] = ACTIONS(1925), [sym_html_comment] = ACTIONS(5), }, - [230] = { + [234] = { [ts_builtin_sym_end] = ACTIONS(1929), [sym_identifier] = ACTIONS(1931), [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), [anon_sym_default] = ACTIONS(1931), [anon_sym_type] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1933), [anon_sym_namespace] = ACTIONS(1931), [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(1935), [anon_sym_RBRACE] = ACTIONS(1929), [anon_sym_typeof] = ACTIONS(1931), [anon_sym_import] = ACTIONS(1931), @@ -51216,7 +51693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1931), [anon_sym_LPAREN] = ACTIONS(1929), [anon_sym_await] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1933), [anon_sym_while] = ACTIONS(1931), [anon_sym_do] = ACTIONS(1931), [anon_sym_try] = ACTIONS(1931), @@ -51230,38 +51707,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1931), [anon_sym_LBRACK] = ACTIONS(1929), [sym_glimmer_opening_tag] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(1933), [anon_sym_DQUOTE] = ACTIONS(1929), [anon_sym_SQUOTE] = ACTIONS(1929), [anon_sym_class] = ACTIONS(1931), [anon_sym_async] = ACTIONS(1931), [anon_sym_function] = ACTIONS(1931), - [anon_sym_QMARK_DOT] = ACTIONS(1929), + [anon_sym_QMARK_DOT] = ACTIONS(1935), [anon_sym_new] = ACTIONS(1931), [anon_sym_using] = ACTIONS(1931), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1931), - [anon_sym_GT_GT_GT] = ACTIONS(1929), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1931), - [anon_sym_CARET] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(1933), + [anon_sym_GT_GT_GT] = ACTIONS(1935), + [anon_sym_LT_LT] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1933), + [anon_sym_CARET] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1933), [anon_sym_PLUS] = ACTIONS(1931), [anon_sym_DASH] = ACTIONS(1931), [anon_sym_SLASH] = ACTIONS(1931), - [anon_sym_PERCENT] = ACTIONS(1929), - [anon_sym_STAR_STAR] = ACTIONS(1929), + [anon_sym_PERCENT] = ACTIONS(1935), + [anon_sym_STAR_STAR] = ACTIONS(1935), [anon_sym_LT] = ACTIONS(1931), - [anon_sym_LT_EQ] = ACTIONS(1929), - [anon_sym_EQ_EQ] = ACTIONS(1931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1929), - [anon_sym_GT_EQ] = ACTIONS(1929), - [anon_sym_QMARK_QMARK] = ACTIONS(1929), - [anon_sym_instanceof] = ACTIONS(1931), + [anon_sym_LT_EQ] = ACTIONS(1935), + [anon_sym_EQ_EQ] = ACTIONS(1933), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1933), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1935), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_QMARK_QMARK] = ACTIONS(1935), + [anon_sym_instanceof] = ACTIONS(1933), [anon_sym_TILDE] = ACTIONS(1929), [anon_sym_void] = ACTIONS(1931), [anon_sym_delete] = ACTIONS(1931), @@ -51295,638 +51772,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1931), [anon_sym_object] = ACTIONS(1931), [anon_sym_abstract] = ACTIONS(1931), - [anon_sym_satisfies] = ACTIONS(1931), + [anon_sym_satisfies] = ACTIONS(1933), [anon_sym_interface] = ACTIONS(1931), [anon_sym_enum] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1929), - [sym__ternary_qmark] = ACTIONS(1929), - [sym_html_comment] = ACTIONS(5), - }, - [231] = { - [sym_import] = STATE(3315), - [sym_expression_statement] = STATE(280), - [sym_variable_declaration] = STATE(280), - [sym_lexical_declaration] = STATE(280), - [sym_empty_statement] = STATE(280), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(4916), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(4916), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(4916), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1336), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [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(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1827), - [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(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_html_comment] = ACTIONS(5), - }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_as] = ACTIONS(1689), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_with] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_await] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_debugger] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_throw] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [sym_glimmer_opening_tag] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1689), - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(1689), - [anon_sym_QMARK_DOT] = ACTIONS(1687), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1687), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_GT_GT] = ACTIONS(1689), - [anon_sym_GT_GT_GT] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_PERCENT] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_EQ_EQ] = ACTIONS(1689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1689), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(1687), - [anon_sym_QMARK_QMARK] = ACTIONS(1687), - [anon_sym_instanceof] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_delete] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_number] = ACTIONS(1687), - [sym_private_property_identifier] = ACTIONS(1687), - [sym_this] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_undefined] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_get] = ACTIONS(1689), - [anon_sym_set] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_private] = ACTIONS(1689), - [anon_sym_protected] = ACTIONS(1689), - [anon_sym_override] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_number] = ACTIONS(1689), - [anon_sym_boolean] = ACTIONS(1689), - [anon_sym_string] = ACTIONS(1689), - [anon_sym_symbol] = ACTIONS(1689), - [anon_sym_object] = ACTIONS(1689), - [anon_sym_abstract] = ACTIONS(1689), - [anon_sym_satisfies] = ACTIONS(1689), - [anon_sym_interface] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [sym__automatic_semicolon] = ACTIONS(1933), - [sym__ternary_qmark] = ACTIONS(1687), - [sym_html_comment] = ACTIONS(5), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1935), - [sym_identifier] = ACTIONS(1937), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_default] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1939), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_typeof] = ACTIONS(1937), - [anon_sym_import] = ACTIONS(1937), - [anon_sym_with] = ACTIONS(1937), - [anon_sym_var] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_switch] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_await] = ACTIONS(1937), - [anon_sym_in] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_debugger] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_throw] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_case] = ACTIONS(1937), - [anon_sym_yield] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1935), - [sym_glimmer_opening_tag] = ACTIONS(1935), - [anon_sym_GT] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1935), - [anon_sym_SQUOTE] = ACTIONS(1935), - [anon_sym_class] = ACTIONS(1937), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1937), - [anon_sym_QMARK_DOT] = ACTIONS(1941), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_using] = ACTIONS(1937), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1939), - [anon_sym_GT_GT_GT] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1939), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_PLUS] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_SLASH] = ACTIONS(1937), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_STAR_STAR] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_EQ_EQ] = ACTIONS(1939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_QMARK_QMARK] = ACTIONS(1941), - [anon_sym_instanceof] = ACTIONS(1939), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_void] = ACTIONS(1937), - [anon_sym_delete] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1935), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1935), - [sym_number] = ACTIONS(1935), - [sym_private_property_identifier] = ACTIONS(1935), - [sym_this] = ACTIONS(1937), - [sym_super] = ACTIONS(1937), - [sym_true] = ACTIONS(1937), - [sym_false] = ACTIONS(1937), - [sym_null] = ACTIONS(1937), - [sym_undefined] = ACTIONS(1937), - [anon_sym_AT] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_readonly] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_override] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_any] = ACTIONS(1937), - [anon_sym_number] = ACTIONS(1937), - [anon_sym_boolean] = ACTIONS(1937), - [anon_sym_string] = ACTIONS(1937), - [anon_sym_symbol] = ACTIONS(1937), - [anon_sym_object] = ACTIONS(1937), - [anon_sym_abstract] = ACTIONS(1937), - [anon_sym_satisfies] = ACTIONS(1939), - [anon_sym_interface] = ACTIONS(1937), - [anon_sym_enum] = ACTIONS(1937), - [sym__automatic_semicolon] = ACTIONS(1943), - [sym__ternary_qmark] = ACTIONS(1941), + [sym__automatic_semicolon] = ACTIONS(1937), + [sym__ternary_qmark] = ACTIONS(1935), [sym_html_comment] = ACTIONS(5), }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1947), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_namespace] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1945), + [235] = { + [ts_builtin_sym_end] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1941), + [anon_sym_export] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_default] = ACTIONS(1941), + [anon_sym_type] = ACTIONS(1941), + [anon_sym_as] = ACTIONS(1943), + [anon_sym_namespace] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1939), [anon_sym_COMMA] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_typeof] = ACTIONS(1947), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_with] = ACTIONS(1947), - [anon_sym_var] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_debugger] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_throw] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_case] = ACTIONS(1947), - [anon_sym_yield] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1945), - [sym_glimmer_opening_tag] = ACTIONS(1945), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_class] = ACTIONS(1947), - [anon_sym_async] = ACTIONS(1947), - [anon_sym_function] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_typeof] = ACTIONS(1941), + [anon_sym_import] = ACTIONS(1941), + [anon_sym_with] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_else] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_switch] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_await] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_debugger] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_throw] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_case] = ACTIONS(1941), + [anon_sym_yield] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1939), + [sym_glimmer_opening_tag] = ACTIONS(1939), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1939), + [anon_sym_SQUOTE] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1941), + [anon_sym_function] = ACTIONS(1941), [anon_sym_QMARK_DOT] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_using] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_using] = ACTIONS(1941), [anon_sym_AMP_AMP] = ACTIONS(1945), [anon_sym_PIPE_PIPE] = ACTIONS(1945), - [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT] = ACTIONS(1943), [anon_sym_GT_GT_GT] = ACTIONS(1945), [anon_sym_LT_LT] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1943), [anon_sym_CARET] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1941), [anon_sym_PERCENT] = ACTIONS(1945), [anon_sym_STAR_STAR] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1941), [anon_sym_LT_EQ] = ACTIONS(1945), - [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ] = ACTIONS(1943), [anon_sym_EQ_EQ_EQ] = ACTIONS(1945), - [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ] = ACTIONS(1943), [anon_sym_BANG_EQ_EQ] = ACTIONS(1945), [anon_sym_GT_EQ] = ACTIONS(1945), [anon_sym_QMARK_QMARK] = ACTIONS(1945), - [anon_sym_instanceof] = ACTIONS(1947), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_void] = ACTIONS(1947), - [anon_sym_delete] = ACTIONS(1947), - [anon_sym_PLUS_PLUS] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1945), - [sym_number] = ACTIONS(1945), - [sym_private_property_identifier] = ACTIONS(1945), - [sym_this] = ACTIONS(1947), - [sym_super] = ACTIONS(1947), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [sym_null] = ACTIONS(1947), - [sym_undefined] = ACTIONS(1947), - [anon_sym_AT] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_readonly] = ACTIONS(1947), - [anon_sym_get] = ACTIONS(1947), - [anon_sym_set] = ACTIONS(1947), - [anon_sym_declare] = ACTIONS(1947), - [anon_sym_public] = ACTIONS(1947), - [anon_sym_private] = ACTIONS(1947), - [anon_sym_protected] = ACTIONS(1947), - [anon_sym_override] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_any] = ACTIONS(1947), - [anon_sym_number] = ACTIONS(1947), - [anon_sym_boolean] = ACTIONS(1947), - [anon_sym_string] = ACTIONS(1947), - [anon_sym_symbol] = ACTIONS(1947), - [anon_sym_object] = ACTIONS(1947), - [anon_sym_abstract] = ACTIONS(1947), - [anon_sym_satisfies] = ACTIONS(1947), - [anon_sym_interface] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [sym__automatic_semicolon] = ACTIONS(1945), + [anon_sym_instanceof] = ACTIONS(1943), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_void] = ACTIONS(1941), + [anon_sym_delete] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1939), + [sym_number] = ACTIONS(1939), + [sym_private_property_identifier] = ACTIONS(1939), + [sym_this] = ACTIONS(1941), + [sym_super] = ACTIONS(1941), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_null] = ACTIONS(1941), + [sym_undefined] = ACTIONS(1941), + [anon_sym_AT] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1941), + [anon_sym_readonly] = ACTIONS(1941), + [anon_sym_get] = ACTIONS(1941), + [anon_sym_set] = ACTIONS(1941), + [anon_sym_declare] = ACTIONS(1941), + [anon_sym_public] = ACTIONS(1941), + [anon_sym_private] = ACTIONS(1941), + [anon_sym_protected] = ACTIONS(1941), + [anon_sym_override] = ACTIONS(1941), + [anon_sym_module] = ACTIONS(1941), + [anon_sym_any] = ACTIONS(1941), + [anon_sym_number] = ACTIONS(1941), + [anon_sym_boolean] = ACTIONS(1941), + [anon_sym_string] = ACTIONS(1941), + [anon_sym_symbol] = ACTIONS(1941), + [anon_sym_object] = ACTIONS(1941), + [anon_sym_abstract] = ACTIONS(1941), + [anon_sym_satisfies] = ACTIONS(1943), + [anon_sym_interface] = ACTIONS(1941), + [anon_sym_enum] = ACTIONS(1941), + [sym__automatic_semicolon] = ACTIONS(1947), [sym__ternary_qmark] = ACTIONS(1945), [sym_html_comment] = ACTIONS(5), }, - [235] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(620), + [236] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_assignment_pattern] = STATE(4515), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4402), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_pattern_repeat1] = STATE(4530), + [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_RBRACK] = ACTIONS(1949), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1903), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(709), + [anon_sym_using] = ACTIONS(165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [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(1477), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [anon_sym_extends] = ACTIONS(1905), + [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), }, - [236] = { - [sym_import] = STATE(3342), + [237] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2179), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5070), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5070), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5070), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1375), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_pattern_repeat1] = STATE(4696), + [sym_identifier] = ACTIONS(1951), + [anon_sym_export] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_namespace] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_typeof] = ACTIONS(1105), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1893), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1959), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_readonly] = ACTIONS(1953), + [anon_sym_get] = ACTIONS(1953), + [anon_sym_set] = ACTIONS(1953), + [anon_sym_declare] = ACTIONS(1953), + [anon_sym_public] = ACTIONS(1953), + [anon_sym_private] = ACTIONS(1953), + [anon_sym_protected] = ACTIONS(1953), + [anon_sym_override] = ACTIONS(1953), + [anon_sym_module] = ACTIONS(1953), + [anon_sym_any] = ACTIONS(1953), + [anon_sym_number] = ACTIONS(1953), + [anon_sym_boolean] = ACTIONS(1953), + [anon_sym_string] = ACTIONS(1953), + [anon_sym_symbol] = ACTIONS(1953), + [anon_sym_object] = ACTIONS(1953), + [sym_html_comment] = ACTIONS(5), + }, + [238] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(5330), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4974), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4975), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(2136), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(5411), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4539), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4563), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1961), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1961), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -51939,7 +52192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -51947,7 +52200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -51967,76 +52220,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [237] = { - [sym_import] = STATE(3342), + [239] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(5330), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4974), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4975), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(2136), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(5411), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4539), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4563), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1961), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1964), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -52049,7 +52302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -52057,7 +52310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -52077,179 +52330,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [238] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5072), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5072), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1390), - [sym_subscript_expression] = STATE(1390), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5072), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1390), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_pattern_repeat1] = STATE(4970), - [sym_identifier] = ACTIONS(1960), - [anon_sym_export] = ACTIONS(1962), - [anon_sym_type] = ACTIONS(1962), - [anon_sym_namespace] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1197), + [240] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_RBRACK] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_RBRACK] = ACTIONS(1817), [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1966), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [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(1779), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_readonly] = ACTIONS(1962), - [anon_sym_get] = ACTIONS(1962), - [anon_sym_set] = ACTIONS(1962), - [anon_sym_declare] = ACTIONS(1962), - [anon_sym_public] = ACTIONS(1962), - [anon_sym_private] = ACTIONS(1962), - [anon_sym_protected] = ACTIONS(1962), - [anon_sym_override] = ACTIONS(1962), - [anon_sym_module] = ACTIONS(1962), - [anon_sym_any] = ACTIONS(1962), - [anon_sym_number] = ACTIONS(1962), - [anon_sym_boolean] = ACTIONS(1962), - [anon_sym_string] = ACTIONS(1962), - [anon_sym_symbol] = ACTIONS(1962), - [anon_sym_object] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [239] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_assignment_pattern] = STATE(4955), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4380), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_pattern_repeat1] = STATE(4970), + [241] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_assignment_pattern] = STATE(4646), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4478), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_pattern_repeat1] = STATE(4696), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1889), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_RBRACK] = ACTIONS(1773), + [anon_sym_RBRACK] = ACTIONS(1893), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -52269,7 +52522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -52297,186 +52550,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [240] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1903), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [anon_sym_extends] = ACTIONS(1905), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [sym_import] = STATE(3342), + [242] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(5330), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_spread_element] = STATE(4974), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4975), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1707), + [sym_expression] = STATE(2136), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(5411), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_spread_element] = STATE(4539), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4563), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1687), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1961), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(580), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(1968), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1693), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), @@ -52489,7 +52632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -52497,7 +52640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(580), [anon_sym_readonly] = ACTIONS(580), @@ -52517,69 +52660,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [242] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_assignment_pattern] = STATE(4490), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4450), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_pattern_repeat1] = STATE(4507), + [243] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_assignment_pattern] = STATE(5411), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4563), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1972), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1972), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -52599,7 +52741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -52627,185 +52769,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [243] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_assignment_pattern] = STATE(5330), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4975), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(699), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(184), + [244] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_RBRACK] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(1817), [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_undefined] = ACTIONS(1493), [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), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [245] = { + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(221), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_typeof] = ACTIONS(1974), + [anon_sym_import] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_await] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(224), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1976), + [sym_glimmer_opening_tag] = ACTIONS(1976), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_function] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [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(1976), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1974), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1974), + [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(1976), + [anon_sym_void] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1976), + [sym_number] = ACTIONS(1976), + [sym_private_property_identifier] = ACTIONS(1976), + [sym_this] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [sym_null] = ACTIONS(1974), + [sym_undefined] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [anon_sym_object] = ACTIONS(1974), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [246] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4527), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4528), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1978), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1980), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1903), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), @@ -52816,7 +53066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -52826,207 +53076,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [anon_sym_extends] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(1413), + [247] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1903), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1817), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [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(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [anon_sym_extends] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [248] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1980), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1817), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1817), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -53040,97 +53289,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), - [anon_sym_extends] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1867), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4499), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4501), + [249] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4581), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4582), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1978), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1984), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), @@ -53141,7 +53390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -53151,418 +53400,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [248] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1903), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [anon_sym_extends] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [250] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1817), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [anon_sym_extends] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_identifier] = ACTIONS(1980), - [anon_sym_export] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1980), - [anon_sym_import] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(1980), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1982), - [sym_glimmer_opening_tag] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_class] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_function] = ACTIONS(1980), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1980), - [anon_sym_using] = ACTIONS(1980), - [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(1982), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1980), - [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(1982), - [anon_sym_void] = ACTIONS(1980), - [anon_sym_delete] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_private_property_identifier] = ACTIONS(1982), - [sym_this] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_true] = ACTIONS(1980), - [sym_false] = ACTIONS(1980), - [sym_null] = ACTIONS(1980), - [sym_undefined] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_readonly] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1980), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_private] = ACTIONS(1980), - [anon_sym_protected] = ACTIONS(1980), - [anon_sym_override] = ACTIONS(1980), - [anon_sym_module] = ACTIONS(1980), - [anon_sym_any] = ACTIONS(1980), - [anon_sym_number] = ACTIONS(1980), - [anon_sym_boolean] = ACTIONS(1980), - [anon_sym_string] = ACTIONS(1980), - [anon_sym_symbol] = ACTIONS(1980), - [anon_sym_object] = ACTIONS(1980), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [251] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1930), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1817), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1403), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1417), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4992), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4993), + [252] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1947), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4833), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4840), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1978), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1986), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), @@ -53573,7 +53714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -53583,113 +53724,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [252] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1903), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [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(1279), [anon_sym_readonly] = ACTIONS(1279), [anon_sym_get] = ACTIONS(1279), @@ -53706,422 +53740,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1279), [anon_sym_symbol] = ACTIONS(1279), [anon_sym_object] = ACTIONS(1279), - [anon_sym_extends] = ACTIONS(1905), [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1903), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_extends] = ACTIONS(1905), - [sym_html_comment] = ACTIONS(5), - }, - [254] = { - [sym_identifier] = ACTIONS(1980), - [anon_sym_export] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1980), - [anon_sym_import] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1980), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1982), - [sym_glimmer_opening_tag] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_class] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_function] = ACTIONS(1980), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1980), - [anon_sym_using] = ACTIONS(1980), - [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(1982), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1980), - [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(1982), - [anon_sym_void] = ACTIONS(1980), - [anon_sym_delete] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_private_property_identifier] = ACTIONS(1982), - [sym_this] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_true] = ACTIONS(1980), - [sym_false] = ACTIONS(1980), - [sym_null] = ACTIONS(1980), - [sym_undefined] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_readonly] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1980), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_private] = ACTIONS(1980), - [anon_sym_protected] = ACTIONS(1980), - [anon_sym_override] = ACTIONS(1980), - [anon_sym_module] = ACTIONS(1980), - [anon_sym_any] = ACTIONS(1980), - [anon_sym_number] = ACTIONS(1980), - [anon_sym_boolean] = ACTIONS(1980), - [anon_sym_string] = ACTIONS(1980), - [anon_sym_symbol] = ACTIONS(1980), - [anon_sym_object] = ACTIONS(1980), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [255] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1817), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_extends] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1894), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4522), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4523), - [sym_identifier] = ACTIONS(1487), + [254] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2397), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), [anon_sym_export] = ACTIONS(1079), [anon_sym_type] = ACTIONS(1079), [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1974), - [anon_sym_typeof] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1817), [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), [anon_sym_readonly] = ACTIONS(1079), @@ -54139,186 +53955,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1079), [anon_sym_symbol] = ACTIONS(1079), [anon_sym_object] = ACTIONS(1079), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [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_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [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(161), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [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(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(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(1990), - [anon_sym_void] = ACTIONS(1988), - [anon_sym_delete] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1990), - [anon_sym_DASH_DASH] = 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(723), - [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(161), - [sym_html_comment] = ACTIONS(5), - }, - [258] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4783), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4784), + [255] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1896), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4630), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4631), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1978), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1988), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), @@ -54329,7 +54038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -54339,94 +54048,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4570), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4571), + [256] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1895), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4551), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4553), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1978), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1990), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), @@ -54437,7 +54146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -54447,57 +54156,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), + [257] = { + [sym_identifier] = ACTIONS(1992), + [anon_sym_export] = ACTIONS(1992), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1992), [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_namespace] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), [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_typeof] = ACTIONS(1992), + [anon_sym_import] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1994), [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1988), + [anon_sym_await] = ACTIONS(1992), [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_yield] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1994), + [sym_glimmer_opening_tag] = ACTIONS(1994), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_class] = ACTIONS(1992), + [anon_sym_async] = ACTIONS(1992), + [anon_sym_function] = ACTIONS(1992), [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1992), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -54513,7 +54222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1994), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -54522,12 +54231,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_SLASH] = ACTIONS(1992), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1992), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -54536,113 +54245,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(161), [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), - [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_TILDE] = ACTIONS(1994), + [anon_sym_void] = ACTIONS(1992), + [anon_sym_delete] = ACTIONS(1992), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1994), + [sym_number] = ACTIONS(1994), + [sym_private_property_identifier] = ACTIONS(1994), + [sym_this] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_undefined] = ACTIONS(1992), + [anon_sym_AT] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_readonly] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1992), + [anon_sym_set] = ACTIONS(1992), [anon_sym_QMARK] = ACTIONS(723), - [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_declare] = ACTIONS(1992), + [anon_sym_public] = ACTIONS(1992), + [anon_sym_private] = ACTIONS(1992), + [anon_sym_protected] = ACTIONS(1992), + [anon_sym_override] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_any] = ACTIONS(1992), + [anon_sym_number] = ACTIONS(1992), + [anon_sym_boolean] = ACTIONS(1992), + [anon_sym_string] = ACTIONS(1992), + [anon_sym_symbol] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1992), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4630), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4631), + [258] = { + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1974), + [anon_sym_import] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_await] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1976), + [sym_glimmer_opening_tag] = ACTIONS(1976), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_function] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [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(1976), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1974), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1974), + [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(1976), + [anon_sym_void] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1976), + [sym_number] = ACTIONS(1976), + [sym_private_property_identifier] = ACTIONS(1976), + [sym_this] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [sym_null] = ACTIONS(1974), + [sym_undefined] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [anon_sym_object] = ACTIONS(1974), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [259] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4647), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4648), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1978), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(1996), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), @@ -54653,7 +54470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -54663,72 +54480,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_accessibility_modifier] = STATE(267), - [sym_override_modifier] = STATE(288), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(1235), + [260] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4023), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_accessibility_modifier] = STATE(286), + [sym_override_modifier] = STATE(290), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(1224), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -54738,7 +54555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -54761,7 +54578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(2000), @@ -54776,10 +54593,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(803), - [anon_sym_private] = ACTIONS(803), - [anon_sym_protected] = ACTIONS(803), - [anon_sym_override] = ACTIONS(805), + [anon_sym_public] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -54789,76 +54606,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4618), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [aux_sym_array_repeat1] = STATE(4619), + [261] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1881), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4988), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [aux_sym_array_repeat1] = STATE(4989), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(1978), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(2004), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), @@ -54869,7 +54686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -54879,96 +54696,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(3358), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2006), + [262] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), [anon_sym_export] = ACTIONS(1427), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(1817), [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(1817), [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1531), [anon_sym_using] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1449), @@ -54976,15 +54793,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(2008), + [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), [anon_sym_readonly] = ACTIONS(1427), @@ -55002,197 +54819,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1427), [anon_sym_symbol] = ACTIONS(1427), [anon_sym_object] = ACTIONS(1427), + [anon_sym_extends] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(3406), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym__type_query_member_expression] = STATE(2844), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(2012), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [263] = { + [sym_identifier] = ACTIONS(1992), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(1992), + [anon_sym_EQ] = ACTIONS(221), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym_import] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_await] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(224), + [anon_sym_yield] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1994), + [sym_glimmer_opening_tag] = ACTIONS(1994), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_class] = ACTIONS(1992), + [anon_sym_async] = ACTIONS(1992), + [anon_sym_function] = ACTIONS(1992), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1992), + [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(1994), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_SLASH] = ACTIONS(1992), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1992), + [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(1994), + [anon_sym_void] = ACTIONS(1992), + [anon_sym_delete] = ACTIONS(1992), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1994), + [sym_number] = ACTIONS(1994), + [sym_private_property_identifier] = ACTIONS(1994), + [sym_this] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_undefined] = ACTIONS(1992), + [anon_sym_AT] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_readonly] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1992), + [anon_sym_set] = ACTIONS(1992), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(1992), + [anon_sym_public] = ACTIONS(1992), + [anon_sym_private] = ACTIONS(1992), + [anon_sym_protected] = ACTIONS(1992), + [anon_sym_override] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_any] = ACTIONS(1992), + [anon_sym_number] = ACTIONS(1992), + [anon_sym_boolean] = ACTIONS(1992), + [anon_sym_string] = ACTIONS(1992), + [anon_sym_symbol] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1992), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(3336), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [264] = { + [sym_import] = STATE(3316), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2397), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2014), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2006), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(2008), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -55200,93 +55019,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(3904), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_override_modifier] = STATE(290), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(699), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), + [265] = { + [sym_import] = STATE(3307), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), + [sym__type_query_subscript_expression] = STATE(2845), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(813), [sym_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_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), @@ -55297,102 +55116,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2016), + [sym_this] = ACTIONS(2012), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2018), - [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(805), - [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_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(3336), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [266] = { + [sym_import] = STATE(3291), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2020), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2014), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -55404,7 +55223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(2008), @@ -55412,309 +55231,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [269] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_assignment_pattern] = STATE(5241), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4913), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(699), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), - [sym_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(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(721), + [sym_undefined] = ACTIONS(823), [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), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_spread_element] = STATE(4974), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(2022), - [anon_sym_typeof] = ACTIONS(759), + [267] = { + [sym_import] = STATE(3304), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1980), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym__type_query_member_expression] = STATE(2846), + [sym__type_query_subscript_expression] = STATE(2845), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(2016), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(2018), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(3342), + [268] = { + [sym_import] = STATE(3307), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_spread_element] = STATE(4974), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), + [sym__type_query_subscript_expression] = STATE(2845), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2020), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2024), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), @@ -55725,15 +55437,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), + [sym_this] = ACTIONS(2008), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -55753,181 +55465,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(3412), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [269] = { + [sym_import] = STATE(3291), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2026), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(2008), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, - [273] = { - [sym_import] = STATE(3358), + [270] = { + [sym_import] = STATE(3307), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2028), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2024), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -55939,15 +55651,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2030), + [sym_this] = ACTIONS(2012), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -55967,75 +55679,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(3342), + [271] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4395), - [sym_assignment_pattern] = STATE(5241), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4395), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4395), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4913), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1356), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1707), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(813), + [sym_expression] = STATE(2136), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_spread_element] = STATE(4539), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(2026), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), + [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(2026), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2028), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), @@ -56046,7 +55758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -56054,328 +55766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1715), - [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), - }, - [275] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4257), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_override_modifier] = STATE(292), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(699), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), - [sym_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(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(719), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2032), - [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(805), - [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), - }, - [276] = { - [sym_import] = STATE(3358), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2034), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2030), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [277] = { - [sym_import] = STATE(3358), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2036), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2038), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -56395,74 +55786,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(3358), + [272] = { + [sym_import] = STATE(3307), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2040), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2030), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -56474,15 +55865,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2008), + [sym_this] = ACTIONS(2032), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -56502,201 +55893,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(3301), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym__type_query_member_expression] = STATE(2844), + [273] = { + [sym_import] = STATE(3311), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(2042), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(2034), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), [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(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [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), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(2012), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(2018), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(3315), - [sym_expression_statement] = STATE(295), - [sym_empty_statement] = STATE(295), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [274] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_assignment_pattern] = STATE(5396), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(5048), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(1667), + [sym_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(709), + [anon_sym_using] = ACTIONS(165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(721), + [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), + }, + [275] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2066), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_spread_element] = STATE(4539), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = 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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -56716,72 +56214,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(3387), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [276] = { + [sym_import] = STATE(3291), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2044), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2036), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(2008), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_import] = STATE(3307), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1930), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), + [sym__type_query_subscript_expression] = STATE(2845), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2038), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1403), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1417), + [sym_this] = ACTIONS(2008), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_import] = STATE(3291), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), + [sym__type_query_subscript_expression] = STATE(2845), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2040), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(193), + [sym_this] = ACTIONS(2032), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [sym_html_comment] = ACTIONS(5), + }, + [279] = { + [sym_import] = STATE(3425), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), + [sym__type_query_subscript_expression] = STATE(2845), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2042), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -56795,123 +56614,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(2030), + [sym_this] = ACTIONS(2012), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [282] = { - [sym_import] = STATE(3315), - [sym_expression_statement] = STATE(294), - [sym_empty_statement] = STATE(294), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = 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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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(1279), [anon_sym_readonly] = ACTIONS(1279), [anon_sym_get] = ACTIONS(1279), @@ -56930,72 +56642,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(3387), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [280] = { + [sym_import] = STATE(3425), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2046), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2044), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -57009,7 +56721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(2008), @@ -57019,92 +56731,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(3422), + [281] = { + [sym_import] = STATE(3319), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2885), - [sym__type_query_subscript_expression] = STATE(2893), - [sym__type_query_call_expression] = STATE(3059), - [sym__type_query_instantiation_expression] = STATE(3253), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2048), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym__type_query_member_expression] = STATE(2902), + [sym__type_query_subscript_expression] = STATE(2896), + [sym__type_query_call_expression] = STATE(3076), + [sym__type_query_instantiation_expression] = STATE(3239), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2046), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -57116,15 +56828,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2050), + [sym_this] = ACTIONS(2048), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -57144,373 +56856,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(3336), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2052), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [282] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4404), + [sym_assignment_pattern] = STATE(5396), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4404), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1366), + [sym_subscript_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4404), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(5048), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1366), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1687), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(602), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1693), + [anon_sym_using] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2038), + [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(827), + [sym_undefined] = ACTIONS(1695), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [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), }, - [286] = { - [sym_import] = STATE(3336), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym__type_query_member_expression] = STATE(2844), + [283] = { + [sym_import] = STATE(3311), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym__type_query_member_expression] = STATE(2846), [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2054), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym__type_query_call_expression] = STATE(2892), + [sym__type_query_instantiation_expression] = STATE(2961), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(2050), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [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(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(3301), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym__type_query_member_expression] = STATE(2844), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2900), - [sym__type_query_instantiation_expression] = STATE(2911), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(2056), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [284] = { + [sym_import] = STATE(3432), + [sym_expression_statement] = STATE(294), + [sym_empty_statement] = STATE(294), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = 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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1477), + [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(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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(1265), - [sym_this] = ACTIONS(2012), + [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(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), + [285] = { + [sym_import] = STATE(3432), + [sym_expression_statement] = STATE(293), + [sym_empty_statement] = STATE(293), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(3906), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5151), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = 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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [sym_html_comment] = ACTIONS(5), + }, + [286] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3925), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_override_modifier] = STATE(291), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -57520,7 +57340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -57543,10 +57363,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2058), + [sym_this] = ACTIONS(2052), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), @@ -57554,14 +57374,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2060), + [anon_sym_readonly] = ACTIONS(2054), [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_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -57571,52 +57391,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4257), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [287] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4009), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_override_modifier] = STATE(288), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -57626,7 +57447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -57649,7 +57470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(719), @@ -57660,14 +57481,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2032), + [anon_sym_readonly] = ACTIONS(2056), [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_override] = ACTIONS(833), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -57677,52 +57498,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(4197), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [288] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3916), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -57732,7 +57553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -57755,10 +57576,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2062), + [sym_this] = ACTIONS(787), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), @@ -57766,7 +57587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2064), + [anon_sym_readonly] = ACTIONS(2058), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -57783,72 +57604,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5258), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [289] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5404), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2060), [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(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -57870,71 +57691,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym__automatic_semicolon] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [sym__automatic_semicolon] = ACTIONS(2060), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3689), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3689), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1267), - [sym_subscript_expression] = STATE(1267), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3689), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_pattern] = STATE(3891), - [sym_rest_pattern] = STATE(3682), - [sym_non_null_expression] = STATE(1267), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [290] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3934), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(699), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -57944,7 +57765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1667), @@ -57967,10 +57788,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(789), + [sym_this] = ACTIONS(2062), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(721), + [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_html_comment] = ACTIONS(5), + }, + [291] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(3896), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(1667), + [sym_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(709), + [anon_sym_using] = ACTIONS(165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(193), + [sym_this] = ACTIONS(2066), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), @@ -57995,73 +57922,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1394), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5045), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5045), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1394), - [sym_subscript_expression] = STATE(1394), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5045), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1394), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2070), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_namespace] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), + [292] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3699), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3699), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3699), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_pattern] = STATE(4009), + [sym_rest_pattern] = STATE(3712), + [sym_non_null_expression] = STATE(1263), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(2078), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(1667), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2086), + [anon_sym_async] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2088), + [anon_sym_new] = ACTIONS(709), [anon_sym_using] = ACTIONS(165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), @@ -58072,98 +58000,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), + [sym_this] = ACTIONS(719), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2090), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [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), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(2056), + [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), }, - [294] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5487), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [293] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5477), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(2070), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -58177,7 +58105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -58187,88 +58115,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5647), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [294] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5662), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(2072), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -58282,7 +58210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -58292,103 +58220,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [296] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1985), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), + [sym_html_comment] = ACTIONS(5), + }, + [295] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1414), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4841), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4841), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4841), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1414), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2074), + [anon_sym_export] = ACTIONS(2076), + [anon_sym_type] = ACTIONS(2076), + [anon_sym_namespace] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_var] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(2088), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2092), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(2094), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_readonly] = ACTIONS(2076), + [anon_sym_get] = ACTIONS(2076), + [anon_sym_set] = ACTIONS(2076), + [anon_sym_declare] = ACTIONS(2076), + [anon_sym_public] = ACTIONS(2076), + [anon_sym_private] = ACTIONS(2076), + [anon_sym_protected] = ACTIONS(2076), + [anon_sym_override] = ACTIONS(2076), + [anon_sym_module] = ACTIONS(2076), + [anon_sym_any] = ACTIONS(2076), + [anon_sym_number] = ACTIONS(2076), + [anon_sym_boolean] = ACTIONS(2076), + [anon_sym_string] = ACTIONS(2076), + [anon_sym_symbol] = ACTIONS(2076), + [anon_sym_object] = ACTIONS(2076), + [sym_html_comment] = ACTIONS(5), + }, + [296] = { + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2175), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2051), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -58396,317 +58429,525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5805), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1656), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [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(1477), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5734), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [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(1477), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2320), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2525), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [sym_html_comment] = ACTIONS(5), + }, + [300] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1670), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [sym_html_comment] = ACTIONS(5), + }, + [301] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1838), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5684), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -58726,71 +58967,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_import] = STATE(3342), + [302] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5538), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5655), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -58802,7 +59043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -58810,7 +59051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -58830,69 +59071,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1910), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [303] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5723), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -58906,7 +59147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -58916,87 +59157,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1911), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5778), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [304] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2296), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_mapped_type_clause] = STATE(5442), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2100), + [anon_sym_export] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_namespace] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_readonly] = ACTIONS(2102), + [anon_sym_get] = ACTIONS(2102), + [anon_sym_set] = ACTIONS(2102), + [anon_sym_declare] = ACTIONS(2102), + [anon_sym_public] = ACTIONS(2102), + [anon_sym_private] = ACTIONS(2102), + [anon_sym_protected] = ACTIONS(2102), + [anon_sym_override] = ACTIONS(2102), + [anon_sym_module] = ACTIONS(2102), + [anon_sym_any] = ACTIONS(2102), + [anon_sym_number] = ACTIONS(2102), + [anon_sym_boolean] = ACTIONS(2102), + [anon_sym_string] = ACTIONS(2102), + [anon_sym_symbol] = ACTIONS(2102), + [anon_sym_object] = ACTIONS(2102), + [sym_html_comment] = ACTIONS(5), + }, + [305] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -59010,7 +59355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -59020,89 +59365,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(3342), + [306] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1643), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5465), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -59114,7 +59459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -59122,7 +59467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -59142,485 +59487,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_mapped_type_clause] = STATE(5532), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2098), - [anon_sym_export] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_namespace] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2106), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_readonly] = ACTIONS(2100), - [anon_sym_get] = ACTIONS(2100), - [anon_sym_set] = ACTIONS(2100), - [anon_sym_declare] = ACTIONS(2100), - [anon_sym_public] = ACTIONS(2100), - [anon_sym_private] = ACTIONS(2100), - [anon_sym_protected] = ACTIONS(2100), - [anon_sym_override] = ACTIONS(2100), - [anon_sym_module] = ACTIONS(2100), - [anon_sym_any] = ACTIONS(2100), - [anon_sym_number] = ACTIONS(2100), - [anon_sym_boolean] = ACTIONS(2100), - [anon_sym_string] = ACTIONS(2100), - [anon_sym_symbol] = ACTIONS(2100), - [anon_sym_object] = ACTIONS(2100), - [sym_html_comment] = ACTIONS(5), - }, - [305] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1907), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym__extends_clause_single] = STATE(4861), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [306] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2382), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1738), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [307] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1509), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5469), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [307] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1918), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5515), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [308] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1599), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5795), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -59634,7 +59563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -59644,110 +59573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [309] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1639), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_sequence_expression] = STATE(5271), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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(1279), [anon_sym_readonly] = ACTIONS(1279), [anon_sym_get] = ACTIONS(1279), @@ -59766,59 +59591,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2341), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1819), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [308] = { + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2166), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(2096), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -59828,9 +59653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -59852,87 +59677,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5560), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [309] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1835), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -59946,7 +59771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -59956,713 +59781,713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1859), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5813), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [310] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1904), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [313] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2341), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1961), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5466), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [311] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1643), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1879), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5475), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [312] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1656), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [316] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1628), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5534), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), + [sym_html_comment] = ACTIONS(5), + }, + [313] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1923), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2320), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1327), + [314] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1924), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1403), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1417), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), + [sym_html_comment] = ACTIONS(5), + }, + [315] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1670), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1403), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1417), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(3342), + [316] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5480), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5763), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -60674,7 +60499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -60682,7 +60507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -60702,293 +60527,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2382), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1981), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1327), + [317] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1886), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5659), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1983), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1327), + [318] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5674), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2236), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [319] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5743), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), + [sym_html_comment] = ACTIONS(5), + }, + [320] = { + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2199), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2027), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -60996,89 +60925,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_import] = STATE(3342), + [321] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1947), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1941), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_sequence_expression] = STATE(5618), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5813), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -61090,7 +61019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -61098,7 +61027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -61118,487 +61047,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, + [322] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1381), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), + [sym_html_comment] = ACTIONS(5), + }, [323] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1649), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1643), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2316), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1656), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2329), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1673), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1766), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1768), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [327] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1684), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1670), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2333), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1381), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), + [sym_html_comment] = ACTIONS(5), + }, + [328] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1769), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5559), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -61610,7 +61747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -61618,7 +61755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -61638,71 +61775,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1685), + [329] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1656), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -61714,7 +61851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -61722,7 +61859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -61742,293 +61879,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1649), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, [330] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2341), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1641), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1477), + [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(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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(1265), + [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(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [331] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2320), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2199), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -62036,78 +62069,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [332] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2382), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2128), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(2096), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -62118,13 +62151,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -62138,1135 +62171,1135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [333] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2344), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [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(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1095), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [334] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2236), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1643), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [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(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1095), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [335] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1656), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [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(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1095), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [336] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1907), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym__extends_clause_single] = STATE(4455), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1590), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5582), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, [337] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2364), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [338] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1673), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1670), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2365), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2175), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1755), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(184), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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(825), - [sym_number] = ACTIONS(717), - [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(827), + [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(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [340] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1689), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(184), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_sequence_expression] = STATE(5241), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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(825), - [sym_number] = ACTIONS(717), - [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(827), + [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(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [341] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2296), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_mapped_type_clause] = STATE(5601), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2112), + [anon_sym_export] = ACTIONS(2114), + [anon_sym_type] = ACTIONS(2114), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(2118), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_readonly] = ACTIONS(2114), + [anon_sym_get] = ACTIONS(2114), + [anon_sym_set] = ACTIONS(2114), + [anon_sym_declare] = ACTIONS(2114), + [anon_sym_public] = ACTIONS(2114), + [anon_sym_private] = ACTIONS(2114), + [anon_sym_protected] = ACTIONS(2114), + [anon_sym_override] = ACTIONS(2114), + [anon_sym_module] = ACTIONS(2114), + [anon_sym_any] = ACTIONS(2114), + [anon_sym_number] = ACTIONS(2114), + [anon_sym_boolean] = ACTIONS(2114), + [anon_sym_string] = ACTIONS(2114), + [anon_sym_symbol] = ACTIONS(2114), + [anon_sym_object] = ACTIONS(2114), [sym_html_comment] = ACTIONS(5), }, [342] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2220), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2139), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [343] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1649), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1920), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), [anon_sym_export] = ACTIONS(1427), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1531), [anon_sym_using] = ACTIONS(1443), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1449), @@ -63274,7 +63307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), @@ -63282,7 +63315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), [anon_sym_readonly] = ACTIONS(1427), @@ -63303,74 +63336,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1643), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), [anon_sym_export] = ACTIONS(1427), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1531), [anon_sym_using] = ACTIONS(1443), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1449), @@ -63378,7 +63411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), @@ -63386,7 +63419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), [anon_sym_readonly] = ACTIONS(1427), @@ -63407,74 +63440,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1673), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1937), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1656), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), [anon_sym_export] = ACTIONS(1427), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1531), [anon_sym_using] = ACTIONS(1443), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1449), @@ -63482,7 +63515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), @@ -63490,7 +63523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), [anon_sym_readonly] = ACTIONS(1427), @@ -63511,74 +63544,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [346] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1939), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), [anon_sym_export] = ACTIONS(1427), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1531), [anon_sym_using] = ACTIONS(1443), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1449), @@ -63586,7 +63619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), @@ -63594,7 +63627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), [anon_sym_readonly] = ACTIONS(1427), @@ -63615,74 +63648,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), [anon_sym_export] = ACTIONS(1427), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1531), [anon_sym_using] = ACTIONS(1443), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1449), @@ -63690,7 +63723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), @@ -63698,7 +63731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), [anon_sym_readonly] = ACTIONS(1427), @@ -63719,74 +63752,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [348] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1941), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1670), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), [anon_sym_export] = ACTIONS(1427), [anon_sym_type] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1435), [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1531), [anon_sym_using] = ACTIONS(1443), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1433), [anon_sym_void] = ACTIONS(1449), @@ -63794,7 +63827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1451), [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), @@ -63802,7 +63835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1427), [anon_sym_readonly] = ACTIONS(1427), @@ -63823,692 +63856,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1649), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2221), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1973), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [350] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5795), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [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(1525), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [351] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1673), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym__extends_clause_single] = STATE(4673), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, [352] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2269), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2220), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1644), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [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(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [353] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2270), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1857), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5810), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, [354] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2271), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2166), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [355] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1673), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1872), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -64522,7 +64555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -64532,1237 +64565,1757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, [356] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1649), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2283), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2199), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [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(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [357] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2287), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2175), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [358] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1673), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2299), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1670), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2221), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1645), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [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(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [360] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [361] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2303), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2220), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [362] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1649), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2221), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1637), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1938), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5558), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1643), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1934), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), + [365] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1745), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [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(1517), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1673), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), + [366] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_sequence_expression] = STATE(5613), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), + [sym_html_comment] = ACTIONS(5), + }, + [367] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1746), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [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(1517), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), + [368] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1670), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1748), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [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(1517), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2430), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), + [369] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1711), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [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(1517), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2431), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), + [370] = { + [sym_import] = STATE(3432), + [sym_statement_block] = STATE(2166), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1994), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), + [sym_html_comment] = ACTIONS(5), + }, + [371] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [sym_html_comment] = ACTIONS(5), + }, + [372] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym__extends_clause_single] = STATE(4381), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), [anon_sym_export] = ACTIONS(1391), [anon_sym_type] = ACTIONS(1391), [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1391), [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1399), [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), + [anon_sym_new] = ACTIONS(1507), [anon_sym_using] = ACTIONS(1407), [anon_sym_PLUS] = ACTIONS(1413), [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_void] = ACTIONS(1413), @@ -65770,7 +66323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1415), [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), @@ -65778,7 +66331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1391), [anon_sym_readonly] = ACTIONS(1391), @@ -65798,69 +66351,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1881), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [373] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1643), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [sym_html_comment] = ACTIONS(5), + }, + [374] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1656), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1884), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -65874,7 +66531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -65884,109 +66541,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), + [375] = { + [sym_import] = STATE(3369), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), [anon_sym_export] = ACTIONS(1079), [anon_sym_type] = ACTIONS(1079), [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), [anon_sym_readonly] = ACTIONS(1079), @@ -66006,69 +66663,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1885), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [376] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -66082,7 +66738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -66092,213 +66748,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [377] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_mapped_type_clause] = STATE(5690), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2112), - [anon_sym_export] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_namespace] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2118), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2120), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_readonly] = ACTIONS(2114), - [anon_sym_get] = ACTIONS(2114), - [anon_sym_set] = ACTIONS(2114), - [anon_sym_declare] = ACTIONS(2114), - [anon_sym_public] = ACTIONS(2114), - [anon_sym_private] = ACTIONS(2114), - [anon_sym_protected] = ACTIONS(2114), - [anon_sym_override] = ACTIONS(2114), - [anon_sym_module] = ACTIONS(2114), - [anon_sym_any] = ACTIONS(2114), - [anon_sym_number] = ACTIONS(2114), - [anon_sym_boolean] = ACTIONS(2114), - [anon_sym_string] = ACTIONS(2114), - [anon_sym_symbol] = ACTIONS(2114), - [anon_sym_object] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [378] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -66318,91 +66972,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2236), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [379] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1892), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -66422,59 +67075,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(3315), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [380] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1834), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), + [sym_html_comment] = ACTIONS(5), + }, + [381] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1863), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -66484,9 +67239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -66508,418 +67263,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_import] = STATE(3342), - [sym_statement_block] = STATE(1649), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2489), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(184), + [382] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1865), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [383] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [384] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [378] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1903), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [385] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -66939,193 +67693,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [386] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2124), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [387] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1936), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -67145,193 +67899,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [388] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1741), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [389] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -67351,171 +68105,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [390] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2122), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [391] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -67529,7 +68283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -67539,108 +68293,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [385] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1742), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [392] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -67660,68 +68414,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [386] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [393] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -67735,7 +68489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -67745,211 +68499,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [394] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2124), - [sym_private_property_identifier] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [395] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1877), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -67969,90 +68723,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), + [396] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), [anon_sym_export] = ACTIONS(1279), [anon_sym_type] = ACTIONS(1279), [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -68072,58 +68826,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [397] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -68133,9 +68887,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -68157,6 +68911,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [sym_html_comment] = ACTIONS(5), + }, + [398] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1885), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), [anon_sym_get] = ACTIONS(1279), @@ -68175,70 +69032,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1443), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5775), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5775), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1443), - [sym_subscript_expression] = STATE(1443), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5775), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1443), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_namespace] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(813), + [399] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(3655), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(3655), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1273), + [sym_subscript_expression] = STATE(1273), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(3655), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1273), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2124), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(1667), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2132), + [anon_sym_async] = ACTIONS(2128), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2130), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -68250,7 +69107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -68258,294 +69115,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2136), + [sym_undefined] = ACTIONS(2132), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_readonly] = ACTIONS(2128), - [anon_sym_get] = ACTIONS(2128), - [anon_sym_set] = ACTIONS(2128), - [anon_sym_declare] = ACTIONS(2128), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [anon_sym_override] = ACTIONS(2128), - [anon_sym_module] = ACTIONS(2128), - [anon_sym_any] = ACTIONS(2128), - [anon_sym_number] = ACTIONS(2128), - [anon_sym_boolean] = ACTIONS(2128), - [anon_sym_string] = ACTIONS(2128), - [anon_sym_symbol] = ACTIONS(2128), - [anon_sym_object] = ACTIONS(2128), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_object] = ACTIONS(2124), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [400] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [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(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1959), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [401] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1477), + [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(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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(1335), + [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(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2065), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [402] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -68559,7 +69416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), @@ -68569,1530 +69426,1221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1962), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [403] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1964), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [404] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1477), + [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(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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(1335), + [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(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1965), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [405] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1477), + [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(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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(1335), + [sym_number] = ACTIONS(2134), + [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(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [398] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [406] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1477), + [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(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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(1335), + [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(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2205), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [407] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1946), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), - [sym_html_comment] = ACTIONS(5), - }, - [400] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1969), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, - [401] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1971), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, - [402] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1973), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [408] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1974), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [409] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1815), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1477), + [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(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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(1335), + [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(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1975), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [410] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1648), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1477), + [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(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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(1335), + [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(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [406] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1976), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [411] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1676), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1477), + [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(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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(1335), + [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(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1977), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [412] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1978), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [413] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(4107), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(4107), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1323), + [sym_subscript_expression] = STATE(1323), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(4107), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1323), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2136), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1337), + [anon_sym_namespace] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(2140), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_readonly] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(1337), + [anon_sym_set] = ACTIONS(1337), + [anon_sym_declare] = ACTIONS(1337), + [anon_sym_public] = ACTIONS(1337), + [anon_sym_private] = ACTIONS(1337), + [anon_sym_protected] = ACTIONS(1337), + [anon_sym_override] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_any] = ACTIONS(1337), + [anon_sym_number] = ACTIONS(1337), + [anon_sym_boolean] = ACTIONS(1337), + [anon_sym_string] = ACTIONS(1337), + [anon_sym_symbol] = ACTIONS(1337), + [anon_sym_object] = ACTIONS(1337), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5595), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5595), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5595), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1439), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(813), + [414] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2140), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2144), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2146), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -70104,530 +70652,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2142), [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_html_comment] = ACTIONS(5), - }, - [410] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1979), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, - [411] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [412] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1982), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [415] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [416] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1864), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1279), [anon_sym_readonly] = ACTIONS(1279), @@ -70647,274 +70886,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, - [415] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1986), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1987), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, [417] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(759), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), + [anon_sym_let] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(739), [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1289), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1491), [anon_sym_using] = ACTIONS(749), @@ -70928,8 +70961,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(761), [anon_sym_DASH_DASH] = ACTIONS(761), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2150), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(767), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), @@ -70938,88 +70971,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), [sym_html_comment] = ACTIONS(5), }, [418] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2144), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1990), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -71031,7 +71270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -71039,7 +71278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -71059,379 +71298,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(1993), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [421] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [421] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [422] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -71443,15 +71476,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2146), [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(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -71472,57 +71505,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [423] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1717), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -71532,9 +71565,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -71556,397 +71589,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [424] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(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_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(825), - [sym_number] = ACTIONS(717), - [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(1477), + [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(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [425] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1870), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2146), + [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(1493), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, [426] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2171), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [427] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -71958,15 +71991,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2148), [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(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -71987,2246 +72020,1319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [428] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1663), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(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_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(825), - [sym_number] = ACTIONS(717), - [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(1477), + [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(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [429] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1872), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(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_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(825), - [sym_number] = ACTIONS(717), - [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(1477), + [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(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [430] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1442), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5509), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5509), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1442), + [sym_subscript_expression] = STATE(1442), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5509), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1442), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2150), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(2156), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [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(1477), + [sym_undefined] = ACTIONS(2160), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_object] = ACTIONS(2152), [sym_html_comment] = ACTIONS(5), }, [431] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [432] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1953), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [433] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1680), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(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_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(825), - [sym_number] = ACTIONS(717), - [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(1477), + [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(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [434] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2028), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [435] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(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_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(825), - [sym_number] = ACTIONS(717), - [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(1477), + [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(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [436] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2107), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [437] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2084), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [438] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [439] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [440] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [441] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [442] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [443] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2019), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [444] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2098), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [445] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1719), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [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), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1265), [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [446] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [447] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [439] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2295), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [440] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2137), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -74234,385 +73340,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [451] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [452] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [453] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1744), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [441] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1703), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -74622,9 +73419,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -74643,286 +73440,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [454] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [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), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2154), - [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(1477), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [455] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1441), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5512), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5512), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1441), - [sym_subscript_expression] = STATE(1441), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5512), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1441), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2158), - [anon_sym_type] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2162), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(2166), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_readonly] = ACTIONS(2158), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_declare] = ACTIONS(2158), - [anon_sym_public] = ACTIONS(2158), - [anon_sym_private] = ACTIONS(2158), - [anon_sym_protected] = ACTIONS(2158), - [anon_sym_override] = ACTIONS(2158), - [anon_sym_module] = ACTIONS(2158), - [anon_sym_any] = ACTIONS(2158), - [anon_sym_number] = ACTIONS(2158), - [anon_sym_boolean] = ACTIONS(2158), - [anon_sym_string] = ACTIONS(2158), - [anon_sym_symbol] = ACTIONS(2158), - [anon_sym_object] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [442] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2078), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -74933,13 +73524,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -74953,79 +73544,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [443] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75036,13 +73627,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75056,79 +73647,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [444] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2081), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75139,13 +73730,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75159,79 +73750,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [459] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [445] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75242,13 +73833,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75262,79 +73853,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [446] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1983), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75345,13 +73936,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75365,182 +73956,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), - [sym_html_comment] = ACTIONS(5), - }, - [461] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2342), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [462] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [447] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1985), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75551,13 +74039,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75571,79 +74059,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [448] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1991), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75654,13 +74142,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75674,79 +74162,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [449] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2009), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75757,13 +74245,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75777,79 +74265,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [450] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2080), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75860,13 +74348,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75880,79 +74368,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1800), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [451] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2018), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -75963,13 +74451,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -75983,79 +74471,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [452] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2050), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -76066,13 +74554,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -76086,79 +74574,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1802), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [453] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2076), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -76169,13 +74657,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -76189,388 +74677,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [454] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2296), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1095), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [sym_html_comment] = ACTIONS(5), + }, + [455] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1708), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1477), + [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(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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(1265), + [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(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [456] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1719), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1477), + [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(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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(1265), + [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(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [457] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1477), + [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(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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(1265), + [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(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [458] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1721), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1974), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -76581,13 +75275,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -76601,79 +75295,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [460] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1984), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -76684,13 +75378,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -76704,79 +75398,491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [461] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [sym_html_comment] = ACTIONS(5), + }, + [462] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5470), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5470), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5603), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2940), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5470), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1369), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(379), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_namespace] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(759), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(739), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_void] = ACTIONS(759), + [anon_sym_delete] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(767), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_readonly] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [anon_sym_public] = ACTIONS(1279), + [anon_sym_private] = ACTIONS(1279), + [anon_sym_protected] = ACTIONS(1279), + [anon_sym_override] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_any] = ACTIONS(1279), + [anon_sym_number] = ACTIONS(1279), + [anon_sym_boolean] = ACTIONS(1279), + [anon_sym_string] = ACTIONS(1279), + [anon_sym_symbol] = ACTIONS(1279), + [anon_sym_object] = ACTIONS(1279), + [sym_html_comment] = ACTIONS(5), + }, + [463] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1742), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [sym_html_comment] = ACTIONS(5), + }, + [464] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [465] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(2086), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(1243), @@ -76787,13 +75893,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(679), [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1499), [anon_sym_using] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1239), [anon_sym_void] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1257), [anon_sym_PLUS_PLUS] = ACTIONS(1259), @@ -76807,296 +75913,1223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), + [sym_html_comment] = ACTIONS(5), + }, + [466] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(823), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), + [sym_html_comment] = ACTIONS(5), + }, + [467] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1710), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [468] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1713), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [469] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1715), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [470] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [471] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [472] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1726), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [473] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1728), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [474] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1729), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [475] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1730), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [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(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [476] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(3630), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(3630), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(3630), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1268), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2170), - [anon_sym_type] = ACTIONS(2170), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1731), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(2178), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_readonly] = ACTIONS(2170), - [anon_sym_get] = ACTIONS(2170), - [anon_sym_set] = ACTIONS(2170), - [anon_sym_declare] = ACTIONS(2170), - [anon_sym_public] = ACTIONS(2170), - [anon_sym_private] = ACTIONS(2170), - [anon_sym_protected] = ACTIONS(2170), - [anon_sym_override] = ACTIONS(2170), - [anon_sym_module] = ACTIONS(2170), - [anon_sym_any] = ACTIONS(2170), - [anon_sym_number] = ACTIONS(2170), - [anon_sym_boolean] = ACTIONS(2170), - [anon_sym_string] = ACTIONS(2170), - [anon_sym_symbol] = ACTIONS(2170), - [anon_sym_object] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [477] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1734), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -77108,15 +77141,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2150), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), [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(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -77137,1717 +77170,1717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1735), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [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(1493), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [479] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1737), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [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(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [480] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1738), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [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), + [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), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [481] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [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(1517), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [482] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2488), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [483] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1715), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1477), + [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(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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(1265), + [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(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [484] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1827), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [485] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2091), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [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(1493), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [486] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1749), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [487] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1751), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [488] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1750), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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(825), - [sym_number] = ACTIONS(717), - [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(827), + [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(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [489] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2495), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1980), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [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(679), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(1265), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, [490] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [491] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [492] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1650), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [493] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2144), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [494] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5706), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2162), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(2164), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(2168), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(2170), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -78859,7 +78892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -78867,1738 +78900,2871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(2172), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_readonly] = ACTIONS(2164), + [anon_sym_get] = ACTIONS(2164), + [anon_sym_set] = ACTIONS(2164), + [anon_sym_declare] = ACTIONS(2164), + [anon_sym_public] = ACTIONS(2164), + [anon_sym_private] = ACTIONS(2164), + [anon_sym_protected] = ACTIONS(2164), + [anon_sym_override] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_any] = ACTIONS(2164), + [anon_sym_number] = ACTIONS(2164), + [anon_sym_boolean] = ACTIONS(2164), + [anon_sym_string] = ACTIONS(2164), + [anon_sym_symbol] = ACTIONS(2164), + [anon_sym_object] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, [495] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [496] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1792), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [497] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [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(827), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [498] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [499] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [500] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2331), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [501] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [502] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1723), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), [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(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [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), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [503] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), [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(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [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), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [504] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [505] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [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(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, [506] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [507] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [508] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [509] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [510] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [511] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [512] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1824), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [513] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [514] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [515] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1639), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [516] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2154), - [sym_private_property_identifier] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2142), + [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(1493), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [517] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1646), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [518] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1880), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1477), + [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(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [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(2152), - [sym_private_property_identifier] = ACTIONS(1265), + [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(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [519] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [520] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [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(1493), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2118), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [521] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [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(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [522] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -80610,7 +81776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -80618,193 +81784,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [523] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [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(1493), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [524] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -80816,7 +81982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -80824,90 +81990,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [525] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1441), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5755), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5755), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1441), + [sym_subscript_expression] = STATE(1441), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5755), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1441), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(2176), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(2180), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(2182), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -80919,7 +82085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -80927,399 +82093,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(2184), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(2176), + [anon_sym_readonly] = ACTIONS(2176), + [anon_sym_get] = ACTIONS(2176), + [anon_sym_set] = ACTIONS(2176), + [anon_sym_declare] = ACTIONS(2176), + [anon_sym_public] = ACTIONS(2176), + [anon_sym_private] = ACTIONS(2176), + [anon_sym_protected] = ACTIONS(2176), + [anon_sym_override] = ACTIONS(2176), + [anon_sym_module] = ACTIONS(2176), + [anon_sym_any] = ACTIONS(2176), + [anon_sym_number] = ACTIONS(2176), + [anon_sym_boolean] = ACTIONS(2176), + [anon_sym_string] = ACTIONS(2176), + [anon_sym_symbol] = ACTIONS(2176), + [anon_sym_object] = ACTIONS(2176), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [526] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [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(1493), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [527] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [517] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2154), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1436), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5776), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5776), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1436), - [sym_subscript_expression] = STATE(1436), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5776), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1436), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2180), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(813), + [528] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(819), [anon_sym_using] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(184), [anon_sym_DASH] = ACTIONS(184), @@ -81331,7 +82394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -81339,2061 +82402,1752 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2190), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [529] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [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(1493), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2351), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [530] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [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(1525), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [531] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [522] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1724), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [523] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1921), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [524] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1922), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [525] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1923), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [532] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1926), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [533] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [534] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1928), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [535] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1929), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [536] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [537] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1931), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [538] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [539] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [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(1525), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1933), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [540] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2528), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [541] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1479), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [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(679), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(2134), + [sym_private_property_identifier] = ACTIONS(1221), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [sym_html_comment] = ACTIONS(5), + }, + [542] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2529), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1935), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [543] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1936), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [544] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1208), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5626), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1208), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(799), + [anon_sym_export] = ACTIONS(801), + [anon_sym_type] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(817), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(819), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(823), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_get] = ACTIONS(801), + [anon_sym_set] = ACTIONS(801), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_public] = ACTIONS(801), + [anon_sym_private] = ACTIONS(801), + [anon_sym_protected] = ACTIONS(801), + [anon_sym_override] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_any] = ACTIONS(801), + [anon_sym_number] = ACTIONS(801), + [anon_sym_boolean] = ACTIONS(801), + [anon_sym_string] = ACTIONS(801), + [anon_sym_symbol] = ACTIONS(801), + [anon_sym_object] = ACTIONS(801), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [545] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1930), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -83401,308 +84155,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1725), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [546] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1444), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5739), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5739), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1444), + [sym_subscript_expression] = STATE(1444), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5739), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1444), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2186), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(2196), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), [sym_html_comment] = ACTIONS(5), }, - [540] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1942), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [547] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1943), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [548] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1903), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -83710,308 +84464,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [549] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1905), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [550] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1906), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1944), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [551] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1907), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -84019,205 +84773,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1858), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [552] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1909), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [553] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1910), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -84225,102 +84979,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1946), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [554] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -84328,813 +85082,710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [548] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [555] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1912), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2154), - [sym_private_property_identifier] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [550] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1440), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5553), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5553), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1440), - [sym_subscript_expression] = STATE(1440), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5553), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1440), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [556] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1913), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2202), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [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), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [551] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [557] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [558] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1915), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [559] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1916), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [560] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1917), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), + [561] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), [anon_sym_export] = ACTIONS(1391), [anon_sym_type] = ACTIONS(1391), [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1391), [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(1399), [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), + [anon_sym_new] = ACTIONS(1507), [anon_sym_using] = ACTIONS(1407), [anon_sym_PLUS] = ACTIONS(1413), [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_void] = ACTIONS(1413), @@ -85142,7 +85793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1415), [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), @@ -85150,7 +85801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1391), [anon_sym_readonly] = ACTIONS(1391), @@ -85170,367 +85821,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [562] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1919), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2252), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [563] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1920), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2253), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [564] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [559] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [565] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -85540,9 +86191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -85564,5252 +86215,4634 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [560] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2255), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), - [sym_html_comment] = ACTIONS(5), - }, - [561] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), - [sym_html_comment] = ACTIONS(5), - }, - [562] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2257), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [566] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1926), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [567] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1927), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [565] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [568] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1928), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2261), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [569] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1930), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [570] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2263), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [571] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2264), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [572] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1438), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5563), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1438), + [sym_subscript_expression] = STATE(1438), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1438), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2198), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(2204), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [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(1525), + [sym_undefined] = ACTIONS(2208), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(2200), + [anon_sym_readonly] = ACTIONS(2200), + [anon_sym_get] = ACTIONS(2200), + [anon_sym_set] = ACTIONS(2200), + [anon_sym_declare] = ACTIONS(2200), + [anon_sym_public] = ACTIONS(2200), + [anon_sym_private] = ACTIONS(2200), + [anon_sym_protected] = ACTIONS(2200), + [anon_sym_override] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_any] = ACTIONS(2200), + [anon_sym_number] = ACTIONS(2200), + [anon_sym_boolean] = ACTIONS(2200), + [anon_sym_string] = ACTIONS(2200), + [anon_sym_symbol] = ACTIONS(2200), + [anon_sym_object] = ACTIONS(2200), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [573] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2396), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2266), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [574] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2311), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), - [sym_html_comment] = ACTIONS(5), - }, - [572] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1727), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2268), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [575] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2313), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), - [sym_html_comment] = ACTIONS(5), - }, - [574] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1728), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [575] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2112), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2314), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2273), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2315), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [578] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [579] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2274), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2318), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [580] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2319), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [581] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2321), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2154), - [sym_private_property_identifier] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [583] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1442), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5736), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5736), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1442), - [sym_subscript_expression] = STATE(1442), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5736), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1442), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2206), - [anon_sym_type] = ACTIONS(2206), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2210), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2214), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [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), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [584] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [585] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2004), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2324), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [586] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2282), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2325), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [587] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [588] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2327), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [589] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2286), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2328), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [590] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2288), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [591] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2289), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2334), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [592] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2290), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2335), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [593] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2291), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2336), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [594] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2292), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [595] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2293), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [596] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2294), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [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(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [597] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2295), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2397), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [598] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2296), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1437), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5728), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5728), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1437), + [sym_subscript_expression] = STATE(1437), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5728), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1437), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2210), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(2216), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [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(1533), + [sym_undefined] = ACTIONS(2220), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), [sym_html_comment] = ACTIONS(5), }, [599] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), + [sym_array] = STATE(1693), [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [600] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2297), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [601] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2298), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [602] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2300), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2346), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [603] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2304), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2347), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [604] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [605] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1635), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2350), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1095), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [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), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1113), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [606] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2306), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [607] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2352), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [608] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2353), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [609] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1438), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5455), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5455), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1438), - [sym_subscript_expression] = STATE(1438), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5455), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1438), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2218), - [anon_sym_type] = ACTIONS(2218), - [anon_sym_namespace] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2226), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [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), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [610] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2355), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -90817,1544 +90850,1544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [611] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2409), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [612] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2357), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [613] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2358), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [614] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2359), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [615] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2360), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [616] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [617] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [618] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [619] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [620] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2420), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2179), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [621] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2421), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2397), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [622] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2398), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [623] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [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(679), + [anon_sym_async] = ACTIONS(1171), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1477), + [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(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [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(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [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(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [624] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5463), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5463), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5463), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1440), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(2228), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [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(1517), + [sym_undefined] = ACTIONS(2232), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_readonly] = ACTIONS(2224), + [anon_sym_get] = ACTIONS(2224), + [anon_sym_set] = ACTIONS(2224), + [anon_sym_declare] = ACTIONS(2224), + [anon_sym_public] = ACTIONS(2224), + [anon_sym_private] = ACTIONS(2224), + [anon_sym_protected] = ACTIONS(2224), + [anon_sym_override] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_any] = ACTIONS(2224), + [anon_sym_number] = ACTIONS(2224), + [anon_sym_boolean] = ACTIONS(2224), + [anon_sym_string] = ACTIONS(2224), + [anon_sym_symbol] = ACTIONS(2224), + [anon_sym_object] = ACTIONS(2224), [sym_html_comment] = ACTIONS(5), }, [625] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -92362,2033 +92395,2033 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [626] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [627] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1729), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [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), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [628] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [629] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1730), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [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), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [630] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1731), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [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), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [631] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [632] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [633] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1732), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [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), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [634] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1737), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [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), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [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_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [635] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [636] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2154), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [637] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1886), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5507), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5507), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5507), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2236), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2238), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_readonly] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_declare] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_protected] = ACTIONS(2230), - [anon_sym_override] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_any] = ACTIONS(2230), - [anon_sym_number] = ACTIONS(2230), - [anon_sym_boolean] = ACTIONS(2230), - [anon_sym_string] = ACTIONS(2230), - [anon_sym_symbol] = ACTIONS(2230), - [anon_sym_object] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [641] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2391), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [642] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [643] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(4253), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(4253), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(4253), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(2240), - [anon_sym_export] = ACTIONS(1211), - [anon_sym_type] = ACTIONS(1211), - [anon_sym_namespace] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1217), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2244), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_readonly] = ACTIONS(1211), - [anon_sym_get] = ACTIONS(1211), - [anon_sym_set] = ACTIONS(1211), - [anon_sym_declare] = ACTIONS(1211), - [anon_sym_public] = ACTIONS(1211), - [anon_sym_private] = ACTIONS(1211), - [anon_sym_protected] = ACTIONS(1211), - [anon_sym_override] = ACTIONS(1211), - [anon_sym_module] = ACTIONS(1211), - [anon_sym_any] = ACTIONS(1211), - [anon_sym_number] = ACTIONS(1211), - [anon_sym_boolean] = ACTIONS(1211), - [anon_sym_string] = ACTIONS(1211), - [anon_sym_symbol] = ACTIONS(1211), - [anon_sym_object] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [644] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(620), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1439), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [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_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [sym_private_property_identifier] = ACTIONS(1453), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [645] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -94398,9 +94431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -94413,7 +94446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2152), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), @@ -94422,282 +94455,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, [646] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [647] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [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(679), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), [sym_html_comment] = ACTIONS(5), }, [648] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), + [sym_html_comment] = ACTIONS(5), + }, + [649] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1439), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5515), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5515), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1439), + [sym_subscript_expression] = STATE(1439), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5515), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1439), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(184), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2240), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_void] = ACTIONS(184), + [anon_sym_delete] = ACTIONS(184), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [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(2244), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_object] = ACTIONS(2236), + [sym_html_comment] = ACTIONS(5), + }, + [650] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1381), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), + [sym_html_comment] = ACTIONS(5), + }, + [651] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1640), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -94707,9 +95049,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -94731,102 +95073,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1386), - [sym_expression] = STATE(2058), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5546), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5546), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5544), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1386), - [sym_subscript_expression] = STATE(1386), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2987), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5546), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1386), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(393), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [652] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1980), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(679), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_void] = ACTIONS(1327), - [anon_sym_delete] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1335), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -94834,397 +95176,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [anon_sym_public] = ACTIONS(1301), - [anon_sym_private] = ACTIONS(1301), - [anon_sym_protected] = ACTIONS(1301), - [anon_sym_override] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_any] = ACTIONS(1301), - [anon_sym_number] = ACTIONS(1301), - [anon_sym_boolean] = ACTIONS(1301), - [anon_sym_string] = ACTIONS(1301), - [anon_sym_symbol] = ACTIONS(1301), - [anon_sym_object] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [653] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1987), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [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), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1265), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [654] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1383), + [sym_expression] = STATE(1993), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5554), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5554), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5552), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1383), + [sym_subscript_expression] = STATE(1383), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2949), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5554), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1383), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(432), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1257), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), [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(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1247), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), [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), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_delete] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1265), [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [652] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5629), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5578), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2995), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1354), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(425), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_readonly] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(1231), + [anon_sym_set] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [anon_sym_public] = ACTIONS(1231), + [anon_sym_private] = ACTIONS(1231), + [anon_sym_protected] = ACTIONS(1231), + [anon_sym_override] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_any] = ACTIONS(1231), + [anon_sym_number] = ACTIONS(1231), + [anon_sym_boolean] = ACTIONS(1231), + [anon_sym_string] = ACTIONS(1231), + [anon_sym_symbol] = ACTIONS(1231), + [anon_sym_object] = ACTIONS(1231), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym_import] = STATE(3342), + [655] = { + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5652), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5652), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5575), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(1652), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1342), [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2914), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5652), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(422), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1471), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1053), [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), @@ -95236,7 +95475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(624), [sym_this] = ACTIONS(197), @@ -95244,7 +95483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1477), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -95264,58 +95503,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), + [656] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5789), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5789), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5503), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2937), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5789), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1431), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(813), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_class] = ACTIONS(153), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(1453), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_readonly] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_declare] = ACTIONS(1427), + [anon_sym_public] = ACTIONS(1427), + [anon_sym_private] = ACTIONS(1427), + [anon_sym_protected] = ACTIONS(1427), + [anon_sym_override] = ACTIONS(1427), + [anon_sym_module] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), + [sym_html_comment] = ACTIONS(5), + }, + [657] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5630), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5630), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5629), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(2933), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5630), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(404), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_namespace] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -95325,9 +95667,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1171), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1477), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -95349,205 +95691,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [655] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5781), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5495), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2985), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1391), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(611), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2154), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [658] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -95555,102 +95794,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5727), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5727), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5725), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(3002), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5727), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(456), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), + [659] = { + [sym_import] = STATE(3432), + [sym_parenthesized_expression] = STATE(1345), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(1999), + [sym_yield_expression] = STATE(2309), + [sym_object] = STATE(2209), + [sym_object_pattern] = STATE(5735), + [sym_array] = STATE(2209), + [sym_array_pattern] = STATE(5735), + [sym_glimmer_template] = STATE(2309), + [sym_class] = STATE(2209), + [sym_function_expression] = STATE(2209), + [sym_generator_function] = STATE(2209), + [sym_arrow_function] = STATE(2209), + [sym__call_signature] = STATE(5733), + [sym_call_expression] = STATE(2209), + [sym_new_expression] = STATE(2309), + [sym_await_expression] = STATE(2309), + [sym_member_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_assignment_expression] = STATE(2309), + [sym__augmented_assignment_lhs] = STATE(3000), + [sym_augmented_assignment_expression] = STATE(2309), + [sym__destructuring_pattern] = STATE(5735), + [sym_ternary_expression] = STATE(2309), + [sym_binary_expression] = STATE(2309), + [sym_unary_expression] = STATE(2309), + [sym_update_expression] = STATE(2309), + [sym_string] = STATE(2209), + [sym_template_string] = STATE(2209), + [sym_regex] = STATE(2209), + [sym_meta_property] = STATE(2209), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1345), + [sym_type_assertion] = STATE(2309), + [sym_as_expression] = STATE(2309), + [sym_satisfies_expression] = STATE(2309), + [sym_instantiation_expression] = STATE(2309), + [sym_internal_module] = STATE(2309), + [sym_type_arguments] = STATE(495), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1229), - [anon_sym_type] = ACTIONS(1229), - [anon_sym_namespace] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(1217), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), [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(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1207), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_using] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(849), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_delete] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1221), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -95658,205 +95897,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1485), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_readonly] = ACTIONS(1229), - [anon_sym_get] = ACTIONS(1229), - [anon_sym_set] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_override] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_any] = ACTIONS(1229), - [anon_sym_number] = ACTIONS(1229), - [anon_sym_boolean] = ACTIONS(1229), - [anon_sym_string] = ACTIONS(1229), - [anon_sym_symbol] = ACTIONS(1229), - [anon_sym_object] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_readonly] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(1195), + [anon_sym_set] = ACTIONS(1195), + [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(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_import] = STATE(3315), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1645), - [sym_primary_expression] = STATE(2053), - [sym_yield_expression] = STATE(2398), - [sym_object] = STATE(2361), - [sym_object_pattern] = STATE(5457), - [sym_array] = STATE(2361), - [sym_array_pattern] = STATE(5457), - [sym_glimmer_template] = STATE(2398), - [sym_class] = STATE(2361), - [sym_function_expression] = STATE(2361), - [sym_generator_function] = STATE(2361), - [sym_arrow_function] = STATE(2361), - [sym__call_signature] = STATE(5469), - [sym_call_expression] = STATE(2361), - [sym_new_expression] = STATE(2398), - [sym_await_expression] = STATE(2398), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(2398), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(2398), - [sym__destructuring_pattern] = STATE(5457), - [sym_ternary_expression] = STATE(2398), - [sym_binary_expression] = STATE(2398), - [sym_unary_expression] = STATE(2398), - [sym_update_expression] = STATE(2398), - [sym_string] = STATE(2361), - [sym_template_string] = STATE(2361), - [sym_regex] = STATE(2361), - [sym_meta_property] = STATE(2361), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1328), - [sym_type_assertion] = STATE(2398), - [sym_as_expression] = STATE(2398), - [sym_satisfies_expression] = STATE(2398), - [sym_instantiation_expression] = STATE(2398), - [sym_internal_module] = STATE(2398), - [sym_type_arguments] = STATE(480), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4422), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [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(679), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1469), - [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(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [659] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1878), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [660] = { + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1933), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5765), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2962), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(548), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1413), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1403), [anon_sym_function] = ACTIONS(157), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_using] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), [anon_sym_SLASH] = ACTIONS(947), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_delete] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [sym_private_property_identifier] = ACTIONS(1417), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), @@ -95864,390 +96000,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [660] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2358), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_readonly] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_declare] = ACTIONS(1391), + [anon_sym_public] = ACTIONS(1391), + [anon_sym_private] = ACTIONS(1391), + [anon_sym_protected] = ACTIONS(1391), + [anon_sym_override] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1204), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5812), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1204), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(184), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(823), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2150), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_number] = ACTIONS(717), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1422), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5443), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1422), - [sym_subscript_expression] = STATE(1422), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1422), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_namespace] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1197), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5785), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5451), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2912), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1105), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1095), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1105), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1201), + [sym_private_property_identifier] = ACTIONS(1113), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_readonly] = ACTIONS(1175), - [anon_sym_get] = ACTIONS(1175), - [anon_sym_set] = ACTIONS(1175), - [anon_sym_declare] = ACTIONS(1175), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [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_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1444), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5576), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5576), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1444), - [sym_subscript_expression] = STATE(1444), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5576), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1444), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5584), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5584), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5584), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1446), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(2246), [anon_sym_export] = ACTIONS(2248), [anon_sym_type] = ACTIONS(2248), [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -96266,7 +96299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -96295,165 +96328,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1420), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5769), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5769), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5696), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1420), - [sym_subscript_expression] = STATE(1420), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5769), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1420), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(554), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1137), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1161), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5777), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5692), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2956), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1427), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(574), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_namespace] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(1377), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1151), + [anon_sym_async] = ACTIONS(1367), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_void] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_delete] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1165), + [sym_private_property_identifier] = ACTIONS(1381), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_readonly] = ACTIONS(1137), - [anon_sym_get] = ACTIONS(1137), - [anon_sym_set] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_override] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_any] = ACTIONS(1137), - [anon_sym_number] = ACTIONS(1137), - [anon_sym_boolean] = ACTIONS(1137), - [anon_sym_string] = ACTIONS(1137), - [anon_sym_symbol] = ACTIONS(1137), - [anon_sym_object] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_readonly] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_declare] = ACTIONS(1355), + [anon_sym_public] = ACTIONS(1355), + [anon_sym_private] = ACTIONS(1355), + [anon_sym_protected] = ACTIONS(1355), + [anon_sym_override] = ACTIONS(1355), + [anon_sym_module] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_number] = ACTIONS(1355), + [anon_sym_boolean] = ACTIONS(1355), + [anon_sym_string] = ACTIONS(1355), + [anon_sym_symbol] = ACTIONS(1355), + [anon_sym_object] = ACTIONS(1355), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_import] = STATE(3342), + [sym_import] = STATE(3369), [sym_parenthesized_expression] = STATE(1445), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5742), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5742), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5683), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5750), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5750), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5682), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), [sym_member_expression] = STATE(1445), [sym_subscript_expression] = STATE(1445), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5742), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2988), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5750), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), [sym_non_null_expression] = STATE(1445), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(520), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), [sym_identifier] = ACTIONS(2258), [anon_sym_export] = ACTIONS(2260), [anon_sym_type] = ACTIONS(2260), [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_typeof] = ACTIONS(184), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2260), [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(813), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), @@ -96472,7 +96505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), [sym_private_property_identifier] = ACTIONS(193), [sym_this] = ACTIONS(197), @@ -96501,130 +96534,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_import] = STATE(3342), - [sym_parenthesized_expression] = STATE(1367), - [sym_expression] = STATE(1932), - [sym_primary_expression] = STATE(1606), - [sym_yield_expression] = STATE(1637), - [sym_object] = STATE(1636), - [sym_object_pattern] = STATE(5757), - [sym_array] = STATE(1636), - [sym_array_pattern] = STATE(5757), - [sym_glimmer_template] = STATE(1637), - [sym_class] = STATE(1636), - [sym_function_expression] = STATE(1636), - [sym_generator_function] = STATE(1636), - [sym_arrow_function] = STATE(1636), - [sym__call_signature] = STATE(5530), - [sym_call_expression] = STATE(1636), - [sym_new_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_member_expression] = STATE(1367), - [sym_subscript_expression] = STATE(1367), - [sym_assignment_expression] = STATE(1637), - [sym__augmented_assignment_lhs] = STATE(2945), - [sym_augmented_assignment_expression] = STATE(1637), - [sym__destructuring_pattern] = STATE(5757), - [sym_ternary_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_unary_expression] = STATE(1637), - [sym_update_expression] = STATE(1637), - [sym_string] = STATE(1636), - [sym_template_string] = STATE(1636), - [sym_regex] = STATE(1636), - [sym_meta_property] = STATE(1636), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3818), - [sym_non_null_expression] = STATE(1367), - [sym_type_assertion] = STATE(1637), - [sym_as_expression] = STATE(1637), - [sym_satisfies_expression] = STATE(1637), - [sym_instantiation_expression] = STATE(1637), - [sym_internal_module] = STATE(1637), - [sym_type_arguments] = STATE(376), - [sym_type_parameters] = STATE(5213), - [aux_sym_export_statement_repeat1] = STATE(4396), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_typeof] = ACTIONS(1449), + [sym_import] = STATE(3369), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1732), + [sym_primary_expression] = STATE(1529), + [sym_yield_expression] = STATE(1696), + [sym_object] = STATE(1693), + [sym_object_pattern] = STATE(5660), + [sym_array] = STATE(1693), + [sym_array_pattern] = STATE(5660), + [sym_glimmer_template] = STATE(1696), + [sym_class] = STATE(1693), + [sym_function_expression] = STATE(1693), + [sym_generator_function] = STATE(1693), + [sym_arrow_function] = STATE(1693), + [sym__call_signature] = STATE(5823), + [sym_call_expression] = STATE(1693), + [sym_new_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1696), + [sym__augmented_assignment_lhs] = STATE(2941), + [sym_augmented_assignment_expression] = STATE(1696), + [sym__destructuring_pattern] = STATE(5660), + [sym_ternary_expression] = STATE(1696), + [sym_binary_expression] = STATE(1696), + [sym_unary_expression] = STATE(1696), + [sym_update_expression] = STATE(1696), + [sym_string] = STATE(1693), + [sym_template_string] = STATE(1693), + [sym_regex] = STATE(1693), + [sym_meta_property] = STATE(1693), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3796), + [sym_non_null_expression] = STATE(1342), + [sym_type_assertion] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_satisfies_expression] = STATE(1696), + [sym_instantiation_expression] = STATE(1696), + [sym_internal_module] = STATE(1696), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(5437), + [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_await] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(863), [sym_glimmer_opening_tag] = ACTIONS(147), [anon_sym_DQUOTE] = ACTIONS(149), [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1063), [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(616), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(821), [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), + [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(1509), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_namespace_export] = STATE(5293), - [sym_export_clause] = STATE(4377), - [sym_declaration] = STATE(861), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_namespace_export] = STATE(5185), + [sym_export_clause] = STATE(4441), + [sym_declaration] = STATE(876), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [anon_sym_STAR] = ACTIONS(2270), [anon_sym_default] = ACTIONS(2272), [anon_sym_type] = ACTIONS(2274), @@ -96633,7 +96666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2280), [anon_sym_LBRACE] = ACTIONS(2282), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2288), @@ -96705,27 +96738,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_namespace_export] = STATE(5293), - [sym_export_clause] = STATE(4377), - [sym_declaration] = STATE(861), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_namespace_export] = STATE(5185), + [sym_export_clause] = STATE(4441), + [sym_declaration] = STATE(876), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [anon_sym_STAR] = ACTIONS(2270), [anon_sym_default] = ACTIONS(2272), [anon_sym_type] = ACTIONS(2274), @@ -96734,7 +96767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2280), [anon_sym_LBRACE] = ACTIONS(2282), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2288), @@ -96806,27 +96839,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym_namespace_export] = STATE(5293), - [sym_export_clause] = STATE(4377), - [sym_declaration] = STATE(861), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_namespace_export] = STATE(5185), + [sym_export_clause] = STATE(4441), + [sym_declaration] = STATE(876), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [anon_sym_STAR] = ACTIONS(2270), [anon_sym_default] = ACTIONS(2272), [anon_sym_type] = ACTIONS(2274), @@ -96907,14 +96940,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym__call_signature] = STATE(5607), - [sym_string] = STATE(3822), - [sym_formal_parameters] = STATE(3818), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [sym_type_parameters] = STATE(5213), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym__call_signature] = STATE(5658), + [sym_string] = STATE(3821), + [sym_formal_parameters] = STATE(3796), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [sym_type_parameters] = STATE(5437), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2316), [anon_sym_STAR] = ACTIONS(2318), @@ -96923,7 +96956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2316), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_let] = ACTIONS(2316), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2321), @@ -97006,14 +97039,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym__call_signature] = STATE(5607), - [sym_string] = STATE(3822), - [sym_formal_parameters] = STATE(3818), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [sym_type_parameters] = STATE(5213), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym__call_signature] = STATE(5658), + [sym_string] = STATE(3821), + [sym_formal_parameters] = STATE(3796), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [sym_type_parameters] = STATE(5437), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2316), [anon_sym_STAR] = ACTIONS(2318), @@ -97022,7 +97055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2316), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2316), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2321), @@ -97105,14 +97138,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym__call_signature] = STATE(5607), - [sym_string] = STATE(3822), - [sym_formal_parameters] = STATE(3818), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [sym_type_parameters] = STATE(5213), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym__call_signature] = STATE(5658), + [sym_string] = STATE(3821), + [sym_formal_parameters] = STATE(3796), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [sym_type_parameters] = STATE(5437), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2316), [anon_sym_STAR] = ACTIONS(2318), @@ -97121,7 +97154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2316), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2316), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2321), @@ -97204,32 +97237,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_declaration] = STATE(830), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_declaration] = STATE(868), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2288), @@ -97302,32 +97335,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [674] = { - [sym_declaration] = STATE(830), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_declaration] = STATE(868), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2288), @@ -97400,25 +97433,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [675] = { - [sym_declaration] = STATE(830), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_declaration] = STATE(868), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), [anon_sym_EQ] = ACTIONS(666), @@ -97498,29 +97531,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [676] = { - [sym_namespace_export] = STATE(5293), - [sym_export_clause] = STATE(4377), - [sym_declaration] = STATE(861), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), + [sym_namespace_export] = STATE(5185), + [sym_export_clause] = STATE(4441), + [sym_declaration] = STATE(876), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2348), [anon_sym_type] = ACTIONS(2274), - [anon_sym_EQ] = ACTIONS(2348), + [anon_sym_EQ] = ACTIONS(2350), [anon_sym_as] = ACTIONS(2278), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_LBRACE] = ACTIONS(2282), @@ -97533,7 +97566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), @@ -97595,29 +97628,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [677] = { - [sym_namespace_export] = STATE(5293), - [sym_export_clause] = STATE(4377), - [sym_declaration] = STATE(861), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), + [sym_namespace_export] = STATE(5185), + [sym_export_clause] = STATE(4441), + [sym_declaration] = STATE(876), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2272), [anon_sym_type] = ACTIONS(2274), - [anon_sym_EQ] = ACTIONS(2348), + [anon_sym_EQ] = ACTIONS(2350), [anon_sym_as] = ACTIONS(2278), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_LBRACE] = ACTIONS(2282), @@ -97630,7 +97663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(858), + [anon_sym_COLON] = ACTIONS(888), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), @@ -97692,12 +97725,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [678] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [sym_override_modifier] = STATE(2764), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [sym_override_modifier] = STATE(2766), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -97788,12 +97821,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [sym_override_modifier] = STATE(2764), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [sym_override_modifier] = STATE(2766), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -97802,7 +97835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), @@ -97884,12 +97917,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [sym_override_modifier] = STATE(2764), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [sym_override_modifier] = STATE(2766), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -97898,7 +97931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), @@ -97980,106 +98013,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [681] = { - [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_EQ] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_from] = 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_RPAREN] = 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_SEMI] = ACTIONS(1849), - [anon_sym_COLON] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [sym_glimmer_opening_tag] = ACTIONS(1849), - [anon_sym_GT] = 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_EQ_GT] = ACTIONS(1849), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [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), - [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_QMARK] = ACTIONS(1849), - [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_extends] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), + [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_EQ] = 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_from] = 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_RPAREN] = 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_SEMI] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(1809), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_RBRACK] = ACTIONS(1809), + [sym_glimmer_opening_tag] = ACTIONS(1809), + [anon_sym_GT] = 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_EQ_GT] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_LT] = 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), + [anon_sym_set] = ACTIONS(1811), + [anon_sym_QMARK] = ACTIONS(1809), + [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_extends] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), [sym_html_comment] = ACTIONS(5), }, [682] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [ts_builtin_sym_end] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_namespace] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_COMMA] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_typeof] = ACTIONS(1805), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_from] = ACTIONS(1805), + [anon_sym_with] = ACTIONS(1805), + [anon_sym_var] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_switch] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_RPAREN] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_debugger] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_throw] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_RBRACK] = ACTIONS(1803), + [sym_glimmer_opening_tag] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(1803), + [anon_sym_SQUOTE] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_function] = ACTIONS(1805), + [anon_sym_EQ_GT] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1805), + [anon_sym_using] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_void] = ACTIONS(1805), + [anon_sym_delete] = ACTIONS(1805), + [anon_sym_PLUS_PLUS] = ACTIONS(1803), + [anon_sym_DASH_DASH] = ACTIONS(1803), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1803), + [sym_number] = ACTIONS(1803), + [sym_private_property_identifier] = ACTIONS(1803), + [sym_this] = ACTIONS(1805), + [sym_super] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), + [sym_null] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_readonly] = ACTIONS(1805), + [anon_sym_get] = ACTIONS(1805), + [anon_sym_set] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1805), + [anon_sym_public] = ACTIONS(1805), + [anon_sym_private] = ACTIONS(1805), + [anon_sym_protected] = ACTIONS(1805), + [anon_sym_override] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_any] = ACTIONS(1805), + [anon_sym_number] = ACTIONS(1805), + [anon_sym_boolean] = ACTIONS(1805), + [anon_sym_string] = ACTIONS(1805), + [anon_sym_symbol] = ACTIONS(1805), + [anon_sym_object] = ACTIONS(1805), + [anon_sym_abstract] = ACTIONS(1805), + [anon_sym_extends] = ACTIONS(1805), + [anon_sym_interface] = ACTIONS(1805), + [anon_sym_enum] = ACTIONS(1805), + [sym_html_comment] = ACTIONS(5), + }, + [683] = { + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(122), @@ -98088,7 +98216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), @@ -98169,15 +98297,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [683] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [684] = { + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), @@ -98195,7 +98323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2354), + [anon_sym_async] = ACTIONS(2352), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2352), @@ -98244,8 +98372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2358), - [anon_sym_set] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2352), + [anon_sym_set] = ACTIONS(2352), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2352), [anon_sym_public] = ACTIONS(2352), @@ -98264,21 +98392,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [684] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [685] = { + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(2318), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), @@ -98290,7 +98418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2352), @@ -98339,8 +98467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2352), - [anon_sym_set] = ACTIONS(2352), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2352), [anon_sym_public] = ACTIONS(2352), @@ -98359,12 +98487,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [685] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [686] = { + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -98373,7 +98501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), @@ -98454,116 +98582,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1947), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_EQ] = ACTIONS(1947), - [anon_sym_namespace] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_COMMA] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_typeof] = ACTIONS(1947), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_from] = ACTIONS(1947), - [anon_sym_with] = ACTIONS(1947), - [anon_sym_var] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_debugger] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_throw] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_COLON] = ACTIONS(1945), - [anon_sym_case] = ACTIONS(1947), - [anon_sym_yield] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_RBRACK] = ACTIONS(1945), - [sym_glimmer_opening_tag] = ACTIONS(1945), - [anon_sym_GT] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_class] = ACTIONS(1947), - [anon_sym_async] = ACTIONS(1947), - [anon_sym_function] = ACTIONS(1947), - [anon_sym_EQ_GT] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_using] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_void] = ACTIONS(1947), - [anon_sym_delete] = ACTIONS(1947), - [anon_sym_PLUS_PLUS] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1945), - [sym_number] = ACTIONS(1945), - [sym_private_property_identifier] = ACTIONS(1945), - [sym_this] = ACTIONS(1947), - [sym_super] = ACTIONS(1947), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [sym_null] = ACTIONS(1947), - [sym_undefined] = ACTIONS(1947), - [anon_sym_AT] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_readonly] = ACTIONS(1947), - [anon_sym_get] = ACTIONS(1947), - [anon_sym_set] = ACTIONS(1947), - [anon_sym_QMARK] = ACTIONS(1945), - [anon_sym_declare] = ACTIONS(1947), - [anon_sym_public] = ACTIONS(1947), - [anon_sym_private] = ACTIONS(1947), - [anon_sym_protected] = ACTIONS(1947), - [anon_sym_override] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_any] = ACTIONS(1947), - [anon_sym_number] = ACTIONS(1947), - [anon_sym_boolean] = ACTIONS(1947), - [anon_sym_string] = ACTIONS(1947), - [anon_sym_symbol] = ACTIONS(1947), - [anon_sym_object] = ACTIONS(1947), - [anon_sym_abstract] = ACTIONS(1947), - [anon_sym_extends] = ACTIONS(1947), - [anon_sym_interface] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [sym_html_comment] = ACTIONS(5), - }, [687] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(2318), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), @@ -98575,7 +98608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2352), @@ -98624,8 +98657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2352), - [anon_sym_set] = ACTIONS(2352), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2352), [anon_sym_public] = ACTIONS(2352), @@ -98645,14 +98678,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [688] = { - [sym_string] = STATE(3822), - [sym__property_name] = STATE(3822), - [sym_computed_property_name] = STATE(3822), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_string] = STATE(3821), + [sym__property_name] = STATE(3821), + [sym_computed_property_name] = STATE(3821), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), @@ -98670,7 +98703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2354), + [anon_sym_async] = ACTIONS(2352), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2352), @@ -98719,8 +98752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2358), - [anon_sym_set] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2352), + [anon_sym_set] = ACTIONS(2352), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2352), [anon_sym_public] = ACTIONS(2352), @@ -98740,26 +98773,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [689] = { - [sym_declaration] = STATE(830), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), + [sym_declaration] = STATE(868), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_COMMA] = ACTIONS(161), @@ -98771,7 +98804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(858), + [anon_sym_COLON] = ACTIONS(888), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), @@ -98834,26 +98867,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym_declaration] = STATE(830), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), + [sym_declaration] = STATE(868), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_COMMA] = ACTIONS(161), @@ -98865,7 +98898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), @@ -99398,32 +99431,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [696] = { - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(666), + [sym_declaration] = STATE(4120), + [sym_variable_declaration] = STATE(4071), + [sym_lexical_declaration] = STATE(4071), + [sym_class_declaration] = STATE(4071), + [sym_function_declaration] = STATE(4071), + [sym_generator_function_declaration] = STATE(4071), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(4071), + [sym_ambient_declaration] = STATE(4071), + [sym_abstract_class_declaration] = STATE(4071), + [sym_module] = STATE(4071), + [sym_internal_module] = STATE(4082), + [sym_import_alias] = STATE(4071), + [sym_interface_declaration] = STATE(4071), + [sym_enum_declaration] = STATE(4071), + [sym_type_alias_declaration] = STATE(4071), + [aux_sym_export_statement_repeat1] = STATE(4277), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1988), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2392), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(2394), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -99452,7 +99497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(122), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -99460,62 +99505,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_instanceof] = ACTIONS(161), [anon_sym_PLUS_PLUS] = ACTIONS(161), [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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(693), - [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), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_global] = ACTIONS(2406), + [anon_sym_interface] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2410), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [697] = { - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1980), - [anon_sym_export] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(1992), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1992), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1992), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1994), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_async] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1992), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1992), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -99557,57 +99590,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1982), - [sym_private_property_identifier] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_readonly] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1980), + [sym_number] = ACTIONS(1994), + [sym_private_property_identifier] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_readonly] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1992), + [anon_sym_set] = ACTIONS(1992), [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_private] = ACTIONS(1980), - [anon_sym_protected] = ACTIONS(1980), - [anon_sym_override] = ACTIONS(1980), - [anon_sym_module] = ACTIONS(1980), - [anon_sym_any] = ACTIONS(1980), - [anon_sym_number] = ACTIONS(1980), - [anon_sym_boolean] = ACTIONS(1980), - [anon_sym_string] = ACTIONS(1980), - [anon_sym_symbol] = ACTIONS(1980), - [anon_sym_object] = ACTIONS(1980), + [anon_sym_declare] = ACTIONS(1992), + [anon_sym_public] = ACTIONS(1992), + [anon_sym_private] = ACTIONS(1992), + [anon_sym_protected] = ACTIONS(1992), + [anon_sym_override] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_any] = ACTIONS(1992), + [anon_sym_number] = ACTIONS(1992), + [anon_sym_boolean] = ACTIONS(1992), + [anon_sym_string] = ACTIONS(1992), + [anon_sym_symbol] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1992), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [698] = { - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1980), - [anon_sym_export] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1974), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1976), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_async] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1974), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1974), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -99649,57 +99682,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1982), - [sym_private_property_identifier] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_readonly] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1980), + [sym_number] = ACTIONS(1976), + [sym_private_property_identifier] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_private] = ACTIONS(1980), - [anon_sym_protected] = ACTIONS(1980), - [anon_sym_override] = ACTIONS(1980), - [anon_sym_module] = ACTIONS(1980), - [anon_sym_any] = ACTIONS(1980), - [anon_sym_number] = ACTIONS(1980), - [anon_sym_boolean] = ACTIONS(1980), - [anon_sym_string] = ACTIONS(1980), - [anon_sym_symbol] = ACTIONS(1980), - [anon_sym_object] = ACTIONS(1980), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [anon_sym_object] = ACTIONS(1974), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_declaration] = STATE(4276), - [sym_variable_declaration] = STATE(4247), - [sym_lexical_declaration] = STATE(4247), - [sym_class_declaration] = STATE(4247), - [sym_function_declaration] = STATE(4247), - [sym_generator_function_declaration] = STATE(4247), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(4247), - [sym_ambient_declaration] = STATE(4247), - [sym_abstract_class_declaration] = STATE(4247), - [sym_module] = STATE(4247), - [sym_internal_module] = STATE(4255), - [sym_import_alias] = STATE(4247), - [sym_interface_declaration] = STATE(4247), - [sym_enum_declaration] = STATE(4247), - [sym_type_alias_declaration] = STATE(4247), - [aux_sym_export_statement_repeat1] = STATE(4274), + [sym_declaration] = STATE(868), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1267), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(880), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4053), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2384), - [anon_sym_import] = ACTIONS(2386), - [anon_sym_var] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2392), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2290), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), @@ -99707,10 +99740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2396), - [anon_sym_function] = ACTIONS(2398), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -99754,56 +99787,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2308), [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2406), - [anon_sym_interface] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2410), + [anon_sym_global] = ACTIONS(2346), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2312), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym_declaration] = STATE(830), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(1270), - [sym_function_signature] = STATE(868), - [sym_ambient_declaration] = STATE(868), - [sym_abstract_class_declaration] = STATE(868), - [sym_module] = STATE(868), - [sym_internal_module] = STATE(865), - [sym_import_alias] = STATE(868), - [sym_interface_declaration] = STATE(868), - [sym_enum_declaration] = STATE(868), - [sym_type_alias_declaration] = STATE(868), - [aux_sym_export_statement_repeat1] = STATE(4278), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(921), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(1976), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(1974), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -99832,7 +99853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2301), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -99840,50 +99861,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2346), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2312), + [sym_number] = ACTIONS(1976), + [sym_private_property_identifier] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [anon_sym_object] = ACTIONS(1974), + [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [701] = { - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1980), - [anon_sym_export] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1974), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_let] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1976), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_async] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1974), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1974), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -99925,57 +99958,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1982), - [sym_private_property_identifier] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_readonly] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(1980), - [anon_sym_set] = ACTIONS(1980), + [sym_number] = ACTIONS(1976), + [sym_private_property_identifier] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_private] = ACTIONS(1980), - [anon_sym_protected] = ACTIONS(1980), - [anon_sym_override] = ACTIONS(1980), - [anon_sym_module] = ACTIONS(1980), - [anon_sym_any] = ACTIONS(1980), - [anon_sym_number] = ACTIONS(1980), - [anon_sym_boolean] = ACTIONS(1980), - [anon_sym_string] = ACTIONS(1980), - [anon_sym_symbol] = ACTIONS(1980), - [anon_sym_object] = ACTIONS(1980), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [anon_sym_object] = ACTIONS(1974), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [702] = { - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(1992), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_namespace] = ACTIONS(1992), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1992), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1994), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1992), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1992), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100017,57 +100050,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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), + [sym_number] = ACTIONS(1994), + [sym_private_property_identifier] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_readonly] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1992), + [anon_sym_set] = ACTIONS(1992), [anon_sym_QMARK] = ACTIONS(693), - [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_declare] = ACTIONS(1992), + [anon_sym_public] = ACTIONS(1992), + [anon_sym_private] = ACTIONS(1992), + [anon_sym_protected] = ACTIONS(1992), + [anon_sym_override] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_any] = ACTIONS(1992), + [anon_sym_number] = ACTIONS(1992), + [anon_sym_boolean] = ACTIONS(1992), + [anon_sym_string] = ACTIONS(1992), + [anon_sym_symbol] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1992), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [703] = { - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(1992), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_namespace] = ACTIONS(1992), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_let] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1992), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1994), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1992), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1992), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100109,51 +100142,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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), + [sym_number] = ACTIONS(1994), + [sym_private_property_identifier] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_readonly] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1992), + [anon_sym_set] = ACTIONS(1992), [anon_sym_QMARK] = ACTIONS(693), - [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_declare] = ACTIONS(1992), + [anon_sym_public] = ACTIONS(1992), + [anon_sym_private] = ACTIONS(1992), + [anon_sym_protected] = ACTIONS(1992), + [anon_sym_override] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_any] = ACTIONS(1992), + [anon_sym_number] = ACTIONS(1992), + [anon_sym_boolean] = ACTIONS(1992), + [anon_sym_string] = ACTIONS(1992), + [anon_sym_symbol] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1992), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [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(2414), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(2414), + [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(2421), + [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(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [705] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_COMMA] = ACTIONS(831), - [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(809), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(809), [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_RBRACK] = ACTIONS(809), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), [anon_sym_async] = ACTIONS(2414), @@ -100202,55 +100325,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_QMARK] = ACTIONS(833), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [706] = { + [sym__call_signature] = STATE(5527), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(873), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(879), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(2426), + [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(2421), + [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(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_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [707] = { + [sym__call_signature] = STATE(5661), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(221), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(2430), + [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(2421), + [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(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [705] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), + [708] = { + [sym__call_signature] = STATE(5658), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_let] = ACTIONS(2434), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2434), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100292,53 +100589,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym__call_signature] = STATE(5607), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2426), + [709] = { + [sym__call_signature] = STATE(5741), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2440), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_namespace] = ACTIONS(2440), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2440), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2440), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100380,41 +100677,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_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__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym__call_signature] = STATE(5454), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2430), - [anon_sym_export] = ACTIONS(2432), + [710] = { + [sym__call_signature] = STATE(5527), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2426), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), @@ -100423,11 +100720,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2426), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2426), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100469,52 +100766,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_override] = ACTIONS(2432), - [anon_sym_module] = ACTIONS(2432), - [anon_sym_any] = ACTIONS(2432), - [anon_sym_number] = ACTIONS(2432), - [anon_sym_boolean] = ACTIONS(2432), - [anon_sym_string] = ACTIONS(2432), - [anon_sym_symbol] = ACTIONS(2432), - [anon_sym_object] = ACTIONS(2432), + [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_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym__call_signature] = STATE(5607), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2426), + [711] = { + [sym__call_signature] = STATE(5658), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_namespace] = ACTIONS(2434), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_let] = ACTIONS(2434), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(858), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2436), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2434), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100556,40 +100853,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym__call_signature] = STATE(5733), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2436), - [anon_sym_export] = ACTIONS(2438), + [712] = { + [sym__call_signature] = STATE(5741), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2440), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_EQ] = ACTIONS(878), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2440), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2440), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), @@ -100598,11 +100895,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2440), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100644,53 +100941,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_readonly] = ACTIONS(2438), - [anon_sym_get] = ACTIONS(2438), - [anon_sym_set] = ACTIONS(2438), - [anon_sym_declare] = ACTIONS(2438), - [anon_sym_public] = ACTIONS(2438), - [anon_sym_private] = ACTIONS(2438), - [anon_sym_protected] = ACTIONS(2438), - [anon_sym_override] = ACTIONS(2438), - [anon_sym_module] = ACTIONS(2438), - [anon_sym_any] = ACTIONS(2438), - [anon_sym_number] = ACTIONS(2438), - [anon_sym_boolean] = ACTIONS(2438), - [anon_sym_string] = ACTIONS(2438), - [anon_sym_symbol] = ACTIONS(2438), - [anon_sym_object] = ACTIONS(2438), + [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__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [710] = { - [sym__call_signature] = STATE(5528), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2440), - [anon_sym_export] = ACTIONS(2442), + [713] = { + [sym__call_signature] = STATE(5658), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_let] = ACTIONS(2434), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(888), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2434), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100732,54 +101029,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_readonly] = ACTIONS(2442), - [anon_sym_get] = ACTIONS(2442), - [anon_sym_set] = ACTIONS(2442), - [anon_sym_QMARK] = ACTIONS(723), - [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_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym__call_signature] = STATE(5454), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2430), - [anon_sym_export] = ACTIONS(2432), + [714] = { + [sym__call_signature] = STATE(5658), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2434), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2434), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_SEMI] = 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(2432), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2434), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100821,52 +101117,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_override] = ACTIONS(2432), - [anon_sym_module] = ACTIONS(2432), - [anon_sym_any] = ACTIONS(2432), - [anon_sym_number] = ACTIONS(2432), - [anon_sym_boolean] = ACTIONS(2432), - [anon_sym_string] = ACTIONS(2432), - [anon_sym_symbol] = ACTIONS(2432), - [anon_sym_object] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym__call_signature] = STATE(5733), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2436), - [anon_sym_export] = ACTIONS(2438), + [715] = { + [sym__call_signature] = STATE(5658), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2434), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2434), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2434), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -100908,51 +101205,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_readonly] = ACTIONS(2438), - [anon_sym_get] = ACTIONS(2438), - [anon_sym_set] = ACTIONS(2438), - [anon_sym_declare] = ACTIONS(2438), - [anon_sym_public] = ACTIONS(2438), - [anon_sym_private] = ACTIONS(2438), - [anon_sym_protected] = ACTIONS(2438), - [anon_sym_override] = ACTIONS(2438), - [anon_sym_module] = ACTIONS(2438), - [anon_sym_any] = ACTIONS(2438), - [anon_sym_number] = ACTIONS(2438), - [anon_sym_boolean] = ACTIONS(2438), - [anon_sym_string] = ACTIONS(2438), - [anon_sym_symbol] = ACTIONS(2438), - [anon_sym_object] = ACTIONS(2438), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [713] = { - [sym__call_signature] = STATE(5607), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [716] = { + [sym__call_signature] = STATE(5527), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2424), [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2426), [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(851), + [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(2426), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2426), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -101013,36 +101311,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2426), [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [714] = { - [sym__call_signature] = STATE(5607), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2426), + [717] = { + [ts_builtin_sym_end] = ACTIONS(1697), + [sym_identifier] = ACTIONS(1699), + [anon_sym_export] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1699), + [anon_sym_namespace] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_var] = ACTIONS(1699), + [anon_sym_let] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_debugger] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_throw] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_case] = ACTIONS(1699), + [anon_sym_catch] = ACTIONS(1699), + [anon_sym_finally] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1697), + [sym_glimmer_opening_tag] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1699), + [anon_sym_function] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1699), + [anon_sym_using] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1697), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1697), + [sym_number] = ACTIONS(1697), + [sym_private_property_identifier] = ACTIONS(1697), + [sym_this] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_null] = ACTIONS(1699), + [sym_undefined] = ACTIONS(1699), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_readonly] = ACTIONS(1699), + [anon_sym_get] = ACTIONS(1699), + [anon_sym_set] = ACTIONS(1699), + [anon_sym_declare] = ACTIONS(1699), + [anon_sym_public] = ACTIONS(1699), + [anon_sym_private] = ACTIONS(1699), + [anon_sym_protected] = ACTIONS(1699), + [anon_sym_override] = ACTIONS(1699), + [anon_sym_module] = ACTIONS(1699), + [anon_sym_any] = ACTIONS(1699), + [anon_sym_number] = ACTIONS(1699), + [anon_sym_boolean] = ACTIONS(1699), + [anon_sym_string] = ACTIONS(1699), + [anon_sym_symbol] = ACTIONS(1699), + [anon_sym_object] = ACTIONS(1699), + [anon_sym_abstract] = ACTIONS(1699), + [anon_sym_interface] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [sym__automatic_semicolon] = ACTIONS(1707), + [sym_html_comment] = ACTIONS(5), + }, + [718] = { + [sym_catch_clause] = STATE(747), + [sym_finally_clause] = STATE(900), + [ts_builtin_sym_end] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2446), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_type] = ACTIONS(2446), + [anon_sym_namespace] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_typeof] = ACTIONS(2446), + [anon_sym_import] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2446), + [anon_sym_var] = ACTIONS(2446), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_await] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_debugger] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_throw] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_case] = ACTIONS(2446), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_finally] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2444), + [sym_glimmer_opening_tag] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2444), + [anon_sym_SQUOTE] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2446), + [anon_sym_async] = ACTIONS(2446), + [anon_sym_function] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2446), + [anon_sym_using] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2444), + [anon_sym_void] = ACTIONS(2446), + [anon_sym_delete] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2444), + [anon_sym_DASH_DASH] = ACTIONS(2444), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2444), + [sym_number] = ACTIONS(2444), + [sym_private_property_identifier] = ACTIONS(2444), + [sym_this] = ACTIONS(2446), + [sym_super] = ACTIONS(2446), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [sym_null] = ACTIONS(2446), + [sym_undefined] = ACTIONS(2446), + [anon_sym_AT] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_readonly] = ACTIONS(2446), + [anon_sym_get] = ACTIONS(2446), + [anon_sym_set] = ACTIONS(2446), + [anon_sym_declare] = ACTIONS(2446), + [anon_sym_public] = ACTIONS(2446), + [anon_sym_private] = ACTIONS(2446), + [anon_sym_protected] = ACTIONS(2446), + [anon_sym_override] = ACTIONS(2446), + [anon_sym_module] = ACTIONS(2446), + [anon_sym_any] = ACTIONS(2446), + [anon_sym_number] = ACTIONS(2446), + [anon_sym_boolean] = ACTIONS(2446), + [anon_sym_string] = ACTIONS(2446), + [anon_sym_symbol] = ACTIONS(2446), + [anon_sym_object] = ACTIONS(2446), + [anon_sym_abstract] = ACTIONS(2446), + [anon_sym_interface] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [sym_html_comment] = ACTIONS(5), + }, + [719] = { + [sym__call_signature] = STATE(5661), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2430), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_namespace] = ACTIONS(2430), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2430), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2430), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101084,53 +101555,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [715] = { - [sym__call_signature] = STATE(5607), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2426), + [720] = { + [sym__call_signature] = STATE(5537), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2454), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(937), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(161), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2454), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(853), - [anon_sym_of] = ACTIONS(856), - [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(2426), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(943), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2454), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101172,54 +101641,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_declare] = ACTIONS(2454), + [anon_sym_public] = ACTIONS(2454), + [anon_sym_private] = ACTIONS(2454), + [anon_sym_protected] = ACTIONS(2454), + [anon_sym_override] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_any] = ACTIONS(2454), + [anon_sym_number] = ACTIONS(2454), + [anon_sym_boolean] = ACTIONS(2454), + [anon_sym_string] = ACTIONS(2454), + [anon_sym_symbol] = ACTIONS(2454), + [anon_sym_object] = ACTIONS(2454), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [716] = { - [sym__call_signature] = STATE(5454), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2430), - [anon_sym_export] = ACTIONS(2432), + [721] = { + [sym__call_signature] = STATE(5661), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2430), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(893), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2432), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_let] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_let] = ACTIONS(2430), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(890), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2430), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2430), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101261,138 +101729,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_override] = ACTIONS(2432), - [anon_sym_module] = ACTIONS(2432), - [anon_sym_any] = ACTIONS(2432), - [anon_sym_number] = ACTIONS(2432), - [anon_sym_boolean] = ACTIONS(2432), - [anon_sym_string] = ACTIONS(2432), - [anon_sym_symbol] = ACTIONS(2432), - [anon_sym_object] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_with] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_await] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_debugger] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_throw] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_catch] = ACTIONS(1689), - [anon_sym_finally] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [sym_glimmer_opening_tag] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_delete] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_number] = ACTIONS(1687), - [sym_private_property_identifier] = ACTIONS(1687), - [sym_this] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_undefined] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_get] = ACTIONS(1689), - [anon_sym_set] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_private] = ACTIONS(1689), - [anon_sym_protected] = ACTIONS(1689), - [anon_sym_override] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_number] = ACTIONS(1689), - [anon_sym_boolean] = ACTIONS(1689), - [anon_sym_string] = ACTIONS(1689), - [anon_sym_symbol] = ACTIONS(1689), - [anon_sym_object] = ACTIONS(1689), - [anon_sym_abstract] = ACTIONS(1689), - [anon_sym_interface] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [sym__automatic_semicolon] = ACTIONS(1697), - [sym_html_comment] = ACTIONS(5), - }, - [718] = { - [sym__call_signature] = STATE(5537), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), + [722] = { + [sym__call_signature] = STATE(5455), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(899), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2446), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(904), [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(224), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), + [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2458), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101434,53 +101816,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [719] = { - [sym__call_signature] = STATE(5528), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2440), - [anon_sym_export] = ACTIONS(2442), + [723] = { + [sym__call_signature] = STATE(5537), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2454), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(161), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2454), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(161), [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(2442), + [anon_sym_async] = ACTIONS(2454), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_EQ_GT] = ACTIONS(943), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2454), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101522,51 +101902,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_declare] = ACTIONS(2454), + [anon_sym_public] = ACTIONS(2454), + [anon_sym_private] = ACTIONS(2454), + [anon_sym_protected] = ACTIONS(2454), + [anon_sym_override] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_any] = ACTIONS(2454), + [anon_sym_number] = ACTIONS(2454), + [anon_sym_boolean] = ACTIONS(2454), + [anon_sym_string] = ACTIONS(2454), + [anon_sym_symbol] = ACTIONS(2454), + [anon_sym_object] = ACTIONS(2454), [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [720] = { - [sym__call_signature] = STATE(5537), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), + [724] = { + [sym__call_signature] = STATE(5527), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(912), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2446), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(224), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), + [anon_sym_async] = ACTIONS(2426), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2426), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101608,53 +101990,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), + [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_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [721] = { - [sym__call_signature] = STATE(5528), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2440), - [anon_sym_export] = ACTIONS(2442), + [725] = { + [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_COMMA] = 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_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_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_catch] = ACTIONS(1823), + [anon_sym_finally] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = 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), + [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(2460), + [sym_html_comment] = ACTIONS(5), + }, + [726] = { + [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_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_SEMI] = ACTIONS(1835), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [sym_glimmer_opening_tag] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), + }, + [727] = { + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101696,137 +102248,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_static] = ACTIONS(2464), + [anon_sym_readonly] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_declare] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_protected] = ACTIONS(2464), + [anon_sym_override] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_any] = ACTIONS(2464), + [anon_sym_number] = ACTIONS(2464), + [anon_sym_boolean] = ACTIONS(2464), + [anon_sym_string] = ACTIONS(2464), + [anon_sym_symbol] = ACTIONS(2464), + [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [722] = { - [sym_catch_clause] = STATE(751), - [sym_finally_clause] = STATE(841), - [ts_builtin_sym_end] = ACTIONS(2448), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_with] = ACTIONS(2450), - [anon_sym_var] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_do] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_debugger] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_throw] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_case] = ACTIONS(2450), - [anon_sym_catch] = ACTIONS(2452), - [anon_sym_finally] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2448), - [sym_glimmer_opening_tag] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2448), - [anon_sym_class] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_function] = ACTIONS(2450), - [anon_sym_new] = ACTIONS(2450), - [anon_sym_using] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2448), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2448), - [anon_sym_DASH_DASH] = ACTIONS(2448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2448), - [sym_number] = ACTIONS(2448), - [sym_private_property_identifier] = ACTIONS(2448), - [sym_this] = ACTIONS(2450), - [sym_super] = ACTIONS(2450), - [sym_true] = ACTIONS(2450), - [sym_false] = ACTIONS(2450), - [sym_null] = ACTIONS(2450), - [sym_undefined] = ACTIONS(2450), - [anon_sym_AT] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_readonly] = ACTIONS(2450), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_declare] = ACTIONS(2450), - [anon_sym_public] = ACTIONS(2450), - [anon_sym_private] = ACTIONS(2450), - [anon_sym_protected] = ACTIONS(2450), - [anon_sym_override] = ACTIONS(2450), - [anon_sym_module] = ACTIONS(2450), - [anon_sym_any] = ACTIONS(2450), - [anon_sym_number] = ACTIONS(2450), - [anon_sym_boolean] = ACTIONS(2450), - [anon_sym_string] = ACTIONS(2450), - [anon_sym_symbol] = ACTIONS(2450), - [anon_sym_object] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), + [728] = { + [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_COMMA] = 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_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_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = 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), + [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), + [anon_sym_PIPE_RBRACE] = ACTIONS(1821), + [sym__automatic_semicolon] = ACTIONS(2466), [sym_html_comment] = ACTIONS(5), }, - [723] = { - [sym__call_signature] = STATE(5447), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [729] = { + [sym__call_signature] = STATE(5455), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2456), [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(128), [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(902), + [anon_sym_COLON] = ACTIONS(917), [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_RBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2458), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -101890,32 +102441,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [724] = { - [sym__call_signature] = STATE(5454), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2430), - [anon_sym_export] = ACTIONS(2432), + [730] = { + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2432), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2432), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -101957,137 +102506,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_override] = ACTIONS(2432), - [anon_sym_module] = ACTIONS(2432), - [anon_sym_any] = ACTIONS(2432), - [anon_sym_number] = ACTIONS(2432), - [anon_sym_boolean] = ACTIONS(2432), - [anon_sym_string] = ACTIONS(2432), - [anon_sym_symbol] = ACTIONS(2432), - [anon_sym_object] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_readonly] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_declare] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_protected] = ACTIONS(2464), + [anon_sym_override] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_any] = ACTIONS(2464), + [anon_sym_number] = ACTIONS(2464), + [anon_sym_boolean] = ACTIONS(2464), + [anon_sym_string] = ACTIONS(2464), + [anon_sym_symbol] = ACTIONS(2464), + [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [725] = { - [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_COMMA] = 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_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_SEMI] = ACTIONS(1873), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_finally] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = 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(1875), - [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__automatic_semicolon] = ACTIONS(2460), - [sym_html_comment] = ACTIONS(5), - }, - [726] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2462), - [anon_sym_export] = ACTIONS(2464), + [731] = { + [sym__call_signature] = STATE(5455), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(899), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(224), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2458), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -102129,395 +102593,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_readonly] = ACTIONS(2464), - [anon_sym_get] = ACTIONS(2464), - [anon_sym_set] = ACTIONS(2464), - [anon_sym_declare] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_protected] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_any] = ACTIONS(2464), - [anon_sym_number] = ACTIONS(2464), - [anon_sym_boolean] = ACTIONS(2464), - [anon_sym_string] = ACTIONS(2464), - [anon_sym_symbol] = ACTIONS(2464), - [anon_sym_object] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [727] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_typeof] = ACTIONS(1901), - [anon_sym_import] = ACTIONS(1901), - [anon_sym_with] = ACTIONS(1901), - [anon_sym_var] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_switch] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_debugger] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_throw] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [sym_glimmer_opening_tag] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_function] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_using] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_void] = ACTIONS(1901), - [anon_sym_delete] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1899), - [sym_number] = ACTIONS(1899), - [sym_private_property_identifier] = ACTIONS(1899), - [sym_this] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_true] = ACTIONS(1901), - [sym_false] = ACTIONS(1901), - [sym_null] = ACTIONS(1901), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_readonly] = ACTIONS(1901), - [anon_sym_get] = ACTIONS(1901), - [anon_sym_set] = ACTIONS(1901), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1901), - [anon_sym_private] = ACTIONS(1901), - [anon_sym_protected] = ACTIONS(1901), - [anon_sym_override] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_any] = ACTIONS(1901), - [anon_sym_number] = ACTIONS(1901), - [anon_sym_boolean] = ACTIONS(1901), - [anon_sym_string] = ACTIONS(1901), - [anon_sym_symbol] = ACTIONS(1901), - [anon_sym_object] = ACTIONS(1901), - [anon_sym_abstract] = ACTIONS(1901), - [anon_sym_interface] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [anon_sym_PIPE_RBRACE] = ACTIONS(1899), - [sym__automatic_semicolon] = ACTIONS(1899), - [sym_html_comment] = ACTIONS(5), - }, - [728] = { - [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_COMMA] = 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_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_SEMI] = ACTIONS(1873), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = 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(1875), - [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), - [anon_sym_PIPE_RBRACE] = ACTIONS(1873), - [sym__automatic_semicolon] = ACTIONS(1873), - [sym_html_comment] = ACTIONS(5), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_with] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_await] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_debugger] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_throw] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [sym_glimmer_opening_tag] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_delete] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_number] = ACTIONS(1687), - [sym_private_property_identifier] = ACTIONS(1687), - [sym_this] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_undefined] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_get] = ACTIONS(1689), - [anon_sym_set] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_private] = ACTIONS(1689), - [anon_sym_protected] = ACTIONS(1689), - [anon_sym_override] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_number] = ACTIONS(1689), - [anon_sym_boolean] = ACTIONS(1689), - [anon_sym_string] = ACTIONS(1689), - [anon_sym_symbol] = ACTIONS(1689), - [anon_sym_object] = ACTIONS(1689), - [anon_sym_abstract] = ACTIONS(1689), - [anon_sym_interface] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_PIPE_RBRACE] = ACTIONS(1687), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym_html_comment] = ACTIONS(5), - }, - [730] = { - [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_COMMA] = 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_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_SEMI] = ACTIONS(1873), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_finally] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = 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(1875), - [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), + [732] = { + [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_COMMA] = 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_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_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = 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), + [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), + [anon_sym_PIPE_RBRACE] = ACTIONS(1821), + [sym__automatic_semicolon] = ACTIONS(1821), [sym_html_comment] = ACTIONS(5), }, - [731] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2462), - [anon_sym_export] = ACTIONS(2464), + [733] = { + [sym__call_signature] = STATE(5455), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(904), [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2458), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -102559,36 +102765,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_readonly] = ACTIONS(2464), - [anon_sym_get] = ACTIONS(2464), - [anon_sym_set] = ACTIONS(2464), - [anon_sym_declare] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_protected] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_any] = ACTIONS(2464), - [anon_sym_number] = ACTIONS(2464), - [anon_sym_boolean] = ACTIONS(2464), - [anon_sym_string] = ACTIONS(2464), - [anon_sym_symbol] = ACTIONS(2464), - [anon_sym_object] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [734] = { + [ts_builtin_sym_end] = ACTIONS(1697), + [sym_identifier] = ACTIONS(1699), + [anon_sym_export] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1699), + [anon_sym_namespace] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_var] = ACTIONS(1699), + [anon_sym_let] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_debugger] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_throw] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_case] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1697), + [sym_glimmer_opening_tag] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1699), + [anon_sym_function] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1699), + [anon_sym_using] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1697), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1697), + [sym_number] = ACTIONS(1697), + [sym_private_property_identifier] = ACTIONS(1697), + [sym_this] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_null] = ACTIONS(1699), + [sym_undefined] = ACTIONS(1699), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_readonly] = ACTIONS(1699), + [anon_sym_get] = ACTIONS(1699), + [anon_sym_set] = ACTIONS(1699), + [anon_sym_declare] = ACTIONS(1699), + [anon_sym_public] = ACTIONS(1699), + [anon_sym_private] = ACTIONS(1699), + [anon_sym_protected] = ACTIONS(1699), + [anon_sym_override] = ACTIONS(1699), + [anon_sym_module] = ACTIONS(1699), + [anon_sym_any] = ACTIONS(1699), + [anon_sym_number] = ACTIONS(1699), + [anon_sym_boolean] = ACTIONS(1699), + [anon_sym_string] = ACTIONS(1699), + [anon_sym_symbol] = ACTIONS(1699), + [anon_sym_object] = ACTIONS(1699), + [anon_sym_abstract] = ACTIONS(1699), + [anon_sym_interface] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_PIPE_RBRACE] = ACTIONS(1697), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym_html_comment] = ACTIONS(5), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_namespace] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_typeof] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(1829), + [anon_sym_with] = ACTIONS(1829), + [anon_sym_var] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_switch] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_await] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_debugger] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_throw] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_case] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1827), + [sym_glimmer_opening_tag] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_function] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1829), + [anon_sym_using] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_SLASH] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1827), + [anon_sym_void] = ACTIONS(1829), + [anon_sym_delete] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1827), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [sym_private_property_identifier] = ACTIONS(1827), + [sym_this] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_true] = ACTIONS(1829), + [sym_false] = ACTIONS(1829), + [sym_null] = ACTIONS(1829), + [sym_undefined] = ACTIONS(1829), + [anon_sym_AT] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_readonly] = ACTIONS(1829), + [anon_sym_get] = ACTIONS(1829), + [anon_sym_set] = ACTIONS(1829), + [anon_sym_declare] = ACTIONS(1829), + [anon_sym_public] = ACTIONS(1829), + [anon_sym_private] = ACTIONS(1829), + [anon_sym_protected] = ACTIONS(1829), + [anon_sym_override] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_any] = ACTIONS(1829), + [anon_sym_number] = ACTIONS(1829), + [anon_sym_boolean] = ACTIONS(1829), + [anon_sym_string] = ACTIONS(1829), + [anon_sym_symbol] = ACTIONS(1829), + [anon_sym_object] = ACTIONS(1829), + [anon_sym_abstract] = ACTIONS(1829), + [anon_sym_interface] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [anon_sym_PIPE_RBRACE] = ACTIONS(1827), + [sym__automatic_semicolon] = ACTIONS(1827), + [sym_html_comment] = ACTIONS(5), + }, + [736] = { + [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_COMMA] = 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_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_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_catch] = ACTIONS(1823), + [anon_sym_finally] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), + }, + [737] = { + [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_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_SEMI] = ACTIONS(1831), + [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), + [anon_sym_PIPE_RBRACE] = ACTIONS(1831), + [sym__automatic_semicolon] = ACTIONS(1831), + [sym_html_comment] = ACTIONS(5), + }, + [738] = { + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2462), [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), @@ -102600,8 +103149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -102666,31 +103215,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym__call_signature] = STATE(5447), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2458), + [739] = { + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(897), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -102732,35 +103280,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_object] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_readonly] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_declare] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_protected] = ACTIONS(2464), + [anon_sym_override] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_any] = ACTIONS(2464), + [anon_sym_number] = ACTIONS(2464), + [anon_sym_boolean] = ACTIONS(2464), + [anon_sym_string] = ACTIONS(2464), + [anon_sym_symbol] = ACTIONS(2464), + [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [740] = { + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2462), [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), @@ -102772,8 +103321,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_EQ_GT] = ACTIONS(929), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -102838,203 +103387,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1909), - [anon_sym_type] = ACTIONS(1909), - [anon_sym_namespace] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_typeof] = ACTIONS(1909), - [anon_sym_import] = ACTIONS(1909), - [anon_sym_with] = ACTIONS(1909), - [anon_sym_var] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_switch] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_debugger] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_case] = ACTIONS(1909), - [anon_sym_yield] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1907), - [sym_glimmer_opening_tag] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_class] = ACTIONS(1909), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_function] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1909), - [anon_sym_using] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_SLASH] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_void] = ACTIONS(1909), - [anon_sym_delete] = ACTIONS(1909), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1907), - [sym_number] = ACTIONS(1907), - [sym_private_property_identifier] = ACTIONS(1907), - [sym_this] = ACTIONS(1909), - [sym_super] = ACTIONS(1909), - [sym_true] = ACTIONS(1909), - [sym_false] = ACTIONS(1909), - [sym_null] = ACTIONS(1909), - [sym_undefined] = ACTIONS(1909), - [anon_sym_AT] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_readonly] = ACTIONS(1909), - [anon_sym_get] = ACTIONS(1909), - [anon_sym_set] = ACTIONS(1909), - [anon_sym_declare] = ACTIONS(1909), - [anon_sym_public] = ACTIONS(1909), - [anon_sym_private] = ACTIONS(1909), - [anon_sym_protected] = ACTIONS(1909), - [anon_sym_override] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_any] = ACTIONS(1909), - [anon_sym_number] = ACTIONS(1909), - [anon_sym_boolean] = ACTIONS(1909), - [anon_sym_string] = ACTIONS(1909), - [anon_sym_symbol] = ACTIONS(1909), - [anon_sym_object] = ACTIONS(1909), - [anon_sym_abstract] = ACTIONS(1909), - [anon_sym_interface] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_PIPE_RBRACE] = ACTIONS(1907), - [sym__automatic_semicolon] = ACTIONS(1907), - [sym_html_comment] = ACTIONS(5), - }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1913), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), - [anon_sym_namespace] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(1913), - [anon_sym_import] = ACTIONS(1913), - [anon_sym_with] = ACTIONS(1913), - [anon_sym_var] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_switch] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_debugger] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_throw] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1913), - [anon_sym_yield] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1911), - [sym_glimmer_opening_tag] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_class] = ACTIONS(1913), - [anon_sym_async] = ACTIONS(1913), - [anon_sym_function] = ACTIONS(1913), - [anon_sym_new] = ACTIONS(1913), - [anon_sym_using] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1911), - [anon_sym_void] = ACTIONS(1913), - [anon_sym_delete] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1911), - [sym_number] = ACTIONS(1911), - [sym_private_property_identifier] = ACTIONS(1911), - [sym_this] = ACTIONS(1913), - [sym_super] = ACTIONS(1913), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_null] = ACTIONS(1913), - [sym_undefined] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(1911), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_readonly] = ACTIONS(1913), - [anon_sym_get] = ACTIONS(1913), - [anon_sym_set] = ACTIONS(1913), - [anon_sym_declare] = ACTIONS(1913), - [anon_sym_public] = ACTIONS(1913), - [anon_sym_private] = ACTIONS(1913), - [anon_sym_protected] = ACTIONS(1913), - [anon_sym_override] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_any] = ACTIONS(1913), - [anon_sym_number] = ACTIONS(1913), - [anon_sym_boolean] = ACTIONS(1913), - [anon_sym_string] = ACTIONS(1913), - [anon_sym_symbol] = ACTIONS(1913), - [anon_sym_object] = ACTIONS(1913), - [anon_sym_abstract] = ACTIONS(1913), - [anon_sym_interface] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_PIPE_RBRACE] = ACTIONS(1911), - [sym__automatic_semicolon] = ACTIONS(1911), + [741] = { + [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_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_SEMI] = ACTIONS(1831), + [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_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_html_comment] = ACTIONS(5), }, - [737] = { - [sym__call_signature] = STATE(5447), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2458), + [742] = { + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2472), + [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_EQ] = ACTIONS(967), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(933), + [anon_sym_of] = 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(2458), + [anon_sym_async] = ACTIONS(2474), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(973), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2474), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -103076,136 +103538,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_object] = ACTIONS(2458), + [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__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [738] = { - [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_COMMA] = 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_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_SEMI] = ACTIONS(1873), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = 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(1875), - [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), - [anon_sym_PIPE_RBRACE] = ACTIONS(1873), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym_html_comment] = ACTIONS(5), - }, - [739] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2462), - [anon_sym_export] = ACTIONS(2464), + [743] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(809), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2414), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -103247,215 +103623,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_readonly] = ACTIONS(2464), - [anon_sym_get] = ACTIONS(2464), - [anon_sym_set] = ACTIONS(2464), - [anon_sym_declare] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_protected] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_any] = ACTIONS(2464), - [anon_sym_number] = ACTIONS(2464), - [anon_sym_boolean] = ACTIONS(2464), - [anon_sym_string] = ACTIONS(2464), - [anon_sym_symbol] = ACTIONS(2464), - [anon_sym_object] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [740] = { - [sym__call_signature] = STATE(5447), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(906), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2458), - [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(2421), - [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(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_object] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [744] = { + [sym_statement_block] = STATE(841), + [ts_builtin_sym_end] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1717), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_var] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_debugger] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1715), + [sym_glimmer_opening_tag] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_function] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_using] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_delete] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_number] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_null] = ACTIONS(1717), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_get] = ACTIONS(1717), + [anon_sym_set] = ACTIONS(1717), + [anon_sym_declare] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_private] = ACTIONS(1717), + [anon_sym_protected] = ACTIONS(1717), + [anon_sym_override] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_number] = ACTIONS(1717), + [anon_sym_boolean] = ACTIONS(1717), + [anon_sym_string] = ACTIONS(1717), + [anon_sym_symbol] = ACTIONS(1717), + [anon_sym_object] = ACTIONS(1717), + [anon_sym_abstract] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1909), - [anon_sym_type] = ACTIONS(1909), - [anon_sym_namespace] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_typeof] = ACTIONS(1909), - [anon_sym_import] = ACTIONS(1909), - [anon_sym_with] = ACTIONS(1909), - [anon_sym_var] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_switch] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_debugger] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_case] = ACTIONS(1909), - [anon_sym_catch] = ACTIONS(1909), - [anon_sym_finally] = ACTIONS(1909), - [anon_sym_yield] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1907), - [sym_glimmer_opening_tag] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_class] = ACTIONS(1909), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_function] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1909), - [anon_sym_using] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_SLASH] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_void] = ACTIONS(1909), - [anon_sym_delete] = ACTIONS(1909), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1907), - [sym_number] = ACTIONS(1907), - [sym_private_property_identifier] = ACTIONS(1907), - [sym_this] = ACTIONS(1909), - [sym_super] = ACTIONS(1909), - [sym_true] = ACTIONS(1909), - [sym_false] = ACTIONS(1909), - [sym_null] = ACTIONS(1909), - [sym_undefined] = ACTIONS(1909), - [anon_sym_AT] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_readonly] = ACTIONS(1909), - [anon_sym_get] = ACTIONS(1909), - [anon_sym_set] = ACTIONS(1909), - [anon_sym_declare] = ACTIONS(1909), - [anon_sym_public] = ACTIONS(1909), - [anon_sym_private] = ACTIONS(1909), - [anon_sym_protected] = ACTIONS(1909), - [anon_sym_override] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_any] = ACTIONS(1909), - [anon_sym_number] = ACTIONS(1909), - [anon_sym_boolean] = ACTIONS(1909), - [anon_sym_string] = ACTIONS(1909), - [anon_sym_symbol] = ACTIONS(1909), - [anon_sym_object] = ACTIONS(1909), - [anon_sym_abstract] = ACTIONS(1909), - [anon_sym_interface] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), + [745] = { + [sym_statement_block] = STATE(841), + [ts_builtin_sym_end] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1717), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_var] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_debugger] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1715), + [sym_glimmer_opening_tag] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_function] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_using] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_delete] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_number] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_null] = ACTIONS(1717), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_get] = ACTIONS(1717), + [anon_sym_set] = ACTIONS(1717), + [anon_sym_declare] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_private] = ACTIONS(1717), + [anon_sym_protected] = ACTIONS(1717), + [anon_sym_override] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_number] = ACTIONS(1717), + [anon_sym_boolean] = ACTIONS(1717), + [anon_sym_string] = ACTIONS(1717), + [anon_sym_symbol] = ACTIONS(1717), + [anon_sym_object] = ACTIONS(1717), + [anon_sym_abstract] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), [sym_html_comment] = ACTIONS(5), }, - [742] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [746] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(853), - [anon_sym_of] = ACTIONS(856), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), @@ -103525,18 +103898,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym__call_signature] = STATE(5706), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), + [747] = { + [sym_finally_clause] = STATE(800), + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2484), + [anon_sym_type] = ACTIONS(2484), + [anon_sym_namespace] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2484), + [anon_sym_import] = ACTIONS(2484), + [anon_sym_with] = ACTIONS(2484), + [anon_sym_var] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_switch] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_debugger] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_throw] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2484), + [anon_sym_finally] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2482), + [sym_glimmer_opening_tag] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2484), + [anon_sym_async] = ACTIONS(2484), + [anon_sym_function] = ACTIONS(2484), + [anon_sym_new] = ACTIONS(2484), + [anon_sym_using] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_SLASH] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2484), + [anon_sym_delete] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2484), + [sym_super] = ACTIONS(2484), + [sym_true] = ACTIONS(2484), + [sym_false] = ACTIONS(2484), + [sym_null] = ACTIONS(2484), + [sym_undefined] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_readonly] = ACTIONS(2484), + [anon_sym_get] = ACTIONS(2484), + [anon_sym_set] = ACTIONS(2484), + [anon_sym_declare] = ACTIONS(2484), + [anon_sym_public] = ACTIONS(2484), + [anon_sym_private] = ACTIONS(2484), + [anon_sym_protected] = ACTIONS(2484), + [anon_sym_override] = ACTIONS(2484), + [anon_sym_module] = ACTIONS(2484), + [anon_sym_any] = ACTIONS(2484), + [anon_sym_number] = ACTIONS(2484), + [anon_sym_boolean] = ACTIONS(2484), + [anon_sym_string] = ACTIONS(2484), + [anon_sym_symbol] = ACTIONS(2484), + [anon_sym_object] = ACTIONS(2484), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [748] = { + [sym__call_signature] = STATE(5701), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2488), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(955), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), @@ -103544,11 +104002,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2488), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(959), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2488), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -103590,35 +104048,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_static] = ACTIONS(2488), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_declare] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_protected] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_any] = ACTIONS(2488), + [anon_sym_number] = ACTIONS(2488), + [anon_sym_boolean] = ACTIONS(2488), + [anon_sym_string] = ACTIONS(2488), + [anon_sym_symbol] = ACTIONS(2488), + [anon_sym_object] = ACTIONS(2488), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym__call_signature] = STATE(5447), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [749] = { + [sym__call_signature] = STATE(5455), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2456), [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2458), [anon_sym_let] = ACTIONS(2458), @@ -103631,7 +104089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(161), [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_new] = ACTIONS(2458), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -103695,188 +104153,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym_statement_block] = STATE(883), - [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(2476), - [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_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_SEMI] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_glimmer_opening_tag] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(2478), - [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(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_interface] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [sym_html_comment] = ACTIONS(5), - }, - [746] = { - [sym_statement_block] = STATE(883), - [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(2476), - [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_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_SEMI] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_glimmer_opening_tag] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(2480), - [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(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_interface] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [sym_html_comment] = ACTIONS(5), - }, - [747] = { - [sym__call_signature] = STATE(5706), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), + [750] = { + [sym__call_signature] = STATE(5701), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2488), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), @@ -103884,11 +104172,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2488), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(959), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2488), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -103930,50 +104218,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [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_static] = ACTIONS(2488), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_declare] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_protected] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_any] = ACTIONS(2488), + [anon_sym_number] = ACTIONS(2488), + [anon_sym_boolean] = ACTIONS(2488), + [anon_sym_string] = ACTIONS(2488), + [anon_sym_symbol] = ACTIONS(2488), + [anon_sym_object] = ACTIONS(2488), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym__call_signature] = STATE(5499), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2484), + [751] = { + [sym__call_signature] = STATE(5455), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2484), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = 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(2484), + [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2484), + [anon_sym_new] = ACTIONS(2458), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -104015,50 +104303,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_readonly] = ACTIONS(2484), - [anon_sym_get] = ACTIONS(2484), - [anon_sym_set] = ACTIONS(2484), - [anon_sym_declare] = ACTIONS(2484), - [anon_sym_public] = ACTIONS(2484), - [anon_sym_private] = ACTIONS(2484), - [anon_sym_protected] = ACTIONS(2484), - [anon_sym_override] = ACTIONS(2484), - [anon_sym_module] = ACTIONS(2484), - [anon_sym_any] = ACTIONS(2484), - [anon_sym_number] = ACTIONS(2484), - [anon_sym_boolean] = ACTIONS(2484), - [anon_sym_string] = ACTIONS(2484), - [anon_sym_symbol] = ACTIONS(2484), - [anon_sym_object] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym__call_signature] = STATE(5447), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2458), + [752] = { + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2472), + [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = 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(2458), + [anon_sym_async] = ACTIONS(2474), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(906), + [anon_sym_EQ_GT] = ACTIONS(973), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2474), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -104100,50 +104388,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_object] = ACTIONS(2458), + [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__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym__call_signature] = STATE(5499), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2484), + [753] = { + [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_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_SEMI] = ACTIONS(1839), + [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(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_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), + [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), + }, + [754] = { + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_default] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_typeof] = ACTIONS(1765), + [anon_sym_import] = ACTIONS(1765), + [anon_sym_with] = ACTIONS(1765), + [anon_sym_var] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_switch] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_await] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_debugger] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_throw] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_case] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1763), + [sym_glimmer_opening_tag] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1763), + [anon_sym_class] = ACTIONS(1765), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1765), + [anon_sym_new] = ACTIONS(1765), + [anon_sym_using] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_void] = ACTIONS(1765), + [anon_sym_delete] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1763), + [sym_number] = ACTIONS(1763), + [sym_private_property_identifier] = ACTIONS(1763), + [sym_this] = ACTIONS(1765), + [sym_super] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_undefined] = ACTIONS(1765), + [anon_sym_AT] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(1765), + [anon_sym_get] = ACTIONS(1765), + [anon_sym_set] = ACTIONS(1765), + [anon_sym_declare] = ACTIONS(1765), + [anon_sym_public] = ACTIONS(1765), + [anon_sym_private] = ACTIONS(1765), + [anon_sym_protected] = ACTIONS(1765), + [anon_sym_override] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_any] = ACTIONS(1765), + [anon_sym_number] = ACTIONS(1765), + [anon_sym_boolean] = ACTIONS(1765), + [anon_sym_string] = ACTIONS(1765), + [anon_sym_symbol] = ACTIONS(1765), + [anon_sym_object] = ACTIONS(1765), + [anon_sym_abstract] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(1771), + [sym_html_comment] = ACTIONS(5), + }, + [755] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2484), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [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(2484), + [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(159), [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2484), + [anon_sym_new] = ACTIONS(2414), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), [anon_sym_STAR_EQ] = ACTIONS(167), @@ -104185,127 +104640,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_readonly] = ACTIONS(2484), - [anon_sym_get] = ACTIONS(2484), - [anon_sym_set] = ACTIONS(2484), - [anon_sym_declare] = ACTIONS(2484), - [anon_sym_public] = ACTIONS(2484), - [anon_sym_private] = ACTIONS(2484), - [anon_sym_protected] = ACTIONS(2484), - [anon_sym_override] = ACTIONS(2484), - [anon_sym_module] = ACTIONS(2484), - [anon_sym_any] = ACTIONS(2484), - [anon_sym_number] = ACTIONS(2484), - [anon_sym_boolean] = ACTIONS(2484), - [anon_sym_string] = ACTIONS(2484), - [anon_sym_symbol] = ACTIONS(2484), - [anon_sym_object] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [751] = { - [sym_finally_clause] = STATE(907), - [ts_builtin_sym_end] = ACTIONS(2486), - [sym_identifier] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_typeof] = ACTIONS(2488), - [anon_sym_import] = ACTIONS(2488), - [anon_sym_with] = ACTIONS(2488), - [anon_sym_var] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_await] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_debugger] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2486), - [anon_sym_case] = ACTIONS(2488), - [anon_sym_finally] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2486), - [sym_glimmer_opening_tag] = ACTIONS(2486), - [anon_sym_DQUOTE] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_function] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_using] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_SLASH] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_TILDE] = ACTIONS(2486), - [anon_sym_void] = ACTIONS(2488), - [anon_sym_delete] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2486), - [anon_sym_DASH_DASH] = ACTIONS(2486), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2486), - [sym_number] = ACTIONS(2486), - [sym_private_property_identifier] = ACTIONS(2486), - [sym_this] = ACTIONS(2488), - [sym_super] = ACTIONS(2488), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_undefined] = ACTIONS(2488), - [anon_sym_AT] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(2488), - [anon_sym_set] = ACTIONS(2488), - [anon_sym_declare] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_protected] = ACTIONS(2488), - [anon_sym_override] = ACTIONS(2488), - [anon_sym_module] = ACTIONS(2488), - [anon_sym_any] = ACTIONS(2488), - [anon_sym_number] = ACTIONS(2488), - [anon_sym_boolean] = ACTIONS(2488), - [anon_sym_string] = ACTIONS(2488), - [anon_sym_symbol] = ACTIONS(2488), - [anon_sym_object] = ACTIONS(2488), - [anon_sym_abstract] = ACTIONS(2488), - [anon_sym_interface] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [sym_html_comment] = ACTIONS(5), - }, - [752] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [756] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1049), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), @@ -104375,7 +104744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [753] = { + [757] = { + [sym_else_clause] = STATE(829), [ts_builtin_sym_end] = ACTIONS(2490), [sym_identifier] = ACTIONS(2492), [anon_sym_export] = ACTIONS(2492), @@ -104391,7 +104761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2492), [anon_sym_const] = ACTIONS(2492), [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_else] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2494), [anon_sym_if] = ACTIONS(2492), [anon_sym_switch] = ACTIONS(2492), [anon_sym_for] = ACTIONS(2492), @@ -104407,7 +104777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2492), [anon_sym_SEMI] = ACTIONS(2490), [anon_sym_case] = ACTIONS(2492), - [anon_sym_finally] = ACTIONS(2492), [anon_sym_yield] = ACTIONS(2492), [anon_sym_LBRACK] = ACTIONS(2490), [sym_glimmer_opening_tag] = ACTIONS(2490), @@ -104459,351 +104828,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2492), [sym_html_comment] = ACTIONS(5), }, - [754] = { - [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_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_SEMI] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [sym_glimmer_opening_tag] = 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(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), - [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), - }, - [755] = { - [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_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_SEMI] = ACTIONS(1799), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [756] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2414), - [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(2421), - [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(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [757] = { - [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_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_SEMI] = ACTIONS(1839), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [sym_glimmer_opening_tag] = 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(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_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym__automatic_semicolon] = ACTIONS(1847), + [758] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [sym_glimmer_opening_tag] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [sym__automatic_semicolon] = ACTIONS(1801), [sym_html_comment] = ACTIONS(5), }, - [758] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [759] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ] = ACTIONS(1039), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -104879,351 +104996,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [759] = { - [sym_statement_block] = STATE(883), - [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(2476), - [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_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_SEMI] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_glimmer_opening_tag] = ACTIONS(1699), - [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(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_interface] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [sym_html_comment] = ACTIONS(5), - }, [760] = { - [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_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_SEMI] = ACTIONS(1925), - [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_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = 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), - [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(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(1879), [sym_html_comment] = ACTIONS(5), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_default] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_typeof] = ACTIONS(1931), - [anon_sym_import] = ACTIONS(1931), - [anon_sym_with] = ACTIONS(1931), - [anon_sym_var] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_switch] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_debugger] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_throw] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_case] = ACTIONS(1931), - [anon_sym_yield] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1929), - [sym_glimmer_opening_tag] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_SQUOTE] = ACTIONS(1929), - [anon_sym_class] = ACTIONS(1931), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_using] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_SLASH] = ACTIONS(1931), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_TILDE] = ACTIONS(1929), - [anon_sym_void] = ACTIONS(1931), - [anon_sym_delete] = ACTIONS(1931), - [anon_sym_PLUS_PLUS] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1929), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1929), - [sym_number] = ACTIONS(1929), - [sym_private_property_identifier] = ACTIONS(1929), - [sym_this] = ACTIONS(1931), - [sym_super] = ACTIONS(1931), - [sym_true] = ACTIONS(1931), - [sym_false] = ACTIONS(1931), - [sym_null] = ACTIONS(1931), - [sym_undefined] = ACTIONS(1931), - [anon_sym_AT] = ACTIONS(1929), - [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), - [anon_sym_abstract] = ACTIONS(1931), - [anon_sym_interface] = ACTIONS(1931), - [anon_sym_enum] = ACTIONS(1931), + [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_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_SEMI] = ACTIONS(1909), + [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), + [sym__automatic_semicolon] = ACTIONS(1917), [sym_html_comment] = ACTIONS(5), }, [762] = { - [ts_builtin_sym_end] = ACTIONS(1935), - [sym_identifier] = ACTIONS(1937), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_default] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_namespace] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_typeof] = ACTIONS(1937), - [anon_sym_import] = ACTIONS(1937), - [anon_sym_with] = ACTIONS(1937), - [anon_sym_var] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_switch] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_await] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_debugger] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_throw] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_case] = ACTIONS(1937), - [anon_sym_yield] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1935), - [sym_glimmer_opening_tag] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [anon_sym_SQUOTE] = ACTIONS(1935), - [anon_sym_class] = ACTIONS(1937), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_function] = ACTIONS(1937), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_using] = ACTIONS(1937), - [anon_sym_PLUS] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_SLASH] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_void] = ACTIONS(1937), - [anon_sym_delete] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1935), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1935), - [sym_number] = ACTIONS(1935), - [sym_private_property_identifier] = ACTIONS(1935), - [sym_this] = ACTIONS(1937), - [sym_super] = ACTIONS(1937), - [sym_true] = ACTIONS(1937), - [sym_false] = ACTIONS(1937), - [sym_null] = ACTIONS(1937), - [sym_undefined] = ACTIONS(1937), - [anon_sym_AT] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_readonly] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), - [anon_sym_declare] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_private] = ACTIONS(1937), - [anon_sym_protected] = ACTIONS(1937), - [anon_sym_override] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_any] = ACTIONS(1937), - [anon_sym_number] = ACTIONS(1937), - [anon_sym_boolean] = ACTIONS(1937), - [anon_sym_string] = ACTIONS(1937), - [anon_sym_symbol] = ACTIONS(1937), - [anon_sym_object] = ACTIONS(1937), - [anon_sym_abstract] = ACTIONS(1937), - [anon_sym_interface] = ACTIONS(1937), - [anon_sym_enum] = ACTIONS(1937), - [sym__automatic_semicolon] = ACTIONS(1943), - [sym_html_comment] = ACTIONS(5), - }, - [763] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(1041), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -105299,99 +105248,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2496), - [anon_sym_export] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_type] = ACTIONS(2496), - [anon_sym_namespace] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_typeof] = ACTIONS(2496), - [anon_sym_import] = ACTIONS(2496), - [anon_sym_with] = ACTIONS(2496), - [anon_sym_var] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_await] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_debugger] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_case] = ACTIONS(2496), - [anon_sym_yield] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2494), - [sym_glimmer_opening_tag] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_async] = ACTIONS(2496), - [anon_sym_function] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_SLASH] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_void] = ACTIONS(2496), - [anon_sym_delete] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2494), - [sym_number] = ACTIONS(2494), - [sym_private_property_identifier] = ACTIONS(2494), - [sym_this] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_undefined] = ACTIONS(2496), - [anon_sym_AT] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_readonly] = ACTIONS(2496), - [anon_sym_get] = ACTIONS(2496), - [anon_sym_set] = ACTIONS(2496), - [anon_sym_declare] = ACTIONS(2496), - [anon_sym_public] = ACTIONS(2496), - [anon_sym_private] = ACTIONS(2496), - [anon_sym_protected] = ACTIONS(2496), - [anon_sym_override] = ACTIONS(2496), - [anon_sym_module] = ACTIONS(2496), - [anon_sym_any] = ACTIONS(2496), - [anon_sym_number] = ACTIONS(2496), - [anon_sym_boolean] = ACTIONS(2496), - [anon_sym_string] = ACTIONS(2496), - [anon_sym_symbol] = ACTIONS(2496), - [anon_sym_object] = ACTIONS(2496), - [anon_sym_abstract] = ACTIONS(2496), - [anon_sym_interface] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [sym__automatic_semicolon] = ACTIONS(2494), - [sym_html_comment] = ACTIONS(5), - }, - [765] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [763] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(1037), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -105467,176 +105332,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [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_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_SEMI] = ACTIONS(2502), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2498), - [sym_glimmer_opening_tag] = 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(2500), - [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__automatic_semicolon] = ACTIONS(2502), + [764] = { + [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_RPAREN] = 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_SEMI] = ACTIONS(2496), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_yield] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2496), + [sym_glimmer_opening_tag] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), }, - [767] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2414), - [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(2421), - [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(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [765] = { + [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_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_SEMI] = ACTIONS(2500), + [anon_sym_case] = ACTIONS(2502), + [anon_sym_yield] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2500), + [sym_glimmer_opening_tag] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), }, - [768] = { - [sym_else_clause] = STATE(902), + [766] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [sym_glimmer_opening_tag] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym__automatic_semicolon] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), + }, + [767] = { [ts_builtin_sym_end] = ACTIONS(2504), [sym_identifier] = ACTIONS(2506), [anon_sym_export] = ACTIONS(2506), @@ -105652,7 +105600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2506), [anon_sym_const] = ACTIONS(2506), [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2506), [anon_sym_if] = ACTIONS(2506), [anon_sym_switch] = ACTIONS(2506), [anon_sym_for] = ACTIONS(2506), @@ -105668,6 +105616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2506), [anon_sym_SEMI] = ACTIONS(2504), [anon_sym_case] = ACTIONS(2506), + [anon_sym_finally] = ACTIONS(2506), [anon_sym_yield] = ACTIONS(2506), [anon_sym_LBRACK] = ACTIONS(2504), [sym_glimmer_opening_tag] = ACTIONS(2504), @@ -105719,183 +105668,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2506), [sym_html_comment] = ACTIONS(5), }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2512), - [anon_sym_export] = ACTIONS(2512), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_namespace] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_typeof] = ACTIONS(2512), - [anon_sym_import] = ACTIONS(2512), - [anon_sym_with] = ACTIONS(2512), - [anon_sym_var] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_switch] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_await] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_debugger] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_throw] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2512), - [anon_sym_finally] = ACTIONS(2512), - [anon_sym_yield] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2510), - [sym_glimmer_opening_tag] = ACTIONS(2510), - [anon_sym_DQUOTE] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2510), - [anon_sym_class] = ACTIONS(2512), - [anon_sym_async] = ACTIONS(2512), - [anon_sym_function] = ACTIONS(2512), - [anon_sym_new] = ACTIONS(2512), - [anon_sym_using] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2512), - [anon_sym_SLASH] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2510), - [anon_sym_void] = ACTIONS(2512), - [anon_sym_delete] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2510), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2510), - [sym_number] = ACTIONS(2510), - [sym_private_property_identifier] = ACTIONS(2510), - [sym_this] = ACTIONS(2512), - [sym_super] = ACTIONS(2512), - [sym_true] = ACTIONS(2512), - [sym_false] = ACTIONS(2512), - [sym_null] = ACTIONS(2512), - [sym_undefined] = ACTIONS(2512), - [anon_sym_AT] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_readonly] = ACTIONS(2512), - [anon_sym_get] = ACTIONS(2512), - [anon_sym_set] = ACTIONS(2512), - [anon_sym_declare] = ACTIONS(2512), - [anon_sym_public] = ACTIONS(2512), - [anon_sym_private] = ACTIONS(2512), - [anon_sym_protected] = ACTIONS(2512), - [anon_sym_override] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_any] = ACTIONS(2512), - [anon_sym_number] = ACTIONS(2512), - [anon_sym_boolean] = ACTIONS(2512), - [anon_sym_string] = ACTIONS(2512), - [anon_sym_symbol] = ACTIONS(2512), - [anon_sym_object] = ACTIONS(2512), - [anon_sym_abstract] = ACTIONS(2512), - [anon_sym_interface] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), + [768] = { + [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_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_SEMI] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2510), + [anon_sym_yield] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2508), + [sym_glimmer_opening_tag] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [anon_sym_SQUOTE] = 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), + [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(2508), [sym_html_comment] = ACTIONS(5), }, - [770] = { - [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_namespace] = ACTIONS(1733), - [anon_sym_LBRACE] = 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(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_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_SEMI] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [sym_glimmer_opening_tag] = 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_new] = ACTIONS(1733), - [anon_sym_using] = ACTIONS(1733), - [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_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_interface] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [sym__automatic_semicolon] = ACTIONS(1739), + [769] = { + [ts_builtin_sym_end] = ACTIONS(2512), + [sym_identifier] = ACTIONS(2514), + [anon_sym_export] = ACTIONS(2514), + [anon_sym_default] = ACTIONS(2514), + [anon_sym_type] = ACTIONS(2514), + [anon_sym_namespace] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_typeof] = ACTIONS(2514), + [anon_sym_import] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2514), + [anon_sym_var] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2514), + [anon_sym_const] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_switch] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_await] = ACTIONS(2514), + [anon_sym_while] = ACTIONS(2514), + [anon_sym_do] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_debugger] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_throw] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2514), + [anon_sym_finally] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2512), + [sym_glimmer_opening_tag] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_class] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2514), + [anon_sym_using] = ACTIONS(2514), + [anon_sym_PLUS] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_SLASH] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(2514), + [anon_sym_delete] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2512), + [anon_sym_DASH_DASH] = ACTIONS(2512), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2512), + [sym_number] = ACTIONS(2512), + [sym_private_property_identifier] = ACTIONS(2512), + [sym_this] = ACTIONS(2514), + [sym_super] = ACTIONS(2514), + [sym_true] = ACTIONS(2514), + [sym_false] = ACTIONS(2514), + [sym_null] = ACTIONS(2514), + [sym_undefined] = ACTIONS(2514), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2514), + [anon_sym_readonly] = ACTIONS(2514), + [anon_sym_get] = ACTIONS(2514), + [anon_sym_set] = ACTIONS(2514), + [anon_sym_declare] = ACTIONS(2514), + [anon_sym_public] = ACTIONS(2514), + [anon_sym_private] = ACTIONS(2514), + [anon_sym_protected] = ACTIONS(2514), + [anon_sym_override] = ACTIONS(2514), + [anon_sym_module] = ACTIONS(2514), + [anon_sym_any] = ACTIONS(2514), + [anon_sym_number] = ACTIONS(2514), + [anon_sym_boolean] = ACTIONS(2514), + [anon_sym_string] = ACTIONS(2514), + [anon_sym_symbol] = ACTIONS(2514), + [anon_sym_object] = ACTIONS(2514), + [anon_sym_abstract] = ACTIONS(2514), + [anon_sym_interface] = ACTIONS(2514), + [anon_sym_enum] = ACTIONS(2514), [sym_html_comment] = ACTIONS(5), }, - [771] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [770] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1045), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -105971,99 +105920,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [772] = { - [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_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_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_SEMI] = ACTIONS(1853), - [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), - [sym__automatic_semicolon] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [773] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [771] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ] = ACTIONS(1047), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -106139,99 +106004,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, + [772] = { + [ts_builtin_sym_end] = ACTIONS(2516), + [sym_identifier] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_default] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_typeof] = ACTIONS(2518), + [anon_sym_import] = ACTIONS(2518), + [anon_sym_with] = ACTIONS(2518), + [anon_sym_var] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_await] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_debugger] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_throw] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2518), + [anon_sym_finally] = ACTIONS(2518), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2516), + [sym_glimmer_opening_tag] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2516), + [anon_sym_SQUOTE] = ACTIONS(2516), + [anon_sym_class] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_function] = ACTIONS(2518), + [anon_sym_new] = ACTIONS(2518), + [anon_sym_using] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2516), + [anon_sym_void] = ACTIONS(2518), + [anon_sym_delete] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2516), + [anon_sym_DASH_DASH] = ACTIONS(2516), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2516), + [sym_number] = ACTIONS(2516), + [sym_private_property_identifier] = ACTIONS(2516), + [sym_this] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_true] = ACTIONS(2518), + [sym_false] = ACTIONS(2518), + [sym_null] = ACTIONS(2518), + [sym_undefined] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_readonly] = ACTIONS(2518), + [anon_sym_get] = ACTIONS(2518), + [anon_sym_set] = ACTIONS(2518), + [anon_sym_declare] = ACTIONS(2518), + [anon_sym_public] = ACTIONS(2518), + [anon_sym_private] = ACTIONS(2518), + [anon_sym_protected] = ACTIONS(2518), + [anon_sym_override] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_any] = ACTIONS(2518), + [anon_sym_number] = ACTIONS(2518), + [anon_sym_boolean] = ACTIONS(2518), + [anon_sym_string] = ACTIONS(2518), + [anon_sym_symbol] = ACTIONS(2518), + [anon_sym_object] = ACTIONS(2518), + [anon_sym_abstract] = ACTIONS(2518), + [anon_sym_interface] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + [sym_html_comment] = ACTIONS(5), + }, + [773] = { + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_export] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_namespace] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_typeof] = ACTIONS(1921), + [anon_sym_import] = ACTIONS(1921), + [anon_sym_with] = ACTIONS(1921), + [anon_sym_var] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_switch] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_await] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_debugger] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_throw] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_case] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1919), + [sym_glimmer_opening_tag] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_function] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_SLASH] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_void] = ACTIONS(1921), + [anon_sym_delete] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1919), + [sym_number] = ACTIONS(1919), + [sym_private_property_identifier] = ACTIONS(1919), + [sym_this] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_true] = ACTIONS(1921), + [sym_false] = ACTIONS(1921), + [sym_null] = ACTIONS(1921), + [sym_undefined] = ACTIONS(1921), + [anon_sym_AT] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_readonly] = ACTIONS(1921), + [anon_sym_get] = ACTIONS(1921), + [anon_sym_set] = ACTIONS(1921), + [anon_sym_declare] = ACTIONS(1921), + [anon_sym_public] = ACTIONS(1921), + [anon_sym_private] = ACTIONS(1921), + [anon_sym_protected] = ACTIONS(1921), + [anon_sym_override] = ACTIONS(1921), + [anon_sym_module] = ACTIONS(1921), + [anon_sym_any] = ACTIONS(1921), + [anon_sym_number] = ACTIONS(1921), + [anon_sym_boolean] = ACTIONS(1921), + [anon_sym_string] = ACTIONS(1921), + [anon_sym_symbol] = ACTIONS(1921), + [anon_sym_object] = ACTIONS(1921), + [anon_sym_abstract] = ACTIONS(1921), + [anon_sym_interface] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [sym__automatic_semicolon] = ACTIONS(1927), + [sym_html_comment] = ACTIONS(5), + }, [774] = { - [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_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_SEMI] = ACTIONS(1877), - [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), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_typeof] = ACTIONS(1931), + [anon_sym_import] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + [anon_sym_var] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_debugger] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_yield] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1929), + [sym_glimmer_opening_tag] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_function] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_SLASH] = ACTIONS(1931), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_void] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1929), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1929), + [sym_number] = ACTIONS(1929), + [sym_private_property_identifier] = ACTIONS(1929), + [sym_this] = ACTIONS(1931), + [sym_super] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [sym_undefined] = ACTIONS(1931), + [anon_sym_AT] = ACTIONS(1929), + [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), + [anon_sym_abstract] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [sym__automatic_semicolon] = ACTIONS(1937), [sym_html_comment] = ACTIONS(5), }, [775] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [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_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_SEMI] = ACTIONS(1813), + [anon_sym_case] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1813), + [sym_glimmer_opening_tag] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1815), + [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(1815), + [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_html_comment] = ACTIONS(5), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1941), + [anon_sym_export] = ACTIONS(1941), + [anon_sym_default] = ACTIONS(1941), + [anon_sym_type] = ACTIONS(1941), + [anon_sym_namespace] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_typeof] = ACTIONS(1941), + [anon_sym_import] = ACTIONS(1941), + [anon_sym_with] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_else] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_switch] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_await] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_debugger] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_throw] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_case] = ACTIONS(1941), + [anon_sym_yield] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1939), + [sym_glimmer_opening_tag] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [anon_sym_SQUOTE] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1941), + [anon_sym_function] = ACTIONS(1941), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_using] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_void] = ACTIONS(1941), + [anon_sym_delete] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1939), + [sym_number] = ACTIONS(1939), + [sym_private_property_identifier] = ACTIONS(1939), + [sym_this] = ACTIONS(1941), + [sym_super] = ACTIONS(1941), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_null] = ACTIONS(1941), + [sym_undefined] = ACTIONS(1941), + [anon_sym_AT] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1941), + [anon_sym_readonly] = ACTIONS(1941), + [anon_sym_get] = ACTIONS(1941), + [anon_sym_set] = ACTIONS(1941), + [anon_sym_declare] = ACTIONS(1941), + [anon_sym_public] = ACTIONS(1941), + [anon_sym_private] = ACTIONS(1941), + [anon_sym_protected] = ACTIONS(1941), + [anon_sym_override] = ACTIONS(1941), + [anon_sym_module] = ACTIONS(1941), + [anon_sym_any] = ACTIONS(1941), + [anon_sym_number] = ACTIONS(1941), + [anon_sym_boolean] = ACTIONS(1941), + [anon_sym_string] = ACTIONS(1941), + [anon_sym_symbol] = ACTIONS(1941), + [anon_sym_object] = ACTIONS(1941), + [anon_sym_abstract] = ACTIONS(1941), + [anon_sym_interface] = ACTIONS(1941), + [anon_sym_enum] = ACTIONS(1941), + [sym__automatic_semicolon] = ACTIONS(1947), + [sym_html_comment] = ACTIONS(5), + }, + [777] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(1035), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -106307,15 +106508,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [776] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [778] = { + [sym_statement_block] = STATE(841), + [ts_builtin_sym_end] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1717), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_var] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_switch] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_debugger] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1715), + [sym_glimmer_opening_tag] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_function] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_using] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_delete] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_number] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_null] = ACTIONS(1717), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_get] = ACTIONS(1717), + [anon_sym_set] = ACTIONS(1717), + [anon_sym_declare] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_private] = ACTIONS(1717), + [anon_sym_protected] = ACTIONS(1717), + [anon_sym_override] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_number] = ACTIONS(1717), + [anon_sym_boolean] = ACTIONS(1717), + [anon_sym_string] = ACTIONS(1717), + [anon_sym_symbol] = ACTIONS(1717), + [anon_sym_object] = ACTIONS(1717), + [anon_sym_abstract] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [sym_html_comment] = ACTIONS(5), + }, + [779] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(979), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -106391,183 +106676,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [777] = { - [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_RPAREN] = 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_SEMI] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2516), - [anon_sym_yield] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2514), - [sym_glimmer_opening_tag] = 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(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), - [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), + [780] = { + [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_RPAREN] = 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_SEMI] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2520), + [sym_glimmer_opening_tag] = 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(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), + [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), }, - [778] = { - [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_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_SEMI] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1741), - [sym_glimmer_opening_tag] = 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(1743), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_void] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [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), + [781] = { + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_typeof] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_with] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_await] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_debugger] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_yield] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [sym_glimmer_opening_tag] = ACTIONS(1753), + [anon_sym_DQUOTE] = ACTIONS(1753), + [anon_sym_SQUOTE] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_async] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_void] = ACTIONS(1755), + [anon_sym_delete] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1753), + [sym_number] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1753), + [sym_this] = ACTIONS(1755), + [sym_super] = ACTIONS(1755), + [sym_true] = ACTIONS(1755), + [sym_false] = ACTIONS(1755), + [sym_null] = ACTIONS(1755), + [sym_undefined] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_readonly] = ACTIONS(1755), + [anon_sym_get] = ACTIONS(1755), + [anon_sym_set] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_protected] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_any] = ACTIONS(1755), + [anon_sym_number] = ACTIONS(1755), + [anon_sym_boolean] = ACTIONS(1755), + [anon_sym_string] = ACTIONS(1755), + [anon_sym_symbol] = ACTIONS(1755), + [anon_sym_object] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [sym__automatic_semicolon] = ACTIONS(1761), [sym_html_comment] = ACTIONS(5), }, - [779] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [782] = { + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(981), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -106643,435 +106928,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(1891), - [anon_sym_import] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), - [anon_sym_var] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_debugger] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1889), - [sym_glimmer_opening_tag] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_function] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_void] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1889), - [sym_number] = ACTIONS(1889), - [sym_private_property_identifier] = ACTIONS(1889), - [sym_this] = ACTIONS(1891), - [sym_super] = ACTIONS(1891), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_undefined] = ACTIONS(1891), - [anon_sym_AT] = ACTIONS(1889), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_readonly] = ACTIONS(1891), - [anon_sym_get] = ACTIONS(1891), - [anon_sym_set] = ACTIONS(1891), - [anon_sym_declare] = ACTIONS(1891), - [anon_sym_public] = ACTIONS(1891), - [anon_sym_private] = ACTIONS(1891), - [anon_sym_protected] = ACTIONS(1891), - [anon_sym_override] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_any] = ACTIONS(1891), - [anon_sym_number] = ACTIONS(1891), - [anon_sym_boolean] = ACTIONS(1891), - [anon_sym_string] = ACTIONS(1891), - [anon_sym_symbol] = ACTIONS(1891), - [anon_sym_object] = ACTIONS(1891), - [anon_sym_abstract] = ACTIONS(1891), - [anon_sym_interface] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_identifier] = ACTIONS(1865), - [anon_sym_export] = ACTIONS(1865), - [anon_sym_default] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_typeof] = ACTIONS(1865), - [anon_sym_import] = ACTIONS(1865), - [anon_sym_with] = ACTIONS(1865), - [anon_sym_var] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_switch] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_await] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_do] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_debugger] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_throw] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [sym_glimmer_opening_tag] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [anon_sym_SQUOTE] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1865), - [anon_sym_async] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1865), - [anon_sym_using] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_SLASH] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_void] = ACTIONS(1865), - [anon_sym_delete] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1863), - [sym_number] = ACTIONS(1863), - [sym_private_property_identifier] = ACTIONS(1863), - [sym_this] = ACTIONS(1865), - [sym_super] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_null] = ACTIONS(1865), - [sym_undefined] = ACTIONS(1865), - [anon_sym_AT] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1865), - [anon_sym_readonly] = ACTIONS(1865), - [anon_sym_get] = ACTIONS(1865), - [anon_sym_set] = ACTIONS(1865), - [anon_sym_declare] = ACTIONS(1865), - [anon_sym_public] = ACTIONS(1865), - [anon_sym_private] = ACTIONS(1865), - [anon_sym_protected] = ACTIONS(1865), - [anon_sym_override] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_any] = ACTIONS(1865), - [anon_sym_number] = ACTIONS(1865), - [anon_sym_boolean] = ACTIONS(1865), - [anon_sym_string] = ACTIONS(1865), - [anon_sym_symbol] = ACTIONS(1865), - [anon_sym_object] = ACTIONS(1865), - [anon_sym_abstract] = ACTIONS(1865), - [anon_sym_interface] = ACTIONS(1865), - [anon_sym_enum] = ACTIONS(1865), - [sym__automatic_semicolon] = ACTIONS(1871), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_namespace] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_typeof] = ACTIONS(2520), - [anon_sym_import] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_var] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_await] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_debugger] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_throw] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [sym_glimmer_opening_tag] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_using] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_void] = ACTIONS(2520), - [anon_sym_delete] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2518), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2518), - [sym_number] = ACTIONS(2518), - [sym_private_property_identifier] = ACTIONS(2518), - [sym_this] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_true] = ACTIONS(2520), - [sym_false] = ACTIONS(2520), - [sym_null] = ACTIONS(2520), - [sym_undefined] = ACTIONS(2520), - [anon_sym_AT] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_readonly] = ACTIONS(2520), - [anon_sym_get] = ACTIONS(2520), - [anon_sym_set] = ACTIONS(2520), - [anon_sym_declare] = ACTIONS(2520), - [anon_sym_public] = ACTIONS(2520), - [anon_sym_private] = ACTIONS(2520), - [anon_sym_protected] = ACTIONS(2520), - [anon_sym_override] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_any] = ACTIONS(2520), - [anon_sym_number] = ACTIONS(2520), - [anon_sym_boolean] = ACTIONS(2520), - [anon_sym_string] = ACTIONS(2520), - [anon_sym_symbol] = ACTIONS(2520), - [anon_sym_object] = ACTIONS(2520), - [anon_sym_abstract] = ACTIONS(2520), - [anon_sym_interface] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [sym_html_comment] = ACTIONS(5), - }, [783] = { - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_export] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_namespace] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_typeof] = ACTIONS(2524), - [anon_sym_import] = ACTIONS(2524), - [anon_sym_with] = ACTIONS(2524), - [anon_sym_var] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_switch] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_await] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_debugger] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_throw] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2524), - [anon_sym_finally] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2522), - [sym_glimmer_opening_tag] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_function] = ACTIONS(2524), - [anon_sym_new] = ACTIONS(2524), - [anon_sym_using] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_SLASH] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_void] = ACTIONS(2524), - [anon_sym_delete] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2522), - [sym_number] = ACTIONS(2522), - [sym_private_property_identifier] = ACTIONS(2522), - [sym_this] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_true] = ACTIONS(2524), - [sym_false] = ACTIONS(2524), - [sym_null] = ACTIONS(2524), - [sym_undefined] = ACTIONS(2524), - [anon_sym_AT] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_readonly] = ACTIONS(2524), - [anon_sym_get] = ACTIONS(2524), - [anon_sym_set] = ACTIONS(2524), - [anon_sym_declare] = ACTIONS(2524), - [anon_sym_public] = ACTIONS(2524), - [anon_sym_private] = ACTIONS(2524), - [anon_sym_protected] = ACTIONS(2524), - [anon_sym_override] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_any] = ACTIONS(2524), - [anon_sym_number] = ACTIONS(2524), - [anon_sym_boolean] = ACTIONS(2524), - [anon_sym_string] = ACTIONS(2524), - [anon_sym_symbol] = ACTIONS(2524), - [anon_sym_object] = ACTIONS(2524), - [anon_sym_abstract] = ACTIONS(2524), - [anon_sym_interface] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [sym_html_comment] = ACTIONS(5), - }, - [784] = { - [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_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_SEMI] = ACTIONS(1915), - [anon_sym_case] = ACTIONS(1917), - [anon_sym_yield] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [sym_glimmer_opening_tag] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = 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), - [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_html_comment] = ACTIONS(5), - }, - [785] = { - [sym__call_signature] = STATE(5737), - [sym_formal_parameters] = STATE(3818), - [sym_type_parameters] = STATE(5213), + [sym__call_signature] = STATE(5688), + [sym_formal_parameters] = STATE(3796), + [sym_type_parameters] = STATE(5437), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(1043), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), @@ -107147,421 +107012,589 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, + [784] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_export] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_namespace] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_typeof] = ACTIONS(1775), + [anon_sym_import] = ACTIONS(1775), + [anon_sym_with] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(1775), + [anon_sym_let] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_else] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_do] = ACTIONS(1775), + [anon_sym_try] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_debugger] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_throw] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1775), + [anon_sym_yield] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1773), + [sym_glimmer_opening_tag] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_class] = ACTIONS(1775), + [anon_sym_async] = ACTIONS(1775), + [anon_sym_function] = ACTIONS(1775), + [anon_sym_new] = ACTIONS(1775), + [anon_sym_using] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_SLASH] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_void] = ACTIONS(1775), + [anon_sym_delete] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1773), + [sym_number] = ACTIONS(1773), + [sym_private_property_identifier] = ACTIONS(1773), + [sym_this] = ACTIONS(1775), + [sym_super] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_null] = ACTIONS(1775), + [sym_undefined] = ACTIONS(1775), + [anon_sym_AT] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1775), + [anon_sym_readonly] = ACTIONS(1775), + [anon_sym_get] = ACTIONS(1775), + [anon_sym_set] = ACTIONS(1775), + [anon_sym_declare] = ACTIONS(1775), + [anon_sym_public] = ACTIONS(1775), + [anon_sym_private] = ACTIONS(1775), + [anon_sym_protected] = ACTIONS(1775), + [anon_sym_override] = ACTIONS(1775), + [anon_sym_module] = ACTIONS(1775), + [anon_sym_any] = ACTIONS(1775), + [anon_sym_number] = ACTIONS(1775), + [anon_sym_boolean] = ACTIONS(1775), + [anon_sym_string] = ACTIONS(1775), + [anon_sym_symbol] = ACTIONS(1775), + [anon_sym_object] = ACTIONS(1775), + [anon_sym_abstract] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [sym__automatic_semicolon] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), + }, + [785] = { + [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_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_SEMI] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2524), + [sym_glimmer_opening_tag] = 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(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), + [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__automatic_semicolon] = ACTIONS(2528), + [sym_html_comment] = ACTIONS(5), + }, [786] = { - [ts_builtin_sym_end] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2528), - [anon_sym_export] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_namespace] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_typeof] = ACTIONS(2528), - [anon_sym_import] = ACTIONS(2528), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_var] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_switch] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_await] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_debugger] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_throw] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2528), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [sym_glimmer_opening_tag] = ACTIONS(2526), - [anon_sym_DQUOTE] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_using] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_SLASH] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [anon_sym_void] = ACTIONS(2528), - [anon_sym_delete] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2526), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2526), - [sym_number] = ACTIONS(2526), - [sym_private_property_identifier] = ACTIONS(2526), - [sym_this] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_true] = ACTIONS(2528), - [sym_false] = ACTIONS(2528), - [sym_null] = ACTIONS(2528), - [sym_undefined] = ACTIONS(2528), - [anon_sym_AT] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_readonly] = ACTIONS(2528), - [anon_sym_get] = ACTIONS(2528), - [anon_sym_set] = ACTIONS(2528), - [anon_sym_declare] = ACTIONS(2528), - [anon_sym_public] = ACTIONS(2528), - [anon_sym_private] = ACTIONS(2528), - [anon_sym_protected] = ACTIONS(2528), - [anon_sym_override] = ACTIONS(2528), - [anon_sym_module] = ACTIONS(2528), - [anon_sym_any] = ACTIONS(2528), - [anon_sym_number] = ACTIONS(2528), - [anon_sym_boolean] = ACTIONS(2528), - [anon_sym_string] = ACTIONS(2528), - [anon_sym_symbol] = ACTIONS(2528), - [anon_sym_object] = ACTIONS(2528), - [anon_sym_abstract] = ACTIONS(2528), - [anon_sym_interface] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [sym__automatic_semicolon] = ACTIONS(2526), + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_namespace] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_var] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_debugger] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_throw] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_case] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1783), + [sym_glimmer_opening_tag] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1785), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_void] = ACTIONS(1785), + [anon_sym_delete] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1783), + [sym_number] = ACTIONS(1783), + [sym_private_property_identifier] = ACTIONS(1783), + [sym_this] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), + [sym_null] = ACTIONS(1785), + [sym_undefined] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_get] = ACTIONS(1785), + [anon_sym_set] = ACTIONS(1785), + [anon_sym_declare] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_private] = ACTIONS(1785), + [anon_sym_protected] = ACTIONS(1785), + [anon_sym_override] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_any] = ACTIONS(1785), + [anon_sym_number] = ACTIONS(1785), + [anon_sym_boolean] = ACTIONS(1785), + [anon_sym_string] = ACTIONS(1785), + [anon_sym_symbol] = ACTIONS(1785), + [anon_sym_object] = ACTIONS(1785), + [anon_sym_abstract] = ACTIONS(1785), + [anon_sym_interface] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [sym__automatic_semicolon] = ACTIONS(1791), [sym_html_comment] = ACTIONS(5), }, [787] = { - [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_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_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_SEMI] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = 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), - [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(1797), + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_typeof] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_debugger] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [sym_glimmer_opening_tag] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_void] = ACTIONS(1863), + [anon_sym_delete] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1861), + [sym_number] = ACTIONS(1861), + [sym_private_property_identifier] = ACTIONS(1861), + [sym_this] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [sym_undefined] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym__automatic_semicolon] = ACTIONS(1869), [sym_html_comment] = ACTIONS(5), }, [788] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_export] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_namespace] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_import] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_var] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_await] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_debugger] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_throw] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2530), + [sym_glimmer_opening_tag] = ACTIONS(2530), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_class] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_void] = ACTIONS(2532), + [anon_sym_delete] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2530), + [sym_number] = ACTIONS(2530), + [sym_private_property_identifier] = ACTIONS(2530), + [sym_this] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_null] = ACTIONS(2532), + [sym_undefined] = ACTIONS(2532), + [anon_sym_AT] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_readonly] = ACTIONS(2532), + [anon_sym_get] = ACTIONS(2532), + [anon_sym_set] = ACTIONS(2532), + [anon_sym_declare] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_protected] = ACTIONS(2532), + [anon_sym_override] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), + [anon_sym_any] = ACTIONS(2532), + [anon_sym_number] = ACTIONS(2532), + [anon_sym_boolean] = ACTIONS(2532), + [anon_sym_string] = ACTIONS(2532), + [anon_sym_symbol] = ACTIONS(2532), + [anon_sym_object] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), [sym_html_comment] = ACTIONS(5), }, [789] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_namespace] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_typeof] = ACTIONS(1901), - [anon_sym_import] = ACTIONS(1901), - [anon_sym_with] = ACTIONS(1901), - [anon_sym_var] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_switch] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_debugger] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_throw] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [sym_glimmer_opening_tag] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_function] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_using] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_void] = ACTIONS(1901), - [anon_sym_delete] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1899), - [sym_number] = ACTIONS(1899), - [sym_private_property_identifier] = ACTIONS(1899), - [sym_this] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_true] = ACTIONS(1901), - [sym_false] = ACTIONS(1901), - [sym_null] = ACTIONS(1901), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_readonly] = ACTIONS(1901), - [anon_sym_get] = ACTIONS(1901), - [anon_sym_set] = ACTIONS(1901), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1901), - [anon_sym_private] = ACTIONS(1901), - [anon_sym_protected] = ACTIONS(1901), - [anon_sym_override] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_any] = ACTIONS(1901), - [anon_sym_number] = ACTIONS(1901), - [anon_sym_boolean] = ACTIONS(1901), - [anon_sym_string] = ACTIONS(1901), - [anon_sym_symbol] = ACTIONS(1901), - [anon_sym_object] = ACTIONS(1901), - [anon_sym_abstract] = ACTIONS(1901), - [anon_sym_interface] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_with] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_await] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2534), + [sym_glimmer_opening_tag] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_void] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2534), + [sym_number] = ACTIONS(2534), + [sym_private_property_identifier] = ACTIONS(2534), + [sym_this] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [sym_null] = ACTIONS(2536), + [sym_undefined] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), + [anon_sym_object] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), [sym_html_comment] = ACTIONS(5), }, [790] = { - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1913), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), - [anon_sym_namespace] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(1913), - [anon_sym_import] = ACTIONS(1913), - [anon_sym_with] = ACTIONS(1913), - [anon_sym_var] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_switch] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_debugger] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_throw] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1913), - [anon_sym_yield] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1911), - [sym_glimmer_opening_tag] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_class] = ACTIONS(1913), - [anon_sym_async] = ACTIONS(1913), - [anon_sym_function] = ACTIONS(1913), - [anon_sym_new] = ACTIONS(1913), - [anon_sym_using] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1911), - [anon_sym_void] = ACTIONS(1913), - [anon_sym_delete] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1911), - [sym_number] = ACTIONS(1911), - [sym_private_property_identifier] = ACTIONS(1911), - [sym_this] = ACTIONS(1913), - [sym_super] = ACTIONS(1913), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_null] = ACTIONS(1913), - [sym_undefined] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(1911), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_readonly] = ACTIONS(1913), - [anon_sym_get] = ACTIONS(1913), - [anon_sym_set] = ACTIONS(1913), - [anon_sym_declare] = ACTIONS(1913), - [anon_sym_public] = ACTIONS(1913), - [anon_sym_private] = ACTIONS(1913), - [anon_sym_protected] = ACTIONS(1913), - [anon_sym_override] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_any] = ACTIONS(1913), - [anon_sym_number] = ACTIONS(1913), - [anon_sym_boolean] = ACTIONS(1913), - [anon_sym_string] = ACTIONS(1913), - [anon_sym_symbol] = ACTIONS(1913), - [anon_sym_object] = ACTIONS(1913), - [anon_sym_abstract] = ACTIONS(1913), - [anon_sym_interface] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_namespace] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_import] = ACTIONS(2540), + [anon_sym_with] = ACTIONS(2540), + [anon_sym_var] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_await] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_debugger] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_throw] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2538), + [sym_glimmer_opening_tag] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_class] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_using] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_void] = ACTIONS(2540), + [anon_sym_delete] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2538), + [sym_number] = ACTIONS(2538), + [sym_private_property_identifier] = ACTIONS(2538), + [sym_this] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [sym_null] = ACTIONS(2540), + [sym_undefined] = ACTIONS(2540), + [anon_sym_AT] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_get] = ACTIONS(2540), + [anon_sym_set] = ACTIONS(2540), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_protected] = ACTIONS(2540), + [anon_sym_override] = ACTIONS(2540), + [anon_sym_module] = ACTIONS(2540), + [anon_sym_any] = ACTIONS(2540), + [anon_sym_number] = ACTIONS(2540), + [anon_sym_boolean] = ACTIONS(2540), + [anon_sym_string] = ACTIONS(2540), + [anon_sym_symbol] = ACTIONS(2540), + [anon_sym_object] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_interface] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), [sym_html_comment] = ACTIONS(5), }, [791] = { @@ -107731,89 +107764,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [793] = { - [ts_builtin_sym_end] = ACTIONS(2546), - [sym_identifier] = ACTIONS(2548), - [anon_sym_export] = ACTIONS(2548), - [anon_sym_default] = ACTIONS(2548), - [anon_sym_type] = ACTIONS(2548), - [anon_sym_namespace] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_typeof] = ACTIONS(2548), - [anon_sym_import] = ACTIONS(2548), - [anon_sym_with] = ACTIONS(2548), - [anon_sym_var] = ACTIONS(2548), - [anon_sym_let] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2546), - [anon_sym_else] = ACTIONS(2548), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_switch] = ACTIONS(2548), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_await] = ACTIONS(2548), - [anon_sym_while] = ACTIONS(2548), - [anon_sym_do] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_debugger] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2548), - [anon_sym_yield] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2546), - [sym_glimmer_opening_tag] = ACTIONS(2546), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2546), - [anon_sym_class] = ACTIONS(2548), - [anon_sym_async] = ACTIONS(2548), - [anon_sym_function] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_SLASH] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2546), - [anon_sym_void] = ACTIONS(2548), - [anon_sym_delete] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2546), - [anon_sym_DASH_DASH] = ACTIONS(2546), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2546), - [sym_number] = ACTIONS(2546), - [sym_private_property_identifier] = ACTIONS(2546), - [sym_this] = ACTIONS(2548), - [sym_super] = ACTIONS(2548), - [sym_true] = ACTIONS(2548), - [sym_false] = ACTIONS(2548), - [sym_null] = ACTIONS(2548), - [sym_undefined] = ACTIONS(2548), - [anon_sym_AT] = ACTIONS(2546), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_readonly] = ACTIONS(2548), - [anon_sym_get] = ACTIONS(2548), - [anon_sym_set] = ACTIONS(2548), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_public] = ACTIONS(2548), - [anon_sym_private] = ACTIONS(2548), - [anon_sym_protected] = ACTIONS(2548), - [anon_sym_override] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2548), - [anon_sym_any] = ACTIONS(2548), - [anon_sym_number] = ACTIONS(2548), - [anon_sym_boolean] = ACTIONS(2548), - [anon_sym_string] = ACTIONS(2548), - [anon_sym_symbol] = ACTIONS(2548), - [anon_sym_object] = ACTIONS(2548), - [anon_sym_abstract] = ACTIONS(2548), - [anon_sym_interface] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { [ts_builtin_sym_end] = ACTIONS(2550), [sym_identifier] = ACTIONS(2552), [anon_sym_export] = ACTIONS(2552), @@ -107896,7 +107846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2552), [sym_html_comment] = ACTIONS(5), }, - [795] = { + [794] = { [ts_builtin_sym_end] = ACTIONS(2554), [sym_identifier] = ACTIONS(2556), [anon_sym_export] = ACTIONS(2556), @@ -107979,6 +107929,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2556), [sym_html_comment] = ACTIONS(5), }, + [795] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_namespace] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_with] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_await] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2558), + [sym_glimmer_opening_tag] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_void] = ACTIONS(2560), + [anon_sym_delete] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_number] = ACTIONS(2558), + [sym_private_property_identifier] = ACTIONS(2558), + [sym_this] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [sym_null] = ACTIONS(2560), + [sym_undefined] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_readonly] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_declare] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_protected] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_module] = ACTIONS(2560), + [anon_sym_any] = ACTIONS(2560), + [anon_sym_number] = ACTIONS(2560), + [anon_sym_boolean] = ACTIONS(2560), + [anon_sym_string] = ACTIONS(2560), + [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_object] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [sym_html_comment] = ACTIONS(5), + }, [796] = { [ts_builtin_sym_end] = ACTIONS(2558), [sym_identifier] = ACTIONS(2560), @@ -108146,86 +108179,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [798] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4973), - [sym_optional_tuple_parameter] = STATE(4973), - [sym_optional_type] = STATE(4973), - [sym_rest_type] = STATE(4973), - [sym__tuple_type_member] = STATE(4973), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(2566), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_with] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2566), + [sym_glimmer_opening_tag] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_void] = ACTIONS(2568), + [anon_sym_delete] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [sym_private_property_identifier] = ACTIONS(2566), + [sym_this] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_undefined] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), [sym_html_comment] = ACTIONS(5), }, [799] = { @@ -108395,6 +108428,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [801] = { + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_namespace] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_typeof] = ACTIONS(1907), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_with] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_switch] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_await] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_debugger] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1905), + [sym_glimmer_opening_tag] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_async] = ACTIONS(1907), + [anon_sym_function] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_using] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_void] = ACTIONS(1907), + [anon_sym_delete] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1905), + [sym_number] = ACTIONS(1905), + [sym_private_property_identifier] = ACTIONS(1905), + [sym_this] = ACTIONS(1907), + [sym_super] = ACTIONS(1907), + [sym_true] = ACTIONS(1907), + [sym_false] = ACTIONS(1907), + [sym_null] = ACTIONS(1907), + [sym_undefined] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_readonly] = ACTIONS(1907), + [anon_sym_get] = ACTIONS(1907), + [anon_sym_set] = ACTIONS(1907), + [anon_sym_declare] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_protected] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_any] = ACTIONS(1907), + [anon_sym_number] = ACTIONS(1907), + [anon_sym_boolean] = ACTIONS(1907), + [anon_sym_string] = ACTIONS(1907), + [anon_sym_symbol] = ACTIONS(1907), + [anon_sym_object] = ACTIONS(1907), + [anon_sym_abstract] = ACTIONS(1907), + [anon_sym_interface] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [sym_html_comment] = ACTIONS(5), + }, + [802] = { [ts_builtin_sym_end] = ACTIONS(2578), [sym_identifier] = ACTIONS(2580), [anon_sym_export] = ACTIONS(2580), @@ -108477,7 +108593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2580), [sym_html_comment] = ACTIONS(5), }, - [802] = { + [803] = { [ts_builtin_sym_end] = ACTIONS(2582), [sym_identifier] = ACTIONS(2584), [anon_sym_export] = ACTIONS(2584), @@ -108560,7 +108676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2584), [sym_html_comment] = ACTIONS(5), }, - [803] = { + [804] = { [ts_builtin_sym_end] = ACTIONS(2586), [sym_identifier] = ACTIONS(2588), [anon_sym_export] = ACTIONS(2588), @@ -108643,7 +108759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2588), [sym_html_comment] = ACTIONS(5), }, - [804] = { + [805] = { [ts_builtin_sym_end] = ACTIONS(2590), [sym_identifier] = ACTIONS(2592), [anon_sym_export] = ACTIONS(2592), @@ -108726,7 +108842,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2592), [sym_html_comment] = ACTIONS(5), }, - [805] = { + [806] = { + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_namespace] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_with] = ACTIONS(2592), + [anon_sym_var] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_else] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_switch] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_await] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_debugger] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_throw] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2592), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2590), + [sym_glimmer_opening_tag] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_void] = ACTIONS(2592), + [anon_sym_delete] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [sym_this] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), + [sym_true] = ACTIONS(2592), + [sym_false] = ACTIONS(2592), + [sym_null] = ACTIONS(2592), + [sym_undefined] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_declare] = ACTIONS(2592), + [anon_sym_public] = ACTIONS(2592), + [anon_sym_private] = ACTIONS(2592), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_override] = ACTIONS(2592), + [anon_sym_module] = ACTIONS(2592), + [anon_sym_any] = ACTIONS(2592), + [anon_sym_number] = ACTIONS(2592), + [anon_sym_boolean] = ACTIONS(2592), + [anon_sym_string] = ACTIONS(2592), + [anon_sym_symbol] = ACTIONS(2592), + [anon_sym_object] = ACTIONS(2592), + [anon_sym_abstract] = ACTIONS(2592), + [anon_sym_interface] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [sym_html_comment] = ACTIONS(5), + }, + [807] = { [ts_builtin_sym_end] = ACTIONS(2594), [sym_identifier] = ACTIONS(2596), [anon_sym_export] = ACTIONS(2596), @@ -108809,90 +109008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2596), [sym_html_comment] = ACTIONS(5), }, - [806] = { - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_identifier] = ACTIONS(2600), - [anon_sym_export] = ACTIONS(2600), - [anon_sym_default] = ACTIONS(2600), - [anon_sym_type] = ACTIONS(2600), - [anon_sym_namespace] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_typeof] = ACTIONS(2600), - [anon_sym_import] = ACTIONS(2600), - [anon_sym_with] = ACTIONS(2600), - [anon_sym_var] = ACTIONS(2600), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_const] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_switch] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_await] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_debugger] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_throw] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_case] = ACTIONS(2600), - [anon_sym_yield] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2598), - [sym_glimmer_opening_tag] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_class] = ACTIONS(2600), - [anon_sym_async] = ACTIONS(2600), - [anon_sym_function] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_using] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_SLASH] = ACTIONS(2600), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_void] = ACTIONS(2600), - [anon_sym_delete] = ACTIONS(2600), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2598), - [sym_number] = ACTIONS(2598), - [sym_private_property_identifier] = ACTIONS(2598), - [sym_this] = ACTIONS(2600), - [sym_super] = ACTIONS(2600), - [sym_true] = ACTIONS(2600), - [sym_false] = ACTIONS(2600), - [sym_null] = ACTIONS(2600), - [sym_undefined] = ACTIONS(2600), - [anon_sym_AT] = ACTIONS(2598), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_readonly] = ACTIONS(2600), - [anon_sym_get] = ACTIONS(2600), - [anon_sym_set] = ACTIONS(2600), - [anon_sym_declare] = ACTIONS(2600), - [anon_sym_public] = ACTIONS(2600), - [anon_sym_private] = ACTIONS(2600), - [anon_sym_protected] = ACTIONS(2600), - [anon_sym_override] = ACTIONS(2600), - [anon_sym_module] = ACTIONS(2600), - [anon_sym_any] = ACTIONS(2600), - [anon_sym_number] = ACTIONS(2600), - [anon_sym_boolean] = ACTIONS(2600), - [anon_sym_string] = ACTIONS(2600), - [anon_sym_symbol] = ACTIONS(2600), - [anon_sym_object] = ACTIONS(2600), - [anon_sym_abstract] = ACTIONS(2600), - [anon_sym_interface] = ACTIONS(2600), - [anon_sym_enum] = ACTIONS(2600), - [sym_html_comment] = ACTIONS(5), - }, - [807] = { + [808] = { [ts_builtin_sym_end] = ACTIONS(2598), [sym_identifier] = ACTIONS(2600), [anon_sym_export] = ACTIONS(2600), @@ -108975,7 +109091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2600), [sym_html_comment] = ACTIONS(5), }, - [808] = { + [809] = { [ts_builtin_sym_end] = ACTIONS(2602), [sym_identifier] = ACTIONS(2604), [anon_sym_export] = ACTIONS(2604), @@ -109058,7 +109174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2604), [sym_html_comment] = ACTIONS(5), }, - [809] = { + [810] = { [ts_builtin_sym_end] = ACTIONS(2606), [sym_identifier] = ACTIONS(2608), [anon_sym_export] = ACTIONS(2608), @@ -109141,89 +109257,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2608), [sym_html_comment] = ACTIONS(5), }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(2610), - [sym_identifier] = ACTIONS(2612), - [anon_sym_export] = ACTIONS(2612), - [anon_sym_default] = ACTIONS(2612), - [anon_sym_type] = ACTIONS(2612), - [anon_sym_namespace] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_RBRACE] = ACTIONS(2610), - [anon_sym_typeof] = ACTIONS(2612), - [anon_sym_import] = ACTIONS(2612), - [anon_sym_with] = ACTIONS(2612), - [anon_sym_var] = ACTIONS(2612), - [anon_sym_let] = ACTIONS(2612), - [anon_sym_const] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2610), - [anon_sym_else] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_switch] = ACTIONS(2612), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_await] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_do] = ACTIONS(2612), - [anon_sym_try] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_debugger] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_throw] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2612), - [anon_sym_yield] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2610), - [sym_glimmer_opening_tag] = ACTIONS(2610), - [anon_sym_DQUOTE] = ACTIONS(2610), - [anon_sym_SQUOTE] = ACTIONS(2610), - [anon_sym_class] = ACTIONS(2612), - [anon_sym_async] = ACTIONS(2612), - [anon_sym_function] = ACTIONS(2612), - [anon_sym_new] = ACTIONS(2612), - [anon_sym_using] = ACTIONS(2612), - [anon_sym_PLUS] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_SLASH] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(2612), - [anon_sym_delete] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2610), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2610), - [sym_number] = ACTIONS(2610), - [sym_private_property_identifier] = ACTIONS(2610), - [sym_this] = ACTIONS(2612), - [sym_super] = ACTIONS(2612), - [sym_true] = ACTIONS(2612), - [sym_false] = ACTIONS(2612), - [sym_null] = ACTIONS(2612), - [sym_undefined] = ACTIONS(2612), - [anon_sym_AT] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_readonly] = ACTIONS(2612), - [anon_sym_get] = ACTIONS(2612), - [anon_sym_set] = ACTIONS(2612), - [anon_sym_declare] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_protected] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_module] = ACTIONS(2612), - [anon_sym_any] = ACTIONS(2612), - [anon_sym_number] = ACTIONS(2612), - [anon_sym_boolean] = ACTIONS(2612), - [anon_sym_string] = ACTIONS(2612), - [anon_sym_symbol] = ACTIONS(2612), - [anon_sym_object] = ACTIONS(2612), - [anon_sym_abstract] = ACTIONS(2612), - [anon_sym_interface] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [sym_html_comment] = ACTIONS(5), - }, [811] = { [ts_builtin_sym_end] = ACTIONS(2610), [sym_identifier] = ACTIONS(2612), @@ -109391,89 +109424,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [813] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4972), - [sym_optional_tuple_parameter] = STATE(4972), - [sym_optional_type] = STATE(4972), - [sym_rest_type] = STATE(4972), - [sym__tuple_type_member] = STATE(4972), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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(2618), + [sym_identifier] = ACTIONS(2620), + [anon_sym_export] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2620), + [anon_sym_namespace] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(2620), + [anon_sym_with] = ACTIONS(2620), + [anon_sym_var] = ACTIONS(2620), + [anon_sym_let] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_else] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_await] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_try] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_debugger] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_throw] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_yield] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2618), + [sym_glimmer_opening_tag] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_class] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2620), + [anon_sym_function] = ACTIONS(2620), + [anon_sym_new] = ACTIONS(2620), + [anon_sym_using] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_void] = ACTIONS(2620), + [anon_sym_delete] = ACTIONS(2620), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2618), + [sym_number] = ACTIONS(2618), + [sym_private_property_identifier] = ACTIONS(2618), + [sym_this] = ACTIONS(2620), + [sym_super] = ACTIONS(2620), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [sym_null] = ACTIONS(2620), + [sym_undefined] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2618), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_readonly] = ACTIONS(2620), + [anon_sym_get] = ACTIONS(2620), + [anon_sym_set] = ACTIONS(2620), + [anon_sym_declare] = ACTIONS(2620), + [anon_sym_public] = ACTIONS(2620), + [anon_sym_private] = ACTIONS(2620), + [anon_sym_protected] = ACTIONS(2620), + [anon_sym_override] = ACTIONS(2620), + [anon_sym_module] = ACTIONS(2620), + [anon_sym_any] = ACTIONS(2620), + [anon_sym_number] = ACTIONS(2620), + [anon_sym_boolean] = ACTIONS(2620), + [anon_sym_string] = ACTIONS(2620), + [anon_sym_symbol] = ACTIONS(2620), + [anon_sym_object] = ACTIONS(2620), + [anon_sym_abstract] = ACTIONS(2620), + [anon_sym_interface] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), [sym_html_comment] = ACTIONS(5), }, [814] = { + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2620), + [anon_sym_export] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2620), + [anon_sym_namespace] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(2620), + [anon_sym_with] = ACTIONS(2620), + [anon_sym_var] = ACTIONS(2620), + [anon_sym_let] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_else] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_await] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_try] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_debugger] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_throw] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_yield] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2618), + [sym_glimmer_opening_tag] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_class] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2620), + [anon_sym_function] = ACTIONS(2620), + [anon_sym_new] = ACTIONS(2620), + [anon_sym_using] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_void] = ACTIONS(2620), + [anon_sym_delete] = ACTIONS(2620), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2618), + [sym_number] = ACTIONS(2618), + [sym_private_property_identifier] = ACTIONS(2618), + [sym_this] = ACTIONS(2620), + [sym_super] = ACTIONS(2620), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [sym_null] = ACTIONS(2620), + [sym_undefined] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2618), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_readonly] = ACTIONS(2620), + [anon_sym_get] = ACTIONS(2620), + [anon_sym_set] = ACTIONS(2620), + [anon_sym_declare] = ACTIONS(2620), + [anon_sym_public] = ACTIONS(2620), + [anon_sym_private] = ACTIONS(2620), + [anon_sym_protected] = ACTIONS(2620), + [anon_sym_override] = ACTIONS(2620), + [anon_sym_module] = ACTIONS(2620), + [anon_sym_any] = ACTIONS(2620), + [anon_sym_number] = ACTIONS(2620), + [anon_sym_boolean] = ACTIONS(2620), + [anon_sym_string] = ACTIONS(2620), + [anon_sym_symbol] = ACTIONS(2620), + [anon_sym_object] = ACTIONS(2620), + [anon_sym_abstract] = ACTIONS(2620), + [anon_sym_interface] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [sym_html_comment] = ACTIONS(5), + }, + [815] = { [ts_builtin_sym_end] = ACTIONS(2622), [sym_identifier] = ACTIONS(2624), [anon_sym_export] = ACTIONS(2624), @@ -109556,7 +109672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2624), [sym_html_comment] = ACTIONS(5), }, - [815] = { + [816] = { [ts_builtin_sym_end] = ACTIONS(2626), [sym_identifier] = ACTIONS(2628), [anon_sym_export] = ACTIONS(2628), @@ -109639,89 +109755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2628), [sym_html_comment] = ACTIONS(5), }, - [816] = { - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2632), - [anon_sym_export] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_namespace] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_switch] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_await] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_do] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_debugger] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_throw] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [sym_glimmer_opening_tag] = ACTIONS(2630), - [anon_sym_DQUOTE] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_using] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_void] = ACTIONS(2632), - [anon_sym_delete] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2630), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2630), - [sym_number] = ACTIONS(2630), - [sym_private_property_identifier] = ACTIONS(2630), - [sym_this] = ACTIONS(2632), - [sym_super] = ACTIONS(2632), - [sym_true] = ACTIONS(2632), - [sym_false] = ACTIONS(2632), - [sym_null] = ACTIONS(2632), - [sym_undefined] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_readonly] = ACTIONS(2632), - [anon_sym_get] = ACTIONS(2632), - [anon_sym_set] = ACTIONS(2632), - [anon_sym_declare] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_protected] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_module] = ACTIONS(2632), - [anon_sym_any] = ACTIONS(2632), - [anon_sym_number] = ACTIONS(2632), - [anon_sym_boolean] = ACTIONS(2632), - [anon_sym_string] = ACTIONS(2632), - [anon_sym_symbol] = ACTIONS(2632), - [anon_sym_object] = ACTIONS(2632), - [anon_sym_abstract] = ACTIONS(2632), - [anon_sym_interface] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [sym_html_comment] = ACTIONS(5), - }, [817] = { [ts_builtin_sym_end] = ACTIONS(2630), [sym_identifier] = ACTIONS(2632), @@ -110055,86 +110088,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [821] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4517), - [sym_optional_tuple_parameter] = STATE(4517), - [sym_optional_type] = STATE(4517), - [sym_rest_type] = STATE(4517), - [sym__tuple_type_member] = STATE(4517), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(2646), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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(2646), + [sym_identifier] = ACTIONS(2648), + [anon_sym_export] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_namespace] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_typeof] = ACTIONS(2648), + [anon_sym_import] = ACTIONS(2648), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_var] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_else] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_await] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_debugger] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_throw] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2646), + [sym_glimmer_opening_tag] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_class] = ACTIONS(2648), + [anon_sym_async] = ACTIONS(2648), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_using] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_void] = ACTIONS(2648), + [anon_sym_delete] = ACTIONS(2648), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2646), + [sym_number] = ACTIONS(2646), + [sym_private_property_identifier] = ACTIONS(2646), + [sym_this] = ACTIONS(2648), + [sym_super] = ACTIONS(2648), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [sym_null] = ACTIONS(2648), + [sym_undefined] = ACTIONS(2648), + [anon_sym_AT] = ACTIONS(2646), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_readonly] = ACTIONS(2648), + [anon_sym_get] = ACTIONS(2648), + [anon_sym_set] = ACTIONS(2648), + [anon_sym_declare] = ACTIONS(2648), + [anon_sym_public] = ACTIONS(2648), + [anon_sym_private] = ACTIONS(2648), + [anon_sym_protected] = ACTIONS(2648), + [anon_sym_override] = ACTIONS(2648), + [anon_sym_module] = ACTIONS(2648), + [anon_sym_any] = ACTIONS(2648), + [anon_sym_number] = ACTIONS(2648), + [anon_sym_boolean] = ACTIONS(2648), + [anon_sym_string] = ACTIONS(2648), + [anon_sym_symbol] = ACTIONS(2648), + [anon_sym_object] = ACTIONS(2648), + [anon_sym_abstract] = ACTIONS(2648), + [anon_sym_interface] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), [sym_html_comment] = ACTIONS(5), }, [822] = { @@ -110221,86 +110254,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [823] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(4566), - [sym_optional_tuple_parameter] = STATE(4566), - [sym_optional_type] = STATE(4566), - [sym_rest_type] = STATE(4566), - [sym__tuple_type_member] = STATE(4566), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(2654), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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(2654), + [sym_identifier] = ACTIONS(2656), + [anon_sym_export] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_namespace] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_typeof] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_var] = ACTIONS(2656), + [anon_sym_let] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_do] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_debugger] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_throw] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_case] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2654), + [sym_glimmer_opening_tag] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_function] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_using] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_void] = ACTIONS(2656), + [anon_sym_delete] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2654), + [anon_sym_DASH_DASH] = ACTIONS(2654), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2654), + [sym_number] = ACTIONS(2654), + [sym_private_property_identifier] = ACTIONS(2654), + [sym_this] = ACTIONS(2656), + [sym_super] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_null] = ACTIONS(2656), + [sym_undefined] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_get] = ACTIONS(2656), + [anon_sym_set] = ACTIONS(2656), + [anon_sym_declare] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_private] = ACTIONS(2656), + [anon_sym_protected] = ACTIONS(2656), + [anon_sym_override] = ACTIONS(2656), + [anon_sym_module] = ACTIONS(2656), + [anon_sym_any] = ACTIONS(2656), + [anon_sym_number] = ACTIONS(2656), + [anon_sym_boolean] = ACTIONS(2656), + [anon_sym_string] = ACTIONS(2656), + [anon_sym_symbol] = ACTIONS(2656), + [anon_sym_object] = ACTIONS(2656), + [anon_sym_abstract] = ACTIONS(2656), + [anon_sym_interface] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), [sym_html_comment] = ACTIONS(5), }, [824] = { @@ -110553,172 +110586,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [827] = { - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_namespace] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_typeof] = ACTIONS(2668), - [anon_sym_import] = ACTIONS(2668), - [anon_sym_with] = ACTIONS(2668), - [anon_sym_var] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_await] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_debugger] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_throw] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_yield] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [sym_glimmer_opening_tag] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2668), - [anon_sym_async] = ACTIONS(2668), - [anon_sym_function] = ACTIONS(2668), - [anon_sym_new] = ACTIONS(2668), - [anon_sym_using] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_void] = ACTIONS(2668), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2666), - [sym_number] = ACTIONS(2666), - [sym_private_property_identifier] = ACTIONS(2666), - [sym_this] = ACTIONS(2668), - [sym_super] = ACTIONS(2668), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_null] = ACTIONS(2668), - [sym_undefined] = ACTIONS(2668), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_readonly] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_declare] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_protected] = ACTIONS(2668), - [anon_sym_override] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(2668), - [anon_sym_any] = ACTIONS(2668), - [anon_sym_number] = ACTIONS(2668), - [anon_sym_boolean] = ACTIONS(2668), - [anon_sym_string] = ACTIONS(2668), - [anon_sym_symbol] = ACTIONS(2668), - [anon_sym_object] = ACTIONS(2668), - [anon_sym_abstract] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_namespace] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_typeof] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(1829), + [anon_sym_with] = ACTIONS(1829), + [anon_sym_var] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_switch] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_await] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_debugger] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_throw] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_case] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1827), + [sym_glimmer_opening_tag] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_function] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1829), + [anon_sym_using] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_SLASH] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1827), + [anon_sym_void] = ACTIONS(1829), + [anon_sym_delete] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1827), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [sym_private_property_identifier] = ACTIONS(1827), + [sym_this] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_true] = ACTIONS(1829), + [sym_false] = ACTIONS(1829), + [sym_null] = ACTIONS(1829), + [sym_undefined] = ACTIONS(1829), + [anon_sym_AT] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_readonly] = ACTIONS(1829), + [anon_sym_get] = ACTIONS(1829), + [anon_sym_set] = ACTIONS(1829), + [anon_sym_declare] = ACTIONS(1829), + [anon_sym_public] = ACTIONS(1829), + [anon_sym_private] = ACTIONS(1829), + [anon_sym_protected] = ACTIONS(1829), + [anon_sym_override] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_any] = ACTIONS(1829), + [anon_sym_number] = ACTIONS(1829), + [anon_sym_boolean] = ACTIONS(1829), + [anon_sym_string] = ACTIONS(1829), + [anon_sym_symbol] = ACTIONS(1829), + [anon_sym_object] = ACTIONS(1829), + [anon_sym_abstract] = ACTIONS(1829), + [anon_sym_interface] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), [sym_html_comment] = ACTIONS(5), }, [828] = { - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_namespace] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_typeof] = ACTIONS(2668), - [anon_sym_import] = ACTIONS(2668), - [anon_sym_with] = ACTIONS(2668), - [anon_sym_var] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_await] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_debugger] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_throw] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_yield] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [sym_glimmer_opening_tag] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2668), - [anon_sym_async] = ACTIONS(2668), - [anon_sym_function] = ACTIONS(2668), - [anon_sym_new] = ACTIONS(2668), - [anon_sym_using] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_void] = ACTIONS(2668), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2666), - [sym_number] = ACTIONS(2666), - [sym_private_property_identifier] = ACTIONS(2666), - [sym_this] = ACTIONS(2668), - [sym_super] = ACTIONS(2668), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_null] = ACTIONS(2668), - [sym_undefined] = ACTIONS(2668), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_readonly] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_declare] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_protected] = ACTIONS(2668), - [anon_sym_override] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(2668), - [anon_sym_any] = ACTIONS(2668), - [anon_sym_number] = ACTIONS(2668), - [anon_sym_boolean] = ACTIONS(2668), - [anon_sym_string] = ACTIONS(2668), - [anon_sym_symbol] = ACTIONS(2668), - [anon_sym_object] = ACTIONS(2668), - [anon_sym_abstract] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [sym_html_comment] = ACTIONS(5), - }, - [829] = { [ts_builtin_sym_end] = ACTIONS(2670), [sym_identifier] = ACTIONS(2672), [anon_sym_export] = ACTIONS(2672), @@ -110801,7 +110751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2672), [sym_html_comment] = ACTIONS(5), }, - [830] = { + [829] = { [ts_builtin_sym_end] = ACTIONS(2674), [sym_identifier] = ACTIONS(2676), [anon_sym_export] = ACTIONS(2676), @@ -110884,6 +110834,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2676), [sym_html_comment] = ACTIONS(5), }, + [830] = { + [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_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_SEMI] = ACTIONS(2678), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [sym_glimmer_opening_tag] = 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(2680), + [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), + }, [831] = { [ts_builtin_sym_end] = ACTIONS(2678), [sym_identifier] = ACTIONS(2680), @@ -110968,6 +111001,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [832] = { + [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_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_SEMI] = ACTIONS(1835), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [sym_glimmer_opening_tag] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_SQUOTE] = 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), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [833] = { + [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_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_SEMI] = ACTIONS(2678), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [sym_glimmer_opening_tag] = 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(2680), + [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), + }, + [834] = { [ts_builtin_sym_end] = ACTIONS(2682), [sym_identifier] = ACTIONS(2684), [anon_sym_export] = ACTIONS(2684), @@ -111050,7 +111249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2684), [sym_html_comment] = ACTIONS(5), }, - [833] = { + [835] = { [ts_builtin_sym_end] = ACTIONS(2686), [sym_identifier] = ACTIONS(2688), [anon_sym_export] = ACTIONS(2688), @@ -111133,7 +111332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2688), [sym_html_comment] = ACTIONS(5), }, - [834] = { + [836] = { [ts_builtin_sym_end] = ACTIONS(2690), [sym_identifier] = ACTIONS(2692), [anon_sym_export] = ACTIONS(2692), @@ -111216,7 +111415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2692), [sym_html_comment] = ACTIONS(5), }, - [835] = { + [837] = { [ts_builtin_sym_end] = ACTIONS(2694), [sym_identifier] = ACTIONS(2696), [anon_sym_export] = ACTIONS(2696), @@ -111299,339 +111498,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2696), [sym_html_comment] = ACTIONS(5), }, - [836] = { - [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_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_SEMI] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2700), - [anon_sym_yield] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [sym_glimmer_opening_tag] = 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(2700), - [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), - }, - [837] = { - [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_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_SEMI] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2704), - [anon_sym_yield] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [sym_glimmer_opening_tag] = 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(2704), - [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), - }, [838] = { - [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_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_SEMI] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [sym_glimmer_opening_tag] = 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(2708), - [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), + [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_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_SEMI] = ACTIONS(2694), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [sym_glimmer_opening_tag] = 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(2696), + [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), }, [839] = { - [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_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_SEMI] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [sym_glimmer_opening_tag] = 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), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4576), + [sym_optional_tuple_parameter] = STATE(4576), + [sym_optional_type] = STATE(4576), + [sym_rest_type] = STATE(4576), + [sym__tuple_type_member] = STATE(4576), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), [anon_sym_LT] = ACTIONS(2708), - [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), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_html_comment] = ACTIONS(5), }, [840] = { + [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_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_SEMI] = ACTIONS(2694), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [sym_glimmer_opening_tag] = 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(2696), + [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), + }, + [841] = { + [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_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_SEMI] = ACTIONS(1901), + [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), + }, + [842] = { [ts_builtin_sym_end] = ACTIONS(2710), [sym_identifier] = ACTIONS(2712), [anon_sym_export] = ACTIONS(2712), @@ -111714,7 +111913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2712), [sym_html_comment] = ACTIONS(5), }, - [841] = { + [843] = { [ts_builtin_sym_end] = ACTIONS(2714), [sym_identifier] = ACTIONS(2716), [anon_sym_export] = ACTIONS(2716), @@ -111797,7 +111996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2716), [sym_html_comment] = ACTIONS(5), }, - [842] = { + [844] = { [ts_builtin_sym_end] = ACTIONS(2718), [sym_identifier] = ACTIONS(2720), [anon_sym_export] = ACTIONS(2720), @@ -111880,7 +112079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2720), [sym_html_comment] = ACTIONS(5), }, - [843] = { + [845] = { [ts_builtin_sym_end] = ACTIONS(2722), [sym_identifier] = ACTIONS(2724), [anon_sym_export] = ACTIONS(2724), @@ -111963,7 +112162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2724), [sym_html_comment] = ACTIONS(5), }, - [844] = { + [846] = { [ts_builtin_sym_end] = ACTIONS(2726), [sym_identifier] = ACTIONS(2728), [anon_sym_export] = ACTIONS(2728), @@ -112046,7 +112245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2728), [sym_html_comment] = ACTIONS(5), }, - [845] = { + [847] = { [ts_builtin_sym_end] = ACTIONS(2730), [sym_identifier] = ACTIONS(2732), [anon_sym_export] = ACTIONS(2732), @@ -112129,7 +112328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2732), [sym_html_comment] = ACTIONS(5), }, - [846] = { + [848] = { [ts_builtin_sym_end] = ACTIONS(2734), [sym_identifier] = ACTIONS(2736), [anon_sym_export] = ACTIONS(2736), @@ -112212,7 +112411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2736), [sym_html_comment] = ACTIONS(5), }, - [847] = { + [849] = { [ts_builtin_sym_end] = ACTIONS(2738), [sym_identifier] = ACTIONS(2740), [anon_sym_export] = ACTIONS(2740), @@ -112295,7 +112494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2740), [sym_html_comment] = ACTIONS(5), }, - [848] = { + [850] = { [ts_builtin_sym_end] = ACTIONS(2742), [sym_identifier] = ACTIONS(2744), [anon_sym_export] = ACTIONS(2744), @@ -112378,90 +112577,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, - [849] = { - [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_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_SEMI] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [sym_glimmer_opening_tag] = 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(2744), - [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), + [851] = { + [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_namespace] = ACTIONS(1845), + [anon_sym_LBRACE] = 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(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_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_SEMI] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1843), + [sym_glimmer_opening_tag] = 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_new] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [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_interface] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), [sym_html_comment] = ACTIONS(5), }, - [850] = { + [852] = { [ts_builtin_sym_end] = ACTIONS(2746), [sym_identifier] = ACTIONS(2748), [anon_sym_export] = ACTIONS(2748), @@ -112544,90 +112743,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2748), [sym_html_comment] = ACTIONS(5), }, - [851] = { - [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_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_SEMI] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_yield] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [sym_glimmer_opening_tag] = 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(2752), - [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), + [853] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5093), + [sym_optional_tuple_parameter] = STATE(5093), + [sym_optional_type] = STATE(5093), + [sym_rest_type] = STATE(5093), + [sym__tuple_type_member] = STATE(5093), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_html_comment] = ACTIONS(5), }, - [852] = { + [854] = { [ts_builtin_sym_end] = ACTIONS(2754), [sym_identifier] = ACTIONS(2756), [anon_sym_export] = ACTIONS(2756), @@ -112710,7 +112909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2756), [sym_html_comment] = ACTIONS(5), }, - [853] = { + [855] = { [ts_builtin_sym_end] = ACTIONS(2758), [sym_identifier] = ACTIONS(2760), [anon_sym_export] = ACTIONS(2760), @@ -112793,7 +112992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2760), [sym_html_comment] = ACTIONS(5), }, - [854] = { + [856] = { [ts_builtin_sym_end] = ACTIONS(2762), [sym_identifier] = ACTIONS(2764), [anon_sym_export] = ACTIONS(2764), @@ -112876,7 +113075,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2764), [sym_html_comment] = ACTIONS(5), }, - [855] = { + [857] = { + [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_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_SEMI] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_yield] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [sym_glimmer_opening_tag] = 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(2764), + [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), + }, + [858] = { [ts_builtin_sym_end] = ACTIONS(2766), [sym_identifier] = ACTIONS(2768), [anon_sym_export] = ACTIONS(2768), @@ -112959,7 +113241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2768), [sym_html_comment] = ACTIONS(5), }, - [856] = { + [859] = { [ts_builtin_sym_end] = ACTIONS(2770), [sym_identifier] = ACTIONS(2772), [anon_sym_export] = ACTIONS(2772), @@ -113042,7 +113324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2772), [sym_html_comment] = ACTIONS(5), }, - [857] = { + [860] = { [ts_builtin_sym_end] = ACTIONS(2774), [sym_identifier] = ACTIONS(2776), [anon_sym_export] = ACTIONS(2776), @@ -113125,7 +113407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2776), [sym_html_comment] = ACTIONS(5), }, - [858] = { + [861] = { [ts_builtin_sym_end] = ACTIONS(2778), [sym_identifier] = ACTIONS(2780), [anon_sym_export] = ACTIONS(2780), @@ -113208,7 +113490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2780), [sym_html_comment] = ACTIONS(5), }, - [859] = { + [862] = { [ts_builtin_sym_end] = ACTIONS(2782), [sym_identifier] = ACTIONS(2784), [anon_sym_export] = ACTIONS(2784), @@ -113291,7 +113573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2784), [sym_html_comment] = ACTIONS(5), }, - [860] = { + [863] = { [ts_builtin_sym_end] = ACTIONS(2786), [sym_identifier] = ACTIONS(2788), [anon_sym_export] = ACTIONS(2788), @@ -113374,7 +113656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2788), [sym_html_comment] = ACTIONS(5), }, - [861] = { + [864] = { [ts_builtin_sym_end] = ACTIONS(2790), [sym_identifier] = ACTIONS(2792), [anon_sym_export] = ACTIONS(2792), @@ -113457,7 +113739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2792), [sym_html_comment] = ACTIONS(5), }, - [862] = { + [865] = { [ts_builtin_sym_end] = ACTIONS(2794), [sym_identifier] = ACTIONS(2796), [anon_sym_export] = ACTIONS(2796), @@ -113540,7 +113822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2796), [sym_html_comment] = ACTIONS(5), }, - [863] = { + [866] = { [ts_builtin_sym_end] = ACTIONS(2798), [sym_identifier] = ACTIONS(2800), [anon_sym_export] = ACTIONS(2800), @@ -113623,173 +113905,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2800), [sym_html_comment] = ACTIONS(5), }, - [864] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_export] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_namespace] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_typeof] = ACTIONS(2804), - [anon_sym_import] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2804), - [anon_sym_var] = ACTIONS(2804), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_else] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_switch] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_await] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_do] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_debugger] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_throw] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [sym_glimmer_opening_tag] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2802), - [anon_sym_class] = ACTIONS(2804), - [anon_sym_async] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_using] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_void] = ACTIONS(2804), - [anon_sym_delete] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2802), - [sym_number] = ACTIONS(2802), - [sym_private_property_identifier] = ACTIONS(2802), - [sym_this] = ACTIONS(2804), - [sym_super] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_null] = ACTIONS(2804), - [sym_undefined] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_readonly] = ACTIONS(2804), - [anon_sym_get] = ACTIONS(2804), - [anon_sym_set] = ACTIONS(2804), - [anon_sym_declare] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_protected] = ACTIONS(2804), - [anon_sym_override] = ACTIONS(2804), - [anon_sym_module] = ACTIONS(2804), - [anon_sym_any] = ACTIONS(2804), - [anon_sym_number] = ACTIONS(2804), - [anon_sym_boolean] = ACTIONS(2804), - [anon_sym_string] = ACTIONS(2804), - [anon_sym_symbol] = ACTIONS(2804), - [anon_sym_object] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [sym_html_comment] = ACTIONS(5), - }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [sym_glimmer_opening_tag] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_private_property_identifier] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_override] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), + [867] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4707), + [sym_optional_tuple_parameter] = STATE(4707), + [sym_optional_type] = STATE(4707), + [sym_rest_type] = STATE(4707), + [sym__tuple_type_member] = STATE(4707), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_html_comment] = ACTIONS(5), }, - [866] = { + [868] = { [ts_builtin_sym_end] = ACTIONS(2806), [sym_identifier] = ACTIONS(2808), [anon_sym_export] = ACTIONS(2808), @@ -113872,7 +114071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2808), [sym_html_comment] = ACTIONS(5), }, - [867] = { + [869] = { [ts_builtin_sym_end] = ACTIONS(2810), [sym_identifier] = ACTIONS(2812), [anon_sym_export] = ACTIONS(2812), @@ -113955,90 +114154,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2812), [sym_html_comment] = ACTIONS(5), }, - [868] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [sym_glimmer_opening_tag] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_private_property_identifier] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_override] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), + [870] = { + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2816), + [anon_sym_export] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_type] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_import] = ACTIONS(2816), + [anon_sym_with] = ACTIONS(2816), + [anon_sym_var] = ACTIONS(2816), + [anon_sym_let] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_await] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_debugger] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_yield] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2814), + [sym_glimmer_opening_tag] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(2816), + [anon_sym_function] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_LT] = ACTIONS(2816), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_void] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2814), + [sym_number] = ACTIONS(2814), + [sym_private_property_identifier] = ACTIONS(2814), + [sym_this] = ACTIONS(2816), + [sym_super] = ACTIONS(2816), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [sym_null] = ACTIONS(2816), + [sym_undefined] = ACTIONS(2816), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_readonly] = ACTIONS(2816), + [anon_sym_get] = ACTIONS(2816), + [anon_sym_set] = ACTIONS(2816), + [anon_sym_declare] = ACTIONS(2816), + [anon_sym_public] = ACTIONS(2816), + [anon_sym_private] = ACTIONS(2816), + [anon_sym_protected] = ACTIONS(2816), + [anon_sym_override] = ACTIONS(2816), + [anon_sym_module] = ACTIONS(2816), + [anon_sym_any] = ACTIONS(2816), + [anon_sym_number] = ACTIONS(2816), + [anon_sym_boolean] = ACTIONS(2816), + [anon_sym_string] = ACTIONS(2816), + [anon_sym_symbol] = ACTIONS(2816), + [anon_sym_object] = ACTIONS(2816), + [anon_sym_abstract] = ACTIONS(2816), + [anon_sym_interface] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), [sym_html_comment] = ACTIONS(5), }, - [869] = { + [871] = { [ts_builtin_sym_end] = ACTIONS(2814), [sym_identifier] = ACTIONS(2816), [anon_sym_export] = ACTIONS(2816), @@ -114121,7 +114320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2816), [sym_html_comment] = ACTIONS(5), }, - [870] = { + [872] = { [ts_builtin_sym_end] = ACTIONS(2818), [sym_identifier] = ACTIONS(2820), [anon_sym_export] = ACTIONS(2820), @@ -114204,7 +114403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2820), [sym_html_comment] = ACTIONS(5), }, - [871] = { + [873] = { [ts_builtin_sym_end] = ACTIONS(2822), [sym_identifier] = ACTIONS(2824), [anon_sym_export] = ACTIONS(2824), @@ -114287,7 +114486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2824), [sym_html_comment] = ACTIONS(5), }, - [872] = { + [874] = { [ts_builtin_sym_end] = ACTIONS(2826), [sym_identifier] = ACTIONS(2828), [anon_sym_export] = ACTIONS(2828), @@ -114370,7 +114569,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2828), [sym_html_comment] = ACTIONS(5), }, - [873] = { + [875] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [sym_glimmer_opening_tag] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [876] = { [ts_builtin_sym_end] = ACTIONS(2830), [sym_identifier] = ACTIONS(2832), [anon_sym_export] = ACTIONS(2832), @@ -114422,121 +114704,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2830), [anon_sym_DASH_DASH] = ACTIONS(2830), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2830), - [sym_number] = ACTIONS(2830), - [sym_private_property_identifier] = ACTIONS(2830), - [sym_this] = ACTIONS(2832), - [sym_super] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_null] = ACTIONS(2832), - [sym_undefined] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2832), - [anon_sym_set] = ACTIONS(2832), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [anon_sym_object] = ACTIONS(2832), - [anon_sym_abstract] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [sym_html_comment] = ACTIONS(5), - }, - [874] = { - [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_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_SEMI] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = 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), - [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_BQUOTE] = ACTIONS(2830), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [sym_this] = ACTIONS(2832), + [sym_super] = ACTIONS(2832), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [sym_null] = ACTIONS(2832), + [sym_undefined] = ACTIONS(2832), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_declare] = ACTIONS(2832), + [anon_sym_public] = ACTIONS(2832), + [anon_sym_private] = ACTIONS(2832), + [anon_sym_protected] = ACTIONS(2832), + [anon_sym_override] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_any] = ACTIONS(2832), + [anon_sym_number] = ACTIONS(2832), + [anon_sym_boolean] = ACTIONS(2832), + [anon_sym_string] = ACTIONS(2832), + [anon_sym_symbol] = ACTIONS(2832), + [anon_sym_object] = ACTIONS(2832), + [anon_sym_abstract] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), [sym_html_comment] = ACTIONS(5), }, - [875] = { + [877] = { [ts_builtin_sym_end] = ACTIONS(2834), [sym_identifier] = ACTIONS(2836), [anon_sym_export] = ACTIONS(2836), @@ -114619,7 +114818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2836), [sym_html_comment] = ACTIONS(5), }, - [876] = { + [878] = { [ts_builtin_sym_end] = ACTIONS(2838), [sym_identifier] = ACTIONS(2840), [anon_sym_export] = ACTIONS(2840), @@ -114702,7 +114901,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2840), [sym_html_comment] = ACTIONS(5), }, - [877] = { + [879] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [sym_glimmer_opening_tag] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [880] = { + [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_namespace] = ACTIONS(1845), + [anon_sym_LBRACE] = 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(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_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_SEMI] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1843), + [sym_glimmer_opening_tag] = 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_new] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [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_interface] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [sym_html_comment] = ACTIONS(5), + }, + [881] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [sym_glimmer_opening_tag] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [882] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [sym_glimmer_opening_tag] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [883] = { [ts_builtin_sym_end] = ACTIONS(2842), [sym_identifier] = ACTIONS(2844), [anon_sym_export] = ACTIONS(2844), @@ -114785,90 +115316,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2844), [sym_html_comment] = ACTIONS(5), }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_export] = ACTIONS(2848), - [anon_sym_default] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_namespace] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_typeof] = ACTIONS(2848), - [anon_sym_import] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2848), - [anon_sym_var] = ACTIONS(2848), - [anon_sym_let] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_else] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_switch] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_await] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_do] = ACTIONS(2848), - [anon_sym_try] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_debugger] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_throw] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_case] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2846), - [sym_glimmer_opening_tag] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2846), - [anon_sym_class] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2848), - [anon_sym_using] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_void] = ACTIONS(2848), - [anon_sym_delete] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2846), - [sym_number] = ACTIONS(2846), - [sym_private_property_identifier] = ACTIONS(2846), - [sym_this] = ACTIONS(2848), - [sym_super] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_null] = ACTIONS(2848), - [sym_undefined] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_static] = ACTIONS(2848), - [anon_sym_readonly] = ACTIONS(2848), - [anon_sym_get] = ACTIONS(2848), - [anon_sym_set] = ACTIONS(2848), - [anon_sym_declare] = ACTIONS(2848), - [anon_sym_public] = ACTIONS(2848), - [anon_sym_private] = ACTIONS(2848), - [anon_sym_protected] = ACTIONS(2848), - [anon_sym_override] = ACTIONS(2848), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_any] = ACTIONS(2848), - [anon_sym_number] = ACTIONS(2848), - [anon_sym_boolean] = ACTIONS(2848), - [anon_sym_string] = ACTIONS(2848), - [anon_sym_symbol] = ACTIONS(2848), - [anon_sym_object] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2848), - [anon_sym_interface] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), + [884] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4970), + [sym_optional_tuple_parameter] = STATE(4970), + [sym_optional_type] = STATE(4970), + [sym_rest_type] = STATE(4970), + [sym__tuple_type_member] = STATE(4970), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_html_comment] = ACTIONS(5), }, - [879] = { + [885] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [sym_glimmer_opening_tag] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [886] = { [ts_builtin_sym_end] = ACTIONS(2850), [sym_identifier] = ACTIONS(2852), [anon_sym_export] = ACTIONS(2852), @@ -114951,7 +115565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2852), [sym_html_comment] = ACTIONS(5), }, - [880] = { + [887] = { [ts_builtin_sym_end] = ACTIONS(2854), [sym_identifier] = ACTIONS(2856), [anon_sym_export] = ACTIONS(2856), @@ -115034,90 +115648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2856), [sym_html_comment] = ACTIONS(5), }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_typeof] = ACTIONS(2860), - [anon_sym_import] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2860), - [anon_sym_var] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_await] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_debugger] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [sym_glimmer_opening_tag] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2858), - [sym_number] = ACTIONS(2858), - [sym_private_property_identifier] = ACTIONS(2858), - [sym_this] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_undefined] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_readonly] = ACTIONS(2860), - [anon_sym_get] = ACTIONS(2860), - [anon_sym_set] = ACTIONS(2860), - [anon_sym_declare] = ACTIONS(2860), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2860), - [anon_sym_module] = ACTIONS(2860), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [sym_html_comment] = ACTIONS(5), - }, - [882] = { + [888] = { [ts_builtin_sym_end] = ACTIONS(2858), [sym_identifier] = ACTIONS(2860), [anon_sym_export] = ACTIONS(2860), @@ -115200,90 +115731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2860), [sym_html_comment] = ACTIONS(5), }, - [883] = { - [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_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_SEMI] = ACTIONS(1831), - [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_html_comment] = ACTIONS(5), - }, - [884] = { + [889] = { [ts_builtin_sym_end] = ACTIONS(2862), [sym_identifier] = ACTIONS(2864), [anon_sym_export] = ACTIONS(2864), @@ -115366,7 +115814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2864), [sym_html_comment] = ACTIONS(5), }, - [885] = { + [890] = { [ts_builtin_sym_end] = ACTIONS(2866), [sym_identifier] = ACTIONS(2868), [anon_sym_export] = ACTIONS(2868), @@ -115449,7 +115897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2868), [sym_html_comment] = ACTIONS(5), }, - [886] = { + [891] = { [ts_builtin_sym_end] = ACTIONS(2870), [sym_identifier] = ACTIONS(2872), [anon_sym_export] = ACTIONS(2872), @@ -115532,339 +115980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2872), [sym_html_comment] = ACTIONS(5), }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_typeof] = ACTIONS(2860), - [anon_sym_import] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2860), - [anon_sym_var] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_await] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_debugger] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [sym_glimmer_opening_tag] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2858), - [sym_number] = ACTIONS(2858), - [sym_private_property_identifier] = ACTIONS(2858), - [sym_this] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_undefined] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_readonly] = ACTIONS(2860), - [anon_sym_get] = ACTIONS(2860), - [anon_sym_set] = ACTIONS(2860), - [anon_sym_declare] = ACTIONS(2860), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2860), - [anon_sym_module] = ACTIONS(2860), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [sym_html_comment] = ACTIONS(5), - }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_typeof] = ACTIONS(2860), - [anon_sym_import] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2860), - [anon_sym_var] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_await] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_debugger] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [sym_glimmer_opening_tag] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2858), - [sym_number] = ACTIONS(2858), - [sym_private_property_identifier] = ACTIONS(2858), - [sym_this] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_undefined] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_readonly] = ACTIONS(2860), - [anon_sym_get] = ACTIONS(2860), - [anon_sym_set] = ACTIONS(2860), - [anon_sym_declare] = ACTIONS(2860), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2860), - [anon_sym_module] = ACTIONS(2860), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [sym_html_comment] = ACTIONS(5), - }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_typeof] = ACTIONS(2860), - [anon_sym_import] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2860), - [anon_sym_var] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_await] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_debugger] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [sym_glimmer_opening_tag] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2858), - [sym_number] = ACTIONS(2858), - [sym_private_property_identifier] = ACTIONS(2858), - [sym_this] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_undefined] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_readonly] = ACTIONS(2860), - [anon_sym_get] = ACTIONS(2860), - [anon_sym_set] = ACTIONS(2860), - [anon_sym_declare] = ACTIONS(2860), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2860), - [anon_sym_module] = ACTIONS(2860), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [sym_html_comment] = ACTIONS(5), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_typeof] = ACTIONS(2860), - [anon_sym_import] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2860), - [anon_sym_var] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_await] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_debugger] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [sym_glimmer_opening_tag] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2858), - [sym_number] = ACTIONS(2858), - [sym_private_property_identifier] = ACTIONS(2858), - [sym_this] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_undefined] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_readonly] = ACTIONS(2860), - [anon_sym_get] = ACTIONS(2860), - [anon_sym_set] = ACTIONS(2860), - [anon_sym_declare] = ACTIONS(2860), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2860), - [anon_sym_module] = ACTIONS(2860), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [sym_html_comment] = ACTIONS(5), - }, - [891] = { + [892] = { [ts_builtin_sym_end] = ACTIONS(2874), [sym_identifier] = ACTIONS(2876), [anon_sym_export] = ACTIONS(2876), @@ -115947,7 +116063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2876), [sym_html_comment] = ACTIONS(5), }, - [892] = { + [893] = { [ts_builtin_sym_end] = ACTIONS(2878), [sym_identifier] = ACTIONS(2880), [anon_sym_export] = ACTIONS(2880), @@ -116030,7 +116146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2880), [sym_html_comment] = ACTIONS(5), }, - [893] = { + [894] = { [ts_builtin_sym_end] = ACTIONS(2882), [sym_identifier] = ACTIONS(2884), [anon_sym_export] = ACTIONS(2884), @@ -116113,89 +116229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2884), [sym_html_comment] = ACTIONS(5), }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_type] = ACTIONS(2888), - [anon_sym_namespace] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_typeof] = ACTIONS(2888), - [anon_sym_import] = ACTIONS(2888), - [anon_sym_with] = ACTIONS(2888), - [anon_sym_var] = ACTIONS(2888), - [anon_sym_let] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_else] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_switch] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_await] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_do] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_debugger] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_throw] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_case] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2886), - [sym_glimmer_opening_tag] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2886), - [anon_sym_class] = ACTIONS(2888), - [anon_sym_async] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2888), - [anon_sym_using] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_SLASH] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_void] = ACTIONS(2888), - [anon_sym_delete] = ACTIONS(2888), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2886), - [sym_number] = ACTIONS(2886), - [sym_private_property_identifier] = ACTIONS(2886), - [sym_this] = ACTIONS(2888), - [sym_super] = ACTIONS(2888), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_null] = ACTIONS(2888), - [sym_undefined] = ACTIONS(2888), - [anon_sym_AT] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_readonly] = ACTIONS(2888), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2888), - [anon_sym_public] = ACTIONS(2888), - [anon_sym_private] = ACTIONS(2888), - [anon_sym_protected] = ACTIONS(2888), - [anon_sym_override] = ACTIONS(2888), - [anon_sym_module] = ACTIONS(2888), - [anon_sym_any] = ACTIONS(2888), - [anon_sym_number] = ACTIONS(2888), - [anon_sym_boolean] = ACTIONS(2888), - [anon_sym_string] = ACTIONS(2888), - [anon_sym_symbol] = ACTIONS(2888), - [anon_sym_object] = ACTIONS(2888), - [anon_sym_abstract] = ACTIONS(2888), - [anon_sym_interface] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [sym_html_comment] = ACTIONS(5), - }, [895] = { [ts_builtin_sym_end] = ACTIONS(2886), [sym_identifier] = ACTIONS(2888), @@ -117110,89 +117143,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [906] = { - [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_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_SEMI] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2932), - [anon_sym_yield] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2930), - [sym_glimmer_opening_tag] = 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(2932), - [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_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(4521), + [sym_optional_tuple_parameter] = STATE(4521), + [sym_optional_type] = STATE(4521), + [sym_rest_type] = STATE(4521), + [sym__tuple_type_member] = STATE(4521), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(2930), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(2932), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_html_comment] = ACTIONS(5), }, [907] = { + [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_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_SEMI] = ACTIONS(2926), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_yield] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2926), + [sym_glimmer_opening_tag] = 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(2928), + [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), + }, + [908] = { [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_export] = ACTIONS(2936), @@ -117275,154 +117391,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2936), [sym_html_comment] = ACTIONS(5), }, - [908] = { - [ts_builtin_sym_end] = ACTIONS(2546), - [sym_identifier] = ACTIONS(2548), - [anon_sym_export] = ACTIONS(2548), - [anon_sym_default] = ACTIONS(2548), - [anon_sym_type] = ACTIONS(2548), - [anon_sym_namespace] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_typeof] = ACTIONS(2548), - [anon_sym_import] = ACTIONS(2548), - [anon_sym_with] = ACTIONS(2548), - [anon_sym_var] = ACTIONS(2548), - [anon_sym_let] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2546), - [anon_sym_else] = ACTIONS(2548), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_switch] = ACTIONS(2548), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_await] = ACTIONS(2548), - [anon_sym_while] = ACTIONS(2548), - [anon_sym_do] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_debugger] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2548), - [anon_sym_yield] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2546), - [sym_glimmer_opening_tag] = ACTIONS(2546), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2546), - [anon_sym_class] = ACTIONS(2548), - [anon_sym_async] = ACTIONS(2548), - [anon_sym_function] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_SLASH] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2546), - [anon_sym_void] = ACTIONS(2548), - [anon_sym_delete] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2546), - [anon_sym_DASH_DASH] = ACTIONS(2546), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2546), - [sym_number] = ACTIONS(2546), - [sym_private_property_identifier] = ACTIONS(2546), - [sym_this] = ACTIONS(2548), - [sym_super] = ACTIONS(2548), - [sym_true] = ACTIONS(2548), - [sym_false] = ACTIONS(2548), - [sym_null] = ACTIONS(2548), - [sym_undefined] = ACTIONS(2548), - [anon_sym_AT] = ACTIONS(2546), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_readonly] = ACTIONS(2548), - [anon_sym_get] = ACTIONS(2548), - [anon_sym_set] = ACTIONS(2548), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_public] = ACTIONS(2548), - [anon_sym_private] = ACTIONS(2548), - [anon_sym_protected] = ACTIONS(2548), - [anon_sym_override] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2548), - [anon_sym_any] = ACTIONS(2548), - [anon_sym_number] = ACTIONS(2548), - [anon_sym_boolean] = ACTIONS(2548), - [anon_sym_string] = ACTIONS(2548), - [anon_sym_symbol] = ACTIONS(2548), - [anon_sym_object] = ACTIONS(2548), - [anon_sym_abstract] = ACTIONS(2548), - [anon_sym_interface] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [sym_html_comment] = ACTIONS(5), - }, [909] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -117441,70 +117474,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -117523,70 +117556,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [911] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2942), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -117605,70 +117638,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [912] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -117687,70 +117720,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [913] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2946), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -117769,70 +117802,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [914] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -117851,70 +117884,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -117933,70 +117966,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -118015,70 +118048,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [917] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2954), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -118097,70 +118130,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -118179,69 +118212,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_rest_pattern] = STATE(5336), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3719), - [sym_tuple_parameter] = STATE(5250), - [sym_optional_tuple_parameter] = STATE(5250), - [sym_optional_type] = STATE(5250), - [sym_rest_type] = STATE(5250), - [sym__tuple_type_member] = STATE(5250), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(2530), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_rest_pattern] = STATE(5304), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3746), + [sym_tuple_parameter] = STATE(5325), + [sym_optional_tuple_parameter] = STATE(5325), + [sym_optional_type] = STATE(5325), + [sym_rest_type] = STATE(5325), + [sym__tuple_type_member] = STATE(5325), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2698), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -118338,81 +118371,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [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(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [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_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [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(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [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(2960), - [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), + [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_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_SEMI] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2500), + [sym_glimmer_opening_tag] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), }, [922] = { @@ -118650,6 +118683,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [925] = { + [sym_identifier] = ACTIONS(2962), + [anon_sym_export] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [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(2964), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2964), + [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_SEMI] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [sym_glimmer_opening_tag] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [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(2964), + [anon_sym_void] = ACTIONS(2962), + [anon_sym_delete] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2964), + [sym_number] = ACTIONS(2964), + [sym_private_property_identifier] = ACTIONS(2964), + [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(2964), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [926] = { [sym_identifier] = ACTIONS(2958), [anon_sym_export] = ACTIONS(2958), [anon_sym_type] = ACTIONS(2958), @@ -118727,7 +118838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2958), [sym_html_comment] = ACTIONS(5), }, - [926] = { + [927] = { [sym_identifier] = ACTIONS(2958), [anon_sym_export] = ACTIONS(2958), [anon_sym_type] = ACTIONS(2958), @@ -118805,7 +118916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2958), [sym_html_comment] = ACTIONS(5), }, - [927] = { + [928] = { [sym_identifier] = ACTIONS(2958), [anon_sym_export] = ACTIONS(2958), [anon_sym_type] = ACTIONS(2958), @@ -118883,163 +118994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2958), [sym_html_comment] = ACTIONS(5), }, - [928] = { - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2962), - [anon_sym_type] = ACTIONS(2962), - [anon_sym_namespace] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2964), - [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(2964), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2964), - [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_SEMI] = ACTIONS(2964), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2964), - [sym_glimmer_opening_tag] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2964), - [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(2964), - [anon_sym_void] = ACTIONS(2962), - [anon_sym_delete] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2964), - [sym_number] = ACTIONS(2964), - [sym_private_property_identifier] = ACTIONS(2964), - [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(2964), - [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), - [sym_html_comment] = ACTIONS(5), - }, [929] = { - [sym_identifier] = ACTIONS(2528), - [anon_sym_export] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_namespace] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_typeof] = ACTIONS(2528), - [anon_sym_import] = ACTIONS(2528), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_var] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_switch] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_await] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_debugger] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_throw] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [sym_glimmer_opening_tag] = ACTIONS(2526), - [anon_sym_DQUOTE] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_using] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_SLASH] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [anon_sym_void] = ACTIONS(2528), - [anon_sym_delete] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2526), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2526), - [sym_number] = ACTIONS(2526), - [sym_private_property_identifier] = ACTIONS(2526), - [sym_this] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_true] = ACTIONS(2528), - [sym_false] = ACTIONS(2528), - [sym_null] = ACTIONS(2528), - [sym_undefined] = ACTIONS(2528), - [anon_sym_AT] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_readonly] = ACTIONS(2528), - [anon_sym_get] = ACTIONS(2528), - [anon_sym_set] = ACTIONS(2528), - [anon_sym_declare] = ACTIONS(2528), - [anon_sym_public] = ACTIONS(2528), - [anon_sym_private] = ACTIONS(2528), - [anon_sym_protected] = ACTIONS(2528), - [anon_sym_override] = ACTIONS(2528), - [anon_sym_module] = ACTIONS(2528), - [anon_sym_any] = ACTIONS(2528), - [anon_sym_number] = ACTIONS(2528), - [anon_sym_boolean] = ACTIONS(2528), - [anon_sym_string] = ACTIONS(2528), - [anon_sym_symbol] = ACTIONS(2528), - [anon_sym_object] = ACTIONS(2528), - [anon_sym_abstract] = ACTIONS(2528), - [anon_sym_interface] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [sym_html_comment] = ACTIONS(5), - }, - [930] = { [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2966), [anon_sym_type] = ACTIONS(2966), @@ -119117,85 +119072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2966), [sym_html_comment] = ACTIONS(5), }, - [931] = { - [sym_identifier] = ACTIONS(2496), - [anon_sym_export] = ACTIONS(2496), - [anon_sym_type] = ACTIONS(2496), - [anon_sym_namespace] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_typeof] = ACTIONS(2496), - [anon_sym_import] = ACTIONS(2496), - [anon_sym_with] = ACTIONS(2496), - [anon_sym_var] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_await] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_debugger] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2494), - [sym_glimmer_opening_tag] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_async] = ACTIONS(2496), - [anon_sym_function] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_SLASH] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_void] = ACTIONS(2496), - [anon_sym_delete] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2494), - [sym_number] = ACTIONS(2494), - [sym_private_property_identifier] = ACTIONS(2494), - [sym_this] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_undefined] = ACTIONS(2496), - [anon_sym_AT] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_readonly] = ACTIONS(2496), - [anon_sym_get] = ACTIONS(2496), - [anon_sym_set] = ACTIONS(2496), - [anon_sym_declare] = ACTIONS(2496), - [anon_sym_public] = ACTIONS(2496), - [anon_sym_private] = ACTIONS(2496), - [anon_sym_protected] = ACTIONS(2496), - [anon_sym_override] = ACTIONS(2496), - [anon_sym_module] = ACTIONS(2496), - [anon_sym_any] = ACTIONS(2496), - [anon_sym_number] = ACTIONS(2496), - [anon_sym_boolean] = ACTIONS(2496), - [anon_sym_string] = ACTIONS(2496), - [anon_sym_symbol] = ACTIONS(2496), - [anon_sym_object] = ACTIONS(2496), - [anon_sym_abstract] = ACTIONS(2496), - [anon_sym_interface] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [sym_html_comment] = ACTIONS(5), - }, - [932] = { + [930] = { [sym_identifier] = ACTIONS(2970), [anon_sym_export] = ACTIONS(2970), [anon_sym_type] = ACTIONS(2970), @@ -119273,425 +119150,735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2970), [sym_html_comment] = ACTIONS(5), }, - [933] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_asserts] = STATE(2034), - [sym_type] = STATE(2037), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_predicate] = STATE(2034), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(1850), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3002), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_asserts] = ACTIONS(3012), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), + [931] = { + [sym_identifier] = ACTIONS(2958), + [anon_sym_export] = ACTIONS(2958), + [anon_sym_type] = ACTIONS(2958), + [anon_sym_namespace] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2960), + [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(2960), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_switch] = ACTIONS(2958), + [anon_sym_for] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2960), + [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_SEMI] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2960), + [sym_glimmer_opening_tag] = ACTIONS(2960), + [anon_sym_DQUOTE] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(2960), + [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(2960), + [anon_sym_void] = ACTIONS(2958), + [anon_sym_delete] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2960), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2960), + [sym_number] = ACTIONS(2960), + [sym_private_property_identifier] = ACTIONS(2960), + [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(2960), + [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), [sym_html_comment] = ACTIONS(5), }, - [934] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_asserts] = STATE(3884), - [sym_type] = STATE(3470), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_predicate] = STATE(3886), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3270), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3054), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_asserts] = ACTIONS(3064), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [932] = { + [sym_identifier] = ACTIONS(2510), + [anon_sym_export] = ACTIONS(2510), + [anon_sym_type] = ACTIONS(2510), + [anon_sym_namespace] = ACTIONS(2510), + [anon_sym_LBRACE] = 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_if] = ACTIONS(2510), + [anon_sym_switch] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2508), + [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_SEMI] = ACTIONS(2508), + [anon_sym_yield] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2508), + [sym_glimmer_opening_tag] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [anon_sym_SQUOTE] = 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), + [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_html_comment] = ACTIONS(5), }, - [935] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), + [933] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), [sym_asserts] = STATE(2923), - [sym_type] = STATE(3627), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), + [sym_type] = STATE(3747), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), [sym_type_predicate] = STATE(2923), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(3469), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3074), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3661), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2974), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(2986), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3078), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_asserts] = ACTIONS(2994), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [936] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2979), - [sym_type] = STATE(3647), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_predicate] = STATE(2979), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(3469), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3074), + [934] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3086), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3015), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(3004), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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(3078), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_asserts] = ACTIONS(3006), + [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), }, - [937] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2979), - [sym_type] = STATE(3770), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_predicate] = STATE(2979), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(3616), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3080), + [935] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_asserts] = STATE(2147), + [sym_type] = STATE(2151), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_predicate] = STATE(2147), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(1899), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3036), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_asserts] = ACTIONS(3046), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [936] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_asserts] = STATE(2986), + [sym_type] = STATE(3825), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_predicate] = STATE(2986), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3661), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(2974), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(3092), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(2986), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3098), - [anon_sym_asserts] = ACTIONS(3100), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_asserts] = ACTIONS(2994), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_html_comment] = ACTIONS(5), + }, + [937] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_asserts] = STATE(3422), + [sym_type] = STATE(3423), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_predicate] = STATE(3422), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3088), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_asserts] = ACTIONS(3098), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_asserts] = STATE(1548), - [sym_type] = STATE(1611), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_predicate] = STATE(1548), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1500), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_asserts] = STATE(5252), + [sym_type] = STATE(3329), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_predicate] = STATE(5254), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3015), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(3004), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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(3006), + [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), + }, + [939] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_asserts] = STATE(1962), + [sym_type] = STATE(1966), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_predicate] = STATE(1962), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(1899), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3036), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_asserts] = ACTIONS(3046), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [940] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_asserts] = STATE(1627), + [sym_type] = STATE(1628), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_predicate] = STATE(1627), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1487), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), [sym_identifier] = ACTIONS(3108), [anon_sym_STAR] = ACTIONS(3110), [anon_sym_LBRACE] = ACTIONS(3112), @@ -119707,7 +119894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(3126), [anon_sym_PLUS] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3132), @@ -119735,134 +119922,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [939] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_asserts] = STATE(2072), - [sym_type] = STATE(2073), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_predicate] = STATE(2072), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(1850), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3002), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_asserts] = ACTIONS(3012), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [940] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_asserts] = STATE(3854), - [sym_type] = STATE(3268), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_predicate] = STATE(3727), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3174), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [941] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_asserts] = STATE(3790), + [sym_type] = STATE(3263), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_predicate] = STATE(3841), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3144), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -119872,171 +119982,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), + [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(3162), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [941] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_asserts] = STATE(3294), - [sym_type] = STATE(3295), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_predicate] = STATE(3294), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3270), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3054), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_asserts] = ACTIONS(3064), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [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), }, [942] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(5175), - [sym_type] = STATE(3332), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_predicate] = STATE(5176), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(3049), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3701), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3474), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), [sym_identifier] = ACTIONS(3164), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), [sym_this] = ACTIONS(3166), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_abstract] = ACTIONS(636), [anon_sym_asserts] = ACTIONS(3168), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), + [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), @@ -120044,76 +120077,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2979), - [sym_type] = STATE(3094), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_predicate] = STATE(2979), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(3049), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_asserts] = STATE(2986), + [sym_type] = STATE(3501), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_predicate] = STATE(2986), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3474), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), [sym_identifier] = ACTIONS(3164), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), [sym_this] = ACTIONS(3166), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_abstract] = ACTIONS(636), [anon_sym_asserts] = ACTIONS(3168), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), + [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), @@ -120121,133 +120154,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_asserts] = STATE(3424), - [sym_type] = STATE(3425), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_predicate] = STATE(3424), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3270), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3054), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_asserts] = ACTIONS(3064), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [945] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_asserts] = STATE(3202), - [sym_type] = STATE(3203), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_predicate] = STATE(3202), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3174), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_asserts] = STATE(3231), + [sym_type] = STATE(3232), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_predicate] = STATE(3231), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3144), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -120257,134 +120213,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), + [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(3162), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), + }, + [945] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_asserts] = STATE(4274), + [sym_type] = STATE(3483), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_predicate] = STATE(4275), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3088), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_asserts] = ACTIONS(3098), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, [946] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_asserts] = STATE(3214), - [sym_type] = STATE(3215), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_predicate] = STATE(3214), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3174), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_asserts] = STATE(2986), + [sym_type] = STATE(3072), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_predicate] = STATE(2986), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3015), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(3160), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_asserts] = ACTIONS(3162), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(3004), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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(3006), + [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), }, [947] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_asserts] = STATE(1559), - [sym_type] = STATE(1562), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_predicate] = STATE(1559), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1500), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_asserts] = STATE(1593), + [sym_type] = STATE(1594), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_predicate] = STATE(1593), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1487), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), [sym_identifier] = ACTIONS(3108), [anon_sym_STAR] = ACTIONS(3110), [anon_sym_LBRACE] = ACTIONS(3112), @@ -120400,7 +120433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(3126), [anon_sym_PLUS] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3132), @@ -120429,157 +120462,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2923), - [sym_type] = STATE(3115), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_predicate] = STATE(2923), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(3049), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_asserts] = STATE(3394), + [sym_type] = STATE(3395), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_predicate] = STATE(3394), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(3166), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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(3168), - [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), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3088), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_asserts] = ACTIONS(3098), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, [949] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2923), - [sym_type] = STATE(3804), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_predicate] = STATE(2923), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(3616), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_asserts] = STATE(3192), + [sym_type] = STATE(3199), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_predicate] = STATE(3192), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3144), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(3092), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), - [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(3098), - [anon_sym_asserts] = ACTIONS(3100), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(3160), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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(3162), + [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), }, [950] = { @@ -120811,64 +120844,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [953] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4398), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4459), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_RBRACK] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -120886,64 +120919,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4451), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -120961,64 +120994,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [955] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121036,64 +121069,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4433), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121111,64 +121144,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121186,64 +121219,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121261,64 +121294,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [959] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4374), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121336,64 +121369,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4366), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121411,64 +121444,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [961] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121486,64 +121519,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [962] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121561,64 +121594,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [963] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121636,64 +121669,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [964] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121711,64 +121744,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [965] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4386), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121786,64 +121819,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [966] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4396), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121861,64 +121894,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [967] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4392), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -121936,64 +121969,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [968] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4453), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -122011,64 +122044,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [969] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -122086,64 +122119,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3734), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_type_parameter] = STATE(5054), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_type_parameter] = STATE(4747), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), [sym_identifier] = ACTIONS(3216), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -122161,112 +122194,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [971] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3743), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1621), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3850), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [972] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1604), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), + [973] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3752), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), + }, + [974] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1524), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), [anon_sym_STAR] = ACTIONS(3110), [anon_sym_LBRACE] = ACTIONS(3112), [anon_sym_typeof] = ACTIONS(3114), @@ -122281,12 +122462,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(3126), [anon_sym_PLUS] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3132), [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), + [sym_this] = ACTIONS(3222), [sym_true] = ACTIONS(3138), [sym_false] = ACTIONS(3138), [sym_null] = ACTIONS(3138), @@ -122308,212 +122489,582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [973] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3317), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), + [975] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3428), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, - [974] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2928), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), + [976] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1579), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), - [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), + }, + [977] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3430), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, - [975] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2916), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [978] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3315), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [979] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3419), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [980] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2135), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [981] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3436), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [982] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3087), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -122530,138 +123081,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [976] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2917), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [983] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1583), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4364), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(213), + [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), }, - [977] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4384), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [985] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3229), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), + }, + [986] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4474), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -122678,55 +123377,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [978] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(4128), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [987] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4523), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(1584), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(1591), + [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(209), + [anon_sym_infer] = ACTIONS(211), + [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(4695), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4523), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(1591), + [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(209), + [anon_sym_infer] = ACTIONS(211), + [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(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3257), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -122736,672 +123583,820 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3809), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [990] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4387), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [980] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3338), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), + [991] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4390), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), }, - [981] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3341), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), + [992] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3437), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, - [982] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3345), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), + [993] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), }, - [983] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [994] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3787), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [984] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3754), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [995] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2916), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [985] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3801), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [996] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_html_comment] = ACTIONS(5), + }, + [997] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(4261), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), + }, + [998] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3317), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, - [986] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3802), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [999] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3075), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [987] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3734), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1000] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2913), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -123418,425 +124413,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [988] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2916), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1001] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2067), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1002] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [989] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2917), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1003] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3785), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [990] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4567), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(3400), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), + [1004] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3329), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), + }, + [1005] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2943), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [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), }, - [991] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2913), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1006] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3741), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [992] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2069), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), + [1007] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2068), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [sym_html_comment] = ACTIONS(5), }, - [993] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3936), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1008] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3738), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), + [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(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_html_comment] = ACTIONS(5), + }, + [1009] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3254), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -123846,219 +125063,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [994] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3773), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1010] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3074), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [995] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3475), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [1011] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2944), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), }, - [996] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3476), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1012] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3054), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), + }, + [1013] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3245), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -124068,71 +125359,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [997] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3490), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1014] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1633), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), + }, + [1015] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1577), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), + }, + [1016] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2943), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), + [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(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_html_comment] = ACTIONS(5), + }, + [1017] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4977), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3224), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(2929), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -124141,155 +125654,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1639), [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_readonly] = ACTIONS(1591), + [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(209), + [anon_sym_infer] = ACTIONS(211), + [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), }, - [998] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4452), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1018] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2944), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [999] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4349), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1019] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -124306,286 +125819,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1000] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3098), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1020] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2931), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [1001] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2928), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [1021] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3263), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), }, - [1002] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3628), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1022] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3755), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3099), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1023] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4977), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3246), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1591), + [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(209), + [anon_sym_infer] = ACTIONS(211), + [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), + }, + [1024] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4369), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -124602,55 +126189,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1004] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3961), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1025] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2134), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1026] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(4159), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -124660,71 +126321,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [1005] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3216), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1027] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1568), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), + }, + [1028] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1588), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), + }, + [1029] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3233), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -124734,80 +126543,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [1006] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2913), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1030] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4435), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -124824,203 +126633,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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_html_comment] = ACTIONS(5), - }, - [1008] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3646), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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_html_comment] = ACTIONS(5), - }, - [1009] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3217), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1031] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3234), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -125030,153 +126691,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [1010] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [1032] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1620), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), }, - [1011] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3651), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1033] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3418), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [1034] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2916), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -125194,63 +126929,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1012] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3652), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1035] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3705), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -125268,212 +127003,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1013] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2916), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [1036] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(1977), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1037] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1517), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), }, - [1014] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2917), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1038] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2140), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1039] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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_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), }, - [1015] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4342), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1040] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3070), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -125490,55 +127373,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1016] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3978), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1041] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3966), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -125548,79 +127431,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [1017] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2913), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1042] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3208), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3255), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -125638,63 +127669,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1018] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3657), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1045] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3500), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -125712,557 +127743,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1019] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2953), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), - }, - [1020] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3062), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), - }, - [1021] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4401), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), - }, - [1022] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4404), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), - }, - [1023] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4405), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), - }, - [1024] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4567), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(3402), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1025] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3074), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), - }, - [1026] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1632), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), + [1046] = { + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1518), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), [anon_sym_STAR] = ACTIONS(3110), [anon_sym_LBRACE] = ACTIONS(3112), [anon_sym_typeof] = ACTIONS(3114), @@ -126277,12 +127790,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(3126), [anon_sym_PLUS] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3132), [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), + [sym_this] = ACTIONS(3222), [sym_true] = ACTIONS(3138), [sym_false] = ACTIONS(3138), [sym_null] = ACTIONS(3138), @@ -126304,212 +127817,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3394), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1028] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3430), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1029] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3751), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1047] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4729), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(4136), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(4465), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -126526,138 +127891,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3431), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1031] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4645), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(4106), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(4368), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1048] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4139), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -126674,286 +127965,804 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4110), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [1049] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2031), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1050] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3360), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [1051] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3361), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [1052] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2042), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1053] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3228), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), }, - [1033] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3852), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [1054] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3485), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3076), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [1055] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3256), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2928), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1056] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(4197), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), + }, + [1057] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(1979), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1058] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3487), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), + }, + [1059] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4729), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2919), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -126970,64 +128779,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1060] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4729), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2948), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -127044,63 +128853,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4391), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1061] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3502), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -127118,351 +128927,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1038] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2009), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1039] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2017), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1040] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5001), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2021), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(3008), - [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(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1041] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5001), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2033), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(3008), - [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(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1042] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3268), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1062] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3488), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -127472,450 +128985,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1043] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1618), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), - }, - [1044] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2133), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1045] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4402), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), - }, - [1046] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1620), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), + [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), }, - [1047] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4645), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2927), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1063] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3503), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(213), + [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), }, - [1048] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4645), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2946), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1064] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4414), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -127932,212 +129149,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1049] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3395), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1050] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2953), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1065] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2943), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1051] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3761), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1066] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4415), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -128154,212 +129297,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4386), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1067] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2944), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(213), + [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), }, - [1053] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4272), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1068] = { + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3365), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [1069] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4362), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1054] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4388), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1070] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2108), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1071] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3980), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), + }, + [1072] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4470), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -128376,64 +129741,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1055] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3332), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1073] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3777), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -128450,360 +129815,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1056] = { - [sym_import] = STATE(4778), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5550), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(3308), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3741), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5341), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1074] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3949), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), + }, + [1075] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4066), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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(3098), - [anon_sym_infer] = ACTIONS(3102), - [anon_sym_keyof] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [1057] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1527), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [1076] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2112), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [sym_html_comment] = ACTIONS(5), }, - [1058] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4685), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2927), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1077] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2931), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1059] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(3480), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4685), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2946), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3220), + [1078] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3510), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(3104), + [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(3106), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1060] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3745), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1079] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4475), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -128820,212 +130259,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1061] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(4173), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1062] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1547), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), - }, - [1063] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3820), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1080] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4389), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -129042,1101 +130333,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1064] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2079), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1065] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2080), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4375), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1081] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2913), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(213), + [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), }, - [1067] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1576), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [1082] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3657), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), - }, - [1068] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2084), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1069] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2090), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1070] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3404), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1071] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3372), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1072] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3373), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1073] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2134), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1074] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2135), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1075] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(1989), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [sym_html_comment] = ACTIONS(5), - }, - [1076] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(1990), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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_html_comment] = ACTIONS(5), }, - [1077] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4459), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1083] = { + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3658), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), + [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(213), + [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), }, - [1078] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1084] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4995), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2919), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), @@ -130145,580 +130622,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(217), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), + [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), }, - [1079] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(4232), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1080] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3194), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1081] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3186), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1082] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3190), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1083] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4978), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(3191), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [1085] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4995), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2948), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [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(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [1084] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4978), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(3193), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [1086] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4578), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3366), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1085] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3204), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3205), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), + [1087] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3209), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(1613), [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(991), [anon_sym_LPAREN] = ACTIONS(1617), [anon_sym_LBRACK] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1633), [sym_number] = ACTIONS(1635), @@ -130728,80 +130835,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1639), [sym_undefined] = ACTIONS(1639), [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [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), }, - [1087] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3091), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1088] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2931), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -130818,64 +130925,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1088] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3803), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1089] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4578), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3368), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [1090] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4502), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2146), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [1091] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4460), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -130892,853 +131147,631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1089] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3211), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1090] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3212), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), - [sym_html_comment] = ACTIONS(5), - }, - [1091] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3722), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1092] = { + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2913), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), [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_abstract] = ACTIONS(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), [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), - }, - [1092] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2142), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, [1093] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2143), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3725), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), + [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(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, [1094] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3185), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [sym_import] = STATE(4781), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5673), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(3356), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3726), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5345), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2990), + [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(2992), + [anon_sym_infer] = ACTIONS(2996), + [anon_sym_keyof] = ACTIONS(2998), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, [1095] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3220), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(1968), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [sym_html_comment] = ACTIONS(5), }, [1096] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3222), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4708), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2919), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(2990), + [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(2998), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, [1097] = { - [sym_import] = STATE(4937), - [sym_nested_identifier] = STATE(5467), - [sym_string] = STATE(3227), - [sym_formal_parameters] = STATE(5451), - [sym_nested_type_identifier] = STATE(3107), - [sym__type_query_member_expression_in_type_annotation] = STATE(3012), - [sym__type_query_call_expression_in_type_annotation] = STATE(3177), - [sym_type] = STATE(3223), - [sym_constructor_type] = STATE(3232), - [sym_primary_type] = STATE(3234), - [sym_template_literal_type] = STATE(3235), - [sym_infer_type] = STATE(3232), - [sym_conditional_type] = STATE(3235), - [sym_generic_type] = STATE(3235), - [sym_type_query] = STATE(3235), - [sym_index_type_query] = STATE(3235), - [sym_lookup_type] = STATE(3235), - [sym_literal_type] = STATE(3235), - [sym__number] = STATE(3236), - [sym_existential_type] = STATE(3235), - [sym_flow_maybe_type] = STATE(3235), - [sym_parenthesized_type] = STATE(3235), - [sym_predefined_type] = STATE(3235), - [sym_object_type] = STATE(3235), - [sym_type_parameters] = STATE(5118), - [sym_array_type] = STATE(3235), - [sym_tuple_type] = STATE(3235), - [sym_readonly_type] = STATE(3232), - [sym_union_type] = STATE(3235), - [sym_intersection_type] = STATE(3235), - [sym_function_type] = STATE(3232), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(3456), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4708), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2948), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_typeof] = ACTIONS(2978), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_object] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_infer] = ACTIONS(1035), - [anon_sym_keyof] = ACTIONS(1037), - [anon_sym_unique] = ACTIONS(1039), - [anon_sym_unknown] = ACTIONS(1041), - [anon_sym_never] = ACTIONS(1041), - [anon_sym_LBRACE_PIPE] = ACTIONS(1043), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(2990), + [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(2998), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, [1098] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1568), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), - }, - [1099] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1573), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4397), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), + }, + [1099] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(2122), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [sym_html_comment] = ACTIONS(5), }, [1100] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1594), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1558), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), [anon_sym_STAR] = ACTIONS(3110), [anon_sym_LBRACE] = ACTIONS(3112), [anon_sym_typeof] = ACTIONS(3114), @@ -131753,12 +131786,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(3126), [anon_sym_PLUS] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3132), [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), + [sym_this] = ACTIONS(3222), [sym_true] = ACTIONS(3138), [sym_false] = ACTIONS(3138), [sym_null] = ACTIONS(3138), @@ -131781,265 +131814,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1101] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4518), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(1600), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(1978), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(1579), - [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(209), - [anon_sym_infer] = ACTIONS(211), - [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), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [sym_html_comment] = ACTIONS(5), }, [1102] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4518), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(1610), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3793), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(1579), - [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_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [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), }, [1103] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1570), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3079), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), }, [1104] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1577), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1523), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), [anon_sym_STAR] = ACTIONS(3110), [anon_sym_LBRACE] = ACTIONS(3112), [anon_sym_typeof] = ACTIONS(3114), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3234), [anon_sym_LPAREN] = ACTIONS(3118), [anon_sym_LBRACK] = ACTIONS(3120), [anon_sym_DQUOTE] = ACTIONS(149), @@ -132049,12 +132082,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(3126), [anon_sym_PLUS] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3132), [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), + [sym_this] = ACTIONS(3222), [sym_true] = ACTIONS(3138), [sym_false] = ACTIONS(3138), [sym_null] = ACTIONS(3138), @@ -132077,186 +132110,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1105] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3331), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3401), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, [1106] = { - [sym_import] = STATE(4557), - [sym_nested_identifier] = STATE(5746), - [sym_string] = STATE(3366), - [sym_formal_parameters] = STATE(5524), - [sym_nested_type_identifier] = STATE(3230), - [sym__type_query_member_expression_in_type_annotation] = STATE(3134), - [sym__type_query_call_expression_in_type_annotation] = STATE(3279), - [sym_type] = STATE(3399), - [sym_constructor_type] = STATE(3452), - [sym_primary_type] = STATE(3374), - [sym_template_literal_type] = STATE(3375), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(3375), - [sym_generic_type] = STATE(3375), - [sym_type_query] = STATE(3375), - [sym_index_type_query] = STATE(3375), - [sym_lookup_type] = STATE(3375), - [sym_literal_type] = STATE(3375), - [sym__number] = STATE(3377), - [sym_existential_type] = STATE(3375), - [sym_flow_maybe_type] = STATE(3375), - [sym_parenthesized_type] = STATE(3375), - [sym_predefined_type] = STATE(3375), - [sym_object_type] = STATE(3375), - [sym_type_parameters] = STATE(5215), - [sym_array_type] = STATE(3375), - [sym_tuple_type] = STATE(3375), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(3375), - [sym_intersection_type] = STATE(3375), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_typeof] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(3048), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3050), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3228), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_infer] = ACTIONS(3066), - [anon_sym_keyof] = ACTIONS(3068), - [anon_sym_unique] = ACTIONS(3070), - [anon_sym_unknown] = ACTIONS(3048), - [anon_sym_never] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1107] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1627), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1564), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), [anon_sym_STAR] = ACTIONS(3110), [anon_sym_LBRACE] = ACTIONS(3112), [anon_sym_typeof] = ACTIONS(3114), @@ -132271,12 +132230,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(3126), [anon_sym_PLUS] = ACTIONS(3128), [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3132), [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), + [sym_this] = ACTIONS(3222), [sym_true] = ACTIONS(3138), [sym_false] = ACTIONS(3138), [sym_null] = ACTIONS(3138), @@ -132298,296 +132257,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1108] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1617), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [1107] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4502), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(2123), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), [sym_html_comment] = ACTIONS(5), }, - [1109] = { - [sym_import] = STATE(4508), - [sym_nested_identifier] = STATE(5449), - [sym_string] = STATE(1539), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(1502), - [sym__type_query_member_expression_in_type_annotation] = STATE(1487), - [sym__type_query_call_expression_in_type_annotation] = STATE(1510), - [sym_type] = STATE(1546), - [sym_constructor_type] = STATE(1511), - [sym_primary_type] = STATE(1512), - [sym_template_literal_type] = STATE(1513), - [sym_infer_type] = STATE(1511), - [sym_conditional_type] = STATE(1513), - [sym_generic_type] = STATE(1513), - [sym_type_query] = STATE(1513), - [sym_index_type_query] = STATE(1513), - [sym_lookup_type] = STATE(1513), - [sym_literal_type] = STATE(1513), - [sym__number] = STATE(1519), - [sym_existential_type] = STATE(1513), - [sym_flow_maybe_type] = STATE(1513), - [sym_parenthesized_type] = STATE(1513), - [sym_predefined_type] = STATE(1513), - [sym_object_type] = STATE(1513), - [sym_type_parameters] = STATE(5180), - [sym_array_type] = STATE(1513), - [sym_tuple_type] = STATE(1513), - [sym_readonly_type] = STATE(1511), - [sym_union_type] = STATE(1513), - [sym_intersection_type] = STATE(1513), - [sym_function_type] = STATE(1511), - [sym_identifier] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [1108] = { + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3210), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [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(2540), - [anon_sym_void] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3224), - [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), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), }, - [1110] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2953), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [1109] = { + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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_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), }, + [1110] = { + [sym_import] = STATE(4728), + [sym_nested_identifier] = STATE(5672), + [sym_string] = STATE(2004), + [sym_formal_parameters] = STATE(5616), + [sym_nested_type_identifier] = STATE(1889), + [sym__type_query_member_expression_in_type_annotation] = STATE(1890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2034), + [sym_type] = STATE(1950), + [sym_constructor_type] = STATE(2035), + [sym_primary_type] = STATE(2037), + [sym_template_literal_type] = STATE(2038), + [sym_infer_type] = STATE(2035), + [sym_conditional_type] = STATE(2038), + [sym_generic_type] = STATE(2038), + [sym_type_query] = STATE(2038), + [sym_index_type_query] = STATE(2038), + [sym_lookup_type] = STATE(2038), + [sym_literal_type] = STATE(2038), + [sym__number] = STATE(2041), + [sym_existential_type] = STATE(2038), + [sym_flow_maybe_type] = STATE(2038), + [sym_parenthesized_type] = STATE(2038), + [sym_predefined_type] = STATE(2038), + [sym_object_type] = STATE(2038), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_readonly_type] = STATE(2035), + [sym_union_type] = STATE(2038), + [sym_intersection_type] = STATE(2038), + [sym_function_type] = STATE(2035), + [sym_identifier] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(132), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_number] = ACTIONS(3034), + [sym_this] = ACTIONS(3230), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_null] = ACTIONS(3038), + [sym_undefined] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_any] = ACTIONS(3030), + [anon_sym_number] = ACTIONS(3030), + [anon_sym_boolean] = ACTIONS(3030), + [anon_sym_string] = ACTIONS(3030), + [anon_sym_symbol] = ACTIONS(3030), + [anon_sym_object] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_infer] = ACTIONS(3048), + [anon_sym_keyof] = ACTIONS(3050), + [anon_sym_unique] = ACTIONS(3052), + [anon_sym_unknown] = ACTIONS(3030), + [anon_sym_never] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, [1111] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3632), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(2916), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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_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), @@ -132595,73 +132628,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1112] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3633), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3737), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), [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_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), @@ -132669,137 +132702,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1113] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4994), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2927), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [sym_import] = STATE(4568), + [sym_nested_identifier] = STATE(5736), + [sym_string] = STATE(3344), + [sym_formal_parameters] = STATE(5517), + [sym_nested_type_identifier] = STATE(3222), + [sym__type_query_member_expression_in_type_annotation] = STATE(3148), + [sym__type_query_call_expression_in_type_annotation] = STATE(3281), + [sym_type] = STATE(3402), + [sym_constructor_type] = STATE(3346), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3348), + [sym_infer_type] = STATE(3346), + [sym_conditional_type] = STATE(3348), + [sym_generic_type] = STATE(3348), + [sym_type_query] = STATE(3348), + [sym_index_type_query] = STATE(3348), + [sym_lookup_type] = STATE(3348), + [sym_literal_type] = STATE(3348), + [sym__number] = STATE(3349), + [sym_existential_type] = STATE(3348), + [sym_flow_maybe_type] = STATE(3348), + [sym_parenthesized_type] = STATE(3348), + [sym_predefined_type] = STATE(3348), + [sym_object_type] = STATE(3348), + [sym_type_parameters] = STATE(5224), + [sym_array_type] = STATE(3348), + [sym_tuple_type] = STATE(3348), + [sym_readonly_type] = STATE(3346), + [sym_union_type] = STATE(3348), + [sym_intersection_type] = STATE(3348), + [sym_function_type] = STATE(3346), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_typeof] = ACTIONS(3062), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [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), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3084), + [sym_number] = ACTIONS(3086), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_undefined] = ACTIONS(3090), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(3100), + [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_unique] = ACTIONS(3104), + [anon_sym_unknown] = ACTIONS(3082), + [anon_sym_never] = ACTIONS(3082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, [1114] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4994), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2946), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4431), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -132807,8 +132840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_abstract] = ACTIONS(636), + [anon_sym_infer] = ACTIONS(638), [anon_sym_keyof] = ACTIONS(640), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), @@ -132817,63 +132850,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1115] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4353), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4439), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), [anon_sym_AMP] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), [anon_sym_QMARK] = ACTIONS(779), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), @@ -132891,210 +132924,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1116] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4419), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [sym_import] = STATE(4936), + [sym_nested_identifier] = STATE(5496), + [sym_string] = STATE(3251), + [sym_formal_parameters] = STATE(5488), + [sym_nested_type_identifier] = STATE(3094), + [sym__type_query_member_expression_in_type_annotation] = STATE(3032), + [sym__type_query_call_expression_in_type_annotation] = STATE(3132), + [sym_type] = STATE(3238), + [sym_constructor_type] = STATE(3223), + [sym_primary_type] = STATE(3250), + [sym_template_literal_type] = STATE(3244), + [sym_infer_type] = STATE(3223), + [sym_conditional_type] = STATE(3244), + [sym_generic_type] = STATE(3244), + [sym_type_query] = STATE(3244), + [sym_index_type_query] = STATE(3244), + [sym_lookup_type] = STATE(3244), + [sym_literal_type] = STATE(3244), + [sym__number] = STATE(3195), + [sym_existential_type] = STATE(3244), + [sym_flow_maybe_type] = STATE(3244), + [sym_parenthesized_type] = STATE(3244), + [sym_predefined_type] = STATE(3244), + [sym_object_type] = STATE(3244), + [sym_type_parameters] = STATE(5121), + [sym_array_type] = STATE(3244), + [sym_tuple_type] = STATE(3244), + [sym_readonly_type] = STATE(3223), + [sym_union_type] = STATE(3244), + [sym_intersection_type] = STATE(3244), + [sym_function_type] = STATE(3223), + [sym_identifier] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_typeof] = ACTIONS(1615), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1651), - [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), + [anon_sym_BQUOTE] = ACTIONS(1633), + [sym_number] = ACTIONS(1635), + [sym_this] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_undefined] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1641), + [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), }, [1117] = { - [sym_import] = STATE(4870), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5523), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(2906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4425), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5334), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [sym_import] = STATE(4512), + [sym_nested_identifier] = STATE(5787), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(1497), + [sym__type_query_member_expression_in_type_annotation] = STATE(1498), + [sym__type_query_call_expression_in_type_annotation] = STATE(1559), + [sym_type] = STATE(1634), + [sym_constructor_type] = STATE(1560), + [sym_primary_type] = STATE(1561), + [sym_template_literal_type] = STATE(1562), + [sym_infer_type] = STATE(1560), + [sym_conditional_type] = STATE(1562), + [sym_generic_type] = STATE(1562), + [sym_type_query] = STATE(1562), + [sym_index_type_query] = STATE(1562), + [sym_lookup_type] = STATE(1562), + [sym_literal_type] = STATE(1562), + [sym__number] = STATE(1563), + [sym_existential_type] = STATE(1562), + [sym_flow_maybe_type] = STATE(1562), + [sym_parenthesized_type] = STATE(1562), + [sym_predefined_type] = STATE(1562), + [sym_object_type] = STATE(1562), + [sym_type_parameters] = STATE(5187), + [sym_array_type] = STATE(1562), + [sym_tuple_type] = STATE(1562), + [sym_readonly_type] = STATE(1560), + [sym_union_type] = STATE(1562), + [sym_intersection_type] = STATE(1562), + [sym_function_type] = STATE(1560), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(217), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [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(2708), + [anon_sym_void] = ACTIONS(3130), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(779), - [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), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3222), + [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), }, [1118] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4457), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4471), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -133113,62 +133146,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4461), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4473), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -133187,62 +133220,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4465), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4477), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -133261,62 +133294,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4475), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4486), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -133335,62 +133368,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_import] = STATE(4658), - [sym_nested_identifier] = STATE(5522), - [sym_string] = STATE(2930), - [sym_formal_parameters] = STATE(5585), - [sym_nested_type_identifier] = STATE(2902), - [sym__type_query_member_expression_in_type_annotation] = STATE(3257), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4478), - [sym_constructor_type] = STATE(2980), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(2986), - [sym_infer_type] = STATE(2980), - [sym_conditional_type] = STATE(2986), - [sym_generic_type] = STATE(2986), - [sym_type_query] = STATE(2986), - [sym_index_type_query] = STATE(2986), - [sym_lookup_type] = STATE(2986), - [sym_literal_type] = STATE(2986), - [sym__number] = STATE(3001), - [sym_existential_type] = STATE(2986), - [sym_flow_maybe_type] = STATE(2986), - [sym_parenthesized_type] = STATE(2986), - [sym_predefined_type] = STATE(2986), - [sym_object_type] = STATE(2986), - [sym_type_parameters] = STATE(5421), - [sym_array_type] = STATE(2986), - [sym_tuple_type] = STATE(2986), - [sym_readonly_type] = STATE(2980), - [sym_union_type] = STATE(2986), - [sym_intersection_type] = STATE(2986), - [sym_function_type] = STATE(2980), - [sym_identifier] = ACTIONS(1551), + [sym_import] = STATE(4678), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5593), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(3265), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(4488), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_new] = ACTIONS(1645), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), [anon_sym_void] = ACTIONS(217), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1573), - [sym_this] = ACTIONS(1575), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), @@ -133409,107 +133442,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_import] = STATE(4657), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(2031), - [sym_formal_parameters] = STATE(5633), - [sym_nested_type_identifier] = STATE(1904), - [sym__type_query_member_expression_in_type_annotation] = STATE(1906), - [sym__type_query_call_expression_in_type_annotation] = STATE(2086), - [sym_type] = STATE(2005), - [sym_constructor_type] = STATE(2087), - [sym_primary_type] = STATE(2088), - [sym_template_literal_type] = STATE(2089), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(2089), - [sym_generic_type] = STATE(2089), - [sym_type_query] = STATE(2089), - [sym_index_type_query] = STATE(2089), - [sym_lookup_type] = STATE(2089), - [sym_literal_type] = STATE(2089), - [sym__number] = STATE(2157), - [sym_existential_type] = STATE(2089), - [sym_flow_maybe_type] = STATE(2089), - [sym_parenthesized_type] = STATE(2089), - [sym_predefined_type] = STATE(2089), - [sym_object_type] = STATE(2089), - [sym_type_parameters] = STATE(5214), - [sym_array_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(2089), - [sym_intersection_type] = STATE(2089), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_typeof] = ACTIONS(2980), + [sym_import] = STATE(4695), + [sym_nested_identifier] = STATE(5452), + [sym_string] = STATE(2967), + [sym_formal_parameters] = STATE(5457), + [sym_nested_type_identifier] = STATE(2906), + [sym__type_query_member_expression_in_type_annotation] = STATE(2905), + [sym__type_query_call_expression_in_type_annotation] = STATE(2904), + [sym_type] = STATE(3848), + [sym_constructor_type] = STATE(2929), + [sym_primary_type] = STATE(3007), + [sym_template_literal_type] = STATE(3008), + [sym_infer_type] = STATE(2929), + [sym_conditional_type] = STATE(3008), + [sym_generic_type] = STATE(3008), + [sym_type_query] = STATE(3008), + [sym_index_type_query] = STATE(3008), + [sym_lookup_type] = STATE(3008), + [sym_literal_type] = STATE(3008), + [sym__number] = STATE(2942), + [sym_existential_type] = STATE(3008), + [sym_flow_maybe_type] = STATE(3008), + [sym_parenthesized_type] = STATE(3008), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(3008), + [sym_type_parameters] = STATE(5388), + [sym_array_type] = STATE(3008), + [sym_tuple_type] = STATE(3008), + [sym_readonly_type] = STATE(2929), + [sym_union_type] = STATE(3008), + [sym_intersection_type] = STATE(3008), + [sym_function_type] = STATE(2929), + [sym_identifier] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1567), [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2996), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(3000), - [sym_this] = ACTIONS(3234), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3008), - [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(3010), - [anon_sym_infer] = ACTIONS(3014), - [anon_sym_keyof] = ACTIONS(3016), - [anon_sym_unique] = ACTIONS(3018), - [anon_sym_unknown] = ACTIONS(2996), - [anon_sym_never] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(217), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_number] = ACTIONS(1585), + [sym_this] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_undefined] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(779), + [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), }, [1124] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4796), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4685), + [aux_sym_object_pattern_repeat1] = STATE(4692), [sym_identifier] = ACTIONS(3238), [anon_sym_export] = ACTIONS(3240), [anon_sym_STAR] = ACTIONS(3242), @@ -133529,7 +133562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), @@ -133555,393 +133588,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1125] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_COLON] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [sym_glimmer_opening_tag] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_EQ_GT] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_QMARK] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_extends] = ACTIONS(3278), + [sym_html_comment] = ACTIONS(5), + }, + [1126] = { + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3280), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3284), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3290), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_object] = ACTIONS(3282), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1126] = { - [sym_export_statement] = STATE(3778), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [1127] = { + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3778), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3778), - [sym_property_signature] = STATE(3778), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3778), - [sym_index_signature] = STATE(3778), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3240), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3304), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3302), [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3310), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3304), + [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1127] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [1128] = { + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3240), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3324), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3322), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3330), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1128] = { - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_EQ] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_COMMA] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(3310), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_COLON] = ACTIONS(3310), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_RBRACK] = ACTIONS(3310), - [sym_glimmer_opening_tag] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_EQ_GT] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_number] = ACTIONS(3310), - [sym_private_property_identifier] = ACTIONS(3310), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_QMARK] = ACTIONS(3310), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_object] = ACTIONS(3308), - [anon_sym_extends] = ACTIONS(3308), + [1129] = { + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_RBRACK] = ACTIONS(3344), + [sym_glimmer_opening_tag] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_EQ_GT] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_private_property_identifier] = ACTIONS(3344), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_extends] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, - [1129] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [1130] = { + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3280), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3324), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3322), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3330), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1130] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [1131] = { + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4796), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4685), + [aux_sym_object_pattern_repeat1] = STATE(4692), [sym_identifier] = ACTIONS(3238), [anon_sym_export] = ACTIONS(3240), [anon_sym_STAR] = ACTIONS(3242), @@ -133949,7 +134054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(3238), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3348), [anon_sym_let] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), @@ -133961,7 +134066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), @@ -133986,592 +134091,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1131] = { - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_RPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_COLON] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_RBRACK] = ACTIONS(3318), - [sym_glimmer_opening_tag] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_EQ_GT] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [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_extends] = ACTIONS(3316), - [sym_html_comment] = ACTIONS(5), - }, [1132] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3280), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3324), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3322), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3330), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1133] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3322), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3304), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_let] = ACTIONS(3302), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3310), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1134] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_RPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_COLON] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_RBRACK] = ACTIONS(3356), + [sym_glimmer_opening_tag] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_EQ_GT] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_extends] = ACTIONS(3354), + [sym_html_comment] = ACTIONS(5), + }, + [1135] = { + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3322), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3284), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3290), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_object] = ACTIONS(3282), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1135] = { - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_EQ] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_COMMA] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_RPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_COLON] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_RBRACK] = ACTIONS(3344), - [sym_glimmer_opening_tag] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_EQ_GT] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_QMARK] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_extends] = ACTIONS(3342), - [sym_html_comment] = ACTIONS(5), - }, [1136] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4844), + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4864), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3348), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3362), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3360), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3352), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3366), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_protected] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3362), - [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_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3372), + [anon_sym_set] = ACTIONS(3372), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3376), + [anon_sym_module] = ACTIONS(3360), + [anon_sym_any] = ACTIONS(3360), + [anon_sym_number] = ACTIONS(3360), + [anon_sym_boolean] = ACTIONS(3360), + [anon_sym_string] = ACTIONS(3360), + [anon_sym_symbol] = ACTIONS(3360), + [anon_sym_object] = ACTIONS(3360), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1137] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4707), + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4707), - [sym_pair] = STATE(4707), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4836), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3366), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3284), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), [anon_sym_LBRACE] = ACTIONS(3244), [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(3250), [anon_sym_SEMI] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3290), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3374), - [anon_sym_readonly] = ACTIONS(3376), - [anon_sym_get] = ACTIONS(3378), - [anon_sym_set] = ACTIONS(3378), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_override] = ACTIONS(3382), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_object] = ACTIONS(3282), [anon_sym_abstract] = ACTIONS(3274), [anon_sym_PIPE_RBRACE] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1138] = { - [sym_export_statement] = STATE(3792), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(4647), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(4707), + [sym_export_statement] = STATE(3856), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(4753), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(4812), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(4647), - [sym_method_definition] = STATE(4707), - [sym_pair] = STATE(4707), - [sym_pair_pattern] = STATE(4647), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(4753), + [sym_method_definition] = STATE(4812), + [sym_pair] = STATE(4812), + [sym_pair_pattern] = STATE(4753), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3792), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3792), - [sym_property_signature] = STATE(3792), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3792), - [sym_index_signature] = STATE(3792), - [aux_sym_export_statement_repeat1] = STATE(4357), - [aux_sym_object_repeat1] = STATE(4836), - [aux_sym_object_pattern_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3366), + [sym_method_signature] = STATE(3856), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3856), + [sym_property_signature] = STATE(3856), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3856), + [sym_index_signature] = STATE(3856), + [aux_sym_export_statement_repeat1] = STATE(4358), + [aux_sym_object_repeat1] = STATE(4874), + [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3324), [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3384), - [anon_sym_let] = ACTIONS(3364), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_let] = ACTIONS(3322), [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3382), [anon_sym_LBRACK] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(1621), [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3330), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3374), - [anon_sym_readonly] = ACTIONS(3376), - [anon_sym_get] = ACTIONS(3378), - [anon_sym_set] = ACTIONS(3378), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_override] = ACTIONS(3382), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_PIPE_RBRACE] = ACTIONS(3384), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_nested_identifier] = STATE(194), - [sym_string] = STATE(197), - [sym__module] = STATE(215), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_variable_declarator] = STATE(4481), + [sym_object_pattern] = STATE(3543), + [sym_array_pattern] = STATE(3543), + [sym__destructuring_pattern] = STATE(3543), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3388), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_BANG] = ACTIONS(122), @@ -134579,11 +134614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(3390), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3388), - [anon_sym_SQUOTE] = ACTIONS(3390), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -134634,17 +134667,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1140] = { - [sym_nested_identifier] = STATE(194), - [sym_string] = STATE(197), - [sym__module] = STATE(215), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(3386), + [sym_nested_identifier] = STATE(745), + [sym_string] = STATE(778), + [sym__module] = STATE(890), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(3392), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), @@ -134653,8 +134686,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3388), - [anon_sym_SQUOTE] = ACTIONS(3390), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -134705,27 +134738,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1141] = { - [sym_variable_declarator] = STATE(4381), - [sym_object_pattern] = STATE(3645), - [sym_array_pattern] = STATE(3645), - [sym__destructuring_pattern] = STATE(3645), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(3392), + [sym_nested_identifier] = STATE(203), + [sym_string] = STATE(198), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(3394), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3394), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(3396), + [anon_sym_SQUOTE] = ACTIONS(3398), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -134776,17 +134809,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1142] = { - [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(759), - [sym__module] = STATE(832), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(3398), + [sym_nested_identifier] = STATE(203), + [sym_string] = STATE(198), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(3394), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), @@ -134795,8 +134828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(3396), + [anon_sym_SQUOTE] = ACTIONS(3398), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -134847,25 +134880,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1143] = { - [sym_variable_declarator] = STATE(4381), - [sym_object_pattern] = STATE(3645), - [sym_array_pattern] = STATE(3645), - [sym__destructuring_pattern] = STATE(3645), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(3392), + [sym_variable_declarator] = STATE(4481), + [sym_object_pattern] = STATE(3543), + [sym_array_pattern] = STATE(3543), + [sym__destructuring_pattern] = STATE(3543), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3388), [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3390), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), [anon_sym_EQ_GT] = ACTIONS(685), @@ -134918,15 +134951,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1144] = { - [sym_nested_identifier] = STATE(194), - [sym_string] = STATE(197), - [sym__module] = STATE(215), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), + [sym_variable_declarator] = STATE(4481), + [sym_object_pattern] = STATE(3543), + [sym_array_pattern] = STATE(3543), + [sym__destructuring_pattern] = STATE(3543), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), [sym_identifier] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3388), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), @@ -134934,11 +134969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(3390), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3388), - [anon_sym_SQUOTE] = ACTIONS(3390), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -134989,154 +135022,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1145] = { - [sym_variable_declarator] = STATE(4381), - [sym_object_pattern] = STATE(3645), - [sym_array_pattern] = STATE(3645), - [sym__destructuring_pattern] = STATE(3645), - [aux_sym_object_repeat1] = STATE(4793), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(685), - [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(2301), - [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(693), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [1146] = { - [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(759), - [sym__module] = STATE(832), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(685), - [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(2301), - [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(693), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [1147] = { [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(759), - [sym__module] = STATE(832), - [aux_sym_object_repeat1] = STATE(4818), - [aux_sym_object_pattern_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(3398), + [sym_string] = STATE(778), + [sym__module] = STATE(890), + [aux_sym_object_repeat1] = STATE(4821), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(3392), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), @@ -135150,8 +135041,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -135182,77 +135073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2301), - [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(693), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [1148] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), - [sym_identifier] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(829), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(831), - [anon_sym_RBRACE] = ACTIONS(831), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(831), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(831), - [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] = ACTIONS(2301), [anon_sym_LT_EQ] = ACTIONS(161), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(161), @@ -135265,15 +135086,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, - [1149] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), + [1146] = { + [sym_nested_identifier] = STATE(745), + [sym_string] = STATE(778), + [sym__module] = STATE(890), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_as] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(685), + [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(2301), + [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(693), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [1147] = { + [sym_nested_identifier] = STATE(203), + [sym_string] = STATE(198), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_identifier] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_as] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(3396), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_EQ_GT] = ACTIONS(685), + [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(2301), + [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(693), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, + [1148] = { + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), [sym_identifier] = ACTIONS(3400), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(119), @@ -135339,32 +135303,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, + [1149] = { + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), + [sym_identifier] = ACTIONS(3400), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_as] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(809), + [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(825), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(161), + [sym_html_comment] = ACTIONS(5), + }, [1150] = { - [sym_export_statement] = STATE(3720), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(5199), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(5200), + [sym_export_statement] = STATE(3843), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(5138), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(5180), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(5199), - [sym_method_definition] = STATE(5200), - [sym_pair] = STATE(5200), - [sym_pair_pattern] = STATE(5199), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(5138), + [sym_method_definition] = STATE(5180), + [sym_pair] = STATE(5180), + [sym_pair_pattern] = STATE(5138), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3720), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3720), - [sym_property_signature] = STATE(3720), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3720), - [sym_index_signature] = STATE(3720), - [aux_sym_export_statement_repeat1] = STATE(4357), + [sym_method_signature] = STATE(3843), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3843), + [sym_property_signature] = STATE(3843), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3843), + [sym_index_signature] = STATE(3843), + [aux_sym_export_statement_repeat1] = STATE(4358), [sym_identifier] = ACTIONS(3402), [anon_sym_export] = ACTIONS(3404), [anon_sym_STAR] = ACTIONS(3242), @@ -135383,7 +135416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), @@ -135408,31 +135441,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3755), - [sym_object_pattern] = STATE(5502), - [sym_object_assignment_pattern] = STATE(5199), - [sym_array_pattern] = STATE(5502), - [sym__call_signature] = STATE(3943), - [sym__destructuring_pattern] = STATE(5502), - [sym_spread_element] = STATE(5200), + [sym_export_statement] = STATE(3868), + [sym_object_pattern] = STATE(5612), + [sym_object_assignment_pattern] = STATE(5138), + [sym_array_pattern] = STATE(5612), + [sym__call_signature] = STATE(4069), + [sym__destructuring_pattern] = STATE(5612), + [sym_spread_element] = STATE(5180), [sym_string] = STATE(3080), - [sym_decorator] = STATE(1270), - [sym_formal_parameters] = STATE(3271), - [sym_rest_pattern] = STATE(5199), - [sym_method_definition] = STATE(5200), - [sym_pair] = STATE(5200), - [sym_pair_pattern] = STATE(5199), + [sym_decorator] = STATE(1267), + [sym_formal_parameters] = STATE(3276), + [sym_rest_pattern] = STATE(5138), + [sym_method_definition] = STATE(5180), + [sym_pair] = STATE(5180), + [sym_pair_pattern] = STATE(5138), [sym__property_name] = STATE(3080), [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3755), - [sym_accessibility_modifier] = STATE(2739), - [sym_override_modifier] = STATE(2765), - [sym_call_signature] = STATE(3755), - [sym_property_signature] = STATE(3755), - [sym_type_parameters] = STATE(5207), - [sym_construct_signature] = STATE(3755), - [sym_index_signature] = STATE(3755), - [aux_sym_export_statement_repeat1] = STATE(4357), + [sym_method_signature] = STATE(3868), + [sym_accessibility_modifier] = STATE(2746), + [sym_override_modifier] = STATE(2781), + [sym_call_signature] = STATE(3868), + [sym_property_signature] = STATE(3868), + [sym_type_parameters] = STATE(5245), + [sym_construct_signature] = STATE(3868), + [sym_index_signature] = STATE(3868), + [aux_sym_export_statement_repeat1] = STATE(4358), [sym_identifier] = ACTIONS(3402), [anon_sym_export] = ACTIONS(3404), [anon_sym_STAR] = ACTIONS(3242), @@ -135451,7 +135484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3260), [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3262), [sym_private_property_identifier] = ACTIONS(3262), @@ -135476,25 +135509,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1152] = { - [sym_variable_declarator] = STATE(4381), - [sym_object_pattern] = STATE(3381), - [sym_array_pattern] = STATE(3381), - [sym__destructuring_pattern] = STATE(3381), - [sym_identifier] = ACTIONS(3423), + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), + [sym_identifier] = ACTIONS(3400), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3394), [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(853), - [anon_sym_of] = ACTIONS(856), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(3396), + [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_EQ_GT] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -135538,29 +135572,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_html_comment] = ACTIONS(5), }, [1153] = { - [sym_nested_identifier] = STATE(194), - [sym_string] = STATE(197), - [sym__module] = STATE(215), - [sym_identifier] = ACTIONS(3386), + [sym_variable_declarator] = STATE(4481), + [sym_object_pattern] = STATE(3302), + [sym_array_pattern] = STATE(3302), + [sym__destructuring_pattern] = STATE(3302), + [sym_identifier] = ACTIONS(3423), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3388), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(3390), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3388), - [anon_sym_SQUOTE] = ACTIONS(3390), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -135610,24 +135643,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1154] = { - [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(759), - [sym__module] = STATE(832), - [sym_identifier] = ACTIONS(3398), + [sym_nested_identifier] = STATE(203), + [sym_string] = STATE(198), + [sym__module] = STATE(231), + [sym_identifier] = ACTIONS(3394), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(888), [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(3396), + [anon_sym_SQUOTE] = ACTIONS(3398), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -135677,25 +135710,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1155] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), - [sym_identifier] = ACTIONS(3400), + [sym_variable_declarator] = STATE(4481), + [sym_object_pattern] = STATE(3543), + [sym_array_pattern] = STATE(3543), + [sym__destructuring_pattern] = STATE(3543), + [sym_identifier] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(3390), [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(227), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -135738,32 +135771,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(723), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(161), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [1156] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(745), + [sym_string] = STATE(778), + [sym__module] = STATE(890), + [sym_identifier] = ACTIONS(3392), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(851), [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_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(888), [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(870), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -135807,28 +135839,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_html_comment] = ACTIONS(5), }, [1157] = { - [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(759), - [sym__module] = STATE(832), - [sym_identifier] = ACTIONS(3398), + [sym_variable_declarator] = STATE(4481), + [sym_object_pattern] = STATE(3543), + [sym_array_pattern] = STATE(3543), + [sym__destructuring_pattern] = STATE(3543), + [sym_identifier] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3388), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(3390), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1563), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -135878,24 +135911,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1158] = { - [sym_variable_declarator] = STATE(4381), - [sym_object_pattern] = STATE(3645), - [sym_array_pattern] = STATE(3645), - [sym__destructuring_pattern] = STATE(3645), + [sym_nested_identifier] = STATE(745), + [sym_string] = STATE(778), + [sym__module] = STATE(890), [sym_identifier] = ACTIONS(3392), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3394), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_COLON] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(161), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1575), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -135945,25 +135978,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1159] = { - [sym_variable_declarator] = STATE(4381), - [sym_object_pattern] = STATE(3645), - [sym_array_pattern] = STATE(3645), - [sym__destructuring_pattern] = STATE(3645), - [sym_identifier] = ACTIONS(3392), + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), + [sym_identifier] = ACTIONS(3400), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_COLON] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(890), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -136007,30 +136041,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_html_comment] = ACTIONS(5), }, [1160] = { - [sym_nested_identifier] = STATE(1489), - [sym_string] = STATE(1496), - [sym__module] = STATE(1707), + [sym_nested_identifier] = STATE(1503), + [sym_string] = STATE(1504), + [sym__module] = STATE(1712), [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(853), - [anon_sym_of] = ACTIONS(856), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), [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(685), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -136079,25 +136112,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1161] = { - [sym_nested_identifier] = STATE(1489), - [sym_string] = STATE(1496), - [sym__module] = STATE(1707), - [sym_identifier] = ACTIONS(3425), + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), + [sym_identifier] = ACTIONS(3400), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(858), [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(685), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(845), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -136146,26 +136179,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1162] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), [sym_identifier] = ACTIONS(3400), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(873), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(890), + [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(870), + [anon_sym_EQ_GT] = ACTIONS(879), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -136213,25 +136246,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1163] = { - [sym_nested_identifier] = STATE(1489), - [sym_string] = STATE(1496), - [sym__module] = STATE(1707), + [sym_nested_identifier] = STATE(1503), + [sym_string] = STATE(1504), + [sym__module] = STATE(1712), [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_SEMI] = ACTIONS(161), [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(884), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -136280,25 +136313,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1164] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(1503), + [sym_string] = STATE(1504), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(853), [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(884), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -136347,12 +136380,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1165] = { - [sym_nested_identifier] = STATE(1489), - [sym_string] = STATE(1496), - [sym__module] = STATE(1707), - [sym_identifier] = ACTIONS(3425), + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), + [sym_identifier] = ACTIONS(3400), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(803), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), @@ -136363,8 +136396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DQUOTE] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -136414,26 +136447,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1166] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), + [sym_nested_identifier] = STATE(1552), + [sym_string] = STATE(1553), + [sym__module] = STATE(1757), [sym_identifier] = ACTIONS(3400), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(221), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(224), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(224), [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(870), + [anon_sym_EQ_GT] = ACTIONS(227), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), [anon_sym_DASH_EQ] = ACTIONS(167), @@ -136476,17 +136508,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(161), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_QMARK] = ACTIONS(723), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(161), [sym_html_comment] = ACTIONS(5), }, [1167] = { - [sym_nested_identifier] = STATE(1509), - [sym_string] = STATE(1522), - [sym__module] = STATE(1716), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(1503), + [sym_string] = STATE(1504), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(161), [anon_sym_RBRACE] = ACTIONS(161), @@ -136497,8 +136530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(161), [anon_sym_PLUS_EQ] = ACTIONS(167), @@ -136550,33 +136583,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 13, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(870), 1, - anon_sym_EQ_GT, - ACTIONS(912), 1, + [0] = 14, + ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(674), 1, + anon_sym_COLON, + ACTIONS(685), 1, + anon_sym_EQ_GT, + ACTIONS(693), 1, + anon_sym_QMARK, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2292), 1, + anon_sym_LPAREN, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(3427), 1, sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 12, + ACTIONS(161), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136603,7 +136638,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(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136622,13 +136657,12 @@ 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, - [91] = 14, + [93] = 14, ACTIONS(666), 1, anon_sym_EQ, ACTIONS(672), 1, @@ -136645,10 +136679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(3427), 1, sym_identifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -136707,7 +136741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [184] = 14, + [186] = 14, ACTIONS(666), 1, anon_sym_EQ, ACTIONS(674), 1, @@ -136724,10 +136758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(3427), 1, sym_identifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -136786,31 +136820,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [277] = 12, + [279] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(915), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(939), 1, + ACTIONS(803), 1, anon_sym_EQ, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(161), 15, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136837,7 +136872,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(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136862,33 +136897,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [366] = 12, + [368] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, + ACTIONS(937), 1, anon_sym_EQ, + ACTIONS(943), 1, + anon_sym_EQ_GT, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(161), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136915,7 +136948,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(122), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136940,35 +136973,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [455] = 14, - ACTIONS(666), 1, - anon_sym_EQ, - ACTIONS(674), 1, - anon_sym_COLON, - ACTIONS(685), 1, + anon_sym_implements, + [457] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(693), 1, - anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2301), 1, - anon_sym_LT, - ACTIONS(3427), 1, + ACTIONS(893), 1, + anon_sym_EQ, + ACTIONS(3400), 1, sym_identifier, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136995,7 +137026,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(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137014,35 +137045,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_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [548] = 12, + [546] = 15, + ACTIONS(128), 1, + anon_sym_COMMA, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(829), 1, + ACTIONS(224), 1, + anon_sym_RBRACK, + ACTIONS(899), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(904), 1, + anon_sym_COLON, + ACTIONS(908), 1, anon_sym_EQ_GT, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(161), 12, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -137070,7 +137106,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(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137095,33 +137131,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [637] = 12, + [641] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, + ACTIONS(803), 1, anon_sym_EQ, + ACTIONS(943), 1, + anon_sym_EQ_GT, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(161), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137148,7 +137182,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(122), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137173,32 +137207,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [726] = 15, - ACTIONS(128), 1, - anon_sym_COMMA, + anon_sym_implements, + [730] = 13, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(897), 1, - anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_COLON, - ACTIONS(906), 1, + ACTIONS(879), 1, anon_sym_EQ_GT, + ACTIONS(912), 1, + anon_sym_EQ, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(224), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(161), 12, sym__ternary_qmark, anon_sym_LPAREN, @@ -137253,33 +137286,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [821] = 14, - ACTIONS(128), 1, + [821] = 13, + ACTIONS(674), 1, + anon_sym_COLON, + ACTIONS(693), 1, + anon_sym_QMARK, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(3431), 1, + anon_sym_EQ, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_EQ_GT, + ACTIONS(3442), 1, + anon_sym_LT, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(897), 1, + 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(3429), 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, + [911] = 12, + ACTIONS(923), 1, anon_sym_EQ, - ACTIONS(906), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(3392), 1, sym_identifier, - STATE(1509), 1, + STATE(745), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(778), 1, sym_string, - STATE(1716), 1, + STATE(890), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(161), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137331,29 +137439,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [913] = 13, - ACTIONS(666), 1, - anon_sym_EQ, + [999] = 13, + ACTIONS(672), 1, + anon_sym_RBRACE, ACTIONS(674), 1, anon_sym_COLON, - ACTIONS(685), 1, - anon_sym_EQ_GT, ACTIONS(693), 1, anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, + ACTIONS(3431), 1, + anon_sym_EQ, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(2301), 1, + ACTIONS(3438), 1, + anon_sym_EQ_GT, + ACTIONS(3442), 1, anon_sym_LT, - STATE(4793), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137369,7 +137477,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(3433), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137387,7 +137495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3429), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137408,22 +137516,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1003] = 12, - ACTIONS(921), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_EQ_GT, - ACTIONS(1621), 1, + [1089] = 12, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(3429), 1, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(3425), 1, sym_identifier, - STATE(3458), 1, + STATE(1503), 1, sym_nested_identifier, - STATE(3608), 1, + STATE(1504), 1, sym_string, - STATE(4277), 1, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -137484,11 +137592,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1091] = 3, + [1177] = 11, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LBRACE, + ACTIONS(3390), 1, + anon_sym_LBRACK, + STATE(4481), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3543), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(161), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, + [1263] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3431), 23, + ACTIONS(3445), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137512,7 +137695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3433), 38, + ACTIONS(3447), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137551,29 +137734,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1161] = 13, - ACTIONS(674), 1, - anon_sym_COLON, - ACTIONS(693), 1, - anon_sym_QMARK, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3444), 1, - anon_sym_EQ_GT, - ACTIONS(3448), 1, - anon_sym_LT, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [1333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3449), 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(3451), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137589,15 +137791,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(3439), 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, @@ -137607,32 +137800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, 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, - [1251] = 3, + anon_sym_implements, + [1403] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3451), 23, + ACTIONS(3453), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137656,7 +137829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3453), 38, + ACTIONS(3455), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137695,13 +137868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1321] = 4, - ACTIONS(3459), 1, - anon_sym_extends, + [1473] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3455), 23, + ACTIONS(3457), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137725,7 +137896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3457), 37, + ACTIONS(3459), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137733,6 +137904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137763,22 +137935,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1393] = 12, - ACTIONS(921), 1, + [1543] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(803), 1, anon_sym_EQ, - ACTIONS(927), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, - ACTIONS(3386), 1, + ACTIONS(3400), 1, sym_identifier, - ACTIONS(3388), 1, - anon_sym_DQUOTE, - ACTIONS(3390), 1, - anon_sym_SQUOTE, - STATE(194), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(197), 1, + STATE(1553), 1, sym_string, - STATE(215), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -137839,41 +138011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1481] = 12, - ACTIONS(921), 1, + [1631] = 13, + ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(927), 1, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(674), 1, + anon_sym_COLON, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(3398), 1, - sym_identifier, - STATE(745), 1, - sym_nested_identifier, - STATE(759), 1, - sym_string, - STATE(832), 1, - sym__module, + ACTIONS(693), 1, + anon_sym_QMARK, + ACTIONS(2292), 1, + anon_sym_LPAREN, + ACTIONS(2301), 1, + anon_sym_LT, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137890,9 +138049,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(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, @@ -137909,35 +138085,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, - [1569] = 13, + [1721] = 13, + ACTIONS(666), 1, + anon_sym_EQ, ACTIONS(674), 1, anon_sym_COLON, + ACTIONS(685), 1, + anon_sym_EQ_GT, ACTIONS(693), 1, anon_sym_QMARK, ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3441), 1, + ACTIONS(2292), 1, anon_sym_LPAREN, - ACTIONS(3444), 1, - anon_sym_EQ_GT, - ACTIONS(3448), 1, + ACTIONS(2301), 1, anon_sym_LT, - STATE(4793), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137953,7 +138126,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(3439), 17, + ACTIONS(161), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137971,8 +138144,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + 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, + [1811] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -137989,27 +138188,68 @@ 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, - [1659] = 13, + anon_sym_QMARK, + ACTIONS(3463), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1881] = 13, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(902), 1, - anon_sym_COLON, - ACTIONS(906), 1, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(931), 1, + ACTIONS(915), 1, anon_sym_EQ, + ACTIONS(917), 1, + anon_sym_COLON, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -138069,76 +138309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1749] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3461), 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(3463), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1819] = 4, - ACTIONS(3469), 1, - anon_sym_extends, + [1971] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -138166,7 +138337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3467), 37, + ACTIONS(3467), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138174,6 +138345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -138204,29 +138376,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1891] = 13, - ACTIONS(666), 1, - anon_sym_EQ, + [2041] = 13, ACTIONS(674), 1, anon_sym_COLON, - ACTIONS(685), 1, - anon_sym_EQ_GT, ACTIONS(693), 1, anon_sym_QMARK, ACTIONS(695), 1, anon_sym_RBRACE, - ACTIONS(2292), 1, + ACTIONS(3431), 1, + anon_sym_EQ, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(2301), 1, + ACTIONS(3438), 1, + anon_sym_EQ_GT, + ACTIONS(3442), 1, anon_sym_LT, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138242,7 +138414,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(3433), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138260,7 +138432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3429), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138281,29 +138453,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1981] = 13, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(674), 1, - anon_sym_COLON, - ACTIONS(693), 1, - anon_sym_QMARK, - ACTIONS(3437), 1, + [2131] = 12, + ACTIONS(923), 1, anon_sym_EQ, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3444), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, - ACTIONS(3448), 1, - anon_sym_LT, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + ACTIONS(3394), 1, + sym_identifier, + ACTIONS(3396), 1, + anon_sym_DQUOTE, + ACTIONS(3398), 1, + anon_sym_SQUOTE, + STATE(198), 1, + sym_string, + STATE(203), 1, + sym_nested_identifier, + STATE(231), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(161), 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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138319,12 +138504,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(3439), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + 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, + [2219] = 14, + ACTIONS(128), 1, anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(224), 1, + anon_sym_RBRACK, + ACTIONS(899), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_EQ_GT, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 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, @@ -138332,13 +138563,28 @@ 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(3435), 20, + 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, @@ -138355,35 +138601,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, - [2071] = 12, - ACTIONS(69), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2311] = 13, + ACTIONS(149), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(921), 1, - anon_sym_EQ, - ACTIONS(927), 1, + ACTIONS(904), 1, + anon_sym_COLON, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(3425), 1, + ACTIONS(915), 1, + anon_sym_EQ, + ACTIONS(3400), 1, sym_identifier, - STATE(1489), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1496), 1, + STATE(1553), 1, sym_string, - STATE(1707), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(161), 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, @@ -138434,11 +138684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2159] = 3, + [2401] = 4, + ACTIONS(3469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 23, + ACTIONS(3445), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138462,7 +138714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3467), 38, + ACTIONS(3447), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138470,7 +138722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -138501,11 +138752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2229] = 3, + [2473] = 4, + ACTIONS(3471), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3455), 23, + ACTIONS(3449), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138529,7 +138782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3457), 38, + ACTIONS(3451), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138537,7 +138790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -138568,25 +138820,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2299] = 13, + [2545] = 13, ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, ACTIONS(674), 1, anon_sym_COLON, ACTIONS(685), 1, anon_sym_EQ_GT, ACTIONS(693), 1, anon_sym_QMARK, + ACTIONS(695), 1, + anon_sym_RBRACE, ACTIONS(2292), 1, anon_sym_LPAREN, ACTIONS(2301), 1, anon_sym_LT, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -138645,232 +138897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2389] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(829), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_EQ_GT, - ACTIONS(3400), 1, - sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 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(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, - [2477] = 14, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3475), 1, - anon_sym_LPAREN, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_QMARK_DOT, - ACTIONS(3485), 1, - anon_sym_LT, - STATE(3077), 1, - sym_arguments, - STATE(3196), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3473), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - 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, - anon_sym_satisfies, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, - anon_sym_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, - [2569] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3487), 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(3489), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [2639] = 3, + [2635] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3491), 23, + ACTIONS(3473), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138894,7 +138925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3493), 38, + ACTIONS(3475), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138933,23 +138964,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2709] = 11, - ACTIONS(921), 1, + [2705] = 11, + ACTIONS(923), 1, anon_sym_EQ, - ACTIONS(927), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, - ACTIONS(3392), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3394), 1, + ACTIONS(3388), 1, anon_sym_LBRACE, - ACTIONS(3396), 1, + ACTIONS(3390), 1, anon_sym_LBRACK, - STATE(4412), 1, + STATE(4440), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3645), 3, + STATE(3543), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -139008,41 +139039,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2795] = 11, - ACTIONS(921), 1, + [2791] = 14, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(927), 1, + ACTIONS(3481), 1, + anon_sym_LPAREN, + ACTIONS(3483), 1, + anon_sym_DOT, + ACTIONS(3485), 1, anon_sym_EQ_GT, - ACTIONS(3392), 1, - sym_identifier, - ACTIONS(3394), 1, - anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - STATE(4381), 1, - sym_variable_declarator, + ACTIONS(3487), 1, + anon_sym_QMARK_DOT, + ACTIONS(3491), 1, + anon_sym_LT, + STATE(3056), 1, + sym_arguments, + STATE(3237), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3645), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(3489), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3479), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3433), 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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139058,9 +139098,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(3429), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139069,47 +139108,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, - [2881] = 13, - ACTIONS(149), 1, + [2883] = 12, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(906), 1, - anon_sym_EQ_GT, - ACTIONS(931), 1, - anon_sym_EQ, - ACTIONS(933), 1, - anon_sym_COLON, - ACTIONS(3400), 1, + ACTIONS(3493), 1, sym_identifier, - STATE(1509), 1, + STATE(3469), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(3507), 1, sym_string, - STATE(1716), 1, + STATE(4121), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(161), 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, @@ -139160,40 +139193,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2971] = 14, - ACTIONS(3495), 1, + [2971] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2502), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3497), 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(2500), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3499), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_EQ_GT, - ACTIONS(3503), 1, anon_sym_QMARK_DOT, - ACTIONS(3505), 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, + anon_sym_implements, + [3040] = 13, + ACTIONS(3485), 1, + anon_sym_EQ_GT, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3507), 1, + anon_sym_DOT, + ACTIONS(3513), 1, anon_sym_LT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, + STATE(3221), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3498), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, - anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(3510), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(3502), 4, sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3433), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -139203,7 +139300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139219,10 +139316,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(3435), 17, + ACTIONS(3429), 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, @@ -139237,30 +139335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3062] = 5, - ACTIONS(3507), 1, - anon_sym_EQ, + [3129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + ACTIONS(2510), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139281,7 +139362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 23, + ACTIONS(2508), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139295,61 +139376,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3135] = 16, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3509), 1, - anon_sym_EQ, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3530), 1, - anon_sym_QMARK, - ACTIONS(3533), 1, - anon_sym_extends, - STATE(2926), 1, - sym_type_arguments, - STATE(5140), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3512), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3524), 2, - 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(3446), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139365,40 +139391,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(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, - 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, - [3230] = 8, - ACTIONS(3497), 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, + anon_sym_implements, + [3198] = 8, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(3505), 1, - anon_sym_LT, - ACTIONS(3539), 1, + ACTIONS(3522), 1, anon_sym_DOT, - STATE(1259), 1, + ACTIONS(3524), 1, + anon_sym_LT, + STATE(1225), 1, sym_arguments, - STATE(5420), 1, + STATE(5122), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3537), 14, + ACTIONS(3518), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -139413,7 +139430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3535), 41, + ACTIONS(3516), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -139455,13 +139472,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [3309] = 3, + [3277] = 14, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(3485), 1, + anon_sym_EQ_GT, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2528), 22, + ACTIONS(3479), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3489), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 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, + [3368] = 5, + ACTIONS(3530), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139482,7 +139593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2526), 38, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139496,21 +139607,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, @@ -139521,38 +139617,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3378] = 13, - ACTIONS(3479), 1, + [3441] = 14, + ACTIONS(3438), 1, anon_sym_EQ_GT, - ACTIONS(3509), 1, - anon_sym_EQ, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3541), 1, - anon_sym_DOT, - ACTIONS(3544), 1, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, anon_sym_LT, - STATE(3189), 1, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(3532), 1, + anon_sym_EQ, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 2, + ACTIONS(3479), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3524), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3489), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3533), 4, + ACTIONS(3433), 14, 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, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -139562,7 +139660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139578,11 +139676,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(3435), 18, + ACTIONS(3429), 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, @@ -139597,15 +139694,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3467] = 3, + [3532] = 14, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(803), 1, + anon_sym_EQ, + ACTIONS(883), 1, + anon_sym_in, + ACTIONS(886), 1, + anon_sym_of, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2496), 22, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_EQ, + anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139624,20 +139769,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2494), 38, + anon_sym_instanceof, + anon_sym_satisfies, + [3623] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(953), 1, + anon_sym_EQ, + ACTIONS(959), 1, + anon_sym_EQ_GT, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(161), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_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, @@ -139653,32 +139821,47 @@ 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(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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3536] = 12, + [3710] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(908), 1, anon_sym_EQ_GT, + ACTIONS(915), 1, + anon_sym_EQ, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139686,8 +139869,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 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, @@ -139738,22 +139921,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3623] = 12, + [3797] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(906), 1, - anon_sym_EQ_GT, - ACTIONS(931), 1, + ACTIONS(803), 1, anon_sym_EQ, + ACTIONS(959), 1, + anon_sym_EQ_GT, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139761,8 +139944,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 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, @@ -139813,22 +139996,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3710] = 12, + [3884] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(829), 1, + ACTIONS(803), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(908), 1, anon_sym_EQ_GT, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139836,8 +140019,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 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, @@ -139888,31 +140071,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3797] = 12, + [3971] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(829), 1, + ACTIONS(967), 1, anon_sym_EQ, - ACTIONS(906), 1, + ACTIONS(973), 1, anon_sym_EQ_GT, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(161), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139938,11 +140120,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(122), 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, @@ -139963,22 +140146,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3884] = 12, + [4058] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(949), 1, - anon_sym_EQ_GT, - ACTIONS(969), 1, + ACTIONS(803), 1, anon_sym_EQ, + ACTIONS(973), 1, + anon_sym_EQ_GT, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140038,40 +140221,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3971] = 14, - ACTIONS(3444), 1, + [4145] = 16, + ACTIONS(3485), 1, anon_sym_EQ_GT, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(3499), 1, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3547), 1, - anon_sym_EQ, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, + ACTIONS(3542), 1, + anon_sym_QMARK, + STATE(2915), 1, sym_type_arguments, + STATE(5393), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3498), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, - anon_sym_GT, + anon_sym_RBRACK, + ACTIONS(3510), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, - sym__automatic_semicolon, + ACTIONS(3433), 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, @@ -140081,7 +140265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140097,10 +140281,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(3435), 17, + ACTIONS(3429), 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, @@ -140115,22 +140300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4062] = 12, + [4240] = 13, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(829), 1, - anon_sym_EQ, - ACTIONS(949), 1, + ACTIONS(159), 1, anon_sym_EQ_GT, + ACTIONS(803), 1, + anon_sym_EQ, + ACTIONS(809), 1, + anon_sym_COLON, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140164,12 +140351,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(122), 24, 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, @@ -140190,44 +140376,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4149] = 14, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, + [4329] = 14, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(3545), 1, anon_sym_EQ, - ACTIONS(853), 1, - anon_sym_in, - ACTIONS(856), 1, - anon_sym_of, - ACTIONS(3400), 1, - sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + ACTIONS(3547), 1, + anon_sym_EQ_GT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3479), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3489), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + 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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140243,64 +140435,56 @@ 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(3429), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_GT, + 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_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4240] = 14, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3497), 1, + [4420] = 14, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(3499), 1, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, anon_sym_DOT, - ACTIONS(3503), 1, + ACTIONS(3528), 1, anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - STATE(2895), 1, + ACTIONS(3549), 1, + anon_sym_EQ, + ACTIONS(3551), 1, + anon_sym_EQ_GT, + STATE(2894), 1, sym_arguments, - STATE(2984), 1, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3479), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3483), 3, + ACTIONS(3489), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(3433), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140310,7 +140494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + anon_sym_implements, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140326,7 +140511,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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140344,24 +140529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4331] = 13, + [4510] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(829), 1, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(831), 1, - anon_sym_COLON, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140420,30 +140603,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4420] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, + [4596] = 12, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(983), 1, + ACTIONS(803), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(883), 1, + anon_sym_in, + ACTIONS(886), 1, + anon_sym_of, + ACTIONS(3244), 1, + anon_sym_LBRACE, + ACTIONS(3553), 1, sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + ACTIONS(3555), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + STATE(5158), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(161), 11, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140469,11 +140653,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(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, @@ -140494,25 +140677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4506] = 8, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [4682] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3556), 1, - anon_sym_QMARK, + ACTIONS(1041), 1, + anon_sym_EQ, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(161), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140521,12 +140707,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(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140542,8 +140726,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(3435), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140564,12 +140749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4584] = 6, + anon_sym_instanceof, + anon_sym_satisfies, + [4768] = 7, ACTIONS(3562), 1, + anon_sym_class, + ACTIONS(3565), 1, anon_sym_AT, - STATE(1222), 1, + STATE(1238), 1, aux_sym_export_statement_repeat1, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, @@ -140589,7 +140778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3558), 42, + ACTIONS(3558), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -140598,7 +140787,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, @@ -140632,102 +140820,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [4658] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, - anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + [4844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, + ACTIONS(3570), 16, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, 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, + 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, - 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, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3568), 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_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, - [4744] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(981), 1, - anon_sym_EQ, - ACTIONS(3400), 1, + anon_sym_void, + anon_sym_delete, sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + 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, + [4912] = 8, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + ACTIONS(3576), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3572), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3433), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140736,10 +140912,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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140755,9 +140933,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(3429), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140778,24 +140955,22 @@ 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, - [4830] = 12, + [4990] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(979), 1, + ACTIONS(1043), 1, anon_sym_EQ, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140854,31 +141029,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4916] = 9, - ACTIONS(870), 1, - anon_sym_EQ_GT, - ACTIONS(912), 1, - anon_sym_EQ, - ACTIONS(3565), 1, + [5076] = 15, + ACTIONS(3498), 1, + anon_sym_RPAREN, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3504), 1, anon_sym_LBRACK, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_EQ_GT, + ACTIONS(3586), 1, + anon_sym_QMARK, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3568), 2, + ACTIONS(3510), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1903), 6, - sym__automatic_semicolon, + ACTIONS(3581), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(161), 14, + anon_sym_COLON, + ACTIONS(3433), 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, @@ -140889,7 +141071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140905,7 +141087,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(3429), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140921,44 +141103,33 @@ 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, - [4996] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [5168] = 12, + ACTIONS(3438), 1, anon_sym_EQ_GT, - ACTIONS(1047), 1, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3532), 1, anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3504), 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(167), 15, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140974,53 +141145,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(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, - [5082] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, - anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(831), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(3433), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141031,60 +141162,40 @@ 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), 21, + ACTIONS(3429), 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, - [5160] = 12, + [5254] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(989), 1, + ACTIONS(1047), 1, anon_sym_EQ, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -141143,30 +141254,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5246] = 12, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3521), 1, + [5340] = 12, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3527), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - STATE(2926), 1, + ACTIONS(3545), 1, + anon_sym_EQ, + ACTIONS(3547), 1, + anon_sym_EQ_GT, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 2, + ACTIONS(3504), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3524), 3, + ACTIONS(3510), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141182,13 +141293,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(3439), 16, + ACTIONS(3433), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141199,7 +141310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141217,30 +141328,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5332] = 12, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3501), 1, - anon_sym_EQ_GT, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, + [5426] = 14, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - STATE(2926), 1, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(3584), 1, + anon_sym_EQ_GT, + ACTIONS(3588), 1, + anon_sym_EQ, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 2, + ACTIONS(3479), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3524), 3, + anon_sym_extends, + ACTIONS(3489), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3446), 15, + ACTIONS(3433), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RPAREN, + 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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141256,24 +141386,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(3439), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - 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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141291,23 +141404,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5418] = 8, - ACTIONS(3507), 1, + [5516] = 8, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3554), 1, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3573), 1, + ACTIONS(723), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3571), 5, + ACTIONS(128), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141323,7 +141436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141339,7 +141452,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(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141361,31 +141474,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5496] = 12, + [5594] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(829), 1, + ACTIONS(1037), 1, anon_sym_EQ, - ACTIONS(853), 1, - anon_sym_in, - ACTIONS(856), 1, - anon_sym_of, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3575), 1, + ACTIONS(3400), 1, sym_identifier, - ACTIONS(3577), 1, - anon_sym_LBRACK, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5120), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 11, + ACTIONS(161), 12, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141411,10 +141523,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(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, @@ -141435,22 +141548,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5582] = 12, + [5680] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(991), 1, + ACTIONS(803), 1, anon_sym_EQ, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -141509,118 +141622,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5668] = 7, - ACTIONS(3562), 1, - anon_sym_AT, - ACTIONS(3580), 1, - anon_sym_class, - STATE(1222), 1, - aux_sym_export_statement_repeat1, - STATE(1270), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3560), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [5766] = 12, + ACTIONS(149), 1, anon_sym_DQUOTE, + ACTIONS(151), 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, - ACTIONS(3558), 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, - [5744] = 15, - ACTIONS(3512), 1, - anon_sym_RPAREN, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(159), 1, anon_sym_EQ_GT, - STATE(2926), 1, - sym_type_arguments, + ACTIONS(1049), 1, + anon_sym_EQ, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3524), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3586), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3439), 13, + ACTIONS(161), 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(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141636,8 +141671,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(3435), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141646,37 +141682,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, - [5836] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5852] = 8, + ACTIONS(3574), 1, anon_sym_EQ_GT, - ACTIONS(987), 1, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(3590), 1, anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3593), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3433), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -141685,10 +141723,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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141704,9 +141744,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(3429), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141727,41 +141766,107 @@ 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, - [5922] = 14, - ACTIONS(3497), 1, + [5930] = 6, + ACTIONS(3565), 1, + anon_sym_AT, + STATE(1238), 1, + aux_sym_export_statement_repeat1, + STATE(1267), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 14, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3499), 1, + 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(3558), 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, + [6004] = 15, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, + ACTIONS(3574), 1, anon_sym_EQ_GT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(3590), 1, + anon_sym_EQ, + ACTIONS(3595), 1, + anon_sym_RPAREN, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, - anon_sym_GT, + ACTIONS(3510), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 13, - sym__automatic_semicolon, + ACTIONS(3593), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3433), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141771,7 +141876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141787,10 +141892,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(3435), 17, + ACTIONS(3429), 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, @@ -141805,22 +141911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6012] = 12, + [6096] = 12, ACTIONS(149), 1, anon_sym_DQUOTE, ACTIONS(151), 1, anon_sym_SQUOTE, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_EQ, ACTIONS(3400), 1, sym_identifier, - STATE(1509), 1, + STATE(1552), 1, sym_nested_identifier, - STATE(1522), 1, + STATE(1553), 1, sym_string, - STATE(1716), 1, + STATE(1757), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -141879,49 +141985,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6098] = 14, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - ACTIONS(3595), 1, + [6182] = 12, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3597), 1, + ACTIONS(3485), 1, anon_sym_EQ_GT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3504), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, + ACTIONS(3510), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - 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(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141937,7 +142024,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(3435), 17, + ACTIONS(3433), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141955,39 +142059,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6188] = 14, - ACTIONS(3497), 1, + [6268] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3600), 16, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, + 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(3598), 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, - ACTIONS(3589), 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, + [6336] = 9, + ACTIONS(879), 1, anon_sym_EQ_GT, - ACTIONS(3599), 1, + ACTIONS(912), 1, anon_sym_EQ, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, - sym_type_arguments, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, - anon_sym_GT, + ACTIONS(3605), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 13, + ACTIONS(1817), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(161), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RPAREN, - 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, @@ -141997,7 +142159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142013,10 +142175,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(3435), 17, + ACTIONS(122), 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, @@ -142028,41 +142191,43 @@ 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, - [6278] = 14, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3497), 1, + [6416] = 14, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(3499), 1, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, anon_sym_DOT, - ACTIONS(3503), 1, + ACTIONS(3528), 1, anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - STATE(2895), 1, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3610), 1, + anon_sym_EQ_GT, + STATE(2894), 1, sym_arguments, - STATE(2984), 1, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3473), 4, + ACTIONS(3479), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3439), 11, + ACTIONS(3489), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 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, @@ -142072,7 +142237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142088,11 +142253,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(3435), 18, + ACTIONS(3429), 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, @@ -142107,38 +142271,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6368] = 15, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [6506] = 8, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3556), 1, + ACTIONS(803), 1, + anon_sym_EQ, + ACTIONS(825), 1, anon_sym_QMARK, - ACTIONS(3601), 1, - anon_sym_RPAREN, - STATE(2926), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3524), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3552), 2, + ACTIONS(809), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3439), 13, + 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, @@ -142149,7 +142303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142165,7 +142319,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(3435), 18, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142175,39 +142329,52 @@ 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, - [6460] = 12, - ACTIONS(3444), 1, + [6584] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - ACTIONS(3547), 1, + ACTIONS(1039), 1, anon_sym_EQ, - STATE(2926), 1, - sym_type_arguments, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 2, - anon_sym_COMMA, + ACTIONS(161), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3524), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3446), 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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142223,83 +142390,65 @@ 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__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(3435), 17, + 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, - [6546] = 14, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - ACTIONS(3589), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6670] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3599), 1, + ACTIONS(979), 1, anon_sym_EQ, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, - sym_type_arguments, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3473), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3439), 13, + ACTIONS(161), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + 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(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142315,8 +142464,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(3435), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142325,49 +142475,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_QMARK_QMARK, - [6636] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1045), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6756] = 14, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + ACTIONS(3485), 1, + anon_sym_EQ_GT, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3489), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3479), 4, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3433), 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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142383,9 +142546,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(3429), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142394,54 +142556,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, - anon_sym_instanceof, - anon_sym_satisfies, - [6722] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [6846] = 14, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(3584), 1, anon_sym_EQ_GT, - ACTIONS(985), 1, + ACTIONS(3588), 1, anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1509), 1, - sym_nested_identifier, - STATE(1522), 1, - sym_string, - STATE(1716), 1, - sym__module, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3489), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3479), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3433), 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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142457,9 +142622,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(3429), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142468,39 +142632,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, - anon_sym_instanceof, - anon_sym_satisfies, - [6808] = 8, - ACTIONS(119), 1, - anon_sym_EQ, + [6936] = 12, + ACTIONS(149), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, + anon_sym_SQUOTE, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, + ACTIONS(981), 1, + anon_sym_EQ, + ACTIONS(3400), 1, + sym_identifier, + STATE(1552), 1, + sym_nested_identifier, + STATE(1553), 1, + sym_string, + STATE(1757), 1, + sym__module, 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(161), 15, + ACTIONS(161), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -142509,11 +142671,9 @@ 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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -142530,8 +142690,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(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142552,35 +142713,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6886] = 14, - ACTIONS(3497), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7022] = 14, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(3499), 1, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, anon_sym_DOT, - ACTIONS(3503), 1, + ACTIONS(3528), 1, anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - ACTIONS(3604), 1, + ACTIONS(3612), 1, anon_sym_EQ, - ACTIONS(3606), 1, + ACTIONS(3614), 1, anon_sym_EQ_GT, - STATE(2895), 1, + STATE(2894), 1, sym_arguments, - STATE(2984), 1, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3479), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3483), 3, + ACTIONS(3489), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 12, + ACTIONS(3433), 12, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -142593,7 +142756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142609,7 +142772,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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142627,42 +142790,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6975] = 11, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(159), 1, + [7111] = 8, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(3565), 1, - anon_sym_LBRACK, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(853), 1, + anon_sym_COLON, + ACTIONS(3427), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1903), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3568), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(161), 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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -142679,8 +142834,40 @@ 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(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, + [7188] = 4, + ACTIONS(3471), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142689,7 +142876,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, @@ -142699,36 +142888,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7058] = 12, - ACTIONS(3521), 1, + ACTIONS(3451), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3527), 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, + [7257] = 14, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - ACTIONS(3589), 1, - anon_sym_EQ_GT, - ACTIONS(3599), 1, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(3616), 1, anon_sym_EQ, - STATE(2926), 1, + ACTIONS(3618), 1, + anon_sym_EQ_GT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 2, + ACTIONS(3479), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3524), 3, + anon_sym_extends, + ACTIONS(3489), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 15, + ACTIONS(3433), 12, sym__ternary_qmark, anon_sym_as, - 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, @@ -142738,7 +142965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142754,7 +142981,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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142772,12 +142999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7143] = 8, + [7346] = 8, ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(849), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(858), 1, + ACTIONS(888), 1, anon_sym_COLON, ACTIONS(3427), 1, sym_identifier, @@ -142841,88 +143068,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [7220] = 3, + [7423] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3610), 15, - anon_sym_LBRACE, + ACTIONS(3471), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3449), 22, + anon_sym_STAR, + anon_sym_EQ, 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, - anon_sym_AT, - ACTIONS(3608), 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_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_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, - [7287] = 9, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(849), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3565), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3451), 32, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3568), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142938,15 +143124,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), 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, @@ -142956,30 +143133,11 @@ 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, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7366] = 3, + [7492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3537), 15, + ACTIONS(3518), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -142995,7 +143153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3535), 43, + ACTIONS(3516), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143039,47 +143197,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [7433] = 4, + [7559] = 14, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(3620), 1, + anon_sym_EQ, + ACTIONS(3622), 1, + anon_sym_EQ_GT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3479), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3465), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3489), 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(3467), 32, + ACTIONS(3433), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143095,112 +143254,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, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7502] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3459), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3455), 22, + ACTIONS(3429), 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(3457), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7571] = 14, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(3499), 1, + [7648] = 12, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3612), 1, - anon_sym_EQ, - ACTIONS(3614), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, + ACTIONS(3588), 1, + anon_sym_EQ, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3504), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, + ACTIONS(3510), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 12, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -143210,7 +143311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143226,7 +143327,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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143244,11 +143345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7660] = 3, + [7733] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3618), 15, + ACTIONS(3626), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -143264,7 +143365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3616), 43, + ACTIONS(3624), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143308,47 +143409,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [7727] = 4, - ACTIONS(3469), 1, - anon_sym_extends, + [7800] = 11, + ACTIONS(221), 1, + anon_sym_EQ, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(3602), 1, + anon_sym_LBRACK, 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_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(224), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1817), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3605), 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(3467), 35, - sym__automatic_semicolon, + ACTIONS(161), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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, @@ -143364,24 +143461,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, - [7796] = 4, - ACTIONS(3459), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3455), 22, + ACTIONS(122), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143390,9 +143471,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, @@ -143402,71 +143481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3457), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7865] = 12, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, + [7883] = 12, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3527), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3591), 1, + ACTIONS(3549), 1, anon_sym_EQ, - ACTIONS(3593), 1, + ACTIONS(3551), 1, anon_sym_EQ_GT, - STATE(2926), 1, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 2, + ACTIONS(3504), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3524), 3, + anon_sym_LBRACK, + ACTIONS(3510), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 15, - sym__automatic_semicolon, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143477,7 +143519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + anon_sym_implements, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143493,7 +143536,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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143511,101 +143554,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7950] = 9, - ACTIONS(864), 1, + [7968] = 7, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(3590), 1, anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3565), 2, + ACTIONS(3593), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3568), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - 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), 17, - sym__ternary_qmark, - anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, 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, - 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, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8029] = 11, - ACTIONS(221), 1, - anon_sym_EQ, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(3565), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(224), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1903), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3568), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143617,7 +143584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143633,7 +143600,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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143643,7 +143610,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, @@ -143653,46 +143622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8112] = 13, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3554), 1, + [8043] = 9, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3571), 1, - anon_sym_COLON, - STATE(2926), 1, - sym_type_arguments, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(1817), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3524), 2, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3605), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3533), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - 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(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143708,11 +143655,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(3435), 18, + ACTIONS(161), 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(122), 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, @@ -143724,23 +143688,24 @@ 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, - [8199] = 9, - ACTIONS(878), 1, + [8122] = 9, + ACTIONS(873), 1, anon_sym_EQ, - ACTIONS(884), 1, + ACTIONS(879), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, + ACTIONS(1817), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3565), 2, + ACTIONS(3602), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3568), 3, + ACTIONS(3605), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -143761,12 +143726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, ACTIONS(161), 17, - sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143795,39 +143760,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8278] = 7, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3552), 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, - 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(3446), 15, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8201] = 9, + ACTIONS(839), 1, + anon_sym_EQ, + ACTIONS(845), 1, + anon_sym_EQ_GT, + ACTIONS(1817), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3605), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143843,19 +143795,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + ACTIONS(161), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + 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, 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, @@ -143865,25 +143832,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8353] = 7, - ACTIONS(3507), 1, + [8280] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3630), 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, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3628), 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, + [8347] = 11, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3573), 1, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(723), 1, anon_sym_QMARK, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3571), 5, + ACTIONS(128), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(1817), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3605), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(161), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143895,7 +143932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143911,7 +143948,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(3435), 21, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143921,9 +143958,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, @@ -143933,35 +143968,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8428] = 8, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(849), 1, + [8430] = 13, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + ACTIONS(3572), 1, anon_sym_COLON, - ACTIONS(3427), 1, - sym_identifier, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3510), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3502), 3, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3433), 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(167), 15, + anon_sym_satisfies, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143977,9 +144023,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(3429), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143988,25 +144033,20 @@ 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, - [8505] = 3, + [8517] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 15, + ACTIONS(3634), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -144022,7 +144062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3620), 43, + ACTIONS(3632), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -144031,6 +144071,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, @@ -144065,39 +144106,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [8572] = 14, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(3499), 1, + [8584] = 12, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3624), 1, + ACTIONS(3608), 1, anon_sym_EQ, - ACTIONS(3626), 1, + ACTIONS(3610), 1, anon_sym_EQ_GT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3502), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3483), 3, + ACTIONS(3510), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 12, + ACTIONS(3433), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144107,7 +144145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144123,7 +144161,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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144141,37 +144179,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8661] = 14, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - ACTIONS(3507), 1, + [8669] = 14, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3554), 1, + ACTIONS(3485), 1, anon_sym_EQ_GT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + ACTIONS(3572), 1, + anon_sym_COLON, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3510), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3473), 4, + ACTIONS(3636), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3439), 11, + ACTIONS(3433), 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, @@ -144181,7 +144219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144197,7 +144235,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(3435), 18, + ACTIONS(3429), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144216,36 +144254,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8750] = 14, - ACTIONS(3471), 1, + [8758] = 7, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - ACTIONS(3571), 1, - anon_sym_COLON, - STATE(2926), 1, - sym_type_arguments, + ACTIONS(3576), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3524), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3628), 2, + ACTIONS(3572), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3439), 13, + ACTIONS(3433), 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, @@ -144256,7 +144284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144272,7 +144300,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(3435), 18, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144282,46 +144310,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_QMARK_QMARK, - [8839] = 14, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3497), 1, + [8833] = 14, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(3499), 1, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, anon_sym_DOT, - ACTIONS(3503), 1, + ACTIONS(3528), 1, anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - STATE(2895), 1, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + STATE(2894), 1, sym_arguments, - STATE(2984), 1, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3489), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3473), 3, - anon_sym_RBRACE, + ACTIONS(3479), 4, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3439), 12, + ACTIONS(3433), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144331,7 +144362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144347,7 +144378,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(3435), 18, + ACTIONS(3429), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144366,110 +144397,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8928] = 3, + [8922] = 4, + ACTIONS(3469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3634), 15, - anon_sym_LBRACE, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, 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, - anon_sym_AT, - ACTIONS(3632), 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_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_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, - [8995] = 12, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3597), 1, - anon_sym_EQ_GT, - STATE(2926), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3518), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3524), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(3446), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144485,45 +144453,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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, + [8991] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3469), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3445), 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, - [9080] = 8, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(3583), 1, + ACTIONS(3447), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9060] = 14, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(3485), 1, anon_sym_EQ_GT, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3439), 15, + ACTIONS(3489), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3479), 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3433), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144533,7 +144567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144549,7 +144583,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(3435), 21, + ACTIONS(3429), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144559,27 +144593,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_QMARK_QMARK, - [9156] = 6, - ACTIONS(3444), 1, + [9149] = 6, + ACTIONS(3485), 1, anon_sym_EQ_GT, - ACTIONS(3507), 1, + ACTIONS(3530), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144595,15 +144626,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(3439), 19, - sym__automatic_semicolon, + ACTIONS(3433), 19, 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, @@ -144615,7 +144646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144637,17 +144668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9228] = 7, - ACTIONS(685), 1, + [9221] = 7, + ACTIONS(853), 1, + anon_sym_COLON, + ACTIONS(3438), 1, anon_sym_EQ_GT, - ACTIONS(849), 1, + ACTIONS(3532), 1, anon_sym_EQ, - ACTIONS(858), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144663,7 +144694,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(3433), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144682,7 +144713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144704,44 +144735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9302] = 12, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + [9295] = 7, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_extends, - STATE(2926), 1, - sym_type_arguments, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(853), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3524), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 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(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144757,7 +144761,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(3435), 18, + 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, @@ -144767,32 +144790,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_QMARK_QMARK, - [9386] = 9, - ACTIONS(921), 1, - anon_sym_EQ, - ACTIONS(927), 1, + [9369] = 6, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3565), 1, - anon_sym_LBRACK, + ACTIONS(803), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3568), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -144809,12 +144826,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(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, @@ -144826,16 +144846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + 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, @@ -144845,47 +144868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9464] = 14, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - ACTIONS(3507), 1, + [9441] = 5, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 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(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144901,33 +144890,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(3435), 17, + ACTIONS(3433), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(3429), 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, - [9552] = 6, - ACTIONS(829), 1, - anon_sym_EQ, - ACTIONS(884), 1, - anon_sym_EQ_GT, + [9511] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(2510), 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(2508), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144943,17 +144987,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_LPAREN, - anon_sym_of, - 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, @@ -144963,56 +144996,34 @@ 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, - [9624] = 14, - ACTIONS(3497), 1, + [9577] = 14, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(3499), 1, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, anon_sym_DOT, - ACTIONS(3503), 1, + ACTIONS(3528), 1, anon_sym_QMARK_DOT, - ACTIONS(3505), 1, - anon_sym_LT, - ACTIONS(3507), 1, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3554), 1, + ACTIONS(3574), 1, anon_sym_EQ_GT, - STATE(2895), 1, + STATE(2894), 1, sym_arguments, - STATE(2984), 1, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3489), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3473), 3, + ACTIONS(3479), 3, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3439), 11, + ACTIONS(3433), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -145024,7 +145035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145040,7 +145051,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(3435), 18, + ACTIONS(3429), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145059,15 +145070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9712] = 4, + [9665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3465), 22, + ACTIONS(3445), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145090,12 +145097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3467), 32, + ACTIONS(3447), 35, + 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_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -145123,17 +145133,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9780] = 7, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(849), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_COLON, + [9731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3449), 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(3451), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145149,16 +145187,69 @@ 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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, + [9797] = 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_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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(2500), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145168,8 +145259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + [9863] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145190,31 +145286,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9854] = 10, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, - anon_sym_EQ, - ACTIONS(831), 1, - anon_sym_COLON, - ACTIONS(3565), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3568), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1903), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(3455), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145224,6 +145322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [9929] = 9, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(893), 1, + anon_sym_EQ, + ACTIONS(1817), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3605), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -145240,11 +145355,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(122), 19, + ACTIONS(161), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145260,11 +145391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9934] = 3, + [10007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2496), 22, + ACTIONS(3457), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145287,7 +145418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2494), 35, + ACTIONS(3459), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145323,17 +145454,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10000] = 4, + [10073] = 6, + ACTIONS(3438), 1, + anon_sym_EQ_GT, + ACTIONS(3532), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3459), 3, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3455), 22, + 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(3429), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145354,15 +145520,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3457), 32, + [10145] = 7, + ACTIONS(888), 1, + anon_sym_COLON, + ACTIONS(3438), 1, + anon_sym_EQ_GT, + ACTIONS(3532), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + 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(3429), 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, + [10219] = 6, + ACTIONS(839), 1, + anon_sym_EQ, + ACTIONS(845), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145378,6 +145611,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(161), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -145387,25 +145631,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10068] = 10, - ACTIONS(870), 1, - anon_sym_EQ_GT, - ACTIONS(912), 1, + 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, + [10291] = 11, + ACTIONS(809), 1, + anon_sym_COLON, + ACTIONS(873), 1, anon_sym_EQ, - ACTIONS(1905), 1, - anon_sym_QMARK, - ACTIONS(3565), 1, + ACTIONS(879), 1, + anon_sym_EQ_GT, + ACTIONS(1817), 1, + anon_sym_extends, + ACTIONS(3602), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3568), 2, + ACTIONS(3605), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1903), 3, + ACTIONS(3640), 2, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_extends, ACTIONS(161), 14, sym__ternary_qmark, anon_sym_as, @@ -145457,15 +145724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10148] = 6, - ACTIONS(3444), 1, - anon_sym_EQ_GT, - ACTIONS(3547), 1, + [10373] = 6, + ACTIONS(803), 1, anon_sym_EQ, + ACTIONS(845), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145481,13 +145748,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(3439), 19, + ACTIONS(161), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145501,7 +145768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145523,14 +145790,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10220] = 6, - ACTIONS(864), 1, + [10445] = 8, + ACTIONS(221), 1, anon_sym_EQ, - ACTIONS(870), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, + ACTIONS(723), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(224), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + 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, @@ -145547,15 +145836,66 @@ 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(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, + [10521] = 9, + ACTIONS(937), 1, + anon_sym_EQ, + ACTIONS(943), 1, + anon_sym_EQ_GT, + ACTIONS(1817), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3605), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + 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), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145567,19 +145907,17 @@ 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(122), 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, @@ -145589,11 +145927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10292] = 3, + [10599] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 22, + ACTIONS(3473), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145616,7 +145954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3463), 35, + ACTIONS(3475), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145652,15 +145990,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10358] = 6, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, + [10665] = 14, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(3530), 1, anon_sym_EQ, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3479), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3489), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145676,59 +146046,33 @@ 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, - 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(3429), 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, - [10430] = 7, - ACTIONS(858), 1, - anon_sym_COLON, - ACTIONS(3444), 1, - anon_sym_EQ_GT, - ACTIONS(3547), 1, + [10753] = 6, + ACTIONS(3530), 1, anon_sym_EQ, + ACTIONS(3547), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145744,12 +146088,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(3439), 18, + ACTIONS(3433), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145763,7 +146108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145785,15 +146130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10504] = 6, - ACTIONS(3501), 1, - anon_sym_EQ_GT, - ACTIONS(3507), 1, + [10825] = 6, + ACTIONS(803), 1, anon_sym_EQ, + ACTIONS(879), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145809,15 +146154,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(3439), 19, - sym__automatic_semicolon, + ACTIONS(161), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145829,7 +146174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145851,45 +146196,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10576] = 3, + [10897] = 10, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(803), 1, + anon_sym_EQ, + ACTIONS(809), 1, + anon_sym_COLON, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 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(3605), 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(3489), 35, - sym__automatic_semicolon, + ACTIONS(1817), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(161), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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, @@ -145905,24 +146246,33 @@ 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, - [10642] = 8, + ACTIONS(122), 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, + [10977] = 7, ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(849), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(853), 1, - anon_sym_in, - ACTIONS(3636), 1, - anon_sym_of, + ACTIONS(888), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -145961,9 +146311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145982,15 +146333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10718] = 6, - ACTIONS(878), 1, - anon_sym_EQ, - ACTIONS(884), 1, + [11051] = 6, + ACTIONS(3438), 1, anon_sym_EQ_GT, + ACTIONS(3530), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146006,13 +146357,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(3433), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -146026,7 +146377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146048,17 +146399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10790] = 7, - ACTIONS(851), 1, - anon_sym_COLON, - ACTIONS(3444), 1, + [11123] = 8, + ACTIONS(3438), 1, anon_sym_EQ_GT, - ACTIONS(3547), 1, + ACTIONS(3532), 1, anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3647), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146074,7 +146427,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(3439), 18, + ACTIONS(3433), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146093,10 +146446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146115,25 +146467,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10864] = 8, - ACTIONS(221), 1, - anon_sym_EQ, - ACTIONS(227), 1, + [11199] = 10, + ACTIONS(879), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, + ACTIONS(912), 1, + anon_sym_EQ, + ACTIONS(1819), 1, anon_sym_QMARK, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(3605), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1817), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(161), 15, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(161), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146161,7 +146517,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(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146171,9 +146527,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, @@ -146183,11 +146537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10940] = 3, + [11279] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 22, + ACTIONS(3469), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3445), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146210,15 +146568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3467), 35, - sym__automatic_semicolon, + ACTIONS(3447), 32, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146246,34 +146601,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11006] = 12, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3624), 1, - anon_sym_EQ, - ACTIONS(3626), 1, - anon_sym_EQ_GT, - STATE(2926), 1, - sym_type_arguments, + [11347] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 2, + ACTIONS(3471), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3524), 3, + ACTIONS(3449), 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, - ACTIONS(3439), 14, + 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(3451), 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, + [11415] = 8, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_EQ_GT, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3581), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(3433), 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, @@ -146284,7 +146695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146300,29 +146711,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(3429), 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, - [11090] = 3, + [11491] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3431), 22, + ACTIONS(3461), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146345,7 +146760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3433), 35, + ACTIONS(3463), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146381,19 +146796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11156] = 8, - ACTIONS(3444), 1, + [11557] = 6, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3547), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(3638), 1, - anon_sym_in, - ACTIONS(3641), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146409,11 +146820,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(3439), 18, + 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, @@ -146428,9 +146840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146449,38 +146862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11232] = 6, - ACTIONS(3495), 1, + [11629] = 8, + ACTIONS(809), 1, + anon_sym_COLON, + ACTIONS(873), 1, anon_sym_EQ, - ACTIONS(3501), 1, + ACTIONS(879), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 19, - sym__automatic_semicolon, + ACTIONS(890), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146493,7 +146892,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + 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, @@ -146515,14 +146930,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11304] = 6, - ACTIONS(829), 1, + [11705] = 9, + ACTIONS(923), 1, anon_sym_EQ, - ACTIONS(870), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(1817), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3605), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -146539,15 +146963,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), 19, + ACTIONS(161), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146559,19 +146980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(122), 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, @@ -146581,13 +146999,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11376] = 3, + [11783] = 12, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(3485), 1, + anon_sym_EQ_GT, + ACTIONS(3502), 1, + anon_sym_extends, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3491), 22, + ACTIONS(3504), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3510), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 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(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146596,30 +147062,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_QMARK_QMARK, - ACTIONS(3493), 35, - sym__automatic_semicolon, + [11867] = 12, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + ACTIONS(3616), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_EQ_GT, + STATE(2915), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3502), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146635,54 +147125,33 @@ 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, - [11442] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3455), 22, + ACTIONS(3429), 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(3457), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [11951] = 6, + ACTIONS(3545), 1, + anon_sym_EQ, + ACTIONS(3547), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146698,6 +147167,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(3433), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -146707,15 +147187,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11508] = 6, - ACTIONS(3471), 1, + ACTIONS(3429), 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, + [12023] = 6, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3485), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146731,7 +147233,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(3439), 19, + ACTIONS(3433), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -146751,7 +147253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146773,30 +147275,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11580] = 12, - ACTIONS(3518), 1, + [12095] = 12, + ACTIONS(3504), 1, anon_sym_LBRACK, - ACTIONS(3521), 1, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3527), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3604), 1, + ACTIONS(3612), 1, anon_sym_EQ, - ACTIONS(3606), 1, + ACTIONS(3614), 1, anon_sym_EQ_GT, - STATE(2926), 1, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 2, + ACTIONS(3502), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3524), 3, + ACTIONS(3510), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(3433), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146811,7 +147313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146827,33 +147329,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(3429), 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, + [12179] = 3, + 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_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, 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, - [11664] = 6, - ACTIONS(3479), 1, + ACTIONS(3467), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12245] = 8, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3507), 1, + ACTIONS(851), 1, anon_sym_EQ, + ACTIONS(883), 1, + anon_sym_in, + ACTIONS(3649), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146869,15 +147438,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), 19, + ACTIONS(161), 18, + 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_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146889,10 +147457,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(122), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146911,30 +147478,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11736] = 12, - ACTIONS(3518), 1, + [12321] = 12, + ACTIONS(3504), 1, anon_sym_LBRACK, - ACTIONS(3521), 1, + ACTIONS(3536), 1, anon_sym_DOT, - ACTIONS(3527), 1, + ACTIONS(3539), 1, anon_sym_LT, - ACTIONS(3612), 1, + ACTIONS(3620), 1, anon_sym_EQ, - ACTIONS(3614), 1, + ACTIONS(3622), 1, anon_sym_EQ_GT, - STATE(2926), 1, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 2, + ACTIONS(3502), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3524), 3, + ACTIONS(3510), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(3433), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146949,7 +147516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146965,7 +147532,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(3435), 17, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146983,41 +147550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11820] = 11, - ACTIONS(831), 1, - anon_sym_COLON, - ACTIONS(864), 1, + [12405] = 6, + ACTIONS(873), 1, anon_sym_EQ, - ACTIONS(870), 1, + ACTIONS(879), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_extends, - ACTIONS(3565), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3568), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3643), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - 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, @@ -147034,7 +147574,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(122), 19, + ACTIONS(161), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_EQ_EQ_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, @@ -147044,7 +147604,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, @@ -147054,21 +147616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11902] = 8, - ACTIONS(831), 1, - anon_sym_COLON, - ACTIONS(864), 1, + [12477] = 7, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_EQ_GT, + ACTIONS(3572), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(890), 3, + ACTIONS(3651), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147084,7 +147644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147100,7 +147660,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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147122,11 +147682,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11978] = 3, + [12550] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2528), 22, + ACTIONS(3469), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3445), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147149,14 +147712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2526), 35, + ACTIONS(3447), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -147185,52 +147745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12044] = 6, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(849), 1, - anon_sym_EQ, + [12617] = 4, 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), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3471), 2, 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(122), 21, + anon_sym_extends, + ACTIONS(3449), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147251,24 +147775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12116] = 9, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3565), 2, - anon_sym_COMMA, + ACTIONS(3451), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3568), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147284,12 +147799,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(161), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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, + [12684] = 9, + ACTIONS(873), 1, + anon_sym_EQ, + ACTIONS(879), 1, + anon_sym_EQ_GT, + ACTIONS(1817), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3605), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147301,10 +147840,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147320,60 +147876,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12194] = 3, + [12761] = 7, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3451), 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(3453), 35, - sym__automatic_semicolon, + ACTIONS(3581), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147383,24 +147904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12260] = 9, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3565), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3568), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147416,33 +147920,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(161), 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(122), 18, + ACTIONS(3429), 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, @@ -147452,13 +147942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12338] = 5, - ACTIONS(3507), 1, + [12834] = 6, + ACTIONS(3584), 1, + anon_sym_EQ_GT, + ACTIONS(3588), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147474,15 +147966,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(3439), 20, - sym__automatic_semicolon, + ACTIONS(3433), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147495,7 +147985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147517,45 +148007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12408] = 4, + [12905] = 6, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(893), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3459), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3455), 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(3457), 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, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147571,6 +148031,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), 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, @@ -147580,17 +148050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12475] = 5, - ACTIONS(3469), 1, - anon_sym_extends, - ACTIONS(3647), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3465), 22, + ACTIONS(122), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147611,54 +148072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3467), 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, - [12544] = 9, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(897), 1, + [12976] = 7, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_COLON, - ACTIONS(906), 1, + ACTIONS(3485), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3651), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147674,7 +148100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147690,7 +148116,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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147712,45 +148138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12621] = 4, + [13049] = 6, + ACTIONS(937), 1, + anon_sym_EQ, + ACTIONS(943), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3465), 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(3467), 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, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147766,6 +148162,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), 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, @@ -147775,28 +148180,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12688] = 10, - ACTIONS(3552), 1, - anon_sym_COMMA, - ACTIONS(3586), 1, - anon_sym_RBRACK, - ACTIONS(3606), 1, - anon_sym_EQ_GT, - ACTIONS(3649), 1, - anon_sym_EQ, - ACTIONS(3652), 1, + anon_sym_implements, + ACTIONS(122), 21, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(3654), 1, - anon_sym_COLON, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [13120] = 12, + ACTIONS(3504), 1, + anon_sym_LBRACK, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3536), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_LT, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3502), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 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, @@ -147807,7 +148240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147823,40 +148256,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 20, + ACTIONS(3429), 17, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + 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_QMARK_QMARK, - [12767] = 7, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(3583), 1, + [13203] = 9, + ACTIONS(128), 1, + anon_sym_COMMA, + ACTIONS(224), 1, + anon_sym_RBRACK, + ACTIONS(899), 1, anon_sym_EQ, + ACTIONS(904), 1, + anon_sym_COLON, + ACTIONS(908), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147872,7 +148304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147888,7 +148320,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(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147910,36 +148342,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12840] = 5, - ACTIONS(3547), 1, + [13280] = 10, + ACTIONS(3581), 1, + anon_sym_RBRACK, + ACTIONS(3593), 1, + anon_sym_COMMA, + ACTIONS(3614), 1, + anon_sym_EQ_GT, + ACTIONS(3654), 1, anon_sym_EQ, + ACTIONS(3657), 1, + anon_sym_in, + ACTIONS(3659), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 19, - sym__automatic_semicolon, + ACTIONS(3433), 15, 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, @@ -147952,10 +148374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147974,15 +148411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12909] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, + [13359] = 7, + ACTIONS(3532), 1, anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3647), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147998,13 +148437,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), 18, + ACTIONS(3433), 18, + 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, @@ -148017,10 +148456,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3429), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148039,11 +148477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12980] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, + [13432] = 6, + ACTIONS(803), 1, anon_sym_EQ, + ACTIONS(943), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -148066,10 +148504,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148082,6 +148519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, @@ -148104,19 +148542,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13051] = 7, + [13503] = 5, ACTIONS(3471), 1, + anon_sym_extends, + ACTIONS(3661), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3479), 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(3451), 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, + [13572] = 7, + ACTIONS(879), 1, anon_sym_EQ_GT, + ACTIONS(912), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3656), 3, + ACTIONS(224), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148132,7 +148634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148148,7 +148650,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(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148170,37 +148672,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13124] = 6, - ACTIONS(3589), 1, + [13645] = 7, + ACTIONS(3485), 1, anon_sym_EQ_GT, - ACTIONS(3599), 1, + ACTIONS(3495), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 18, + ACTIONS(3581), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3433), 15, 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, @@ -148213,7 +148700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148235,15 +148738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13195] = 6, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, + [13718] = 5, + ACTIONS(3532), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148259,12 +148760,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), 18, + ACTIONS(3433), 19, + 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148277,8 +148780,7 @@ 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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148300,93 +148802,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13266] = 12, - ACTIONS(3507), 1, + [13787] = 7, + ACTIONS(923), 1, anon_sym_EQ, - ACTIONS(3518), 1, - anon_sym_LBRACK, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, - STATE(2926), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3533), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3524), 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(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, - [13349] = 7, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3571), 1, - anon_sym_COLON, + ACTIONS(3663), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3656), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(161), 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, @@ -148394,12 +148824,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(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148415,8 +148843,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(3435), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148437,17 +148866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13422] = 7, - ACTIONS(3547), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13860] = 5, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3638), 1, - anon_sym_in, - ACTIONS(3641), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148463,14 +148890,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(3439), 18, - sym__automatic_semicolon, + ACTIONS(3433), 19, 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, @@ -148482,9 +148910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148503,15 +148932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13495] = 6, - ACTIONS(829), 1, + [13929] = 6, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148527,12 +148956,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), 18, + ACTIONS(3433), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148545,8 +148975,7 @@ 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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148568,23 +148997,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13566] = 7, - ACTIONS(870), 1, - anon_sym_EQ_GT, - ACTIONS(912), 1, + [14000] = 9, + ACTIONS(953), 1, anon_sym_EQ, + ACTIONS(959), 1, + anon_sym_EQ_GT, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(1817), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3605), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148612,19 +149046,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(122), 21, + ACTIONS(122), 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, @@ -148634,35 +149065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13639] = 7, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3509), 1, + [14077] = 5, + ACTIONS(3545), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - 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(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148678,7 +149087,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(3435), 21, + ACTIONS(3433), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + 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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148700,50 +149129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13712] = 7, - ACTIONS(921), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_EQ_GT, - ACTIONS(3427), 1, - sym_identifier, + [14146] = 5, + ACTIONS(3469), 1, + anon_sym_extends, + ACTIONS(3665), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(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, + ACTIONS(3445), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148764,33 +149160,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(3447), 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, - [13785] = 7, - ACTIONS(921), 1, - anon_sym_EQ, - ACTIONS(927), 1, + [14215] = 9, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(3659), 1, - sym_identifier, + ACTIONS(915), 1, + anon_sym_EQ, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(1817), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3605), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(161), 15, 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, anon_sym_EQ_EQ_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, @@ -148807,20 +149242,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(122), 24, + ACTIONS(122), 18, 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, @@ -148830,15 +149261,32 @@ 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, - [13858] = 5, - ACTIONS(3471), 1, + [14292] = 7, + ACTIONS(923), 1, anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(3427), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(161), 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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148854,28 +149302,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(3439), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_EQ_EQ_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, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148896,15 +149325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13927] = 6, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3589), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [14365] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, + ACTIONS(803), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148920,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(3439), 18, + ACTIONS(161), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -148939,7 +149370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148961,20 +149392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13998] = 9, - ACTIONS(955), 1, + [14436] = 9, + ACTIONS(967), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_EQ_GT, - ACTIONS(3565), 1, + ACTIONS(3602), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 2, + ACTIONS(1817), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3568), 3, + ACTIONS(3605), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -148982,7 +149413,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149029,39 +149460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14075] = 9, - ACTIONS(864), 1, + [14513] = 6, + ACTIONS(3549), 1, anon_sym_EQ, - ACTIONS(870), 1, + ACTIONS(3551), 1, anon_sym_EQ_GT, - ACTIONS(1903), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3565), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3568), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, - 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, - 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(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149077,7 +149484,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), 19, + ACTIONS(3433), 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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149087,7 +149513,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, @@ -149097,13 +149525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14152] = 5, - ACTIONS(3495), 1, + [14584] = 6, + ACTIONS(3530), 1, anon_sym_EQ, + ACTIONS(3551), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149119,14 +149549,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(3439), 19, - sym__automatic_semicolon, + ACTIONS(3433), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149139,7 +149567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + anon_sym_implements, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149161,39 +149590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14221] = 9, - ACTIONS(906), 1, - anon_sym_EQ_GT, - ACTIONS(931), 1, + [14655] = 6, + ACTIONS(803), 1, anon_sym_EQ, - ACTIONS(3565), 1, - anon_sym_LBRACK, + ACTIONS(929), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3568), 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, @@ -149210,16 +149614,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(122), 18, + ACTIONS(161), 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(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, @@ -149229,28 +149654,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14298] = 9, - ACTIONS(949), 1, + [14725] = 8, + ACTIONS(3581), 1, + anon_sym_RBRACK, + ACTIONS(3593), 1, + anon_sym_COMMA, + ACTIONS(3614), 1, anon_sym_EQ_GT, - ACTIONS(969), 1, + ACTIONS(3654), 1, anon_sym_EQ, - ACTIONS(3565), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3568), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, + ACTIONS(3433), 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, @@ -149262,7 +149682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149278,16 +149698,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(3429), 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, @@ -149297,15 +149720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14375] = 6, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3597), 1, + [14799] = 7, + ACTIONS(904), 1, + anon_sym_COLON, + ACTIONS(908), 1, anon_sym_EQ_GT, + ACTIONS(915), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149321,13 +149746,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(3439), 18, + ACTIONS(161), 16, 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, @@ -149339,8 +149763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149362,15 +149785,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14446] = 6, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3597), 1, + [14871] = 9, + ACTIONS(159), 1, anon_sym_EQ_GT, + ACTIONS(803), 1, + anon_sym_EQ, + ACTIONS(3602), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(1817), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3605), 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149386,38 +149833,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(3439), 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(3435), 21, + ACTIONS(122), 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, @@ -149427,46 +149852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14517] = 5, - ACTIONS(3459), 1, - anon_sym_extends, - ACTIONS(3661), 1, - anon_sym_QMARK, + [14947] = 8, + ACTIONS(3612), 1, + anon_sym_EQ, + ACTIONS(3614), 1, + anon_sym_EQ_GT, + ACTIONS(3657), 1, + anon_sym_in, + ACTIONS(3659), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3455), 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(3457), 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, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149482,6 +149880,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(3433), 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, @@ -149491,48 +149897,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14586] = 31, + ACTIONS(3429), 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, + [15021] = 31, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -149546,28 +149973,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3276), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3792), 6, + STATE(3858), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -149580,48 +150007,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14706] = 31, + [15141] = 31, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -149629,34 +150056,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 2, + ACTIONS(3691), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3689), 2, + ACTIONS(3693), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3795), 6, + STATE(3721), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -149669,237 +150096,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14826] = 5, - ACTIONS(3599), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 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(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, - [14894] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3469), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3465), 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(3467), 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, - [14960] = 6, - ACTIONS(3509), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - 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(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, - [15030] = 31, + [15261] = 31, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -149907,34 +150145,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3691), 2, + ACTIONS(3695), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3693), 2, + ACTIONS(3697), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3858), 6, + STATE(3783), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -149947,10 +150185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15150] = 6, - ACTIONS(921), 1, + [15381] = 6, + ACTIONS(923), 1, anon_sym_EQ, - ACTIONS(927), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -150011,110 +150249,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15220] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3459), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3455), 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(3457), 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, - [15286] = 31, + [15451] = 31, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150122,34 +150298,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3302), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3304), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3699), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3701), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3778), 6, + STATE(3742), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150162,35 +150338,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15406] = 8, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(897), 1, - anon_sym_EQ, - ACTIONS(906), 1, - anon_sym_EQ_GT, + [15571] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3469), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3445), 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(3447), 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_LT_EQ, - anon_sym_EQ_EQ_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, @@ -150206,8 +150391,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), 21, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15637] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3471), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3449), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150228,29 +150430,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15480] = 9, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, - anon_sym_EQ, - ACTIONS(3565), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1903), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3568), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(3451), 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, @@ -150260,7 +150462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + [15703] = 6, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3610), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150276,16 +150486,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(122), 18, + ACTIONS(3433), 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(3429), 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, @@ -150295,19 +150526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15556] = 8, - ACTIONS(3552), 1, - anon_sym_COMMA, - ACTIONS(3586), 1, - anon_sym_RBRACK, - ACTIONS(3606), 1, - anon_sym_EQ_GT, - ACTIONS(3649), 1, + [15773] = 6, + ACTIONS(3495), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3581), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150323,7 +150552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150339,7 +150568,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150361,15 +150590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15630] = 6, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3593), 1, + [15843] = 7, + ACTIONS(908), 1, anon_sym_EQ_GT, + ACTIONS(915), 1, + anon_sym_EQ, + ACTIONS(917), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150385,13 +150616,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(3439), 17, - sym__automatic_semicolon, + ACTIONS(161), 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, @@ -150403,7 +150633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150425,137 +150655,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15700] = 31, + [15915] = 31, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, ACTIONS(3669), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3695), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3697), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3730), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [15820] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150563,34 +150704,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3699), 2, + ACTIONS(3703), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3701), 2, + ACTIONS(3705), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3781), 6, + STATE(3861), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150603,13 +150744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15940] = 5, - ACTIONS(3595), 1, + [16035] = 5, + ACTIONS(3588), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150625,12 +150766,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(3439), 18, + ACTIONS(3433), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150643,8 +150785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150666,15 +150807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16008] = 6, - ACTIONS(829), 1, + [16103] = 5, + ACTIONS(3549), 1, anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150690,12 +150829,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(3433), 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, @@ -150708,7 +150847,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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150730,17 +150870,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16078] = 7, - ACTIONS(902), 1, - anon_sym_COLON, - ACTIONS(906), 1, - anon_sym_EQ_GT, - ACTIONS(931), 1, + [16171] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3382), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3384), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3856), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [16291] = 8, + ACTIONS(3612), 1, anon_sym_EQ, + ACTIONS(3614), 1, + anon_sym_EQ_GT, + ACTIONS(3657), 1, + anon_sym_in, + ACTIONS(3707), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150756,7 +150987,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(3433), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150773,10 +151004,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3429), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150795,16 +151025,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16150] = 7, - ACTIONS(906), 1, - anon_sym_EQ_GT, - ACTIONS(931), 1, + [16365] = 8, + ACTIONS(128), 1, + anon_sym_COMMA, + ACTIONS(224), 1, + anon_sym_RBRACK, + ACTIONS(899), 1, anon_sym_EQ, - ACTIONS(933), 1, - anon_sym_COLON, + ACTIONS(908), 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -150821,23 +151069,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), 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(122), 21, anon_sym_STAR, anon_sym_BANG, @@ -150860,19 +151091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16222] = 8, - ACTIONS(3604), 1, + [16439] = 6, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3606), 1, + ACTIONS(3610), 1, anon_sym_EQ_GT, - ACTIONS(3652), 1, - anon_sym_in, - ACTIONS(3654), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150888,12 +151115,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(3439), 16, + ACTIONS(3433), 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, @@ -150905,9 +151133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150926,40 +151155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16296] = 8, - ACTIONS(3604), 1, + [16509] = 7, + ACTIONS(3581), 1, + anon_sym_RBRACK, + ACTIONS(3593), 1, + anon_sym_COMMA, + ACTIONS(3654), 1, anon_sym_EQ, - ACTIONS(3606), 1, - anon_sym_EQ_GT, - ACTIONS(3652), 1, - anon_sym_in, - ACTIONS(3703), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + ACTIONS(3433), 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, @@ -150971,36 +151181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - 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, - 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, - [16370] = 6, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151016,25 +151197,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(3439), 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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151056,15 +151219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16440] = 6, - ACTIONS(3507), 1, + [16580] = 6, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3626), 1, + ACTIONS(3622), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151080,11 +151243,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(3439), 16, + ACTIONS(3433), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151097,7 +151260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151119,10 +151282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16509] = 6, - ACTIONS(955), 1, + [16649] = 6, + ACTIONS(953), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(959), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -151182,35 +151345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16578] = 8, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [16718] = 6, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(3638), 1, - anon_sym_in, - ACTIONS(3641), 1, - anon_sym_of, + ACTIONS(915), 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(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151226,9 +151369,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(3435), 20, + ACTIONS(161), 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(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151247,10 +151408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16651] = 6, - ACTIONS(829), 1, + [16787] = 6, + ACTIONS(803), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(959), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -151310,10 +151471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16720] = 6, - ACTIONS(829), 1, + [16856] = 6, + ACTIONS(803), 1, anon_sym_EQ, - ACTIONS(906), 1, + ACTIONS(908), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -151373,11 +151534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16789] = 6, - ACTIONS(949), 1, - anon_sym_EQ_GT, - ACTIONS(969), 1, + [16925] = 6, + ACTIONS(967), 1, anon_sym_EQ, + ACTIONS(973), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -151436,34 +151597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16858] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, + [16994] = 6, + ACTIONS(803), 1, anon_sym_EQ, - ACTIONS(853), 1, - anon_sym_in, - ACTIONS(3636), 1, - anon_sym_of, + ACTIONS(973), 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -151480,9 +151621,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(122), 20, + 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, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151501,15 +151660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16931] = 6, - ACTIONS(829), 1, + [17063] = 5, + ACTIONS(3608), 1, anon_sym_EQ, - ACTIONS(949), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151525,11 +151682,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(3433), 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, @@ -151542,7 +151700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151564,17 +151722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17000] = 7, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(829), 1, + [17130] = 8, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(831), 1, - anon_sym_COLON, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3647), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151590,7 +151750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151606,10 +151766,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(3429), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151628,35 +151787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17071] = 6, - ACTIONS(3624), 1, - anon_sym_EQ, - ACTIONS(3626), 1, + [17203] = 7, + ACTIONS(159), 1, anon_sym_EQ_GT, + ACTIONS(803), 1, + anon_sym_EQ, + ACTIONS(809), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151669,7 +151813,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + 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, @@ -151691,36 +151851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17140] = 6, - ACTIONS(3604), 1, - anon_sym_EQ, - ACTIONS(3606), 1, + [17274] = 8, + ACTIONS(159), 1, anon_sym_EQ_GT, + ACTIONS(803), 1, + anon_sym_EQ, + ACTIONS(883), 1, + anon_sym_in, + ACTIONS(3649), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + ACTIONS(161), 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, @@ -151732,10 +151879,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + 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, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151754,15 +151916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17209] = 6, - ACTIONS(906), 1, - anon_sym_EQ_GT, - ACTIONS(931), 1, + [17347] = 6, + ACTIONS(3616), 1, anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151778,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(161), 16, + ACTIONS(3433), 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, @@ -151795,7 +151957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151817,13 +151979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17278] = 5, - ACTIONS(3591), 1, + [17416] = 6, + ACTIONS(3612), 1, anon_sym_EQ, + ACTIONS(3614), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151839,13 +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(3439), 17, - sym__automatic_semicolon, + ACTIONS(3433), 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, @@ -151857,7 +152020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151879,15 +152042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17345] = 6, - ACTIONS(3507), 1, + [17485] = 6, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3606), 1, + ACTIONS(3618), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151903,12 +152066,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(3439), 16, + ACTIONS(3433), 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, @@ -151920,7 +152083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151942,15 +152105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17414] = 6, - ACTIONS(3612), 1, + [17554] = 6, + ACTIONS(3530), 1, anon_sym_EQ, ACTIONS(3614), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151966,12 +152129,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(3439), 16, + ACTIONS(3433), 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, @@ -151983,7 +152146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152005,15 +152168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17483] = 6, - ACTIONS(3507), 1, + [17623] = 6, + ACTIONS(3620), 1, anon_sym_EQ, - ACTIONS(3614), 1, + ACTIONS(3622), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152029,7 +152192,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(3439), 16, + ACTIONS(3433), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152046,7 +152209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152068,17 +152231,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17552] = 7, - ACTIONS(3552), 1, - anon_sym_COMMA, - ACTIONS(3586), 1, - anon_sym_RBRACK, - ACTIONS(3649), 1, + [17692] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3709), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3995), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [17808] = 6, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + ACTIONS(3711), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152094,7 +152341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152110,7 +152357,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152132,33 +152379,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17623] = 5, - ACTIONS(3612), 1, + [17876] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3713), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3995), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [17992] = 6, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + ACTIONS(3715), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152171,7 +152489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152193,15 +152527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17689] = 6, - ACTIONS(3554), 1, + [18060] = 6, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3705), 1, + ACTIONS(1039), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152217,7 +152551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152233,7 +152567,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(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152255,15 +152589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17757] = 6, - ACTIONS(159), 1, + [18128] = 6, + ACTIONS(3574), 1, anon_sym_EQ_GT, - ACTIONS(1045), 1, + ACTIONS(3717), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152279,7 +152613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152295,7 +152629,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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152317,17 +152651,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17825] = 7, - ACTIONS(3507), 1, + [18196] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3719), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3995), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [18312] = 6, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(3638), 1, - anon_sym_in, - ACTIONS(3641), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152343,7 +152761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152359,9 +152777,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(3435), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152380,48 +152799,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17895] = 30, + [18380] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152429,31 +152848,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3707), 2, + ACTIONS(3721), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152466,48 +152885,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18011] = 30, + [18496] = 6, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(1041), 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, + [18564] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152515,31 +152996,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3709), 2, + ACTIONS(3723), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152552,10 +153033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18127] = 6, + [18680] = 6, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(1037), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152614,10 +153095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18195] = 6, + [18748] = 6, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(829), 1, + ACTIONS(979), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152676,15 +153157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18263] = 6, - ACTIONS(3554), 1, + [18816] = 6, + ACTIONS(3574), 1, anon_sym_EQ_GT, - ACTIONS(3711), 1, + ACTIONS(3725), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152700,7 +153181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152716,7 +153197,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152738,10 +153219,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18331] = 6, + [18884] = 6, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + ACTIONS(3727), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 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(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 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, + [18952] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3729), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3995), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [19068] = 6, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(983), 1, + ACTIONS(1045), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152800,15 +153429,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18399] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3713), 1, + [19136] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3731), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3995), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [19252] = 6, + ACTIONS(3530), 1, anon_sym_EQ, + ACTIONS(3572), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152824,7 +153539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152840,7 +153555,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152862,10 +153577,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18467] = 6, + [19320] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3733), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3995), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [19436] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3274), 1, + anon_sym_abstract, + ACTIONS(3669), 1, + anon_sym_export, + ACTIONS(3671), 1, + anon_sym_STAR, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, + ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, + anon_sym_static, + ACTIONS(3683), 1, + anon_sym_readonly, + ACTIONS(3689), 1, + anon_sym_override, + STATE(1267), 1, + sym_decorator, + STATE(2749), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + STATE(3276), 1, + sym_formal_parameters, + STATE(4069), 1, + sym__call_signature, + STATE(4358), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3685), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3735), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3073), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3995), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3667), 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, + [19552] = 6, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(1047), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152924,15 +153811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18535] = 6, - ACTIONS(3507), 1, + [19620] = 7, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3571), 1, - anon_sym_COLON, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3647), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152948,7 +153837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152964,10 +153853,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(3435), 21, + ACTIONS(3429), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152986,48 +153874,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18603] = 30, + [19690] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153035,31 +153923,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3715), 2, + ACTIONS(3737), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153072,48 +153960,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18719] = 30, + [19806] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153121,31 +154009,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3717), 2, + ACTIONS(3739), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153158,48 +154046,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18835] = 30, + [19922] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153207,31 +154095,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3719), 2, + ACTIONS(3741), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153244,10 +154132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18951] = 6, + [20038] = 6, ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(989), 1, + ACTIONS(1043), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -153306,15 +154194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19019] = 6, - ACTIONS(3554), 1, + [20106] = 6, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3721), 1, + ACTIONS(981), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153330,7 +154218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153346,7 +154234,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(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153368,101 +154256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19087] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, - ACTIONS(3669), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3723), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4236), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [19203] = 6, - ACTIONS(159), 1, + [20174] = 6, + ACTIONS(3574), 1, anon_sym_EQ_GT, - ACTIONS(985), 1, + ACTIONS(3743), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153478,7 +154280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153494,7 +154296,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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153516,15 +154318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19271] = 6, - ACTIONS(159), 1, + [20242] = 6, + ACTIONS(3574), 1, anon_sym_EQ_GT, - ACTIONS(1047), 1, + ACTIONS(3745), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153540,7 +154342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153556,7 +154358,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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153578,15 +154380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19339] = 6, - ACTIONS(3554), 1, + [20310] = 6, + ACTIONS(3574), 1, anon_sym_EQ_GT, - ACTIONS(3725), 1, + ACTIONS(3747), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153602,7 +154404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153618,7 +154420,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153640,187 +154442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19407] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, - ACTIONS(3669), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3727), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4236), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [19523] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, - ACTIONS(3669), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3729), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4236), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [19639] = 6, - ACTIONS(3554), 1, + [20378] = 6, + ACTIONS(3574), 1, anon_sym_EQ_GT, - ACTIONS(3731), 1, + ACTIONS(3749), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153836,7 +154466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153852,7 +154482,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153874,48 +154504,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19707] = 30, + [20446] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153923,31 +154553,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3733), 2, + ACTIONS(3751), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153960,187 +154590,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19823] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, - ACTIONS(3669), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, + [20562] = 6, + ACTIONS(3574), 1, + anon_sym_EQ_GT, + ACTIONS(3753), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3735), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4236), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [19939] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3433), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, - ACTIONS(3669), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 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(3440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3429), 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(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4236), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [20055] = 6, - ACTIONS(3554), 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, + [20630] = 6, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3739), 1, + ACTIONS(803), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154156,7 +154676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154172,7 +154692,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(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154194,13 +154714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20123] = 5, - ACTIONS(3624), 1, + [20698] = 5, + ACTIONS(3616), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154216,7 +154736,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(3439), 16, + ACTIONS(3433), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154233,7 +154753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154255,48 +154775,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20189] = 30, + [20764] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154304,31 +154824,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3741), 2, + ACTIONS(3755), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154341,13 +154861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20305] = 5, - ACTIONS(3604), 1, + [20880] = 5, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154363,7 +154883,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(3439), 16, + ACTIONS(3433), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154380,7 +154900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154402,15 +154922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20371] = 6, - ACTIONS(3507), 1, + [20946] = 6, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3554), 1, + ACTIONS(3574), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154426,7 +154946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154442,7 +154962,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154464,31 +154984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20439] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3743), 1, + [21014] = 5, + ACTIONS(3620), 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(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154504,7 +155006,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(3435), 21, + ACTIONS(3433), 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(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154526,48 +155045,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20507] = 30, + [21080] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154575,31 +155094,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3745), 2, + ACTIONS(3757), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154612,48 +155131,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20623] = 30, + [21196] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154661,31 +155180,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3747), 2, + ACTIONS(3759), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154698,234 +155217,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20739] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(991), 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, - [20807] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3749), 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(3446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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, - [20875] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(987), 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, - [20943] = 30, + [21312] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154933,31 +155266,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3751), 2, + ACTIONS(3761), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154970,15 +155303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21059] = 6, - ACTIONS(3554), 1, + [21428] = 6, + ACTIONS(159), 1, anon_sym_EQ_GT, - ACTIONS(3753), 1, + ACTIONS(1049), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(161), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154994,7 +155327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155010,7 +155343,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(3435), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155032,282 +155365,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21127] = 30, + [21496] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, ACTIONS(3669), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3755), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4236), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [21243] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, - ACTIONS(3669), 1, - anon_sym_LBRACK, ACTIONS(3671), 1, - anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, - ACTIONS(3677), 1, - anon_sym_static, - ACTIONS(3679), 1, - anon_sym_readonly, - ACTIONS(3685), 1, - anon_sym_override, - STATE(1270), 1, - sym_decorator, - STATE(2756), 1, - sym_accessibility_modifier, - STATE(2770), 1, - sym_override_modifier, - STATE(3271), 1, - sym_formal_parameters, - STATE(3943), 1, - sym__call_signature, - STATE(4357), 1, - aux_sym_export_statement_repeat1, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3675), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3681), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3757), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4236), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3663), 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, - [21359] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(979), 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, - [21427] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155315,31 +155414,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3759), 2, + ACTIONS(3763), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155352,13 +155451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21543] = 5, - ACTIONS(3743), 1, + [21612] = 5, + ACTIONS(3717), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155374,7 +155473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155390,7 +155489,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155412,13 +155511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21608] = 5, - ACTIONS(3721), 1, + [21677] = 5, + ACTIONS(3753), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155434,7 +155533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155450,7 +155549,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155472,13 +155571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21673] = 5, - ACTIONS(3713), 1, + [21742] = 5, + ACTIONS(3747), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155494,7 +155593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155510,7 +155609,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155532,13 +155631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21738] = 5, - ACTIONS(3705), 1, + [21807] = 5, + ACTIONS(3715), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155554,7 +155653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155570,7 +155669,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155592,13 +155691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21803] = 5, - ACTIONS(3749), 1, + [21872] = 5, + ACTIONS(3745), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155614,7 +155713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155630,7 +155729,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155652,13 +155751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21868] = 5, - ACTIONS(3739), 1, + [21937] = 5, + ACTIONS(3711), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155674,7 +155773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155690,7 +155789,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155712,13 +155811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21933] = 5, - ACTIONS(3753), 1, + [22002] = 5, + ACTIONS(3749), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155734,7 +155833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155750,7 +155849,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155772,13 +155871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21998] = 5, - ACTIONS(3731), 1, + [22067] = 5, + ACTIONS(3727), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155794,7 +155893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155810,7 +155909,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155832,13 +155931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22063] = 5, - ACTIONS(3711), 1, + [22132] = 5, + ACTIONS(3743), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155854,7 +155953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155870,7 +155969,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155892,13 +155991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22128] = 5, + [22197] = 5, ACTIONS(3725), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3433), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155914,7 +156013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3446), 15, + ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155930,7 +156029,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(3435), 21, + ACTIONS(3429), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155952,48 +156051,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22193] = 29, + [22262] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156001,28 +156100,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3760), 6, + STATE(3843), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156035,48 +156134,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22305] = 29, + [22374] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156084,28 +156183,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3720), 6, + STATE(3761), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156118,48 +156217,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22417] = 29, + [22486] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, - anon_sym_export, - ACTIONS(3667), 1, - anon_sym_STAR, ACTIONS(3669), 1, - anon_sym_LBRACK, + anon_sym_export, ACTIONS(3671), 1, - anon_sym_async, + anon_sym_STAR, ACTIONS(3673), 1, - anon_sym_new, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_async, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156167,28 +156266,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3848), 6, + STATE(3868), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156201,48 +156300,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22529] = 29, + [22598] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156250,28 +156349,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4236), 6, + STATE(3774), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156284,48 +156383,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22641] = 29, + [22710] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156333,28 +156432,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3810), 6, + STATE(3995), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156367,48 +156466,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22753] = 29, + [22822] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156416,28 +156515,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3787), 6, + STATE(3771), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156450,48 +156549,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22865] = 29, + [22934] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2540), 1, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, ACTIONS(3274), 1, anon_sym_abstract, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_STAR, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_async, - ACTIONS(3673), 1, - anon_sym_new, ACTIONS(3677), 1, + anon_sym_new, + ACTIONS(3681), 1, anon_sym_static, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_readonly, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(2756), 1, + STATE(2749), 1, sym_accessibility_modifier, - STATE(2770), 1, + STATE(2768), 1, sym_override_modifier, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3943), 1, + STATE(4069), 1, sym__call_signature, - STATE(4357), 1, + STATE(4358), 1, aux_sym_export_statement_repeat1, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156499,28 +156598,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym_number, sym_private_property_identifier, - ACTIONS(3681), 2, + ACTIONS(3685), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3755), 6, + STATE(3859), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3663), 12, + ACTIONS(3667), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156533,46 +156632,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22977] = 29, + [23046] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3763), 1, + ACTIONS(3767), 1, anon_sym_RBRACE, - ACTIONS(3765), 1, + ACTIONS(3769), 1, anon_sym_SEMI, - ACTIONS(3767), 1, - anon_sym_async, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - STATE(2455), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -156580,28 +156679,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, STATE(1457), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -156615,132 +156714,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23088] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, + [23157] = 29, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(3765), 1, + anon_sym_STAR, + ACTIONS(3769), 1, + anon_sym_SEMI, + ACTIONS(3771), 1, anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, + ACTIONS(3775), 1, + anon_sym_AT, + ACTIONS(3777), 1, + anon_sym_static, + ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(2404), 1, - anon_sym_abstract, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, ACTIONS(3785), 1, - anon_sym_STAR, + anon_sym_abstract, ACTIONS(3787), 1, - anon_sym_default, + anon_sym_accessor, ACTIONS(3789), 1, - anon_sym_type, - ACTIONS(3791), 1, - anon_sym_EQ, - ACTIONS(3793), 1, - anon_sym_as, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, anon_sym_RBRACE, - ACTIONS(3803), 1, - anon_sym_module, - STATE(1270), 1, - sym_decorator, - STATE(4254), 1, - sym_declaration, - STATE(4255), 1, - sym_internal_module, - STATE(4274), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(4442), 1, - sym_export_clause, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - STATE(5187), 1, - sym_namespace_export, + STATE(2683), 1, + sym_method_definition, + STATE(2700), 1, + sym_accessibility_modifier, + STATE(2767), 1, + sym_override_modifier, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4247), 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, - [23207] = 29, + ACTIONS(3260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3773), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3781), 2, + anon_sym_get, + anon_sym_set, + STATE(1457), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3043), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4766), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3667), 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, + [23268] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, + ACTIONS(3769), 1, + anon_sym_SEMI, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3805), 1, + ACTIONS(3791), 1, anon_sym_RBRACE, - ACTIONS(3807), 1, - anon_sym_SEMI, - STATE(2455), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -156748,28 +156843,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1465), 2, + STATE(1457), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -156783,132 +156878,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23318] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, + [23379] = 29, + ACTIONS(3796), 1, + anon_sym_STAR, + ACTIONS(3799), 1, + anon_sym_RBRACE, + ACTIONS(3801), 1, + anon_sym_SEMI, + ACTIONS(3804), 1, + anon_sym_LBRACK, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3810), 1, + anon_sym_SQUOTE, + ACTIONS(3813), 1, anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, + ACTIONS(3822), 1, + anon_sym_AT, + ACTIONS(3825), 1, + anon_sym_static, + ACTIONS(3828), 1, + anon_sym_readonly, + ACTIONS(3834), 1, anon_sym_declare, - ACTIONS(2404), 1, + ACTIONS(3840), 1, + anon_sym_override, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, - ACTIONS(3785), 1, - anon_sym_STAR, - ACTIONS(3787), 1, - anon_sym_default, - ACTIONS(3789), 1, - anon_sym_type, - ACTIONS(3791), 1, - anon_sym_EQ, - ACTIONS(3793), 1, - anon_sym_as, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_module, - ACTIONS(3809), 1, - anon_sym_RBRACE, - STATE(1270), 1, - sym_decorator, - STATE(4254), 1, - sym_declaration, - STATE(4255), 1, - sym_internal_module, - STATE(4274), 1, + ACTIONS(3846), 1, + anon_sym_accessor, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(4442), 1, - sym_export_clause, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - STATE(5187), 1, - sym_namespace_export, + STATE(2683), 1, + sym_method_definition, + STATE(2700), 1, + sym_accessibility_modifier, + STATE(2767), 1, + sym_override_modifier, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4247), 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, - [23437] = 29, + ACTIONS(3816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3819), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3831), 2, + anon_sym_get, + anon_sym_set, + STATE(1457), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3837), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3043), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4766), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3793), 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, + [23490] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3807), 1, - anon_sym_SEMI, - ACTIONS(3812), 1, + ACTIONS(3849), 1, anon_sym_RBRACE, - STATE(2455), 1, + ACTIONS(3851), 1, + anon_sym_SEMI, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -156916,28 +157007,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1465), 2, + STATE(1455), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -156951,46 +157042,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23548] = 29, + [23601] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3814), 1, + ACTIONS(3853), 1, anon_sym_RBRACE, - ACTIONS(3816), 1, + ACTIONS(3855), 1, anon_sym_SEMI, - STATE(2455), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -156998,28 +157089,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1464), 2, + STATE(1456), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157033,132 +157124,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23659] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, - anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, - anon_sym_declare, - ACTIONS(2404), 1, - anon_sym_abstract, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, - ACTIONS(3785), 1, - anon_sym_STAR, - ACTIONS(3787), 1, - anon_sym_default, - ACTIONS(3789), 1, - anon_sym_type, - ACTIONS(3791), 1, - anon_sym_EQ, - ACTIONS(3793), 1, - anon_sym_as, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_module, - ACTIONS(3818), 1, - anon_sym_RBRACE, - STATE(1270), 1, - sym_decorator, - STATE(4254), 1, - sym_declaration, - STATE(4255), 1, - sym_internal_module, - STATE(4274), 1, - aux_sym_export_statement_repeat1, - STATE(4442), 1, - sym_export_clause, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(5187), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4247), 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, - [23778] = 29, + [23712] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3807), 1, - anon_sym_SEMI, - ACTIONS(3821), 1, + ACTIONS(3857), 1, anon_sym_RBRACE, - STATE(2455), 1, + ACTIONS(3859), 1, + anon_sym_SEMI, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157166,28 +157171,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1465), 2, + STATE(1454), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157201,46 +157206,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23889] = 29, + [23823] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, + ACTIONS(3769), 1, + anon_sym_SEMI, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3823), 1, + ACTIONS(3861), 1, anon_sym_RBRACE, - ACTIONS(3825), 1, - anon_sym_SEMI, - STATE(2455), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157248,28 +157253,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1463), 2, + STATE(1457), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157283,7 +157288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24000] = 33, + [23934] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -157312,42 +157317,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3785), 1, + ACTIONS(3863), 1, anon_sym_STAR, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_default, - ACTIONS(3789), 1, + ACTIONS(3867), 1, anon_sym_type, - ACTIONS(3791), 1, + ACTIONS(3869), 1, anon_sym_EQ, - ACTIONS(3793), 1, + ACTIONS(3871), 1, anon_sym_as, - ACTIONS(3795), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_module, - ACTIONS(3827), 1, + ACTIONS(3876), 1, anon_sym_RBRACE, - STATE(1270), 1, + ACTIONS(3881), 1, + anon_sym_module, + STATE(1267), 1, sym_decorator, - STATE(4254), 1, + STATE(4081), 1, sym_declaration, - STATE(4255), 1, + STATE(4082), 1, sym_internal_module, - STATE(4274), 1, + STATE(4277), 1, aux_sym_export_statement_repeat1, - STATE(4442), 1, + STATE(4476), 1, sym_export_clause, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4937), 1, aux_sym_object_repeat1, - STATE(5187), 1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5228), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157355,7 +157360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4247), 13, + STATE(4071), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157369,46 +157374,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24119] = 29, + [24053] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, + ACTIONS(3769), 1, + anon_sym_SEMI, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3807), 1, - anon_sym_SEMI, - ACTIONS(3830), 1, + ACTIONS(3883), 1, anon_sym_RBRACE, - STATE(2455), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157416,28 +157421,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1465), 2, + STATE(1457), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157451,210 +157456,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24230] = 29, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3669), 1, - anon_sym_LBRACK, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(3761), 1, - anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, - ACTIONS(3771), 1, + [24164] = 33, + ACTIONS(99), 1, anon_sym_AT, - ACTIONS(3773), 1, - anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, - ACTIONS(3779), 1, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(2384), 1, + anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, + anon_sym_let, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(2404), 1, anon_sym_abstract, - ACTIONS(3783), 1, - anon_sym_accessor, - ACTIONS(3807), 1, - anon_sym_SEMI, - ACTIONS(3832), 1, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + ACTIONS(3863), 1, + anon_sym_STAR, + ACTIONS(3865), 1, + anon_sym_default, + ACTIONS(3867), 1, + anon_sym_type, + ACTIONS(3869), 1, + anon_sym_EQ, + ACTIONS(3871), 1, + anon_sym_as, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3881), 1, + anon_sym_module, + ACTIONS(3885), 1, anon_sym_RBRACE, - STATE(2455), 1, - aux_sym_export_statement_repeat1, - STATE(2649), 1, - sym_method_definition, - STATE(2706), 1, - sym_accessibility_modifier, - STATE(2766), 1, + STATE(1267), 1, sym_decorator, - STATE(2776), 1, - sym_override_modifier, - STATE(4439), 1, - sym_method_signature, + STATE(4081), 1, + sym_declaration, + STATE(4082), 1, + sym_internal_module, + STATE(4277), 1, + aux_sym_export_statement_repeat1, + STATE(4476), 1, + sym_export_clause, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5228), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3769), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3777), 2, - anon_sym_get, - anon_sym_set, - STATE(1465), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3051), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5043), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3663), 13, - anon_sym_export, - anon_sym_type, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4071), 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, + [24283] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(2384), 1, anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, 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, - [24341] = 29, - ACTIONS(3837), 1, - anon_sym_STAR, - ACTIONS(3840), 1, - anon_sym_RBRACE, - ACTIONS(3842), 1, - anon_sym_SEMI, - ACTIONS(3845), 1, - anon_sym_LBRACK, - ACTIONS(3848), 1, - anon_sym_DQUOTE, - ACTIONS(3851), 1, - anon_sym_SQUOTE, - ACTIONS(3854), 1, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, + anon_sym_declare, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, ACTIONS(3863), 1, - anon_sym_AT, - ACTIONS(3866), 1, - anon_sym_static, + anon_sym_STAR, + ACTIONS(3865), 1, + anon_sym_default, + ACTIONS(3867), 1, + anon_sym_type, ACTIONS(3869), 1, - anon_sym_readonly, - ACTIONS(3875), 1, - anon_sym_declare, + anon_sym_EQ, + ACTIONS(3871), 1, + anon_sym_as, + ACTIONS(3873), 1, + anon_sym_COMMA, ACTIONS(3881), 1, - anon_sym_override, - ACTIONS(3884), 1, - anon_sym_abstract, - ACTIONS(3887), 1, - anon_sym_accessor, - STATE(2455), 1, - aux_sym_export_statement_repeat1, - STATE(2649), 1, - sym_method_definition, - STATE(2706), 1, - sym_accessibility_modifier, - STATE(2766), 1, + anon_sym_module, + ACTIONS(3888), 1, + anon_sym_RBRACE, + STATE(1267), 1, sym_decorator, - STATE(2776), 1, - sym_override_modifier, - STATE(4439), 1, - sym_method_signature, + STATE(4081), 1, + sym_declaration, + STATE(4082), 1, + sym_internal_module, + STATE(4277), 1, + aux_sym_export_statement_repeat1, + STATE(4476), 1, + sym_export_clause, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5228), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3857), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3872), 2, - anon_sym_get, - anon_sym_set, - STATE(1465), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3878), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3051), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5043), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3834), 13, - anon_sym_export, - anon_sym_type, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4071), 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, + [24402] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(2384), 1, anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, anon_sym_let, - anon_sym_new, - sym_identifier, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, + anon_sym_declare, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + ACTIONS(3863), 1, + anon_sym_STAR, + ACTIONS(3865), 1, + anon_sym_default, + ACTIONS(3867), 1, + anon_sym_type, + ACTIONS(3869), 1, + anon_sym_EQ, + ACTIONS(3871), 1, + anon_sym_as, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3881), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24452] = 29, + ACTIONS(3891), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_decorator, + STATE(4081), 1, + sym_declaration, + STATE(4082), 1, + sym_internal_module, + STATE(4277), 1, + aux_sym_export_statement_repeat1, + STATE(4476), 1, + sym_export_clause, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5228), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4071), 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, + [24521] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3890), 1, + ACTIONS(3894), 1, anon_sym_RBRACE, - ACTIONS(3892), 1, + ACTIONS(3896), 1, anon_sym_SEMI, - STATE(2455), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157662,28 +157761,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1455), 2, + STATE(1463), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157697,7 +157796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24563] = 33, + [24632] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -157726,42 +157825,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3785), 1, + ACTIONS(3863), 1, anon_sym_STAR, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_default, - ACTIONS(3789), 1, + ACTIONS(3867), 1, anon_sym_type, - ACTIONS(3791), 1, + ACTIONS(3869), 1, anon_sym_EQ, - ACTIONS(3793), 1, + ACTIONS(3871), 1, anon_sym_as, - ACTIONS(3795), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3881), 1, anon_sym_module, - ACTIONS(3894), 1, + ACTIONS(3898), 1, anon_sym_RBRACE, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(4254), 1, + STATE(4081), 1, sym_declaration, - STATE(4255), 1, + STATE(4082), 1, sym_internal_module, - STATE(4274), 1, + STATE(4277), 1, aux_sym_export_statement_repeat1, - STATE(4442), 1, + STATE(4476), 1, sym_export_clause, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(5187), 1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5228), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157769,7 +157868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4247), 13, + STATE(4071), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157783,46 +157882,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24682] = 29, + [24751] = 29, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3761), 1, + ACTIONS(3765), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_async, ACTIONS(3771), 1, + anon_sym_async, + ACTIONS(3775), 1, anon_sym_AT, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_static, - ACTIONS(3775), 1, - anon_sym_readonly, ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3783), 1, anon_sym_declare, - ACTIONS(3781), 1, + ACTIONS(3785), 1, anon_sym_abstract, - ACTIONS(3783), 1, + ACTIONS(3787), 1, anon_sym_accessor, - ACTIONS(3897), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - ACTIONS(3899), 1, + ACTIONS(3903), 1, anon_sym_SEMI, - STATE(2455), 1, + STATE(2535), 1, aux_sym_export_statement_repeat1, - STATE(2649), 1, + STATE(2683), 1, sym_method_definition, - STATE(2706), 1, + STATE(2700), 1, sym_accessibility_modifier, - STATE(2766), 1, - sym_decorator, - STATE(2776), 1, + STATE(2767), 1, sym_override_modifier, - STATE(4439), 1, + STATE(2770), 1, + sym_decorator, + STATE(4363), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157830,28 +157929,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym_number, sym_private_property_identifier, - ACTIONS(3777), 2, + ACTIONS(3781), 2, anon_sym_get, anon_sym_set, - STATE(1460), 2, + STATE(1461), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3683), 3, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5043), 3, + STATE(4766), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3663), 13, + ACTIONS(3667), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157865,7 +157964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24793] = 25, + [24862] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, @@ -157878,56 +157977,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3903), 1, + ACTIONS(3907), 1, anon_sym_RBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, - anon_sym_async, ACTIONS(3911), 1, + anon_sym_async, + ACTIONS(3915), 1, anon_sym_static, - ACTIONS(3913), 1, + ACTIONS(3917), 1, anon_sym_readonly, - ACTIONS(3919), 1, + ACTIONS(3923), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, - STATE(4864), 1, + STATE(4685), 1, aux_sym_object_repeat1, - STATE(4931), 1, + STATE(4692), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(3915), 2, + ACTIONS(3919), 2, anon_sym_get, anon_sym_set, - ACTIONS(3917), 3, + ACTIONS(3921), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4647), 3, + STATE(4753), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4844), 3, + STATE(4796), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3901), 14, + ACTIONS(3905), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157942,7 +158041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24895] = 25, + [24964] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, @@ -157955,56 +158054,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(3927), 1, anon_sym_RBRACE, - ACTIONS(3925), 1, + ACTIONS(3929), 1, anon_sym_async, - ACTIONS(3927), 1, + ACTIONS(3931), 1, anon_sym_static, - ACTIONS(3929), 1, + ACTIONS(3933), 1, anon_sym_readonly, - ACTIONS(3935), 1, + ACTIONS(3939), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, - STATE(4836), 1, + STATE(4685), 1, aux_sym_object_repeat1, - STATE(4931), 1, + STATE(4692), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(3931), 2, + ACTIONS(3935), 2, anon_sym_get, anon_sym_set, - ACTIONS(3933), 3, + ACTIONS(3937), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4647), 3, + STATE(4753), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4707), 3, + STATE(4796), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3921), 14, + ACTIONS(3925), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158019,7 +158118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24997] = 25, + [25066] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, @@ -158032,56 +158131,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(3943), 1, anon_sym_RBRACE, - ACTIONS(3941), 1, + ACTIONS(3945), 1, anon_sym_async, - ACTIONS(3943), 1, + ACTIONS(3947), 1, anon_sym_static, - ACTIONS(3945), 1, + ACTIONS(3949), 1, anon_sym_readonly, - ACTIONS(3951), 1, + ACTIONS(3955), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, - STATE(4864), 1, - aux_sym_object_repeat1, - STATE(4931), 1, + STATE(4692), 1, aux_sym_object_pattern_repeat1, + STATE(4874), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_get, anon_sym_set, - ACTIONS(3949), 3, + ACTIONS(3953), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4647), 3, + STATE(4753), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4844), 3, + STATE(4812), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3937), 14, + ACTIONS(3941), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158096,7 +158195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25099] = 25, + [25168] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, @@ -158109,56 +158208,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(3955), 1, + ACTIONS(3959), 1, anon_sym_RBRACE, - ACTIONS(3957), 1, + ACTIONS(3961), 1, anon_sym_async, - ACTIONS(3959), 1, + ACTIONS(3963), 1, anon_sym_static, - ACTIONS(3961), 1, + ACTIONS(3965), 1, anon_sym_readonly, - ACTIONS(3967), 1, + ACTIONS(3971), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, - STATE(4836), 1, - aux_sym_object_repeat1, - STATE(4931), 1, + STATE(4692), 1, aux_sym_object_pattern_repeat1, + STATE(4874), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(3963), 2, + ACTIONS(3967), 2, anon_sym_get, anon_sym_set, - ACTIONS(3965), 3, + ACTIONS(3969), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4647), 3, + STATE(4753), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4707), 3, + STATE(4812), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3953), 14, + ACTIONS(3957), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158173,7 +158272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25201] = 25, + [25270] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, @@ -158186,56 +158285,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3975), 1, anon_sym_RBRACE, - ACTIONS(3973), 1, + ACTIONS(3977), 1, anon_sym_async, - ACTIONS(3975), 1, + ACTIONS(3979), 1, anon_sym_static, - ACTIONS(3977), 1, + ACTIONS(3981), 1, anon_sym_readonly, - ACTIONS(3983), 1, + ACTIONS(3987), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, - STATE(4864), 1, - aux_sym_object_repeat1, - STATE(4931), 1, + STATE(4692), 1, aux_sym_object_pattern_repeat1, + STATE(4874), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(3979), 2, + ACTIONS(3983), 2, anon_sym_get, anon_sym_set, - ACTIONS(3981), 3, + ACTIONS(3985), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4647), 3, + STATE(4753), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4844), 3, + STATE(4812), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3969), 14, + ACTIONS(3973), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158250,7 +158349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25303] = 25, + [25372] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, @@ -158263,56 +158362,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(3991), 1, anon_sym_RBRACE, - ACTIONS(3989), 1, + ACTIONS(3993), 1, anon_sym_async, - ACTIONS(3991), 1, + ACTIONS(3995), 1, anon_sym_static, - ACTIONS(3993), 1, + ACTIONS(3997), 1, anon_sym_readonly, - ACTIONS(3999), 1, + ACTIONS(4003), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, - STATE(4864), 1, - aux_sym_object_repeat1, - STATE(4931), 1, + STATE(4692), 1, aux_sym_object_pattern_repeat1, + STATE(4874), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(3995), 2, + ACTIONS(3999), 2, anon_sym_get, anon_sym_set, - ACTIONS(3997), 3, + ACTIONS(4001), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4647), 3, + STATE(4753), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4844), 3, + STATE(4812), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3985), 14, + ACTIONS(3989), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158327,7 +158426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25405] = 25, + [25474] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, @@ -158340,56 +158439,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_RBRACE, - ACTIONS(4005), 1, + ACTIONS(4009), 1, anon_sym_async, - ACTIONS(4007), 1, + ACTIONS(4011), 1, anon_sym_static, - ACTIONS(4009), 1, + ACTIONS(4013), 1, anon_sym_readonly, - ACTIONS(4015), 1, + ACTIONS(4019), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, - STATE(4864), 1, - aux_sym_object_repeat1, - STATE(4931), 1, + STATE(4692), 1, aux_sym_object_pattern_repeat1, + STATE(4874), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(4011), 2, + ACTIONS(4015), 2, anon_sym_get, anon_sym_set, - ACTIONS(4013), 3, + ACTIONS(4017), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4647), 3, + STATE(4753), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4844), 3, + STATE(4812), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4001), 14, + ACTIONS(4005), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158404,7 +158503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25507] = 29, + [25576] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -158433,34 +158532,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3785), 1, + ACTIONS(3863), 1, anon_sym_STAR, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_default, - ACTIONS(3789), 1, + ACTIONS(3867), 1, anon_sym_type, - ACTIONS(3793), 1, + ACTIONS(3871), 1, anon_sym_as, - ACTIONS(3803), 1, + ACTIONS(3881), 1, anon_sym_module, - ACTIONS(4017), 1, + ACTIONS(4021), 1, anon_sym_EQ, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(4254), 1, + STATE(4081), 1, sym_declaration, - STATE(4255), 1, + STATE(4082), 1, sym_internal_module, - STATE(4274), 1, + STATE(4277), 1, aux_sym_export_statement_repeat1, - STATE(4442), 1, + STATE(4476), 1, sym_export_clause, - STATE(5187), 1, + STATE(5228), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -158470,7 +158569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4247), 13, + STATE(4071), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158484,11 +158583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [25616] = 3, + [25685] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 14, + ACTIONS(1805), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158503,7 +158602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1849), 34, + ACTIONS(1803), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158538,7 +158637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [25673] = 30, + [25742] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -158567,37 +158666,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3785), 1, + ACTIONS(3863), 1, anon_sym_STAR, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_default, - ACTIONS(3789), 1, + ACTIONS(3867), 1, anon_sym_type, - ACTIONS(3791), 1, + ACTIONS(3869), 1, anon_sym_EQ, - ACTIONS(3793), 1, + ACTIONS(3871), 1, anon_sym_as, - ACTIONS(3803), 1, + ACTIONS(3881), 1, anon_sym_module, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(4254), 1, + STATE(4081), 1, sym_declaration, - STATE(4255), 1, + STATE(4082), 1, sym_internal_module, - STATE(4274), 1, + STATE(4277), 1, aux_sym_export_statement_repeat1, - STATE(4442), 1, + STATE(4476), 1, sym_export_clause, - STATE(5187), 1, + STATE(5228), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, + ACTIONS(4023), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -158605,7 +158704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4247), 13, + STATE(4071), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158619,11 +158718,11 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [25784] = 3, + [25853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1947), 14, + ACTIONS(1811), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158638,7 +158737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1945), 34, + ACTIONS(1809), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158673,21 +158772,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [25841] = 8, - ACTIONS(4027), 1, + [25910] = 11, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4029), 1, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4031), 1, + ACTIONS(4037), 1, + anon_sym_QMARK_DOT, + ACTIONS(4039), 1, anon_sym_LT, - STATE(1524), 1, - sym_arguments, - STATE(1525), 1, + STATE(1519), 1, sym_type_arguments, + STATE(1777), 1, + sym_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 12, + ACTIONS(4027), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158700,7 +158805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4025), 30, + ACTIONS(4029), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158709,9 +158814,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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -158729,9 +158832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [25907] = 22, + [25982] = 22, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(251), 1, @@ -158742,19 +158844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4043), 1, anon_sym_async, - ACTIONS(4037), 1, + ACTIONS(4045), 1, anon_sym_static, - ACTIONS(4039), 1, + ACTIONS(4047), 1, anon_sym_readonly, - ACTIONS(4045), 1, + ACTIONS(4053), 1, anon_sym_override, - STATE(2748), 1, + STATE(2740), 1, sym_accessibility_modifier, - STATE(2758), 1, + STATE(2780), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -158762,33 +158864,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3406), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3909), 2, + ACTIONS(3913), 2, sym_number, sym_private_property_identifier, - ACTIONS(4041), 2, + ACTIONS(4049), 2, anon_sym_get, anon_sym_set, - ACTIONS(4043), 3, + ACTIONS(4051), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3653), 3, + STATE(3630), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5199), 3, + STATE(5138), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5200), 3, + STATE(5180), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4033), 14, + ACTIONS(4041), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158803,78 +158905,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26001] = 7, + [26076] = 8, ACTIONS(4031), 1, - anon_sym_LT, - ACTIONS(4049), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_is, - STATE(1592), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4047), 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(3533), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [26065] = 8, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4031), 1, + ACTIONS(4039), 1, anon_sym_LT, - ACTIONS(4057), 1, + ACTIONS(4059), 1, anon_sym_DOT, - STATE(1528), 1, + STATE(1600), 1, sym_arguments, - STATE(1529), 1, + STATE(1601), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4053), 12, + ACTIONS(4055), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158887,7 +158932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4055), 30, + ACTIONS(4057), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158918,21 +158963,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26131] = 8, - ACTIONS(4027), 1, - anon_sym_LPAREN, + [26142] = 8, ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4039), 1, anon_sym_LT, - ACTIONS(4059), 1, + ACTIONS(4065), 1, anon_sym_DOT, - STATE(1520), 1, + STATE(1602), 1, sym_arguments, - STATE(1521), 1, + STATE(1603), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 12, + ACTIONS(4061), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158945,7 +158990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 30, + ACTIONS(4063), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158976,132 +159021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26197] = 11, - ACTIONS(4027), 1, - anon_sym_LPAREN, + [26208] = 8, ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4039), 1, anon_sym_LT, - ACTIONS(4065), 1, - anon_sym_LBRACK, ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_QMARK_DOT, - STATE(1561), 1, - sym_type_arguments, - STATE(1664), 1, - sym_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4061), 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(4063), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - 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, - [26269] = 5, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(4071), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1689), 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(1687), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [26328] = 6, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DOT, - STATE(1505), 1, + STATE(1598), 1, sym_arguments, + STATE(1599), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 13, + ACTIONS(3489), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159112,10 +159046,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(4075), 30, + ACTIONS(3479), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159146,18 +159079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26389] = 6, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, + [26274] = 7, + ACTIONS(4039), 1, + anon_sym_LT, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4073), 1, + anon_sym_is, + STATE(1582), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1670), 2, - sym_template_string, - sym_arguments, - ACTIONS(4079), 13, + ACTIONS(4069), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159168,75 +159102,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, - ACTIONS(4081), 29, + ACTIONS(3502), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [26450] = 6, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_DOT, - STATE(1709), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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(1699), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159255,12 +159134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [26511] = 3, + anon_sym_extends, + anon_sym_implements, + [26338] = 4, + ACTIONS(4079), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4075), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159274,7 +159156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1903), 33, + ACTIONS(4077), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159307,14 +159189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26566] = 4, - ACTIONS(4051), 1, - anon_sym_is, + [26395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(3170), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159328,7 +159207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 32, + anon_sym_QMARK, + ACTIONS(3172), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159361,7 +159241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26623] = 3, + [26450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -159413,11 +159293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26678] = 3, + [26505] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1947), 14, + ACTIONS(1805), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159432,7 +159312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1945), 32, + ACTIONS(1803), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159465,11 +159345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26733] = 3, + [26560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 14, + ACTIONS(3178), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159484,7 +159364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1849), 32, + ACTIONS(3180), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159517,11 +159397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26788] = 3, + [26615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 14, + ACTIONS(1819), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159535,8 +159415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3172), 32, + ACTIONS(1817), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159569,120 +159448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26843] = 5, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(1709), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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(1699), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_is, + [26670] = 6, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [26902] = 6, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4091), 1, - anon_sym_DOT, - STATE(1709), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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(1699), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [26963] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3178), 14, + STATE(1647), 2, + sym_template_string, + sym_arguments, + ACTIONS(4081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159696,14 +159474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3180), 32, + ACTIONS(4083), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -159726,17 +159502,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, - [27018] = 4, - ACTIONS(4051), 1, - anon_sym_is, + [26731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(1811), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159750,7 +159522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 32, + anon_sym_QMARK, + ACTIONS(1809), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159783,13 +159556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27075] = 4, - ACTIONS(4101), 1, + [26786] = 4, + ACTIONS(4073), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159803,7 +159576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4099), 32, + ACTIONS(4087), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159836,11 +159609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27132] = 3, + [26843] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4103), 13, + ACTIONS(4089), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159854,7 +159627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4105), 33, + ACTIONS(4091), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159888,15 +159661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, anon_sym_is, - [27187] = 5, - ACTIONS(4031), 1, + [26898] = 5, + ACTIONS(4039), 1, anon_sym_LT, - STATE(1630), 1, + STATE(1589), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 12, + ACTIONS(4075), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159909,7 +159682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4099), 32, + ACTIONS(4077), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159942,17 +159715,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27246] = 6, + [26957] = 6, ACTIONS(4031), 1, - anon_sym_LT, - ACTIONS(4049), 1, + anon_sym_LPAREN, + ACTIONS(4097), 1, anon_sym_DOT, - STATE(1592), 1, - sym_type_arguments, + STATE(1591), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 12, + ACTIONS(4093), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159963,15 +159736,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, - ACTIONS(3533), 31, + ACTIONS(4095), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -159997,62 +159770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27307] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4107), 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, + [27018] = 6, + ACTIONS(4039), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4109), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4071), 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, - anon_sym_extends, - anon_sym_implements, - [27361] = 3, + STATE(1582), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 13, + ACTIONS(4069), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160063,10 +159791,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(4113), 32, + ACTIONS(3502), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160078,7 +159805,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, @@ -160099,11 +159825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27415] = 3, + [27079] = 4, + ACTIONS(4073), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 13, + ACTIONS(4099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160117,7 +159845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4117), 32, + ACTIONS(4101), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160150,17 +159878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27469] = 6, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_DOT, - STATE(1720), 1, - sym_statement_block, + [27136] = 5, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(4103), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(1699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160174,9 +159900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1699), 29, + ACTIONS(1697), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160185,6 +159912,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, @@ -160204,11 +159932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27529] = 3, + [27195] = 6, + ACTIONS(4105), 1, + anon_sym_LBRACE, + ACTIONS(4107), 1, + anon_sym_DOT, + STATE(1724), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160222,19 +159956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 32, + ACTIONS(1715), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160253,19 +159986,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, - [27583] = 6, - ACTIONS(4119), 1, + anon_sym_PIPE_RBRACE, + [27256] = 6, + ACTIONS(4105), 1, anon_sym_LBRACE, - ACTIONS(4127), 1, + ACTIONS(4109), 1, anon_sym_DOT, - STATE(1720), 1, + STATE(1724), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160279,17 +160011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1699), 29, + ACTIONS(1715), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160308,14 +160041,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [27643] = 4, - ACTIONS(4133), 1, + anon_sym_PIPE_RBRACE, + [27317] = 5, + ACTIONS(4105), 1, + anon_sym_LBRACE, + STATE(1724), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1717), 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(1715), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [27376] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 13, + ACTIONS(4111), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160329,7 +160114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4131), 31, + ACTIONS(4113), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160341,6 +160126,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, @@ -160361,11 +160147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27699] = 3, + [27430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4115), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160379,7 +160165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4137), 32, + ACTIONS(4117), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160412,13 +160198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27753] = 4, - ACTIONS(4139), 1, - anon_sym_LBRACK, + [27484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160432,7 +160216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4137), 31, + ACTIONS(4121), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160442,6 +160226,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, @@ -160464,11 +160249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27809] = 3, + [27538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160482,7 +160267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4099), 32, + ACTIONS(4121), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160515,11 +160300,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27863] = 3, + [27592] = 36, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4131), 1, + anon_sym_RPAREN, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, + STATE(5737), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 13, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27712] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160533,7 +160402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4117), 32, + ACTIONS(4121), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160566,11 +160435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27917] = 3, + [27766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(4173), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160584,7 +160453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4143), 32, + ACTIONS(4175), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160617,78 +160486,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27971] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3818), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4155), 1, - anon_sym_readonly, - STATE(2774), 1, - sym_override_modifier, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + [27820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, + ACTIONS(4173), 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(4175), 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, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [28057] = 3, + 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, + [27874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2364), 13, + ACTIONS(4173), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160702,7 +160555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2362), 32, + ACTIONS(4175), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160735,11 +160588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28111] = 3, + [27928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + ACTIONS(4177), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160753,7 +160606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4161), 32, + ACTIONS(4179), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160786,11 +160639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28165] = 3, + [27982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4177), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160804,7 +160657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 32, + ACTIONS(4179), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160837,11 +160690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28219] = 3, + [28036] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4177), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160855,7 +160708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 32, + ACTIONS(4179), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160888,11 +160741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28273] = 3, + [28090] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4181), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160906,7 +160759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 32, + ACTIONS(4183), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160939,31 +160792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28327] = 5, - ACTIONS(4119), 1, - anon_sym_LBRACE, - STATE(1720), 1, - sym_statement_block, + [28144] = 6, + ACTIONS(4189), 1, + anon_sym_AMP, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(4185), 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(1699), 30, + ACTIONS(4187), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160992,11 +160846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28385] = 3, + [28204] = 5, + ACTIONS(4031), 1, + anon_sym_LPAREN, + STATE(1672), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(4195), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161010,13 +160868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4143), 32, + ACTIONS(4197), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -161041,13 +160898,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28439] = 3, + [28262] = 36, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(4199), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, + STATE(5772), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [28382] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4201), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161061,7 +161001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 32, + ACTIONS(4203), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161094,11 +161034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28493] = 3, + [28436] = 4, + ACTIONS(4077), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4205), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161112,7 +161054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 32, + ACTIONS(4207), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161143,29 +161085,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, - [28547] = 4, - ACTIONS(4071), 1, - sym__automatic_semicolon, + [28492] = 6, + ACTIONS(4189), 1, + anon_sym_AMP, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 13, + ACTIONS(4205), 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(1687), 31, + ACTIONS(4207), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161197,25 +161140,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28603] = 3, + [28552] = 6, + ACTIONS(4189), 1, + anon_sym_AMP, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 13, + ACTIONS(4209), 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(4185), 32, + ACTIONS(4211), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161246,13 +161193,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28657] = 3, + [28612] = 19, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4223), 1, + anon_sym_readonly, + STATE(2769), 1, + sym_override_modifier, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [28698] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161266,7 +161279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 32, + ACTIONS(4229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161299,11 +161312,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28711] = 3, + [28752] = 19, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4223), 1, + anon_sym_readonly, + STATE(2769), 1, + sym_override_modifier, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [28838] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4201), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161317,7 +161397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 32, + ACTIONS(4203), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161350,95 +161430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28765] = 36, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + [28892] = 7, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4203), 1, - anon_sym_RPAREN, - ACTIONS(4207), 1, + ACTIONS(4037), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, - STATE(5500), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28885] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161452,7 +161456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4143), 32, + ACTIONS(1849), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161462,10 +161466,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, @@ -161483,13 +161484,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, - [28939] = 3, + [28954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3342), 13, + ACTIONS(4227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161503,7 +161503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3344), 32, + ACTIONS(4229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161536,11 +161536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28993] = 3, + [29008] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(4231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161554,7 +161554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 32, + ACTIONS(4233), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161587,11 +161587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29047] = 3, + [29062] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(4235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161605,7 +161605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 32, + ACTIONS(4237), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161638,11 +161638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29101] = 3, + [29116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161656,7 +161656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4251), 32, + ACTIONS(4233), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161689,11 +161689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29155] = 3, + [29170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 13, + ACTIONS(4235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161707,7 +161707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2374), 32, + ACTIONS(4237), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161740,11 +161740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29209] = 3, + [29224] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(4239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161758,7 +161758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4255), 32, + ACTIONS(4241), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161791,13 +161791,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29263] = 4, - ACTIONS(4261), 1, - anon_sym_DOT, + [29278] = 19, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4223), 1, + anon_sym_readonly, + STATE(2769), 1, + sym_override_modifier, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [29364] = 4, + ACTIONS(4243), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 13, + ACTIONS(1823), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161811,7 +161878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 31, + ACTIONS(1821), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161823,6 +161890,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, @@ -161841,13 +161909,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, - [29319] = 3, + [29420] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(4245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161861,7 +161928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4266), 32, + ACTIONS(4247), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161894,13 +161961,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29373] = 4, - ACTIONS(4059), 1, - anon_sym_DOT, + [29474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 13, + ACTIONS(3354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161914,7 +161979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 31, + ACTIONS(3356), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161926,6 +161991,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, @@ -161946,13 +162012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29429] = 4, - ACTIONS(4099), 1, - anon_sym_extends, + [29528] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161966,18 +162030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 31, + ACTIONS(1813), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -161997,12 +162062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29485] = 3, + anon_sym_PIPE_RBRACE, + [29582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(1841), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162016,18 +162081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4274), 32, + ACTIONS(1839), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162047,37 +162113,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [29636] = 7, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(2362), 1, anon_sym_extends, - anon_sym_implements, - [29539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(4249), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4252), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1701), 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(4274), 32, + ACTIONS(1705), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162098,40 +162168,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29593] = 3, + [29698] = 7, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 13, + ACTIONS(3479), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3489), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(3469), 32, + ACTIONS(3433), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162149,90 +162223,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, - [29647] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, + [29760] = 7, + ACTIONS(4257), 1, anon_sym_EQ, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4155), 1, - anon_sym_readonly, - STATE(2774), 1, - sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + ACTIONS(4267), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [29733] = 6, - ACTIONS(4280), 1, + ACTIONS(4261), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4264), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4276), 11, + ACTIONS(4255), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -162240,17 +162250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4278), 31, + ACTIONS(4259), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162272,21 +162279,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29793] = 6, - ACTIONS(4280), 1, - anon_sym_AMP, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_extends, + [29822] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 11, + ACTIONS(4269), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4271), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -162294,17 +162302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 31, + ACTIONS(3433), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162326,11 +162332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29853] = 3, + [29880] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 13, + ACTIONS(3342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162344,7 +162350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4288), 32, + ACTIONS(3344), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162377,11 +162383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29907] = 3, + [29934] = 5, + ACTIONS(4279), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3661), 13, + ACTIONS(4277), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162395,15 +162406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3459), 32, + ACTIONS(4275), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -162426,15 +162435,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, - [29961] = 4, - ACTIONS(4290), 1, - anon_sym_DOT, + [29992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 13, + ACTIONS(3278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162448,7 +162454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 31, + ACTIONS(3280), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162460,6 +162466,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, @@ -162480,16 +162487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30017] = 5, - ACTIONS(4299), 1, - anon_sym_QMARK, + [30046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4293), 13, + ACTIONS(4239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162503,13 +162505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 29, + ACTIONS(4241), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -162532,14 +162536,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, - [30075] = 4, - ACTIONS(4305), 1, - anon_sym_DOT, + [30100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, + ACTIONS(4099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162553,7 +162556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 31, + ACTIONS(4101), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162565,6 +162568,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, @@ -162585,11 +162589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30131] = 3, + [30154] = 6, + ACTIONS(4281), 1, + anon_sym_LBRACE, + ACTIONS(4283), 1, + anon_sym_DOT, + STATE(1770), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162603,10 +162613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4309), 32, + ACTIONS(1715), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162615,7 +162624,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, @@ -162634,13 +162642,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, - [30185] = 3, + [30214] = 6, + ACTIONS(4281), 1, + anon_sym_LBRACE, + ACTIONS(4285), 1, + anon_sym_DOT, + STATE(1770), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162654,10 +162667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4309), 32, + ACTIONS(1715), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162666,7 +162678,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, @@ -162685,13 +162696,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, - [30239] = 3, + [30274] = 5, + ACTIONS(4281), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162705,10 +162719,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4309), 32, + ACTIONS(1715), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162736,13 +162749,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, - [30293] = 3, + [30332] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 13, + ACTIONS(4245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162756,7 +162768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4313), 32, + ACTIONS(4247), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162789,11 +162801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30347] = 3, + [30386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(4287), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162807,7 +162819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 32, + ACTIONS(4289), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162840,11 +162852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30401] = 3, + [30440] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(4291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162858,7 +162870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4274), 32, + ACTIONS(4293), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162891,11 +162903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30455] = 3, + [30494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 13, + ACTIONS(4085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162909,7 +162921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 32, + ACTIONS(4087), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162942,25 +162954,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30509] = 3, + [30548] = 6, + ACTIONS(4189), 1, + anon_sym_AMP, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3308), 13, + ACTIONS(4295), 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(3310), 32, + ACTIONS(4297), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162991,17 +163007,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, - [30563] = 5, - ACTIONS(4027), 1, - anon_sym_LPAREN, - STATE(1687), 1, - sym_arguments, + [30608] = 4, + ACTIONS(4303), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 13, + ACTIONS(4299), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163015,18 +163028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 30, + ACTIONS(4301), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163045,30 +163058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30621] = 6, - ACTIONS(4280), 1, - anon_sym_AMP, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, anon_sym_extends, + anon_sym_implements, + [30664] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(4305), 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), 31, + ACTIONS(4307), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163099,96 +163109,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, - [30681] = 36, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + [30718] = 4, + ACTIONS(4309), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(4323), 1, - anon_sym_RPAREN, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, - STATE(5802), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4305), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4307), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_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, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30801] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30774] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(4075), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163202,7 +163181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 32, + ACTIONS(4077), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163235,11 +163214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30855] = 3, + [30828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 13, + ACTIONS(4311), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163253,7 +163232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4331), 32, + ACTIONS(4313), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163286,25 +163265,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30909] = 3, + [30882] = 6, + ACTIONS(4189), 1, + anon_sym_AMP, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(4315), 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), 32, + ACTIONS(4317), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163335,13 +163318,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, - [30963] = 3, + [30942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 13, + ACTIONS(4319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163355,7 +163337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4339), 32, + ACTIONS(4321), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163388,11 +163370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31017] = 3, + [30996] = 4, + ACTIONS(4103), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(1699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163406,7 +163390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 32, + ACTIONS(1697), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163437,13 +163421,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31071] = 3, + [31052] = 36, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(4323), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, + STATE(5522), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 13, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31172] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4325), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163457,7 +163524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 32, + ACTIONS(4327), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163490,11 +163557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31125] = 3, + [31226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(2364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163508,7 +163575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 32, + ACTIONS(2362), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163541,13 +163608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31179] = 4, - ACTIONS(3507), 1, - anon_sym_EQ, + [31280] = 4, + ACTIONS(4067), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3489), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163561,7 +163628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 31, + ACTIONS(3479), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163573,7 +163640,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, @@ -163592,86 +163658,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31235] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4155), 1, - anon_sym_readonly, - STATE(2774), 1, - sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + [31336] = 5, + ACTIONS(4331), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [31321] = 4, - ACTIONS(4280), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 12, + ACTIONS(4329), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4273), 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, @@ -163679,15 +163683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 32, + ACTIONS(4275), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -163710,13 +163712,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, - [31377] = 3, + [31394] = 4, + ACTIONS(4337), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + ACTIONS(4333), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163730,7 +163733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4161), 32, + ACTIONS(4335), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163742,7 +163745,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, @@ -163763,11 +163765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31431] = 3, + [31450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 13, + ACTIONS(4339), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163781,7 +163783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2370), 32, + ACTIONS(4341), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163814,29 +163816,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31485] = 6, - ACTIONS(4280), 1, + [31504] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2376), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(4284), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2374), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [31558] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 11, + ACTIONS(4343), 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(4359), 31, + ACTIONS(4345), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163867,19 +163916,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, - [31545] = 4, - ACTIONS(4280), 1, - anon_sym_AMP, + [31612] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 12, + ACTIONS(4347), 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, @@ -163887,7 +163936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 32, + ACTIONS(4267), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163920,17 +163969,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31601] = 3, + [31666] = 4, + ACTIONS(4189), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(4349), 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, @@ -163938,7 +163988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 32, + ACTIONS(4351), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163971,47 +164021,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31655] = 19, + [31722] = 19, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(3795), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3894), 1, + ACTIONS(3888), 1, anon_sym_RBRACE, - ACTIONS(4145), 1, + ACTIONS(4213), 1, anon_sym_STAR, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4151), 1, + ACTIONS(4219), 1, anon_sym_async, - ACTIONS(4155), 1, + ACTIONS(4223), 1, anon_sym_readonly, - STATE(2774), 1, + STATE(2769), 1, sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, + ACTIONS(4221), 2, sym_number, sym_private_property_identifier, - ACTIONS(4157), 2, + ACTIONS(4225), 2, anon_sym_get, anon_sym_set, - STATE(3084), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -164019,7 +164069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3663), 18, + ACTIONS(3667), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164038,17 +164088,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31741] = 3, + [31808] = 4, + ACTIONS(4189), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2368), 13, + ACTIONS(4353), 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, @@ -164056,7 +164107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2366), 32, + ACTIONS(4355), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164089,11 +164140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31795] = 3, + [31864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164107,7 +164158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 32, + ACTIONS(4269), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164140,11 +164191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31849] = 3, + [31918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 13, + ACTIONS(4357), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164158,7 +164209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 32, + ACTIONS(4359), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164191,11 +164242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31903] = 3, + [31972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4361), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164209,7 +164260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 32, + ACTIONS(4363), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164242,25 +164293,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31957] = 3, + [32026] = 6, + ACTIONS(4189), 1, + anon_sym_AMP, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4365), 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), 32, + ACTIONS(4367), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164291,27 +164346,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32011] = 3, + [32086] = 6, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4309), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4305), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4369), 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), 32, + ACTIONS(4371), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164321,7 +164380,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, @@ -164342,15 +164400,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, - [32065] = 4, - ACTIONS(4389), 1, - sym__automatic_semicolon, + [32146] = 4, + ACTIONS(4377), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(4373), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164364,7 +164421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 31, + ACTIONS(4375), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164396,11 +164453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32121] = 3, + [32202] = 4, + ACTIONS(4309), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164414,7 +164473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4393), 32, + ACTIONS(4381), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164424,7 +164483,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, @@ -164447,11 +164505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32175] = 3, + [32258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 13, + ACTIONS(4331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164465,19 +164523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 32, - sym__automatic_semicolon, + ACTIONS(4329), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164497,26 +164554,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32229] = 3, + anon_sym_extends, + anon_sym_implements, + [32312] = 6, + ACTIONS(4189), 1, + anon_sym_AMP, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4383), 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), 32, + ACTIONS(4385), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164547,13 +164609,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, - [32283] = 3, + [32372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164567,7 +164628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 32, + ACTIONS(4389), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164600,11 +164661,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32337] = 3, + [32426] = 36, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(4391), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, + STATE(5491), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1931), 13, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32546] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4393), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164618,19 +164763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1929), 32, - sym__automatic_semicolon, + ACTIONS(4395), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164650,12 +164794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32391] = 3, + anon_sym_extends, + anon_sym_implements, + [32600] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4397), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164669,7 +164814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4397), 32, + ACTIONS(4399), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164702,11 +164847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32445] = 3, + [32654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(4401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164720,7 +164865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 32, + ACTIONS(4403), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164753,29 +164898,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32499] = 6, - ACTIONS(4280), 1, + [32708] = 6, + ACTIONS(4189), 1, anon_sym_AMP, - ACTIONS(4282), 1, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4284), 1, + ACTIONS(4193), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 11, + 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), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [32768] = 4, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 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(4405), 31, + ACTIONS(3433), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164807,11 +165004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32559] = 3, + [32824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 13, + ACTIONS(2380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164825,7 +165022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4409), 32, + ACTIONS(2378), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164858,11 +165055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32613] = 3, + [32878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(2368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164876,7 +165073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 32, + ACTIONS(2366), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164909,16 +165106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32667] = 5, - ACTIONS(4167), 1, - anon_sym_QMARK, + [32932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4293), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164932,13 +165124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 29, + ACTIONS(4277), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164961,12 +165155,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, - [32725] = 3, + [32986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + ACTIONS(4405), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164980,7 +165175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4161), 32, + ACTIONS(4407), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165013,114 +165208,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32779] = 36, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(4411), 1, - anon_sym_RPAREN, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, - STATE(5514), 1, - sym_type_annotation, + [33040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32899] = 6, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4139), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4135), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4413), 11, + ACTIONS(4409), 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(4415), 30, + ACTIONS(4411), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165130,6 +165236,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, @@ -165150,12 +165257,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, - [32959] = 3, + [33094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 13, + ACTIONS(4413), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165169,7 +165277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4409), 32, + ACTIONS(4415), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165202,7 +165310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33013] = 3, + [33148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -165253,11 +165361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33067] = 3, + [33202] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(4421), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165271,7 +165379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 32, + ACTIONS(4423), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165304,11 +165412,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33121] = 3, + [33256] = 19, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4223), 1, + anon_sym_readonly, + STATE(2769), 1, + sym_override_modifier, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 13, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [33342] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165322,7 +165497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 32, + ACTIONS(4427), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165355,13 +165530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33175] = 4, - ACTIONS(4429), 1, - anon_sym_extends, + [33396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4425), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165375,7 +165548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4427), 31, + ACTIONS(4431), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165406,20 +165579,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, - [33231] = 7, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4069), 1, - anon_sym_QMARK_DOT, - STATE(4746), 1, - sym_optional_chain, + [33450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1785), 13, + ACTIONS(4433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165433,7 +165599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 28, + ACTIONS(4435), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165443,7 +165609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -165461,12 +165630,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, - [33293] = 3, + [33504] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165480,7 +165650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4433), 32, + ACTIONS(4431), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165513,11 +165683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33347] = 3, + [33558] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165531,7 +165701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 32, + ACTIONS(4431), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165564,40 +165734,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33401] = 7, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(2374), 1, - anon_sym_extends, + [33612] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4438), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1691), 10, + ACTIONS(4437), 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(1695), 28, + ACTIONS(4439), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165618,10 +165783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33463] = 4, - ACTIONS(4139), 1, - anon_sym_LBRACK, + [33666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -165639,7 +165803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 31, + ACTIONS(4443), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165649,6 +165813,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, @@ -165671,29 +165836,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33519] = 6, - ACTIONS(4280), 1, - anon_sym_AMP, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_extends, + [33720] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 11, + ACTIONS(4437), 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(4288), 31, + ACTIONS(4439), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165724,96 +165885,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33579] = 7, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, + [33774] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4437), 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(3439), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, - [33641] = 7, - ACTIONS(4335), 1, - anon_sym_extends, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4451), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4454), 3, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4445), 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(4449), 28, + ACTIONS(4439), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165834,12 +165936,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, - [33703] = 3, + [33828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165853,7 +165956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 32, + ACTIONS(4447), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165886,38 +165989,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33757] = 5, + [33882] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4459), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4445), 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), 29, + ACTIONS(4447), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165938,12 +166038,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, - [33815] = 3, + [33936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4461), 13, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165957,7 +166058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4463), 32, + ACTIONS(4451), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165990,11 +166091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33869] = 3, + [33990] = 4, + ACTIONS(4457), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4465), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166008,7 +166111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4467), 32, + ACTIONS(4455), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166020,7 +166123,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, @@ -166041,29 +166143,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33923] = 6, - ACTIONS(4280), 1, - anon_sym_AMP, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_extends, + [34046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4469), 11, + ACTIONS(4445), 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(4471), 31, + ACTIONS(4447), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166094,12 +166192,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, - [33983] = 3, + [34100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3316), 13, + ACTIONS(4460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166113,7 +166212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 32, + ACTIONS(4462), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166146,29 +166245,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34037] = 6, - ACTIONS(4280), 1, - anon_sym_AMP, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_extends, + [34154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4473), 11, + ACTIONS(4464), 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(4475), 31, + ACTIONS(4466), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166199,12 +166294,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, - [34097] = 3, + [34208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 13, + ACTIONS(4468), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166218,7 +166314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4433), 32, + ACTIONS(4470), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166251,11 +166347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34151] = 3, + [34262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4477), 13, + ACTIONS(4472), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166269,7 +166365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4479), 32, + ACTIONS(4474), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166302,11 +166398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34205] = 3, + [34316] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4299), 13, + ACTIONS(2372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166320,7 +166416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4297), 32, + ACTIONS(2370), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166353,11 +166449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34259] = 3, + [34370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 13, + ACTIONS(3665), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166371,7 +166467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2378), 32, + ACTIONS(3469), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166404,11 +166500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34313] = 3, + [34424] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 13, + ACTIONS(3661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166422,7 +166518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4483), 32, + ACTIONS(3471), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166455,11 +166551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34367] = 3, + [34478] = 4, + ACTIONS(4476), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166473,7 +166571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 32, + ACTIONS(4455), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166485,7 +166583,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, @@ -166506,11 +166603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34421] = 3, + [34534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 13, + ACTIONS(4479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166524,7 +166621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 32, + ACTIONS(4481), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166557,176 +166654,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34475] = 36, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, + [34588] = 6, + ACTIONS(4189), 1, anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(4493), 1, - anon_sym_RPAREN, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, - STATE(5496), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [34595] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3809), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4155), 1, - anon_sym_readonly, - STATE(2774), 1, - sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [34681] = 3, + ACTIONS(4193), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(4479), 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(4497), 32, + ACTIONS(4481), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166757,13 +166707,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, - [34735] = 3, + [34648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 13, + ACTIONS(4483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166777,7 +166726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4117), 32, + ACTIONS(4485), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166810,29 +166759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34789] = 6, - ACTIONS(4280), 1, - anon_sym_AMP, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_extends, + [34702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 11, + ACTIONS(4487), 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(4501), 31, + ACTIONS(4489), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166863,12 +166808,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, - [34849] = 3, + [34756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 13, + ACTIONS(4491), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166882,7 +166828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4457), 32, + ACTIONS(4493), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166915,38 +166861,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34903] = 6, - ACTIONS(4393), 1, - anon_sym_extends, + [34810] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4510), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4503), 10, + ACTIONS(4495), 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(4505), 28, + ACTIONS(4497), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -166967,41 +166910,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, - [34962] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_LT, - ACTIONS(4532), 1, - anon_sym_satisfies, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + [34864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4513), 11, + ACTIONS(4499), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -167010,14 +166927,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(4517), 18, - sym__automatic_semicolon, + ACTIONS(4501), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167031,11 +166957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35041] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [34918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167049,7 +166981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 31, + ACTIONS(4505), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167080,12 +167012,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, - [35094] = 3, + [34972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1785), 13, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167099,7 +167032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 31, + ACTIONS(1925), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167131,354 +167064,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35147] = 34, + [35025] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4536), 1, - anon_sym_COMMA, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4431), 1, - aux_sym_sequence_expression_repeat1, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4540), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35262] = 34, + ACTIONS(4511), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35136] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4536), 1, - anon_sym_COMMA, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4431), 1, - aux_sym_sequence_expression_repeat1, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4574), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35377] = 32, + ACTIONS(4559), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35247] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4576), 4, + ACTIONS(4561), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [35488] = 5, + [35358] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4523), 1, + anon_sym_AMP_AMP, + ACTIONS(4525), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4531), 1, + anon_sym_AMP, + ACTIONS(4533), 1, + anon_sym_CARET, + ACTIONS(4535), 1, + anon_sym_PIPE, + ACTIONS(4539), 1, + anon_sym_PERCENT, + ACTIONS(4541), 1, + anon_sym_STAR_STAR, + ACTIONS(4543), 1, + anon_sym_LT, + ACTIONS(4551), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4578), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4445), 13, + ACTIONS(4507), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 24, - sym__ternary_qmark, + ACTIONS(4549), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4545), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4563), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35469] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4567), 1, + anon_sym_COMMA, + ACTIONS(4570), 1, + anon_sym_RBRACE, + ACTIONS(4576), 1, anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [35545] = 3, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4581), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4574), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 31, - sym__ternary_qmark, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35584] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 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_implements, - [35598] = 3, + ACTIONS(4608), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [35695] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 13, + ACTIONS(4610), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167492,7 +167558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4587), 31, + ACTIONS(4612), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167524,11 +167590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35651] = 3, + [35748] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(4614), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167542,7 +167608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 31, + ACTIONS(4616), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167574,240 +167640,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35704] = 32, + [35801] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4606), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4589), 4, + ACTIONS(4511), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [35815] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4293), 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(4295), 31, - sym__ternary_qmark, + [35912] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35868] = 3, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4591), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4593), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4559), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [36023] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4523), 1, anon_sym_AMP_AMP, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4531), 1, + anon_sym_AMP, + ACTIONS(4533), 1, anon_sym_CARET, + ACTIONS(4535), 1, + anon_sym_PIPE, + ACTIONS(4539), 1, anon_sym_PERCENT, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4543), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4555), 1, anon_sym_satisfies, - anon_sym_implements, - [35921] = 3, + ACTIONS(4557), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 13, + ACTIONS(4507), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [35974] = 3, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4545), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4618), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [36134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4595), 13, + ACTIONS(4620), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167821,7 +167895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4597), 31, + ACTIONS(4622), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167853,63 +167927,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36027] = 5, + [36187] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4601), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4605), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4599), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 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, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 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(4561), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [36298] = 13, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [36084] = 3, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4628), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4624), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167920,23 +168043,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, - ACTIONS(1873), 31, - sym__automatic_semicolon, + ACTIONS(4626), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167950,145 +168065,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, - anon_sym_PIPE_RBRACE, - [36137] = 17, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_STAR, - ACTIONS(4610), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, - anon_sym_async, - ACTIONS(4616), 1, - anon_sym_readonly, - ACTIONS(4620), 1, - sym__automatic_semicolon, - STATE(2692), 1, - sym_statement_block, - STATE(2773), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4614), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4618), 2, - anon_sym_get, - anon_sym_set, - STATE(3026), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [36371] = 16, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 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, - [36218] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4625), 1, - anon_sym_static, - ACTIONS(4627), 1, - anon_sym_readonly, - ACTIONS(4629), 1, - anon_sym_abstract, - ACTIONS(4631), 1, - anon_sym_accessor, - STATE(2716), 1, - sym_accessibility_modifier, - STATE(2788), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3306), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4635), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 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, - [36297] = 3, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4633), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -168097,23 +168108,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(4635), 31, + ACTIONS(4633), 18, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168127,76 +168129,109 @@ 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, + [36450] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - anon_sym_implements, - [36350] = 4, - ACTIONS(4637), 1, - sym__automatic_semicolon, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 30, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4670), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4640), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_COLON, + anon_sym_RBRACK, + [36561] = 12, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4135), 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_PIPE_RBRACE, - [36405] = 5, + ACTIONS(4680), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4639), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1691), 13, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168207,17 +168242,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, - ACTIONS(1695), 24, + ACTIONS(4678), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168233,37 +168266,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, - [36462] = 3, + [36632] = 6, + ACTIONS(4087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4642), 13, + ACTIONS(4683), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4686), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(4644), 31, + ACTIONS(3433), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168285,11 +168320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36515] = 3, + [36691] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4646), 13, + ACTIONS(4691), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4695), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168303,18 +168347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4648), 31, + ACTIONS(4693), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168334,12 +168372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36568] = 3, + [36748] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 13, + ACTIONS(4698), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168353,7 +168390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 31, + ACTIONS(4700), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168385,11 +168422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36621] = 3, + [36801] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(4702), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168403,7 +168440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 31, + ACTIONS(4704), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168435,11 +168472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36674] = 3, + [36854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(4706), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168453,7 +168490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 31, + ACTIONS(4708), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168485,11 +168522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36727] = 3, + [36907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4658), 13, + ACTIONS(4710), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168503,7 +168540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4660), 31, + ACTIONS(4712), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168535,11 +168572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36780] = 3, + [36960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 13, + ACTIONS(4714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168553,7 +168590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4664), 31, + ACTIONS(4716), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168585,11 +168622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36833] = 3, + [37013] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4666), 13, + ACTIONS(4718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168603,7 +168640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4668), 31, + ACTIONS(4720), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168635,21 +168672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36886] = 8, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_DOT, - ACTIONS(4672), 1, - anon_sym_LT, - STATE(2023), 1, - sym_arguments, - STATE(2024), 1, - sym_type_arguments, + [37066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 12, + ACTIONS(1833), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168660,17 +168687,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(3473), 27, + ACTIONS(1831), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168689,22 +168721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [36949] = 8, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, - anon_sym_LT, - ACTIONS(4674), 1, - anon_sym_DOT, - STATE(2026), 1, - sym_arguments, - STATE(2027), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [37119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 12, + ACTIONS(1797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168715,17 +168737,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(4025), 27, - sym__automatic_semicolon, + ACTIONS(1799), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168744,22 +168771,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [37012] = 8, - ACTIONS(4521), 1, + anon_sym_implements, + [37172] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4672), 1, - anon_sym_LT, - ACTIONS(4676), 1, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - STATE(2028), 1, - sym_arguments, - STATE(2029), 1, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4726), 1, + anon_sym_LT, + STATE(1876), 1, sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4053), 12, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168772,39 +168813,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4055), 27, + ACTIONS(4724), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [37075] = 3, + [37247] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4678), 13, + ACTIONS(4729), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168818,7 +168851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 31, + ACTIONS(4731), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168850,11 +168883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37128] = 3, + [37300] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4682), 13, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168868,7 +168901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4684), 31, + ACTIONS(1835), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168900,11 +168933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37181] = 3, + [37353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4686), 13, + ACTIONS(4733), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168918,7 +168951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4688), 31, + ACTIONS(4735), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168950,38 +168983,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37234] = 6, - ACTIONS(4095), 1, - anon_sym_extends, + [37406] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4737), 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), 28, + ACTIONS(4608), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169003,11 +169033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37293] = 3, + [37459] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4696), 13, + ACTIONS(4739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169021,7 +169051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4698), 31, + ACTIONS(4741), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169053,11 +169083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37346] = 3, + [37512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 13, + ACTIONS(4743), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169071,7 +169101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4702), 31, + ACTIONS(4511), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169103,11 +169133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37399] = 3, + [37565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 13, + ACTIONS(4745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169121,7 +169151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4706), 31, + ACTIONS(4559), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169153,11 +169183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37452] = 3, + [37618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4708), 13, + ACTIONS(4747), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169171,7 +169201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4710), 31, + ACTIONS(4749), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169203,11 +169233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37505] = 3, + [37671] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 13, + ACTIONS(4751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169221,7 +169251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 31, + ACTIONS(4753), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169253,11 +169283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37558] = 3, + [37724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 13, + ACTIONS(4755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169271,18 +169301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 31, - sym__automatic_semicolon, + ACTIONS(4757), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -169302,62 +169332,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37611] = 3, + anon_sym_implements, + [37777] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 13, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4763), 2, + anon_sym_get, + anon_sym_set, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [37854] = 16, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4765), 1, + anon_sym_LBRACK, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [37933] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, + ACTIONS(4584), 1, anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, anon_sym_PIPE, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1795), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4563), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [38044] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 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_implements, - [37664] = 3, + ACTIONS(4712), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [38155] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4716), 13, + ACTIONS(1823), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169371,18 +169634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4718), 31, + ACTIONS(1821), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -169402,12 +169665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37717] = 3, + anon_sym_PIPE_RBRACE, + [38208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 13, + ACTIONS(4767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169421,7 +169684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1911), 31, + ACTIONS(4769), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169453,61 +169716,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37770] = 3, + [38261] = 26, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4722), 1, + anon_sym_BANG, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4720), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4722), 31, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [38360] = 27, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4722), 1, + anon_sym_BANG, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 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, + ACTIONS(4724), 9, + 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_satisfies, - anon_sym_implements, - [37823] = 3, + [38461] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4724), 13, + ACTIONS(4771), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169521,7 +169881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4726), 31, + ACTIONS(4773), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169553,11 +169913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37876] = 3, + [38514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4728), 13, + ACTIONS(4775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169571,7 +169931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4730), 31, + ACTIONS(4777), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169603,11 +169963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37929] = 3, + [38567] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4732), 13, + ACTIONS(1855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169621,7 +169981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4734), 31, + ACTIONS(1857), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169653,11 +170013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37982] = 3, + [38620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4736), 13, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169671,7 +170031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 31, + ACTIONS(1867), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169703,11 +170063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38035] = 3, + [38673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4740), 13, + ACTIONS(1875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169721,7 +170081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4742), 31, + ACTIONS(1877), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169753,11 +170113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38088] = 3, + [38726] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 13, + ACTIONS(1913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169771,7 +170131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4746), 31, + ACTIONS(1915), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169803,11 +170163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38141] = 3, + [38779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4748), 13, + ACTIONS(4779), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169821,7 +170181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4750), 31, + ACTIONS(4781), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169853,39 +170213,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38194] = 15, + [38832] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + ACTIONS(4783), 1, + anon_sym_COMMA, + STATE(1876), 1, + sym_type_arguments, + STATE(4373), 1, + aux_sym_sequence_expression_repeat1, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4785), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38947] = 15, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3795), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3818), 1, + ACTIONS(3885), 1, anon_sym_RBRACE, - ACTIONS(4145), 1, + ACTIONS(4213), 1, anon_sym_STAR, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - STATE(4793), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(4761), 2, sym_number, sym_private_property_identifier, - ACTIONS(4756), 2, + ACTIONS(4763), 2, anon_sym_get, anon_sym_set, - STATE(3737), 3, + STATE(3807), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -169915,41 +170356,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38271] = 16, + [39024] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4787), 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(4789), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [39077] = 16, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3795), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3818), 1, + ACTIONS(3885), 1, anon_sym_RBRACE, - ACTIONS(4145), 1, + ACTIONS(4213), 1, anon_sym_STAR, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4219), 1, anon_sym_async, - ACTIONS(4758), 1, + ACTIONS(4765), 1, anon_sym_LBRACK, - STATE(4793), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, + ACTIONS(4221), 2, sym_number, sym_private_property_identifier, - ACTIONS(4157), 2, + ACTIONS(4225), 2, anon_sym_get, anon_sym_set, - STATE(3084), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -169957,7 +170448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3663), 20, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169978,11 +170469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38350] = 3, + [39156] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4760), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169996,7 +170487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4762), 31, + ACTIONS(3433), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170028,161 +170519,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38403] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4764), 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(4766), 31, - sym__ternary_qmark, + [39209] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [38456] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4768), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4580), 1, anon_sym_GT_GT, + ACTIONS(4584), 1, anon_sym_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(4770), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4586), 1, anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [38509] = 3, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 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_implements, - [38562] = 3, + ACTIONS(4640), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [39320] = 4, + ACTIONS(4791), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 13, + ACTIONS(1823), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170196,18 +170618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 31, + ACTIONS(1821), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170227,12 +170648,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38615] = 3, + anon_sym_PIPE_RBRACE, + [39375] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 13, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170246,7 +170667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 31, + ACTIONS(1849), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170278,61 +170699,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38668] = 3, + [39428] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1703), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4793), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [38721] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4772), 13, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170346,18 +170726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4774), 31, + ACTIONS(1705), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170377,12 +170751,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38774] = 3, + [39485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4776), 13, + ACTIONS(4796), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170396,7 +170769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4778), 31, + ACTIONS(4798), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170428,11 +170801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38827] = 3, + [39538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1857), 13, + ACTIONS(1933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170446,7 +170819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1859), 31, + ACTIONS(1935), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170478,11 +170851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38880] = 3, + [39591] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1881), 13, + ACTIONS(1943), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170496,7 +170869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 31, + ACTIONS(1945), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170528,11 +170901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38933] = 3, + [39644] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 13, + ACTIONS(1757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170546,7 +170919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 31, + ACTIONS(1759), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170578,11 +170951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38986] = 3, + [39697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1939), 13, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170596,7 +170969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1941), 31, + ACTIONS(1769), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170628,111 +171001,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39039] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1735), 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(1737), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [39750] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 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(4592), 1, anon_sym_PERCENT, + ACTIONS(4594), 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, - [39092] = 3, + ACTIONS(4726), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1867), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4590), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(1869), 31, + ACTIONS(4724), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - anon_sym_implements, - [39145] = 3, + [39831] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 13, + ACTIONS(1777), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170746,7 +171083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1921), 31, + ACTIONS(1779), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170778,11 +171115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39198] = 3, + [39884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(1829), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170796,7 +171133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1835), 31, + ACTIONS(1827), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -170828,13 +171165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [39251] = 4, - ACTIONS(4447), 1, - anon_sym_EQ, + [39937] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170848,7 +171183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 30, + ACTIONS(1789), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170856,6 +171191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -170879,63 +171215,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39306] = 3, + [39990] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 13, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4763), 2, + anon_sym_get, + anon_sym_set, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [40067] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4596), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 31, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4722), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4724), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39359] = 4, - ACTIONS(4601), 1, + [40160] = 16, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, anon_sym_EQ, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4765), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [40239] = 9, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 13, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170946,17 +171438,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(4603), 30, + ACTIONS(4802), 25, sym__ternary_qmark, 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, @@ -170977,67 +171465,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_satisfies, + [40304] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - anon_sym_implements, - [39414] = 4, - ACTIONS(1693), 1, - anon_sym_EQ, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1691), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 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_implements, - [39469] = 4, - ACTIONS(4780), 1, - sym__automatic_semicolon, + ACTIONS(4712), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [40415] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 13, + ACTIONS(1907), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171051,7 +171563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1687), 30, + ACTIONS(1905), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -171082,202 +171595,392 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [39524] = 6, - ACTIONS(4266), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4782), 2, - anon_sym_COMMA, + [40468] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4785), 3, - anon_sym_GT, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4670), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4804), 4, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + [40579] = 16, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4808), 1, + anon_sym_static, + ACTIONS(4810), 1, + anon_sym_readonly, + ACTIONS(4812), 1, + anon_sym_abstract, + ACTIONS(4814), 1, + anon_sym_accessor, + STATE(2712), 1, + sym_accessibility_modifier, + STATE(2841), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4806), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [40658] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, anon_sym_AMP_AMP, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, anon_sym_PERCENT, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4642), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4668), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 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(4816), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [40769] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [39583] = 11, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4672), 1, - anon_sym_LT, - ACTIONS(4788), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - STATE(2145), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(2208), 1, - sym_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4061), 12, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4063), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - 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(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 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, - [39652] = 33, - ACTIONS(89), 1, + ACTIONS(4574), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [40880] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4794), 1, - anon_sym_in, - ACTIONS(4797), 1, - anon_sym_GT, - ACTIONS(4799), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4642), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4792), 4, - sym__automatic_semicolon, + ACTIONS(4616), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [39765] = 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [40991] = 4, + ACTIONS(4257), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(4255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171291,7 +171994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1835), 31, + ACTIONS(4259), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171299,7 +172002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -171323,206 +172025,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39818] = 32, + [41046] = 24, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, - anon_sym_AMP_AMP, - ACTIONS(4544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4552), 1, - anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4570), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, - sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4831), 4, + ACTIONS(4724), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [39929] = 32, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [41141] = 25, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, - anon_sym_AMP_AMP, - ACTIONS(4544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4570), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, - sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4684), 4, + ACTIONS(4724), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [40040] = 19, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [41238] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4726), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 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_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_satisfies, + [41317] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4726), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(4724), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [41398] = 19, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4546), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 7, + ACTIONS(4722), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -171530,13 +172344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 16, - sym__automatic_semicolon, + ACTIONS(4724), 16, 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_CARET, @@ -171547,11 +172361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [40125] = 3, + [41483] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 13, + ACTIONS(1903), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171565,18 +172379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 31, + ACTIONS(1901), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171596,12 +172410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40178] = 3, + anon_sym_PIPE_RBRACE, + [41536] = 4, + ACTIONS(4691), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171615,7 +172431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 31, + ACTIONS(4693), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171623,7 +172439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -171647,116 +172462,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40231] = 34, - ACTIONS(89), 1, + [41591] = 14, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4536), 1, - anon_sym_COMMA, - ACTIONS(4542), 1, - anon_sym_AMP_AMP, - ACTIONS(4544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, - anon_sym_GT_GT, - ACTIONS(4550), 1, - anon_sym_AMP, - ACTIONS(4552), 1, - anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_PIPE, - ACTIONS(4558), 1, - anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4818), 1, anon_sym_LT, - ACTIONS(4570), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, - sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4431), 1, - aux_sym_sequence_expression_repeat1, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4538), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4556), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4724), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4837), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4564), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40346] = 14, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4560), 1, - anon_sym_STAR_STAR, - ACTIONS(4839), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_satisfies, + [41666] = 4, + ACTIONS(1703), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 12, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171767,486 +172540,408 @@ 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(4833), 19, - sym__automatic_semicolon, + ACTIONS(1705), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [40421] = 26, - ACTIONS(89), 1, + anon_sym_implements, + [41721] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4546), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_BANG, - STATE(1896), 1, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4821), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [40520] = 27, - ACTIONS(89), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [41832] = 26, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4542), 1, - anon_sym_AMP_AMP, - ACTIONS(4546), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 9, - sym__automatic_semicolon, + ACTIONS(4724), 10, 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_QMARK_QMARK, anon_sym_satisfies, - [40621] = 17, - ACTIONS(89), 1, + [41931] = 27, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4558), 1, - anon_sym_PERCENT, - ACTIONS(4560), 1, - anon_sym_STAR_STAR, - ACTIONS(4839), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4556), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4648), 1, anon_sym_GT_GT, + ACTIONS(4652), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4833), 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_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4654), 1, 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_satisfies, - [40702] = 23, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4546), 1, - anon_sym_GT_GT, - ACTIONS(4558), 1, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - STATE(1896), 1, + ACTIONS(4722), 1, + anon_sym_BANG, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4833), 11, - sym__automatic_semicolon, + ACTIONS(4724), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [40795] = 24, - ACTIONS(89), 1, + [42032] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4546), 1, - anon_sym_GT_GT, - ACTIONS(4550), 1, - anon_sym_AMP, - ACTIONS(4558), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4818), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4548), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4568), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 11, - sym__automatic_semicolon, + ACTIONS(4722), 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(4724), 18, 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, 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_satisfies, - [40890] = 25, - ACTIONS(89), 1, + [42113] = 23, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4546), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, - anon_sym_AMP, - ACTIONS(4552), 1, - anon_sym_CARET, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 10, - sym__automatic_semicolon, + ACTIONS(4722), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4724), 11, 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_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [40987] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4558), 1, - anon_sym_PERCENT, - ACTIONS(4560), 1, - anon_sym_STAR_STAR, - ACTIONS(4839), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + [42206] = 4, + ACTIONS(4823), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(1699), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -172255,194 +172950,218 @@ 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(4833), 18, - sym__automatic_semicolon, + ACTIONS(1697), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [41066] = 17, - ACTIONS(89), 1, + anon_sym_PIPE_RBRACE, + [42261] = 24, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4560), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4839), 1, + ACTIONS(4664), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 11, + ACTIONS(4638), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 17, - sym__automatic_semicolon, + ACTIONS(4670), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 11, 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, 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, - [41147] = 21, - ACTIONS(89), 1, + anon_sym_satisfies, + [42356] = 25, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4546), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4558), 1, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2199), 2, + ACTIONS(4668), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4670), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4833), 13, - sym__automatic_semicolon, + ACTIONS(4724), 10, 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_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [41236] = 7, - ACTIONS(4672), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_DOT, - ACTIONS(4844), 1, - anon_sym_is, - STATE(2013), 1, - sym_type_arguments, + [42453] = 6, + ACTIONS(4293), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 12, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(3533), 28, - sym__automatic_semicolon, + ACTIONS(3433), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172461,13 +173180,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [41297] = 3, + anon_sym_implements, + [42512] = 16, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4818), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -172476,49 +173223,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(1925), 31, + ACTIONS(4724), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, + [42591] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - anon_sym_implements, - [41350] = 3, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4818), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1931), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -172527,690 +173288,668 @@ 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(1929), 31, + ACTIONS(4724), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [42672] = 21, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [41403] = 3, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4722), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 31, + ACTIONS(4724), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_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, - [41456] = 28, - ACTIONS(89), 1, + [42761] = 28, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4542), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, - sym__automatic_semicolon, + ACTIONS(4724), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [41559] = 32, - ACTIONS(89), 1, + [42864] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4702), 4, - sym__automatic_semicolon, + ACTIONS(4704), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [41670] = 32, + anon_sym_COLON, + anon_sym_RBRACK, + [42975] = 21, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, - anon_sym_AMP_AMP, - ACTIONS(4544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, - anon_sym_AMP, - ACTIONS(4552), 1, - anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4570), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, - sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4568), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4846), 4, + ACTIONS(4722), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 13, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [41781] = 34, + 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_satisfies, + [43064] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - ACTIONS(4848), 1, - anon_sym_COMMA, - ACTIONS(4851), 1, - anon_sym_RBRACE, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4853), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41896] = 34, + ACTIONS(4608), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [43175] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4517), 1, + anon_sym_GT, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - ACTIONS(4848), 1, - anon_sym_COMMA, - ACTIONS(4851), 1, - anon_sym_RBRACE, - STATE(1896), 1, + ACTIONS(4833), 1, + anon_sym_in, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4855), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42011] = 33, - ACTIONS(89), 1, + ACTIONS(4831), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [43288] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4857), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42124] = 34, - ACTIONS(89), 1, + ACTIONS(4608), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [43399] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - ACTIONS(4859), 1, - anon_sym_COMMA, - ACTIONS(4862), 1, - anon_sym_RBRACE, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4831), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42239] = 12, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4868), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + ACTIONS(4511), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [43510] = 6, + ACTIONS(4359), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 12, + ACTIONS(4840), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4843), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4836), 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(4866), 22, - sym__automatic_semicolon, + ACTIONS(4838), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -173226,642 +173965,676 @@ 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, - [42310] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4756), 2, - anon_sym_get, - anon_sym_set, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [42387] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4758), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [42466] = 9, - ACTIONS(825), 1, + anon_sym_implements, + [43569] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4875), 1, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4871), 12, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - 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, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 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, - [42531] = 32, - ACTIONS(825), 1, + ACTIONS(4559), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [43680] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4597), 4, + ACTIONS(4561), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [42642] = 32, - ACTIONS(825), 1, + [43791] = 28, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4722), 1, + anon_sym_BANG, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4855), 4, + ACTIONS(4724), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [42753] = 32, - ACTIONS(825), 1, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [43894] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4589), 4, + ACTIONS(4563), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [42864] = 32, - ACTIONS(825), 1, + [44005] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4831), 4, + ACTIONS(4618), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [42975] = 32, - ACTIONS(825), 1, + [44116] = 34, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4606), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(4783), 1, + anon_sym_COMMA, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4373), 1, + aux_sym_sequence_expression_repeat1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4846), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4684), 4, + [44231] = 16, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4850), 1, + anon_sym_static, + ACTIONS(4852), 1, + anon_sym_readonly, + ACTIONS(4854), 1, + anon_sym_abstract, + ACTIONS(4856), 1, + anon_sym_accessor, + STATE(2709), 1, + sym_accessibility_modifier, + STATE(2840), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3687), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3438), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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_RBRACK, - [43086] = 19, - ACTIONS(825), 1, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3667), 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, + [44310] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4885), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - STATE(1488), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4887), 2, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + ACTIONS(4600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4704), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [44421] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4858), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 7, + ACTIONS(4624), 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(4833), 16, + ACTIONS(4626), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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, @@ -173869,35 +174642,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [43171] = 14, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + [44494] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1907), 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(1905), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4067), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4899), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [44547] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4861), 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(4863), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [44600] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173908,565 +174757,601 @@ 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(4833), 19, + ACTIONS(4867), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [43246] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [44653] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4606), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4914), 4, + ACTIONS(4869), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [43357] = 26, - ACTIONS(825), 1, + anon_sym_SEMI, + [44764] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4885), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - STATE(1488), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 10, + ACTIONS(4574), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [44875] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1829), 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(1827), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [43456] = 27, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4067), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, anon_sym_AMP_AMP, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, anon_sym_STAR_STAR, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [44928] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4257), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4871), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4255), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 9, + ACTIONS(4259), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [43557] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4897), 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(4899), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [44985] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4874), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4895), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 18, + ACTIONS(4876), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [43638] = 23, - ACTIONS(825), 1, + anon_sym_implements, + [45038] = 16, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4875), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_PERCENT, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - STATE(1488), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 11, + ACTIONS(4633), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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_QMARK_QMARK, - anon_sym_satisfies, - [43731] = 24, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4897), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, anon_sym_STAR_STAR, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [45117] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4877), 2, + ACTIONS(1837), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 11, + ACTIONS(1835), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [43826] = 25, - ACTIONS(825), 1, + anon_sym_PIPE_RBRACE, + [45170] = 34, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4885), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - STATE(1488), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + ACTIONS(4881), 1, + anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_RBRACE, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4886), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 10, + [45285] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4888), 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(4890), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [43923] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4067), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4897), 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(4899), 1, anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [45338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4892), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -174475,63 +175360,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, - ACTIONS(4833), 18, + ACTIONS(4894), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [44002] = 17, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, anon_sym_satisfies, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - ACTIONS(4911), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_implements, + [45391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 11, + ACTIONS(1903), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -174540,838 +175411,901 @@ 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(4833), 17, + ACTIONS(1901), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44083] = 21, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_PERCENT, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_implements, + [45444] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(1823), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4835), 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(4833), 13, + ACTIONS(1821), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [44172] = 28, - ACTIONS(825), 1, + anon_sym_implements, + [45497] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - STATE(1488), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4616), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [45608] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4896), 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(4898), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [44275] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [45661] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4606), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4702), 4, + ACTIONS(4804), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [45772] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4900), 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(4902), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [44386] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4067), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45825] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4904), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4846), 4, + ACTIONS(4906), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [44497] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4067), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4908), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4726), 4, + ACTIONS(4910), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [44608] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4067), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45931] = 12, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4912), 1, + anon_sym_LT, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4678), 22, + 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4734), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [44719] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [46002] = 19, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_AMP_AMP, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(4596), 1, + anon_sym_LT, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(4905), 2, + ACTIONS(4724), 16, + 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, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4738), 4, + anon_sym_satisfies, + [46087] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, anon_sym_COMMA, + ACTIONS(3888), 1, anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4763), 2, + anon_sym_get, + anon_sym_set, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - [44830] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [46164] = 8, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4915), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4917), 1, anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_AMP_AMP, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, - anon_sym_PERCENT, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(2059), 1, + sym_arguments, + STATE(2064), 1, sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(3489), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4916), 4, + ACTIONS(3479), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [44941] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [46227] = 16, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3888), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4765), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [46306] = 8, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4917), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_DOT, + STATE(2073), 1, sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + STATE(2158), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4055), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4918), 4, + ACTIONS(4057), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [45052] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [46369] = 8, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4917), 1, + anon_sym_LT, + ACTIONS(4921), 1, + anon_sym_DOT, + STATE(2074), 1, + sym_arguments, + STATE(2075), 1, sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4061), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4063), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4920), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [45163] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [46432] = 17, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4924), 1, - anon_sym_static, - ACTIONS(4926), 1, + ACTIONS(4923), 1, + anon_sym_STAR, + ACTIONS(4925), 1, + anon_sym_LBRACE, + ACTIONS(4927), 1, + anon_sym_async, + ACTIONS(4931), 1, anon_sym_readonly, - ACTIONS(4928), 1, - anon_sym_abstract, - ACTIONS(4930), 1, - anon_sym_accessor, - STATE(2711), 1, - sym_accessibility_modifier, - STATE(2817), 1, + ACTIONS(4935), 1, + sym__automatic_semicolon, + STATE(2689), 1, + sym_statement_block, + STATE(2774), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4922), 2, + ACTIONS(4929), 2, sym_number, sym_private_property_identifier, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3321), 3, + ACTIONS(4933), 2, + anon_sym_get, + anon_sym_set, + STATE(3039), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, + ACTIONS(3879), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -175380,17 +176314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 17, + ACTIONS(3667), 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, @@ -175398,11 +176333,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45242] = 3, + [46513] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4938), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4624), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175413,23 +176370,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, - ACTIONS(1911), 31, + ACTIONS(4626), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -175443,40 +176392,122 @@ 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, - [45295] = 13, + [46586] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4596), 1, + anon_sym_LT, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + ACTIONS(4881), 1, + anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_RBRACE, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4804), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46701] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4936), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4941), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4932), 12, + ACTIONS(4631), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -175487,12 +176518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4934), 20, + ACTIONS(4633), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175507,795 +176537,704 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [45368] = 32, + [46780] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4726), 4, + ACTIONS(4640), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [45479] = 32, + [46891] = 9, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4543), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4800), 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(4802), 25, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4519), 1, + anon_sym_COMMA, + anon_sym_of, + 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, + [46956] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4734), 4, + ACTIONS(4712), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [45590] = 32, + [47067] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4738), 4, + ACTIONS(4804), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [45701] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, + [47178] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4836), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4521), 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(4838), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4544), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, - anon_sym_GT_GT, - ACTIONS(4550), 1, - anon_sym_AMP, - ACTIONS(4552), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_PIPE, - ACTIONS(4558), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, - anon_sym_LT, - ACTIONS(4570), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, - sym__ternary_qmark, - STATE(1896), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [47231] = 12, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4944), 1, + anon_sym_LT, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4538), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4556), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4678), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + 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, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4564), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4916), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [47302] = 7, + ACTIONS(4917), 1, + anon_sym_LT, + ACTIONS(4947), 1, + anon_sym_DOT, + ACTIONS(4949), 1, + anon_sym_is, + STATE(2121), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4069), 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(3502), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - [45812] = 32, + 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, + [47363] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4918), 4, + ACTIONS(4816), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [45923] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4756), 2, - anon_sym_get, - anon_sym_set, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, + [47474] = 11, + ACTIONS(4515), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [46000] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4758), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4917), 1, + anon_sym_LT, + ACTIONS(4951), 1, + anon_sym_QMARK_DOT, + STATE(1949), 1, + sym_type_arguments, + STATE(2408), 1, + sym_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(4027), 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(4029), 24, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [46079] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3809), 1, anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + anon_sym_of, + 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, + [47543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4756), 2, - anon_sym_get, - anon_sym_set, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1815), 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(2352), 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, - [46156] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1813), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3809), 1, anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4758), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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, - ACTIONS(3663), 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, - [46235] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + 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, + [47596] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4756), 2, - anon_sym_get, - anon_sym_set, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4273), 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(2352), 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, - [46312] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4275), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3894), 1, anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4758), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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, - ACTIONS(3663), 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, - [46391] = 9, - ACTIONS(89), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4562), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_implements, + [47649] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4871), 12, + ACTIONS(1841), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176306,16 +177245,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(4873), 25, - sym__automatic_semicolon, + ACTIONS(1839), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -176333,25 +177277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [46456] = 9, - ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4819), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_implements, + [47702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4871), 12, + ACTIONS(1833), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176362,16 +177295,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(4873), 25, - sym__automatic_semicolon, + ACTIONS(1831), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -176389,497 +177327,683 @@ 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, - [46521] = 32, + anon_sym_implements, + [47755] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4606), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4597), 4, + ACTIONS(4618), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [46632] = 32, + [47866] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4606), 1, sym__ternary_qmark, - STATE(1896), 1, + ACTIONS(4783), 1, + anon_sym_COMMA, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4373), 1, + aux_sym_sequence_expression_repeat1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4953), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4855), 4, + [47981] = 9, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4800), 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(4802), 25, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [46743] = 32, + 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, + [48046] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4763), 2, + anon_sym_get, + anon_sym_set, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [48123] = 16, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4765), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [48202] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4589), 4, + ACTIONS(4574), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [46854] = 32, + [48313] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4831), 4, + ACTIONS(4616), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [46965] = 32, + [48424] = 19, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, - anon_sym_AMP, - ACTIONS(4809), 1, - anon_sym_CARET, - ACTIONS(4811), 1, - anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4827), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, - sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4825), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4684), 4, + ACTIONS(4722), 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(4724), 16, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [47076] = 19, + 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_satisfies, + [48509] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4803), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4815), 1, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4596), 1, anon_sym_LT, - STATE(1896), 1, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4572), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + ACTIONS(4955), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 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_satisfies, - [47161] = 14, + [48622] = 14, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4939), 1, + ACTIONS(4957), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 12, + ACTIONS(4722), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176892,7 +178016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 19, + ACTIONS(4724), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176912,69 +178036,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [47236] = 26, + [48697] = 26, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 10, + ACTIONS(4724), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176985,71 +178109,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [47335] = 27, + [48796] = 27, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4799), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 9, + ACTIONS(4724), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177059,43 +178183,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [47436] = 17, + [48897] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4939), 1, + ACTIONS(4957), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 8, + ACTIONS(4722), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -177104,7 +178228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 18, + ACTIONS(4724), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177123,65 +178247,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [47517] = 23, + [48978] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4803), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4815), 1, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4596), 1, anon_sym_LT, - STATE(1896), 1, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4816), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [49089] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4539), 1, + anon_sym_PERCENT, + ACTIONS(4541), 1, + anon_sym_STAR_STAR, + ACTIONS(4543), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4507), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4537), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4549), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 3, + ACTIONS(4722), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4833), 11, + ACTIONS(4724), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177193,66 +178396,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [47610] = 24, + [49182] = 24, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4835), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 11, + ACTIONS(4724), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177264,68 +178467,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [47705] = 25, + [49277] = 25, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4835), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 10, + ACTIONS(4724), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177336,40 +178539,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [47802] = 16, + [49374] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4960), 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(4962), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [49427] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4939), 1, + ACTIONS(4957), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 10, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -177380,7 +178633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 18, + ACTIONS(4724), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177399,41 +178652,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [47881] = 17, + [49506] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4939), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4957), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 11, + ACTIONS(4722), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -177445,7 +178698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 17, + ACTIONS(4724), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -177463,61 +178716,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47962] = 21, + [49587] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4803), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4815), 1, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4596), 1, anon_sym_LT, - STATE(1896), 1, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + ACTIONS(4884), 1, + anon_sym_RBRACE, + ACTIONS(4964), 1, + anon_sym_COMMA, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4574), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2199), 2, + ACTIONS(4600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4602), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4598), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49702] = 21, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_GT_GT, + ACTIONS(4539), 1, + anon_sym_PERCENT, + ACTIONS(4541), 1, + anon_sym_STAR_STAR, + ACTIONS(4543), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4507), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4529), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4537), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 5, + ACTIONS(4722), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 13, + ACTIONS(4724), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177531,73 +178865,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [48051] = 28, + [49791] = 28, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4799), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4724), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177606,665 +178940,1103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [48154] = 32, + [49894] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4702), 4, + ACTIONS(4704), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [48265] = 32, + [50005] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4531), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4535), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4557), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4507), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4537), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4549), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4545), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4846), 4, + ACTIONS(4869), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [48376] = 32, - ACTIONS(89), 1, + [50116] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4726), 4, - sym__automatic_semicolon, + ACTIONS(4869), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [48487] = 32, - ACTIONS(89), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [50227] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(4967), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50341] = 19, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(4724), 15, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [50425] = 34, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1896), 1, + ACTIONS(4969), 1, + anon_sym_COMMA, + ACTIONS(4971), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4153), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4734), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [48598] = 32, - ACTIONS(89), 1, + [50539] = 27, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4521), 1, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [50639] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4738), 4, - sym__automatic_semicolon, + ACTIONS(4574), 3, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [48709] = 32, - ACTIONS(89), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [50749] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(4973), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(4650), 1, + aux_sym_array_repeat1, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50863] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4804), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [50973] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4916), 4, - sym__automatic_semicolon, + ACTIONS(4608), 3, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [48820] = 32, - ACTIONS(89), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [51083] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4975), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 8, anon_sym_BANG, - ACTIONS(4521), 1, + 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(4724), 17, + 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_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_satisfies, + [51163] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4918), 4, - sym__automatic_semicolon, + ACTIONS(4511), 3, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [48931] = 32, - ACTIONS(89), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [51273] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1896), 1, + ACTIONS(4978), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4920), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49042] = 13, - ACTIONS(825), 1, + [51387] = 13, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4942), 1, + ACTIONS(4980), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4932), 12, + ACTIONS(4624), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178277,13 +180049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4934), 20, + ACTIONS(4626), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -178298,472 +180069,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [49115] = 16, - ACTIONS(825), 1, + [51459] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4985), 1, + anon_sym_static, + ACTIONS(4987), 1, + anon_sym_readonly, + ACTIONS(4989), 1, + anon_sym_abstract, + ACTIONS(4991), 1, + anon_sym_accessor, + STATE(2822), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4983), 2, + sym_number, + sym_private_property_identifier, + STATE(3338), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 20, + 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, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51533] = 23, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4945), 1, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4513), 11, + ACTIONS(4123), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4517), 18, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4722), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4724), 10, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [49194] = 32, - ACTIONS(825), 1, + anon_sym_satisfies, + [51625] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4576), 4, + ACTIONS(4559), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [49305] = 12, - ACTIONS(825), 1, + [51735] = 24, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4948), 1, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 12, + ACTIONS(4123), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4866), 22, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [49376] = 32, - ACTIONS(89), 1, + [51829] = 25, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, - anon_sym_AMP_AMP, - ACTIONS(4544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4570), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, - sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4597), 4, - sym__automatic_semicolon, + ACTIONS(4724), 9, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49487] = 32, - ACTIONS(89), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [51925] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4855), 4, - sym__automatic_semicolon, + ACTIONS(4561), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49598] = 32, - ACTIONS(89), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [52035] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4920), 4, - sym__automatic_semicolon, + ACTIONS(4563), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49709] = 13, - ACTIONS(89), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [52145] = 16, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4951), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4975), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4932), 12, - anon_sym_STAR, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -178772,16 +180615,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 17, + 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_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_satisfies, + [52223] = 7, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(2362), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4249), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4252), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1701), 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(4934), 20, + ACTIONS(1705), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -178795,40 +180684,45 @@ 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, - [49782] = 16, - ACTIONS(89), 1, + [52283] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4954), 1, + ACTIONS(4975), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4513), 11, + ACTIONS(4722), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -178840,147 +180734,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4517), 18, - sym__automatic_semicolon, + ACTIONS(4724), 16, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [49861] = 32, - ACTIONS(89), 1, + [52363] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4712), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [52473] = 34, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4799), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4803), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4807), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4809), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4811), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4815), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4817), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4819), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4827), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4829), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1896), 1, + ACTIONS(4969), 1, + anon_sym_COMMA, + ACTIONS(4993), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4153), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4790), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4797), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4805), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4813), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4823), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4821), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4576), 4, - sym__automatic_semicolon, + [52587] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, anon_sym_COMMA, - anon_sym_of, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [49972] = 12, - ACTIONS(89), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [52659] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4957), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1896), 1, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(4995), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2199), 2, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4864), 12, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52773] = 7, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(4267), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4264), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4255), 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(4866), 22, + ACTIONS(4259), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -178996,348 +181099,522 @@ 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, - [50043] = 34, - ACTIONS(89), 1, + [52833] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - ACTIONS(4851), 1, - anon_sym_RBRACE, - ACTIONS(4960), 1, - anon_sym_COMMA, - STATE(1896), 1, + ACTIONS(4997), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4831), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50158] = 34, - ACTIONS(825), 1, + [52947] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4199), 1, + ACTIONS(4127), 1, anon_sym_COMMA, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4171), 1, sym__ternary_qmark, - ACTIONS(4963), 1, + ACTIONS(4999), 1, anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4991), 1, + STATE(4754), 1, aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50272] = 32, - ACTIONS(825), 1, + [53061] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4981), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4985), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4997), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(5001), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4576), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50382] = 32, - ACTIONS(825), 1, + [53175] = 16, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4223), 1, + anon_sym_readonly, + STATE(2769), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [53253] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5005), 1, + anon_sym_static, + ACTIONS(5007), 1, + anon_sym_readonly, + ACTIONS(5009), 1, + anon_sym_abstract, + ACTIONS(5011), 1, + anon_sym_accessor, + STATE(2833), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5003), 2, + sym_number, + sym_private_property_identifier, + STATE(3352), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 20, + 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, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [53327] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4920), 3, + ACTIONS(5013), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [50492] = 12, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [53437] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5001), 1, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [53509] = 6, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(3590), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 12, + ACTIONS(3593), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179348,14 +181625,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(4866), 21, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -179371,202 +181650,251 @@ 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, - [50562] = 13, - ACTIONS(825), 1, + [53567] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5004), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, + anon_sym_GT_GT, + ACTIONS(4584), 1, + anon_sym_AMP, + ACTIONS(4586), 1, + anon_sym_CARET, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(4592), 1, + anon_sym_PERCENT, + ACTIONS(4594), 1, + anon_sym_STAR_STAR, + ACTIONS(4596), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4932), 12, + ACTIONS(4565), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4582), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4934), 19, - 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_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4598), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [50634] = 34, - ACTIONS(825), 1, + ACTIONS(4831), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [53677] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - ACTIONS(5007), 1, + ACTIONS(4969), 1, anon_sym_COMMA, - ACTIONS(5009), 1, + ACTIONS(5015), 1, anon_sym_RBRACE, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4182), 1, + STATE(4153), 1, aux_sym_sequence_expression_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50748] = 5, + [53791] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5011), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4445), 13, + ACTIONS(4123), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 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(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [50804] = 3, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4816), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [53901] = 4, + ACTIONS(4949), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4103), 13, + ACTIONS(4099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179580,7 +181908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4105), 30, + ACTIONS(4101), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179610,21 +181938,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [50856] = 5, + [53955] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4601), 2, + ACTIONS(4257), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5013), 5, + ACTIONS(5017), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4599), 13, + ACTIONS(4255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179638,7 +181965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 23, + ACTIONS(4259), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -179662,22 +181989,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50912] = 5, + [54011] = 16, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5019), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5015), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1691), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -179686,16 +182031,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(1695), 23, + ACTIONS(4633), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - 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, @@ -179709,174 +182051,197 @@ 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, + [54089] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - [50968] = 3, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + ACTIONS(5022), 1, + anon_sym_COMMA, + ACTIONS(5024), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(4565), 1, + aux_sym_array_repeat1, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3172), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 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, - anon_sym_PIPE_RBRACE, - [51020] = 34, - ACTIONS(825), 1, + [54203] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4171), 1, sym__ternary_qmark, - ACTIONS(5017), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4673), 1, - aux_sym_array_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51134] = 7, - ACTIONS(3509), 1, - anon_sym_EQ, - ACTIONS(4782), 1, - anon_sym_LBRACK, + ACTIONS(4640), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [54313] = 6, + ACTIONS(4917), 1, + anon_sym_LT, + ACTIONS(4947), 1, + anon_sym_DOT, + STATE(2121), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4266), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(4069), 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(3439), 22, + ACTIONS(3502), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179895,450 +182260,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51194] = 32, + anon_sym_extends, + [54371] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4604), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4606), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4914), 3, + ACTIONS(4821), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [51304] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_AMP_AMP, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, - anon_sym_PERCENT, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - ACTIONS(5007), 1, - anon_sym_COMMA, - ACTIONS(5019), 1, - anon_sym_RBRACK, - STATE(1488), 1, - sym_type_arguments, - STATE(4182), 1, - aux_sym_sequence_expression_repeat1, - STATE(4746), 1, - sym_optional_chain, + [54481] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4691), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5026), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4689), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51418] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4693), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(5021), 1, - anon_sym_RPAREN, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, + [54537] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(1703), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5028), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1701), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(1705), 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(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51532] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [54593] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(4969), 1, + anon_sym_COMMA, + ACTIONS(5030), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4153), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4831), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51642] = 32, - ACTIONS(825), 1, + [54707] = 6, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + STATE(2170), 2, + sym_template_string, + sym_arguments, + ACTIONS(4081), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4083), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + 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, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4684), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51752] = 19, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [54765] = 21, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4215), 2, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 7, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4722), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 15, + ACTIONS(4724), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -180347,28 +182636,15 @@ static const uint16_t ts_small_parse_table[] = { 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_satisfies, - [51836] = 6, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, + [54853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(1819), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180382,10 +182658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1817), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -180406,218 +182687,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51894] = 14, - ACTIONS(825), 1, + anon_sym_extends, + anon_sym_is, + [54905] = 28, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4227), 1, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(4722), 1, + anon_sym_BANG, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 12, + ACTIONS(4123), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 18, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 7, 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_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_satisfies, - [51968] = 26, - ACTIONS(825), 1, + [55007] = 33, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4213), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4580), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4584), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4586), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4588), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4592), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4594), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_BANG, - STATE(1488), 1, + ACTIONS(4604), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4606), 1, + sym__ternary_qmark, + ACTIONS(4804), 1, + anon_sym_COMMA, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4582), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4590), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4602), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + ACTIONS(4886), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4598), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 9, - sym__ternary_qmark, - anon_sym_as, + [55119] = 34, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, anon_sym_satisfies, - [52066] = 4, - ACTIONS(4844), 1, - anon_sym_is, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(5032), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + STATE(5032), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(4123), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [52120] = 4, - ACTIONS(5026), 1, - anon_sym_is, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55233] = 7, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4293), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3429), 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(4099), 29, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -180637,387 +182975,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52174] = 27, - ACTIONS(825), 1, + [55293] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4213), 1, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_BANG, - STATE(1488), 1, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(5034), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52274] = 17, - ACTIONS(825), 1, + [55407] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(5023), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 17, - sym__ternary_qmark, + ACTIONS(4125), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, + ACTIONS(4139), 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_satisfies, - [52354] = 23, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4225), 1, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4833), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4704), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52446] = 24, - ACTIONS(825), 1, + [55517] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4213), 1, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4225), 1, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4869), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52540] = 25, - ACTIONS(825), 1, + [55627] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4213), 1, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4225), 1, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + ACTIONS(5036), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4754), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 9, - sym__ternary_qmark, - anon_sym_as, + [55741] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3888), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52636] = 16, - ACTIONS(825), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [55813] = 14, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4975), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 10, + ACTIONS(4722), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -181026,9 +183388,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(4833), 17, + ACTIONS(4724), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -181039,6 +183402,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, @@ -181046,13 +183410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [52714] = 4, - ACTIONS(4844), 1, - anon_sym_is, + [55887] = 5, + ACTIONS(4917), 1, + anon_sym_LT, + STATE(2157), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(4075), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181063,10 +183429,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(4089), 29, + ACTIONS(4077), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181096,42 +183461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52768] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + [55943] = 6, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5023), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + STATE(2079), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 11, + ACTIONS(4093), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -181140,266 +183482,170 @@ 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(4833), 16, + ACTIONS(4095), 27, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52848] = 34, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56001] = 12, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(5040), 1, anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(5028), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4678), 21, + 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_GT_GT_GT, + anon_sym_LT_LT, + 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(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52962] = 21, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [56071] = 9, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4835), 5, + ACTIONS(4800), 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(4833), 12, + ACTIONS(4802), 24, 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_satisfies, - [53050] = 28, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_BANG, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [53152] = 8, - ACTIONS(1693), 1, + [56135] = 8, + ACTIONS(1703), 1, anon_sym_EQ, - ACTIONS(4435), 1, + ACTIONS(4249), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 2, + ACTIONS(4252), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5030), 2, + ACTIONS(5043), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2374), 4, + ACTIONS(2362), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(1691), 11, + ACTIONS(1701), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181411,7 +183657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 22, + ACTIONS(1705), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -181434,26 +183680,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53214] = 8, - ACTIONS(4447), 1, + [56197] = 8, + ACTIONS(4257), 1, anon_sym_EQ, - ACTIONS(4451), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 2, + ACTIONS(4264), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5034), 2, + ACTIONS(5047), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4335), 4, + ACTIONS(4267), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4445), 11, + ACTIONS(4255), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181465,7 +183711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 22, + ACTIONS(4259), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -181488,436 +183734,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53276] = 32, - ACTIONS(89), 1, + [56259] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1896), 1, + ACTIONS(5051), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4714), 1, + aux_sym_array_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4792), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [53386] = 34, - ACTIONS(825), 1, + [56373] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - ACTIONS(5038), 1, - anon_sym_COMMA, - ACTIONS(5040), 1, - anon_sym_RBRACK, - STATE(1488), 1, + ACTIONS(5053), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4878), 1, + STATE(4635), 1, aux_sym_array_repeat1, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53500] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_AMP_AMP, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, - anon_sym_PERCENT, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [56487] = 4, + ACTIONS(4949), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4085), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5042), 3, + ACTIONS(4087), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - [53610] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(5044), 1, - anon_sym_RPAREN, - STATE(1488), 1, - sym_type_arguments, - STATE(4636), 1, - aux_sym_array_repeat1, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53724] = 34, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56541] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - ACTIONS(5007), 1, + ACTIONS(5022), 1, anon_sym_COMMA, - ACTIONS(5046), 1, + ACTIONS(5055), 1, anon_sym_RBRACK, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4182), 1, - aux_sym_sequence_expression_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, + STATE(4927), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53838] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5048), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [56655] = 4, + ACTIONS(5057), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4513), 11, + ACTIONS(4075), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -181926,13 +184041,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(4517), 17, + ACTIONS(4077), 29, + 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_of, + 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, @@ -181946,24 +184069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53916] = 9, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4229), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [56709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4871), 12, + ACTIONS(3178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181974,14 +184089,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(4873), 24, + ACTIONS(3180), 30, + 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_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -182000,35 +184119,38 @@ 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, - [53980] = 13, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [56761] = 13, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3795), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3798), 1, + ACTIONS(3885), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(4761), 2, sym_number, sym_private_property_identifier, - STATE(3737), 3, + STATE(3807), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -182060,493 +184182,847 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [54052] = 32, - ACTIONS(825), 1, + [56833] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(5059), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4535), 1, + aux_sym_array_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4702), 3, + [56947] = 9, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(5061), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4800), 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(4802), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [54162] = 32, - ACTIONS(825), 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_satisfies, + anon_sym_implements, + [57011] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4712), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57121] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, + anon_sym_AMP_AMP, + ACTIONS(5069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5071), 1, + anon_sym_GT_GT, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(5077), 1, + anon_sym_CARET, + ACTIONS(5079), 1, + anon_sym_PIPE, + ACTIONS(5083), 1, + anon_sym_PERCENT, + ACTIONS(5085), 1, + anon_sym_STAR_STAR, + ACTIONS(5093), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5095), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + ACTIONS(5063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5073), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5089), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5091), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4804), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4846), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [54272] = 32, - ACTIONS(825), 1, + [57231] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4816), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57341] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, + anon_sym_AMP_AMP, + ACTIONS(5069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5071), 1, + anon_sym_GT_GT, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(5077), 1, + anon_sym_CARET, + ACTIONS(5079), 1, + anon_sym_PIPE, + ACTIONS(5083), 1, + anon_sym_PERCENT, + ACTIONS(5085), 1, + anon_sym_STAR_STAR, + ACTIONS(5093), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5095), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + ACTIONS(5063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5073), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5089), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5091), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4574), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4576), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [54382] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + [57451] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(5053), 1, - anon_sym_static, - ACTIONS(5055), 1, - anon_sym_readonly, - ACTIONS(5057), 1, - anon_sym_abstract, - ACTIONS(5059), 1, - anon_sym_accessor, - STATE(2811), 1, - sym_override_modifier, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, + anon_sym_AMP_AMP, + ACTIONS(5069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5071), 1, + anon_sym_GT_GT, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(5077), 1, + anon_sym_CARET, + ACTIONS(5079), 1, + anon_sym_PIPE, + ACTIONS(5083), 1, + anon_sym_PERCENT, + ACTIONS(5085), 1, + anon_sym_STAR_STAR, + ACTIONS(5093), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5095), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, - sym_number, - sym_private_property_identifier, - STATE(3314), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5073), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5089), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5091), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4616), 3, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57561] = 19, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_GT_GT, + ACTIONS(5083), 1, + anon_sym_PERCENT, + ACTIONS(5085), 1, + anon_sym_STAR_STAR, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5073), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5081), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(4724), 15, + 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_satisfies, + anon_sym_implements, + [57645] = 14, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, + anon_sym_STAR_STAR, + ACTIONS(5097), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 20, - 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, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [54456] = 32, - ACTIONS(825), 1, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(4724), 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_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_satisfies, + anon_sym_implements, + [57719] = 26, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4597), 3, + ACTIONS(4724), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [54566] = 32, - ACTIONS(825), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [57817] = 27, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4855), 3, + ACTIONS(4724), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [54676] = 12, - ACTIONS(825), 1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [57917] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5061), 1, + ACTIONS(5083), 1, + anon_sym_PERCENT, + ACTIONS(5085), 1, + anon_sym_STAR_STAR, + ACTIONS(5097), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5081), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4864), 12, - anon_sym_STAR, + ACTIONS(4722), 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(4866), 21, + ACTIONS(4724), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -182556,392 +185032,258 @@ 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_satisfies, anon_sym_implements, - [54746] = 34, - ACTIONS(825), 1, + [57997] = 23, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(5064), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54860] = 6, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3573), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3571), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3435), 13, - anon_sym_STAR, + ACTIONS(4722), 3, 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, + ACTIONS(5087), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 10, 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [54918] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [58089] = 24, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4726), 3, + ACTIONS(4724), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55028] = 34, - ACTIONS(825), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [58183] = 25, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(5061), 1, anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_AMP_AMP, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - ACTIONS(5038), 1, - anon_sym_COMMA, - ACTIONS(5066), 1, - anon_sym_RBRACK, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(4977), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55142] = 32, - ACTIONS(825), 1, + ACTIONS(4724), 9, + 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_satisfies, + anon_sym_implements, + [58279] = 16, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(5097), 1, anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + ACTIONS(5063), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4734), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55252] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1905), 13, - anon_sym_STAR, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -182950,1364 +185292,869 @@ 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(1903), 30, - sym__automatic_semicolon, + ACTIONS(4724), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [55304] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [58357] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(5097), 1, anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4724), 16, + sym__ternary_qmark, + 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(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4738), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55414] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [58437] = 21, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4916), 3, + ACTIONS(4722), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55524] = 32, - ACTIONS(825), 1, + 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_satisfies, + anon_sym_implements, + [58525] = 28, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4918), 3, + ACTIONS(4724), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55634] = 32, - ACTIONS(825), 1, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [58627] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4589), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55744] = 7, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(2374), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, + ACTIONS(4704), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4438), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1691), 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(1695), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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_implements, + ACTIONS(5087), 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, + [58737] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [55804] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - ACTIONS(5068), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(5046), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55918] = 13, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3818), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [55990] = 7, - ACTIONS(4335), 1, - anon_sym_extends, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4451), 2, + ACTIONS(4869), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4454), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4445), 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(4449), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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_implements, + ACTIONS(5087), 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, - [56050] = 13, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [56122] = 34, - ACTIONS(825), 1, + [58847] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - ACTIONS(5070), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4533), 1, - aux_sym_array_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56236] = 13, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3809), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [56308] = 6, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(2330), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4079), 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(4081), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4608), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - 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_implements, + ACTIONS(5087), 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_satisfies, - [56366] = 13, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [56438] = 34, - ACTIONS(825), 1, + [58957] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - ACTIONS(5072), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4581), 1, - aux_sym_array_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4511), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56552] = 34, - ACTIONS(825), 1, + [59067] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - ACTIONS(5074), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4622), 1, - aux_sym_array_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4559), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56666] = 34, - ACTIONS(825), 1, + [59177] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - ACTIONS(5076), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4632), 1, - aux_sym_array_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56780] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3178), 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(3180), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4561), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_implements, + ACTIONS(5087), 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [56832] = 34, - ACTIONS(825), 1, + [59287] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(5061), 1, anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - ACTIONS(5007), 1, - anon_sym_COMMA, - ACTIONS(5078), 1, - anon_sym_RBRACK, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4182), 1, - aux_sym_sequence_expression_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4563), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56946] = 33, - ACTIONS(89), 1, + [59397] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4542), 1, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4544), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4546), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4550), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4552), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4554), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4558), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4560), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4562), 1, - anon_sym_LT, - ACTIONS(4570), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4572), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - ACTIONS(4855), 1, - anon_sym_COMMA, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4534), 2, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4538), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4548), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4556), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4566), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4853), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4564), 3, + ACTIONS(4618), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57058] = 5, - ACTIONS(4672), 1, - anon_sym_LT, - STATE(2050), 1, - sym_type_arguments, + [59507] = 6, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3576), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 12, + ACTIONS(3572), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184318,17 +186165,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(4099), 29, - sym__automatic_semicolon, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -184349,18 +186192,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57114] = 6, - ACTIONS(4672), 1, - anon_sym_LT, - ACTIONS(4842), 1, + [59565] = 13, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, - STATE(2013), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5100), 1, + anon_sym_LT, + STATE(1493), 1, sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 12, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4624), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184373,17 +186231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3533), 28, - sym__automatic_semicolon, + ACTIONS(4626), 19, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -184397,24 +186249,42 @@ 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, - [57172] = 6, - ACTIONS(4521), 1, + anon_sym_implements, + [59637] = 16, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(5080), 1, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, - STATE(2054), 1, - sym_arguments, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5103), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -184423,19 +186293,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(4075), 27, - sym__automatic_semicolon, + ACTIONS(4633), 17, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -184449,916 +186312,884 @@ 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, - [57230] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [59715] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4969), 1, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4981), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4985), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - STATE(2231), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5082), 3, + ACTIONS(4640), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - [57340] = 34, - ACTIONS(825), 1, + ACTIONS(5087), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [59825] = 12, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(5106), 1, anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(5084), 1, - anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4678), 21, + 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, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57454] = 34, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [59895] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - ACTIONS(5007), 1, - anon_sym_COMMA, - ACTIONS(5086), 1, - anon_sym_COLON, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4182), 1, - aux_sym_sequence_expression_repeat1, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57568] = 34, - ACTIONS(825), 1, + ACTIONS(4616), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [60005] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [60077] = 26, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - ACTIONS(5088), 1, - anon_sym_RPAREN, - STATE(1488), 1, + ACTIONS(4722), 1, + anon_sym_BANG, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57682] = 34, - ACTIONS(825), 1, + ACTIONS(4724), 9, + 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_QMARK_QMARK, + anon_sym_satisfies, + [60175] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4199), 1, + ACTIONS(4127), 1, anon_sym_COMMA, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4171), 1, sym__ternary_qmark, - ACTIONS(5090), 1, + ACTIONS(5109), 1, anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4991), 1, + STATE(4754), 1, aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57796] = 34, - ACTIONS(825), 1, + [60289] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - ACTIONS(5092), 1, - anon_sym_RPAREN, - STATE(1488), 1, + ACTIONS(4969), 1, + anon_sym_COMMA, + ACTIONS(5111), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - STATE(4991), 1, + STATE(4153), 1, aux_sym_sequence_expression_repeat1, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57910] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_static, - ACTIONS(5098), 1, - anon_sym_readonly, - ACTIONS(5100), 1, - anon_sym_abstract, - ACTIONS(5102), 1, - anon_sym_accessor, - STATE(2783), 1, - sym_override_modifier, + [60403] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5094), 2, - sym_number, - sym_private_property_identifier, - STATE(3291), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3174), 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(3176), 30, 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_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 20, - 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, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57984] = 34, - ACTIONS(825), 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, + anon_sym_PIPE_RBRACE, + [60455] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - ACTIONS(5038), 1, - anon_sym_COMMA, - ACTIONS(5104), 1, - anon_sym_RBRACK, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, - STATE(4977), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58098] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4155), 1, - anon_sym_readonly, - STATE(2774), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4019), 2, + ACTIONS(5113), 3, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [58176] = 32, - ACTIONS(825), 1, + anon_sym_RBRACK, + [60565] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(4969), 1, + anon_sym_COMMA, + ACTIONS(5115), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4153), 1, + aux_sym_sequence_expression_repeat1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5106), 3, + [60679] = 34, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + ACTIONS(5022), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5117), 1, anon_sym_RBRACK, - [58286] = 3, + STATE(1493), 1, + sym_type_arguments, + STATE(4565), 1, + aux_sym_array_repeat1, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3174), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3176), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 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, - anon_sym_PIPE_RBRACE, - [58338] = 34, - ACTIONS(825), 1, + [60793] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4171), 1, sym__ternary_qmark, - ACTIONS(5108), 1, + ACTIONS(5119), 1, anon_sym_RPAREN, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4594), 1, + aux_sym_array_repeat1, + STATE(4786), 1, sym_optional_chain, - STATE(4991), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58452] = 9, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [60907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4871), 12, + ACTIONS(4089), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185369,13 +187200,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(4873), 24, + ACTIONS(4091), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -185394,492 +187230,510 @@ 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, - [58516] = 32, - ACTIONS(825), 1, + anon_sym_extends, + anon_sym_is, + [60959] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4969), 1, + ACTIONS(5061), 1, + anon_sym_LT, + ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, + ACTIONS(5071), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(5077), 1, anon_sym_CARET, - ACTIONS(4981), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(4985), 1, + ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + ACTIONS(5093), 1, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, + ACTIONS(5095), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(2212), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(5063), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(5065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(5073), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(5081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(5089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(5091), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4597), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, + ACTIONS(5087), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58626] = 32, - ACTIONS(825), 1, + ACTIONS(5121), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [61069] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4981), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4985), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4997), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4855), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58736] = 32, - ACTIONS(825), 1, + ACTIONS(4618), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [61179] = 34, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4981), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4985), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4997), 1, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(5123), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, + STATE(4789), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4589), 3, - anon_sym_LBRACE, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61293] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3170), 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(3172), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [61345] = 5, + ACTIONS(4515), 1, + anon_sym_LPAREN, + STATE(2224), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4195), 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(4197), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58846] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [61400] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4205), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4831), 3, - anon_sym_LBRACE, + ACTIONS(4207), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58956] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [61457] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4173), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4684), 3, - anon_sym_LBRACE, + ACTIONS(4175), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59066] = 19, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4985), 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(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [61508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4173), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 15, + ACTIONS(4175), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [59150] = 14, - ACTIONS(825), 1, + anon_sym_extends, + [61559] = 9, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5131), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 12, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185892,477 +187746,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 18, + ACTIONS(4802), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, - [59224] = 26, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, - anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, - anon_sym_PERCENT, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [61622] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4277), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4273), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 9, + ACTIONS(4275), 25, 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_satisfies, - anon_sym_implements, - [59322] = 27, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [61675] = 9, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(4267), 1, + anon_sym_extends, + ACTIONS(5133), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4257), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4264), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5017), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4255), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4259), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [59422] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4985), 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(4987), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [61738] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5142), 1, + anon_sym_readonly, + STATE(2760), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5140), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + STATE(3068), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [61811] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(3665), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4983), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 17, + ACTIONS(3469), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [59502] = 23, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4985), 1, - anon_sym_PERCENT, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [61862] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(3661), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 10, + ACTIONS(3471), 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_satisfies, - anon_sym_implements, - [59594] = 24, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4985), 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(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [61913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4965), 2, + ACTIONS(4177), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 10, + ACTIONS(4179), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, - [59688] = 25, - ACTIONS(825), 1, + anon_sym_extends, + [61964] = 33, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4973), 1, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5150), 1, + anon_sym_SEMI, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(4985), 1, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5180), 1, + sym__automatic_semicolon, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4965), 2, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4991), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 9, - 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_satisfies, - anon_sym_implements, - [59784] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, + [62075] = 4, + ACTIONS(4476), 1, anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4985), 1, - anon_sym_PERCENT, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4453), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -186371,62 +188170,46 @@ 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(4833), 17, + ACTIONS(4455), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [59862] = 17, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, anon_sym_satisfies, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_extends, + [62128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 11, + ACTIONS(4479), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -186435,817 +188218,692 @@ 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(4833), 16, + ACTIONS(4481), 29, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [59942] = 21, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_satisfies, + anon_sym_extends, + [62179] = 14, + ACTIONS(169), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(3244), 1, + anon_sym_LBRACE, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4985), 1, - anon_sym_PERCENT, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(5188), 1, + anon_sym_RBRACE, + STATE(4692), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(5190), 2, + sym_number, + sym_private_property_identifier, + STATE(4753), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5612), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5619), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(5184), 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, + [62252] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4177), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4835), 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(4833), 12, + ACTIONS(4179), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [60030] = 28, - ACTIONS(825), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_satisfies, + anon_sym_extends, + [62303] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4177), 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(4179), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [62354] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4479), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 7, + ACTIONS(4481), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [60132] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62411] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4483), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4702), 3, - anon_sym_LBRACE, + ACTIONS(4485), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60242] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4181), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4846), 3, - anon_sym_LBRACE, + ACTIONS(4183), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60352] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4429), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4726), 3, - anon_sym_LBRACE, + ACTIONS(4431), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60462] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4111), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4734), 3, - anon_sym_LBRACE, + ACTIONS(4113), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60572] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4491), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4738), 3, - anon_sym_LBRACE, + ACTIONS(4493), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60682] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4969), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, - anon_sym_GT_GT, - ACTIONS(4977), 1, - anon_sym_AMP, - ACTIONS(4979), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4981), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4495), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4967), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4983), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4916), 3, - anon_sym_LBRACE, + ACTIONS(4497), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, - [60792] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_satisfies, + anon_sym_extends, + [62717] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4969), 1, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(4981), 1, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(4985), 1, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + ACTIONS(5178), 1, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, + ACTIONS(5182), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4559), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4918), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60902] = 32, - ACTIONS(825), 1, + [62826] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4969), 1, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(4973), 1, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(4977), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(4979), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(4981), 1, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(4985), 1, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(4987), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4997), 1, + ACTIONS(5178), 1, anon_sym_QMARK_QMARK, - ACTIONS(4999), 1, + ACTIONS(5182), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4965), 2, + ACTIONS(4561), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4967), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4975), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4983), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4920), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4991), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61012] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5113), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [62935] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4932), 12, + ACTIONS(4099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187256,13 +188914,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(4934), 19, + ACTIONS(4101), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -187276,42 +188942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [61084] = 16, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, anon_sym_satisfies, - ACTIONS(5116), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_extends, + [62986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4513), 11, + ACTIONS(3342), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -187320,12 +188962,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(4517), 17, + ACTIONS(3344), 29, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -187339,92 +188990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [61162] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_AMP_AMP, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, - anon_sym_PERCENT, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - ACTIONS(5007), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, - anon_sym_RBRACK, - STATE(1488), 1, - sym_type_arguments, - STATE(4182), 1, - aux_sym_sequence_expression_repeat1, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4903), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61276] = 3, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63037] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 13, + ACTIONS(4499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187438,7 +189013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 29, + ACTIONS(4501), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187468,87 +189043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61327] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5123), 1, - anon_sym_RBRACE, - STATE(2764), 1, - sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [61410] = 6, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4785), 2, + [63088] = 6, + ACTIONS(5125), 1, anon_sym_AMP, + ACTIONS(5127), 1, anon_sym_PIPE, - ACTIONS(4782), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4266), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(5129), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4185), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187560,10 +189065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4187), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187583,38 +189094,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61467] = 6, + [63145] = 4, + ACTIONS(5125), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4510), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4507), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4393), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4503), 11, + ACTIONS(4349), 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(4505), 22, + ACTIONS(4351), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187634,40 +189142,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61524] = 6, + anon_sym_extends, + [63198] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5192), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4690), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4095), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4624), 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(3439), 22, + ACTIONS(4626), 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, @@ -187681,15 +189200,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, - [61581] = 3, + [63269] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(4487), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187703,7 +189219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4143), 29, + ACTIONS(4489), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187733,11 +189249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61632] = 3, + [63320] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(3354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187751,7 +189267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4143), 29, + ACTIONS(3356), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187781,36 +189297,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61683] = 3, + [63371] = 24, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, - anon_sym_STAR, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 9, + 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_satisfies, + [63464] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, anon_sym_GT_GT, + ACTIONS(5160), 1, anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4563), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63573] = 25, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5131), 1, anon_sym_LT, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4274), 29, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 8, 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_satisfies, + [63668] = 19, + ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5197), 1, anon_sym_RBRACE, + STATE(2766), 1, + sym_override_modifier, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [63751] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 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(4633), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -187824,19 +189638,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [63828] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(2766), 1, + sym_override_modifier, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [63911] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4640), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64020] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - anon_sym_extends, - [61734] = 4, - ACTIONS(3507), 1, - anon_sym_EQ, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4642), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4668), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4670), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64129] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5204), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5146), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -187845,75 +189898,61 @@ 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(3439), 28, + ACTIONS(4724), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [61787] = 14, + [64206] = 14, ACTIONS(169), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1561), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3905), 1, + ACTIONS(3909), 1, anon_sym_LBRACK, - ACTIONS(5127), 1, + ACTIONS(5186), 1, anon_sym_COMMA, - ACTIONS(5129), 1, + ACTIONS(5209), 1, anon_sym_RBRACE, - STATE(4931), 1, + STATE(4880), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5131), 2, + ACTIONS(5190), 2, sym_number, sym_private_property_identifier, - STATE(4647), 3, + STATE(4809), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5502), 3, + STATE(5612), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(5739), 3, + STATE(5619), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5125), 23, + ACTIONS(5207), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187937,72 +189976,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [61860] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4272), 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(4274), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [61911] = 9, + [64279] = 12, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4521), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(5133), 1, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5211), 1, anon_sym_LT, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4871), 12, + ACTIONS(4676), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188015,14 +190012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 23, + ACTIONS(4678), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, 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, @@ -188039,242 +190033,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [61974] = 32, + [64348] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5139), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62083] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(5133), 1, + ACTIONS(5131), 1, anon_sym_LT, - ACTIONS(5141), 1, + ACTIONS(5152), 1, anon_sym_AMP_AMP, - ACTIONS(5143), 1, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(5149), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(5151), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(5153), 1, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(5157), 1, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, + ACTIONS(5178), 1, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, + ACTIONS(5182), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4597), 2, + ACTIONS(4616), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5137), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5155), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(5161), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62192] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + [64457] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(2766), 1, + sym_override_modifier, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4855), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62301] = 3, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [64540] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(4287), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188288,7 +190192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4274), 29, + ACTIONS(4289), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188318,306 +190222,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62352] = 32, - ACTIONS(89), 1, + [64591] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(5143), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(5149), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(5151), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(5153), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(5157), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4589), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(4570), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5137), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5155), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5161), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62461] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + [64700] = 9, + ACTIONS(4087), 1, + anon_sym_extends, + ACTIONS(4683), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + ACTIONS(5220), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4831), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(4686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5216), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5218), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3429), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62570] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(3433), 22, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5143), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4684), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62679] = 19, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_satisfies, + [64763] = 7, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, + ACTIONS(4951), 1, + anon_sym_QMARK_DOT, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, + ACTIONS(1847), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 14, + ACTIONS(1849), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, 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, - [62762] = 3, + [64822] = 5, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(4823), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(1699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188631,8 +190427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 29, - sym__automatic_semicolon, + ACTIONS(1697), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188660,59 +190455,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62813] = 14, + [64877] = 19, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5171), 1, + ACTIONS(5131), 1, anon_sym_LT, - STATE(1896), 1, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 12, - anon_sym_STAR, + ACTIONS(4722), 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(4833), 17, + ACTIONS(4724), 14, 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -188720,11 +190519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [62886] = 3, + [64960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188738,7 +190537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 29, + ACTIONS(4431), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188768,515 +190567,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62937] = 26, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + [65011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, + ACTIONS(4429), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4431), 29, 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_satisfies, - [63034] = 27, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63133] = 17, - ACTIONS(89), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5171), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [65062] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, + ACTIONS(4291), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 16, + ACTIONS(4293), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [63212] = 23, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [65113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, + ACTIONS(4085), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 9, - 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_satisfies, - [63303] = 24, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5145), 1, anon_sym_GT_GT, - ACTIONS(5149), 1, anon_sym_AMP, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 9, + ACTIONS(4087), 29, 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_satisfies, - [63396] = 25, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 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(5157), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 8, - 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_satisfies, - [63491] = 16, - ACTIONS(89), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_satisfies, + anon_sym_extends, + [65164] = 10, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(2362), 1, + anon_sym_extends, + ACTIONS(2364), 1, + anon_sym_QMARK, + ACTIONS(4249), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5171), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + ACTIONS(5028), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, + ACTIONS(4252), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5043), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1701), 11, anon_sym_STAR, - anon_sym_SLASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 16, - sym__automatic_semicolon, + ACTIONS(1705), 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_satisfies, - [63568] = 17, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, anon_sym_satisfies, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5171), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + [65229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 11, + ACTIONS(4437), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -189285,707 +190781,503 @@ 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(4833), 15, + ACTIONS(4439), 29, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63647] = 21, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4835), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4833), 11, - 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, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63734] = 28, - ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_satisfies, + anon_sym_extends, + [65280] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_async, + ACTIONS(5229), 1, + anon_sym_readonly, + STATE(2762), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 6, + ACTIONS(5227), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5231), 2, + anon_sym_get, + anon_sym_set, + STATE(3037), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63835] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4702), 2, - sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63944] = 32, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3667), 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, + [65353] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, + ACTIONS(5204), 1, + anon_sym_LT, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4846), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64053] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, + ACTIONS(4724), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(5143), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_instanceof, + [65432] = 10, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(4267), 1, + anon_sym_extends, + ACTIONS(4347), 1, + anon_sym_QMARK, + ACTIONS(5017), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4726), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(4264), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5047), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4255), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64162] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4259), 22, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5143), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65497] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4734), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(4437), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64271] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4439), 29, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5143), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [65548] = 7, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(4293), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4738), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + ACTIONS(3433), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64380] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65607] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(5133), 1, + ACTIONS(5131), 1, anon_sym_LT, - ACTIONS(5141), 1, + ACTIONS(5152), 1, anon_sym_AMP_AMP, - ACTIONS(5143), 1, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(5149), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(5151), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(5153), 1, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(5157), 1, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, + ACTIONS(5178), 1, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, + ACTIONS(5182), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4916), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5137), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5155), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + ACTIONS(5233), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(5161), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64489] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + [65716] = 12, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_async, + ACTIONS(5237), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4918), 2, + ACTIONS(5231), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5235), 2, + sym_number, + sym_private_property_identifier, + STATE(3038), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(5135), 2, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3667), 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, + [65785] = 4, + ACTIONS(5243), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5239), 16, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5241), 25, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [64598] = 3, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(2364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189999,7 +191291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 29, + ACTIONS(2362), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190029,11 +191321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64649] = 3, + [65889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4465), 13, + ACTIONS(4437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190047,7 +191339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4467), 29, + ACTIONS(4439), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190077,29 +191369,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64700] = 6, - ACTIONS(5174), 1, + [65940] = 21, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4722), 5, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(5176), 1, anon_sym_PIPE, - ACTIONS(5178), 1, - anon_sym_extends, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 11, + 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, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [66027] = 4, + ACTIONS(4915), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 11, + ACTIONS(3489), 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(4501), 28, + ACTIONS(3479), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190109,7 +191465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190128,11 +191483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64757] = 3, + anon_sym_extends, + [66080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 13, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190146,7 +191502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4433), 29, + ACTIONS(4447), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190176,257 +191532,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64808] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - ACTIONS(5180), 1, - anon_sym_SEMI, - ACTIONS(5182), 1, - sym__automatic_semicolon, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + [66131] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, + ACTIONS(4445), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64919] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4447), 29, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5143), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4920), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65028] = 14, - ACTIONS(1621), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [66182] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR, - ACTIONS(5186), 1, + ACTIONS(2354), 1, anon_sym_async, - ACTIONS(5190), 1, + ACTIONS(2356), 1, anon_sym_readonly, - STATE(2778), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5188), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5192), 2, - anon_sym_get, - anon_sym_set, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4215), 1, 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(3663), 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, - [65101] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5059), 1, - anon_sym_abstract, - ACTIONS(5184), 1, + ACTIONS(5195), 1, anon_sym_STAR, - ACTIONS(5186), 1, - anon_sym_async, + ACTIONS(5245), 1, + anon_sym_RBRACE, + STATE(2766), 1, + sym_override_modifier, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5188), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5192), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3015), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 20, + ACTIONS(2352), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -190434,12 +191633,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, @@ -190447,38 +191644,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65170] = 6, - ACTIONS(4266), 1, - anon_sym_extends, + [66265] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4785), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4445), 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, + ACTIONS(4447), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190498,15 +191691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65227] = 5, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(4780), 1, - sym__automatic_semicolon, + anon_sym_extends, + [66316] = 4, + ACTIONS(5247), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 13, + ACTIONS(4333), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190520,7 +191712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1687), 27, + ACTIONS(4335), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -190529,7 +191722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190548,41 +191740,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65282] = 9, - ACTIONS(4095), 1, anon_sym_extends, - ACTIONS(4690), 1, - anon_sym_LBRACK, - ACTIONS(5198), 1, - anon_sym_RPAREN, + [66369] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5194), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5196), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(4460), 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), 22, + ACTIONS(4462), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190602,41 +191788,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65345] = 9, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(4782), 1, - anon_sym_LBRACK, + anon_sym_extends, + [66420] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4266), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(4339), 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), 22, + ACTIONS(4341), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190656,41 +191836,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65408] = 9, - ACTIONS(4095), 1, anon_sym_extends, - ACTIONS(4690), 1, + [66471] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(5204), 1, - anon_sym_RPAREN, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 2, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66580] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(5194), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5201), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4804), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66689] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2376), 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), 22, + ACTIONS(2374), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190710,26 +192038,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65471] = 9, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(4782), 1, - anon_sym_LBRACK, + anon_sym_extends, + [66740] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4266), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4785), 2, + ACTIONS(4828), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(4825), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4293), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3429), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190741,7 +192067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -190764,11 +192090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65534] = 3, + [66797] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(4464), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190782,7 +192108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 29, + ACTIONS(4466), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190812,18 +192138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65585] = 6, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(1697), 1, - sym__automatic_semicolon, + [66848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1687), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1691), 13, + ACTIONS(4343), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190837,11 +192156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 25, + ACTIONS(4345), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -190863,88 +192185,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65642] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_extends, + [66899] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4843), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4840), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4359), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4836), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4207), 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(4838), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [66956] = 4, + ACTIONS(5249), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4299), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4792), 2, + ACTIONS(4301), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65751] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [67009] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4305), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190958,7 +192304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 29, + ACTIONS(4307), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190988,134 +192334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65802] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4608), 1, - anon_sym_STAR, - ACTIONS(4612), 1, - anon_sym_async, - ACTIONS(4631), 1, - anon_sym_abstract, - ACTIONS(4758), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4614), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4618), 2, - anon_sym_get, - anon_sym_set, - STATE(3026), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(3663), 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, - [65871] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - STATE(2764), 1, - sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [65954] = 4, - ACTIONS(4447), 1, - anon_sym_EQ, + [67060] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4472), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191129,7 +192352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 28, + ACTIONS(4474), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191158,18 +192381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66007] = 4, - ACTIONS(5174), 1, - anon_sym_AMP, + anon_sym_extends, + [67111] = 4, + ACTIONS(5251), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 12, + ACTIONS(4305), 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, @@ -191177,7 +192402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, + ACTIONS(4307), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191186,7 +192411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191207,11 +192431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66060] = 3, + [67164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4075), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191225,7 +192449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 29, + ACTIONS(4077), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191255,11 +192479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66111] = 3, + [67215] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 13, + ACTIONS(4201), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191273,7 +192497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4457), 29, + ACTIONS(4203), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191303,11 +192527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66162] = 3, + [67266] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191321,7 +192545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4393), 29, + ACTIONS(4229), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191351,11 +192575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66213] = 3, + [67317] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4311), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191369,7 +192593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4397), 29, + ACTIONS(4313), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191399,11 +192623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66264] = 3, + [67368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3342), 13, + ACTIONS(4468), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191417,7 +192641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3344), 29, + ACTIONS(4470), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191447,142 +192671,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66315] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - STATE(2764), 1, - sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [66398] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3801), 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(1980), 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, - [66451] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, - anon_sym_extends, + [67419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 11, + ACTIONS(4201), 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(4405), 28, + ACTIONS(4203), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191611,147 +192718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66508] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - anon_sym_STAR, - ACTIONS(5210), 1, - anon_sym_async, - ACTIONS(5214), 1, - anon_sym_readonly, - STATE(2757), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5212), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5216), 2, - anon_sym_get, - anon_sym_set, - STATE(3025), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(3663), 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, - [66581] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_AMP_AMP, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, - anon_sym_GT_GT, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_CARET, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(4897), 1, - anon_sym_PERCENT, - ACTIONS(4899), 1, - anon_sym_STAR_STAR, - ACTIONS(4907), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4792), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4879), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4895), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4903), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4905), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4901), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66690] = 3, + anon_sym_extends, + [67470] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4477), 13, + ACTIONS(4227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191765,7 +192737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4479), 29, + ACTIONS(4229), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191795,30 +192767,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66741] = 6, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(5218), 1, - anon_sym_LBRACK, + [67521] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4413), 11, + ACTIONS(4231), 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(4415), 27, + ACTIONS(4233), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191827,6 +192794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191846,11 +192814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66798] = 3, + anon_sym_extends, + [67572] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2364), 13, + ACTIONS(4235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191864,7 +192833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2362), 29, + ACTIONS(4237), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191894,11 +192863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66849] = 3, + [67623] = 4, + ACTIONS(1703), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191912,7 +192883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 29, + ACTIONS(1705), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191941,35 +192912,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [67676] = 6, + ACTIONS(4293), 1, anon_sym_extends, - [66900] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(4173), 29, + ACTIONS(3433), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191989,92 +192963,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [66951] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - anon_sym_STAR, - ACTIONS(5210), 1, - anon_sym_async, - ACTIONS(5222), 1, - anon_sym_abstract, + [67733] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5216), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5220), 2, - sym_number, - sym_private_property_identifier, - STATE(3027), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4683), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4087), 4, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 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, - [67020] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4175), 13, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3429), 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(4177), 29, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192094,60 +193014,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67071] = 3, + [67790] = 28, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5146), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 29, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [67891] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, anon_sym_AMP_AMP, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, anon_sym_PERCENT, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4704), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [68000] = 27, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [67122] = 3, + [68099] = 4, + ACTIONS(4691), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192161,7 +193256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 29, + ACTIONS(4693), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192190,12 +193285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67173] = 3, + [68152] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192209,7 +193303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 29, + ACTIONS(4233), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192239,36 +193333,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67224] = 4, - ACTIONS(5224), 1, - anon_sym_extends, + [68203] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4425), 13, + ACTIONS(4123), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5013), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68312] = 6, + ACTIONS(4087), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4683), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4686), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3429), 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(4427), 28, + ACTIONS(3433), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192288,11 +193461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67277] = 3, + [68369] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(2368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192306,7 +193479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4266), 29, + ACTIONS(2366), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192336,34 +193509,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67328] = 3, + [68420] = 7, + ACTIONS(3532), 1, + anon_sym_EQ, + ACTIONS(4293), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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), 29, + ACTIONS(3433), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192383,14 +193561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67379] = 4, - ACTIONS(5218), 1, - anon_sym_LBRACK, + [68479] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192404,7 +193579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 28, + ACTIONS(4277), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192413,6 +193588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192433,11 +193609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67432] = 3, + [68530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 13, + ACTIONS(4235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192451,7 +193627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4288), 29, + ACTIONS(4237), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192481,100 +193657,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67483] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + [68581] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(5226), 1, - anon_sym_STAR, - ACTIONS(5228), 1, - anon_sym_async, - ACTIONS(5232), 1, - anon_sym_readonly, - STATE(2762), 1, - sym_override_modifier, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, + anon_sym_AMP_AMP, + ACTIONS(4646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4648), 1, + anon_sym_GT_GT, + ACTIONS(4652), 1, + anon_sym_AMP, + ACTIONS(4654), 1, + anon_sym_CARET, + ACTIONS(4656), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_PERCENT, + ACTIONS(4662), 1, + anon_sym_STAR_STAR, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4674), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5230), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5234), 2, - anon_sym_get, - anon_sym_set, - STATE(3064), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4642), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4668), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4670), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5253), 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(3663), 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, - [67556] = 7, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4666), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68690] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3483), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4239), 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, + ACTIONS(4241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192592,29 +193781,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67615] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, anon_sym_extends, + [68741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 11, + ACTIONS(4245), 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(4288), 28, + ACTIONS(4247), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192643,11 +193829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67672] = 3, + anon_sym_extends, + [68792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4299), 13, + ACTIONS(4405), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192661,7 +193848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4297), 29, + ACTIONS(4407), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192691,47 +193878,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67723] = 14, + [68843] = 12, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5236), 1, + ACTIONS(5255), 1, anon_sym_STAR, - ACTIONS(5238), 1, + ACTIONS(5257), 1, anon_sym_async, - ACTIONS(5242), 1, - anon_sym_readonly, - STATE(2779), 1, - sym_override_modifier, + ACTIONS(5263), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(5259), 2, sym_number, sym_private_property_identifier, - ACTIONS(5244), 2, + ACTIONS(5261), 2, anon_sym_get, anon_sym_set, - STATE(3067), 3, + STATE(3020), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(3663), 18, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -192739,10 +193922,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, @@ -192750,25 +193935,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67796] = 3, + [68912] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4123), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5265), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69021] = 6, + ACTIONS(5125), 1, anon_sym_AMP, + ACTIONS(5127), 1, anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 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(4487), 29, + ACTIONS(4297), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192797,23 +194063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [69078] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, anon_sym_extends, - [67847] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4459), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4315), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192821,14 +194085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(4317), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192848,38 +194114,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67902] = 6, - ACTIONS(4393), 1, - anon_sym_extends, + [69135] = 4, + ACTIONS(3530), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4510), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4503), 10, + ACTIONS(3429), 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(4505), 26, + ACTIONS(3433), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192899,9 +194163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67959] = 19, + [69188] = 19, ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, @@ -192912,20 +194178,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2360), 1, anon_sym_override, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5195), 1, anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(2764), 1, + STATE(2766), 1, sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -192935,11 +194199,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3822), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -192963,75 +194227,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68042] = 4, - ACTIONS(5252), 1, - sym_regex_flags, + [69271] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 16, + ACTIONS(1994), 6, 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(5250), 25, - sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 11, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [68095] = 9, - ACTIONS(2374), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1992), 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, + [69324] = 9, + ACTIONS(4087), 1, anon_sym_extends, - ACTIONS(4435), 1, + ACTIONS(4683), 1, anon_sym_LBRACK, - ACTIONS(5254), 1, + ACTIONS(5272), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4438), 2, + ACTIONS(4686), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5015), 2, + ACTIONS(5267), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5269), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1691), 11, + ACTIONS(3429), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193043,7 +194307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 22, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -193066,13 +194330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68158] = 4, - ACTIONS(4297), 1, - anon_sym_extends, + [69387] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4413), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193086,7 +194348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 28, + ACTIONS(4415), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193115,11 +194377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68211] = 3, + anon_sym_extends, + [69438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(4417), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193133,7 +194396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 29, + ACTIONS(4419), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193163,11 +194426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68262] = 3, + [69489] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 13, + ACTIONS(4421), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193181,7 +194444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2374), 29, + ACTIONS(4423), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193211,113 +194474,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68313] = 9, - ACTIONS(4335), 1, - anon_sym_extends, - ACTIONS(4451), 1, + [69540] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(5257), 1, - anon_sym_RPAREN, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4454), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5011), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4445), 11, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4869), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 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(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [69649] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + STATE(2766), 1, + sym_override_modifier, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [69732] = 26, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [68376] = 3, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5146), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 29, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [68427] = 3, + [69829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4393), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193331,7 +194704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4251), 29, + ACTIONS(4395), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193361,117 +194734,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68478] = 9, - ACTIONS(4095), 1, - anon_sym_extends, - ACTIONS(4690), 1, + [69880] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(5264), 1, - anon_sym_RPAREN, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5260), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5262), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5174), 2, 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, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [69989] = 17, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [68541] = 7, - ACTIONS(4523), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4788), 1, - anon_sym_QMARK_DOT, - STATE(4549), 1, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5204), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1785), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5146), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(1787), 25, + ACTIONS(4724), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, 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, - [68600] = 3, + [70068] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 13, + ACTIONS(2372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193485,7 +194891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4113), 29, + ACTIONS(2370), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193515,242 +194921,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68651] = 13, + [70119] = 23, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(5267), 1, + ACTIONS(5131), 1, anon_sym_LT, - STATE(1896), 1, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4932), 12, + ACTIONS(5146), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4934), 18, - 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(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [68722] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4513), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4722), 3, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4517), 16, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 9, 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [68799] = 32, + anon_sym_satisfies, + [70210] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(5133), 1, + ACTIONS(5131), 1, anon_sym_LT, - ACTIONS(5141), 1, + ACTIONS(5152), 1, anon_sym_AMP_AMP, - ACTIONS(5143), 1, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(5149), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(5151), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(5153), 1, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(5157), 1, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, + ACTIONS(5178), 1, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, + ACTIONS(5182), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4576), 2, + ACTIONS(4574), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5137), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5155), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(5161), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68908] = 12, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, + [70319] = 7, + ACTIONS(3526), 1, anon_sym_DOT, - ACTIONS(5273), 1, - anon_sym_LT, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 12, + ACTIONS(3479), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3489), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(4866), 20, + ACTIONS(3433), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193767,148 +195116,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, - [68977] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, - anon_sym_LBRACK, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(5278), 1, - anon_sym_RBRACE, - STATE(4866), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5131), 2, - sym_number, - sym_private_property_identifier, - STATE(4797), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5502), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5739), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5276), 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, - [69050] = 32, + [70378] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4509), 1, anon_sym_as, - ACTIONS(4519), 1, + ACTIONS(4513), 1, anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(5133), 1, + ACTIONS(5131), 1, anon_sym_LT, - ACTIONS(5141), 1, + ACTIONS(5152), 1, anon_sym_AMP_AMP, - ACTIONS(5143), 1, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(5149), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(5151), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(5153), 1, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(5157), 1, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(5159), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5167), 1, + ACTIONS(5178), 1, anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, + ACTIONS(5182), 1, sym__ternary_qmark, - STATE(1896), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5135), 2, + ACTIONS(4618), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5137), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5155), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5280), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2199), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(5161), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69159] = 3, + [70487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(4115), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193922,7 +195213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4255), 29, + ACTIONS(4117), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193952,13 +195243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [69210] = 4, - ACTIONS(4261), 1, - anon_sym_DOT, + [70538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 13, + ACTIONS(4119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193972,7 +195261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 28, + ACTIONS(4121), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193982,6 +195271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194001,36 +195291,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [69263] = 4, - ACTIONS(4169), 1, - anon_sym_extends, + [70589] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4269), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4271), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(4295), 28, + ACTIONS(3433), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194050,27 +195341,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69316] = 10, - ACTIONS(4333), 1, - anon_sym_QMARK, - ACTIONS(4335), 1, - anon_sym_extends, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(4451), 1, + [70644] = 9, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5011), 1, - anon_sym_COLON, + ACTIONS(4267), 1, + anon_sym_extends, + ACTIONS(5047), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 2, + ACTIONS(4257), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4264), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5034), 2, + ACTIONS(4871), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4445), 11, + anon_sym_COLON, + ACTIONS(4255), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194082,7 +195372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 22, + ACTIONS(4259), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -194105,88 +195395,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69381] = 32, - ACTIONS(825), 1, + [70707] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4217), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4219), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4221), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, + ACTIONS(4664), 1, anon_sym_LT, - ACTIONS(4237), 1, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4205), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4215), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4223), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4233), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4235), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5106), 2, + ACTIONS(4831), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1646), 2, + anon_sym_RBRACE, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4231), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69490] = 3, + [70816] = 6, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(1707), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3661), 13, + ACTIONS(1697), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194200,14 +195497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3459), 29, - sym__automatic_semicolon, + ACTIONS(1705), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -194229,91 +195523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [69541] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4209), 1, - anon_sym_AMP_AMP, - ACTIONS(4211), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, - anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_PERCENT, - ACTIONS(4227), 1, - anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [70873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5282), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69650] = 4, - ACTIONS(4099), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4268), 13, + ACTIONS(2380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194327,7 +195541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 28, + ACTIONS(2378), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194356,21 +195570,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69703] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, + anon_sym_extends, + [70924] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4763), 2, + anon_sym_get, + anon_sym_set, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [70993] = 6, + ACTIONS(4359), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 11, + ACTIONS(4840), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4843), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4836), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -194378,16 +195652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 28, + ACTIONS(4838), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194407,91 +195679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69760] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - ACTIONS(5284), 1, - anon_sym_SEMI, - ACTIONS(5286), 1, - sym__automatic_semicolon, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5165), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69871] = 4, - ACTIONS(4290), 1, - anon_sym_DOT, + [71050] = 4, + ACTIONS(4329), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 13, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194505,7 +195699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 28, + ACTIONS(4275), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194515,6 +195709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194533,12 +195728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [69924] = 3, + [71103] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 13, + ACTIONS(4119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194552,7 +195746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 29, + ACTIONS(4121), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194582,17 +195776,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [69975] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, - anon_sym_extends, + [71154] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, + anon_sym_STAR, + ACTIONS(5278), 1, + anon_sym_async, + ACTIONS(5282), 1, + anon_sym_readonly, + STATE(2777), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(5280), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5284), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [71227] = 9, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3581), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4293), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194604,16 +195866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 28, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194633,11 +195889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70032] = 3, + [71290] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(4433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194651,7 +195907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 29, + ACTIONS(4435), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194681,11 +195937,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70083] = 3, + [71341] = 12, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4765), 1, + anon_sym_LBRACK, + ACTIONS(4814), 1, + anon_sym_abstract, + ACTIONS(4923), 1, + anon_sym_STAR, + ACTIONS(4927), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4929), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4933), 2, + anon_sym_get, + anon_sym_set, + STATE(3039), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [71410] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 13, + ACTIONS(4347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194699,7 +196012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4331), 29, + ACTIONS(4267), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194729,11 +196042,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70134] = 3, + [71461] = 12, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5011), 1, + anon_sym_abstract, + ACTIONS(5276), 1, + anon_sym_STAR, + ACTIONS(5278), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5280), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5284), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [71530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 13, + ACTIONS(4119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194747,7 +196117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4339), 29, + ACTIONS(4121), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194777,11 +196147,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70185] = 3, + [71581] = 13, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4765), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 13, + ACTIONS(4023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [71652] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194795,7 +196223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 29, + ACTIONS(4427), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194825,59 +196253,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70236] = 3, + [71703] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3316), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 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, - [70287] = 3, + [71812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194891,7 +196348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + ACTIONS(4505), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194921,35 +196378,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70338] = 4, - ACTIONS(5174), 1, - anon_sym_AMP, + [71863] = 7, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(4249), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 12, + ACTIONS(2362), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4252), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1701), 10, 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(4363), 29, - sym__automatic_semicolon, + ACTIONS(1705), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194969,12 +196430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [70391] = 3, + [71922] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(4239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194988,7 +196448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 29, + ACTIONS(4241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195018,13 +196478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70442] = 4, - ACTIONS(4670), 1, - anon_sym_DOT, + [71973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 13, + ACTIONS(4245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195038,7 +196496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 28, + ACTIONS(4247), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195048,6 +196506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195067,39 +196526,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70495] = 7, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_extends, + [72024] = 4, + ACTIONS(5125), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4785), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4353), 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(3439), 25, + ACTIONS(4355), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195119,11 +196574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70554] = 3, + anon_sym_extends, + [72077] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195137,7 +196593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 29, + ACTIONS(4443), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195167,85 +196623,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70605] = 3, + [72128] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3308), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5146), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3310), 29, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5286), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 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, - anon_sym_extends, - [70656] = 4, - ACTIONS(5288), 1, + [72237] = 7, + ACTIONS(3483), 1, anon_sym_DOT, + ACTIONS(3487), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 13, + ACTIONS(3489), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3479), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3429), 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(4131), 28, - sym__automatic_semicolon, + ACTIONS(3433), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -195263,12 +196752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [70709] = 3, + [72296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195282,7 +196770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4137), 29, + ACTIONS(4269), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195312,35 +196800,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70760] = 4, - ACTIONS(5218), 1, + [72347] = 9, + ACTIONS(4087), 1, + anon_sym_extends, + ACTIONS(4683), 1, anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5288), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3429), 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(4137), 28, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195360,35 +196854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [70813] = 3, + [72410] = 7, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(4261), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4267), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4264), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4255), 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(4099), 29, - sym__automatic_semicolon, + ACTIONS(4259), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195408,30 +196906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [70864] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, - anon_sym_extends, + [72469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 11, + ACTIONS(4357), 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(4278), 28, + ACTIONS(4359), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195460,34 +196953,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70921] = 3, + anon_sym_extends, + [72520] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2368), 13, + ACTIONS(4271), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4269), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3429), 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(2366), 29, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195507,12 +197004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [70972] = 3, + [72575] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4361), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195526,7 +197022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 29, + ACTIONS(4363), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195556,25 +197052,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71023] = 3, + [72626] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 13, + ACTIONS(4365), 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(2378), 29, + ACTIONS(4367), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195603,26 +197103,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [72683] = 6, + ACTIONS(4307), 1, anon_sym_extends, - [71074] = 3, + ACTIONS(5251), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 13, + ACTIONS(4305), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4369), 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(4375), 29, + ACTIONS(4371), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195631,7 +197135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195651,112 +197154,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71125] = 32, - ACTIONS(825), 1, + [72740] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4147), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4877), 2, + ACTIONS(4123), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4133), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4161), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4163), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4821), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4159), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71234] = 3, + [72849] = 9, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(3590), 1, + anon_sym_EQ, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(3593), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4293), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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), 29, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195776,12 +197285,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [72912] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4137), 1, + anon_sym_AMP_AMP, + ACTIONS(4139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 1, + anon_sym_GT_GT, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_CARET, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, + anon_sym_PERCENT, + ACTIONS(4155), 1, + anon_sym_STAR_STAR, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4171), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4143), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4161), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4163), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4831), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4159), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73021] = 4, + ACTIONS(4277), 1, anon_sym_extends, - [71285] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195795,7 +197382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4275), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195824,89 +197411,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71336] = 32, - ACTIONS(825), 1, + [73074] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(5131), 1, anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(5152), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(5156), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(5160), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(5162), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(5164), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(5178), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(5182), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1876), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4862), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4877), 2, + ACTIONS(4608), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(5158), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(5166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(5174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(5176), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(5172), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71445] = 3, + [73183] = 4, + ACTIONS(5293), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4373), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195920,7 +197508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 29, + ACTIONS(4375), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195949,12 +197537,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [73236] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5255), 1, + anon_sym_STAR, + ACTIONS(5257), 1, + anon_sym_async, + ACTIONS(5297), 1, + anon_sym_readonly, + STATE(2758), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5261), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5295), 2, + sym_number, + sym_private_property_identifier, + STATE(3019), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [73309] = 4, + ACTIONS(4077), 1, anon_sym_extends, - [71496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4205), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195968,7 +197616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4207), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195997,12 +197645,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71547] = 3, + [73362] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5299), 1, + anon_sym_STAR, + ACTIONS(5301), 1, + anon_sym_async, + ACTIONS(5305), 1, + anon_sym_readonly, + STATE(2782), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5303), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5307), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [73435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(4319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196016,7 +197722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 29, + ACTIONS(4321), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196046,39 +197752,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71598] = 7, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_extends, + [73486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4785), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4325), 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, + ACTIONS(4327), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196098,25 +197799,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71657] = 3, + anon_sym_extends, + [73537] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 13, + ACTIONS(4209), 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(4409), 29, + ACTIONS(4211), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196145,89 +197851,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71708] = 32, - ACTIONS(825), 1, + [73594] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(4648), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(4652), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(4656), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(4664), 1, + anon_sym_LT, + ACTIONS(4672), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(4674), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4638), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(4642), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(4658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(4668), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(4670), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5282), 2, + ACTIONS(5265), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(4666), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71817] = 3, + [73703] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5204), 1, + anon_sym_LT, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 13, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196238,58 +197967,204 @@ 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(4483), 29, + ACTIONS(4724), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_satisfies, + [73776] = 33, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + ACTIONS(5309), 1, + anon_sym_SEMI, + ACTIONS(5311), 1, + sym__automatic_semicolon, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73887] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4509), 1, + anon_sym_as, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4555), 1, anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_LT, + ACTIONS(5152), 1, + anon_sym_AMP_AMP, + ACTIONS(5154), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5156), 1, + anon_sym_GT_GT, + ACTIONS(5160), 1, + anon_sym_AMP, + ACTIONS(5162), 1, + anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_PIPE, + ACTIONS(5168), 1, + anon_sym_PERCENT, + ACTIONS(5170), 1, + anon_sym_STAR_STAR, + ACTIONS(5178), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + sym__ternary_qmark, + STATE(1876), 1, + sym_type_arguments, + STATE(4903), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4511), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4553), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5148), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5176), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(5172), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73996] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, anon_sym_extends, - [71868] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 13, + ACTIONS(4383), 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(4117), 29, + ACTIONS(4385), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196318,12 +198193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71919] = 3, + [74053] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 13, + ACTIONS(3278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196337,7 +198211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4117), 29, + ACTIONS(3280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196367,13 +198241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71970] = 4, - ACTIONS(4601), 1, - anon_sym_EQ, + [74104] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 13, + ACTIONS(4329), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196387,15 +198264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 28, - sym__automatic_semicolon, + ACTIONS(4275), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196416,150 +198290,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72023] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + [74157] = 9, + ACTIONS(2362), 1, + anon_sym_extends, + ACTIONS(4249), 1, anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_STAR, - ACTIONS(5292), 1, - anon_sym_async, - ACTIONS(5296), 1, - anon_sym_readonly, - STATE(2780), 1, - sym_override_modifier, + ACTIONS(5043), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5294), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5298), 2, - anon_sym_get, - anon_sym_set, - STATE(3040), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, + ACTIONS(1703), 2, 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(3663), 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, - [72096] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_STAR, - ACTIONS(5292), 1, - anon_sym_async, - ACTIONS(5302), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5298), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5300), 2, - sym_number, - sym_private_property_identifier, - STATE(3034), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4252), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4793), 2, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 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, - [72165] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4115), 13, + ACTIONS(1701), 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(4117), 29, - sym__automatic_semicolon, + ACTIONS(1705), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196579,116 +198344,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72216] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_as, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4532), 1, - anon_sym_satisfies, - ACTIONS(5133), 1, - anon_sym_LT, - ACTIONS(5141), 1, - anon_sym_AMP_AMP, - ACTIONS(5143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5145), 1, - anon_sym_GT_GT, - ACTIONS(5149), 1, - anon_sym_AMP, - ACTIONS(5151), 1, - anon_sym_CARET, - ACTIONS(5153), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_PERCENT, - ACTIONS(5159), 1, - anon_sym_STAR_STAR, - ACTIONS(5167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5169), 1, - sym__ternary_qmark, - STATE(1896), 1, - sym_type_arguments, - STATE(4549), 1, - sym_optional_chain, + [74220] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4530), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4857), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5135), 2, + ACTIONS(4397), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5137), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5147), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5155), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5163), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 2, + ACTIONS(4399), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2199), 2, - sym_template_string, - sym_arguments, - ACTIONS(5161), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72325] = 6, - ACTIONS(4095), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, + [74271] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4449), 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, + ACTIONS(4451), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196708,95 +198439,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72382] = 12, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4756), 2, - anon_sym_get, - anon_sym_set, - STATE(3737), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [72451] = 7, - ACTIONS(3547), 1, - anon_sym_EQ, - ACTIONS(4266), 1, anon_sym_extends, + [74322] = 4, + ACTIONS(5251), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4785), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4379), 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, + ACTIONS(4381), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196817,228 +198488,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72510] = 13, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_async, - ACTIONS(4758), 1, - anon_sym_LBRACK, + anon_sym_extends, + [74375] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4153), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_get, - anon_sym_set, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [72581] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4401), 13, anon_sym_STAR, - ACTIONS(5306), 1, - anon_sym_async, - ACTIONS(5310), 1, - anon_sym_readonly, - STATE(2759), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5308), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5312), 2, - anon_sym_get, - anon_sym_set, - STATE(3101), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, + 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(4403), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [72654] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4209), 1, anon_sym_AMP_AMP, - ACTIONS(4211), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_GT_GT, - ACTIONS(4217), 1, - anon_sym_AMP, - ACTIONS(4219), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4221), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, anon_sym_PERCENT, - ACTIONS(4227), 1, anon_sym_STAR_STAR, - ACTIONS(4229), 1, - anon_sym_LT, - ACTIONS(4237), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4243), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4195), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4205), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4215), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4235), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4231), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72763] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [74426] = 7, + ACTIONS(3545), 1, + anon_sym_EQ, + ACTIONS(4293), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 13, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(4309), 29, + ACTIONS(3433), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197058,12 +198589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72814] = 3, + [74485] = 4, + ACTIONS(4457), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197077,7 +198609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 29, + ACTIONS(4455), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197087,7 +198619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -197107,27 +198638,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72865] = 4, - ACTIONS(1693), 1, - anon_sym_EQ, + [74538] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5313), 1, + anon_sym_STAR, + ACTIONS(5315), 1, + anon_sym_async, + ACTIONS(5319), 1, + anon_sym_readonly, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5317), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5321), 2, + anon_sym_get, + anon_sym_set, + STATE(3093), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [74611] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1691), 13, + ACTIONS(4401), 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(1695), 28, + ACTIONS(4403), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197156,10 +198748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72918] = 19, + [74668] = 19, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(672), 1, anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, @@ -197171,17 +198763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2360), 1, anon_sym_override, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5195), 1, anon_sym_STAR, - STATE(2764), 1, + STATE(2766), 1, sym_override_modifier, - STATE(4793), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -197192,11 +198784,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3822), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -197220,11 +198812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [73001] = 3, + [74751] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 13, + ACTIONS(4331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197238,7 +198830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4309), 29, + ACTIONS(4329), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197268,11 +198860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73052] = 3, + [74802] = 4, + ACTIONS(4257), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 13, + ACTIONS(4255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197286,7 +198880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4409), 29, + ACTIONS(4259), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197315,35 +198909,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [74855] = 9, + ACTIONS(2362), 1, anon_sym_extends, - [73103] = 3, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(5323), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(1703), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4252), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5028), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1701), 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(4419), 29, - sym__automatic_semicolon, + ACTIONS(1705), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197363,12 +198963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73154] = 3, + [74918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 13, + ACTIONS(4173), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197382,7 +198981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4433), 29, + ACTIONS(4175), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197412,11 +199011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73205] = 3, + [74969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197430,7 +199029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 29, + ACTIONS(4389), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197460,11 +199059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73256] = 3, + [75020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 13, + ACTIONS(4409), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197478,7 +199077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4309), 29, + ACTIONS(4411), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197508,14 +199107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73307] = 3, + [75071] = 6, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(5017), 1, + anon_sym_of, + ACTIONS(5326), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + ACTIONS(4255), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -197526,14 +199130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4161), 29, + ACTIONS(4259), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -197555,12 +199157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73358] = 3, + [75127] = 4, + ACTIONS(3477), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197574,16 +199177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4161), 29, - sym__automatic_semicolon, + ACTIONS(3433), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197603,12 +199205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73409] = 3, + [75179] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + ACTIONS(1843), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197622,14 +199226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4161), 29, + ACTIONS(1849), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -197651,35 +199253,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73460] = 3, + [75231] = 7, + ACTIONS(4291), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4461), 13, + ACTIONS(4293), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4825), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3429), 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(4463), 29, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197699,38 +199304,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73511] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, - anon_sym_extends, + [75289] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 11, + ACTIONS(5267), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5288), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 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(4359), 28, - sym__automatic_semicolon, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197751,11 +199353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73568] = 3, + [75343] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 13, + ACTIONS(4836), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197769,7 +199371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 29, + ACTIONS(4838), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197798,12 +199400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73619] = 3, + [75393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 13, + ACTIONS(4610), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197817,7 +199418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4185), 29, + ACTIONS(4612), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197846,40 +199447,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73670] = 7, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(4435), 1, - anon_sym_LBRACK, + [75443] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4438), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1691), 10, + ACTIONS(4614), 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(1695), 25, + ACTIONS(4616), 28, + 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197899,91 +199494,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73729] = 7, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3481), 1, - anon_sym_QMARK_DOT, + [75493] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5223), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3473), 7, + ACTIONS(5329), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5331), 2, + anon_sym_get, + anon_sym_set, + STATE(3786), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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, + ACTIONS(2352), 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, + [75557] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(5195), 1, 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), 20, - sym__ternary_qmark, - anon_sym_as, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, 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, - [73788] = 7, - ACTIONS(4447), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [75631] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4451), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [75707] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4454), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4445), 10, + ACTIONS(4620), 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(4449), 25, + ACTIONS(4622), 28, + 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198003,110 +199714,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73847] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4459), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4457), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - 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, - 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, + [75757] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5337), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5343), 1, + anon_sym_GT_GT, + ACTIONS(5347), 1, + anon_sym_AMP, + ACTIONS(5349), 1, anon_sym_CARET, + ACTIONS(5351), 1, + anon_sym_PIPE, + ACTIONS(5355), 1, anon_sym_PERCENT, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5359), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73902] = 4, - ACTIONS(5314), 1, - anon_sym_DOT, + ACTIONS(5369), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5333), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5345), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5361), 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, - [73955] = 3, + [75865] = 5, + ACTIONS(1801), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(1793), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198120,14 +199813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 29, - sym__automatic_semicolon, + ACTIONS(1799), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -198149,30 +199839,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74006] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, - anon_sym_extends, + [75919] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4469), 11, + ACTIONS(4273), 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(4471), 28, + ACTIONS(4275), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198201,29 +199886,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74063] = 6, - ACTIONS(5174), 1, - anon_sym_AMP, - ACTIONS(5176), 1, - anon_sym_PIPE, - ACTIONS(5178), 1, - anon_sym_extends, + [75969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4473), 11, + ACTIONS(4698), 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(4475), 28, + ACTIONS(4700), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198252,11 +199933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74120] = 3, + [76019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 13, + ACTIONS(4702), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198270,7 +199951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4313), 29, + ACTIONS(4704), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198299,16 +199980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74171] = 5, - ACTIONS(4521), 1, - anon_sym_LPAREN, - STATE(2240), 1, - sym_arguments, + [76069] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 13, + ACTIONS(4706), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198322,12 +199998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 27, + ACTIONS(4708), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -198350,11 +200027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74226] = 3, + [76119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 13, + ACTIONS(4960), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198368,7 +200045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2370), 29, + ACTIONS(4962), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198397,12 +200074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74277] = 3, + [76169] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198416,7 +200092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 29, + ACTIONS(4716), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198445,183 +200121,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74328] = 32, - ACTIONS(825), 1, + [76219] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_LT, - ACTIONS(4881), 1, + ACTIONS(5375), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(4883), 1, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - ACTIONS(4885), 1, + ACTIONS(5381), 1, anon_sym_GT_GT, - ACTIONS(4889), 1, + ACTIONS(5385), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(5387), 1, anon_sym_CARET, - ACTIONS(4893), 1, + ACTIONS(5389), 1, anon_sym_PIPE, - ACTIONS(4897), 1, + ACTIONS(5393), 1, anon_sym_PERCENT, - ACTIONS(4899), 1, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - ACTIONS(4907), 1, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - ACTIONS(4909), 1, + ACTIONS(5407), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4879), 2, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(5383), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4895), 2, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4903), 2, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4905), 2, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5316), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4901), 3, + ACTIONS(5399), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74437] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2764), 1, - sym_override_modifier, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, + [76327] = 7, + ACTIONS(5409), 1, anon_sym_LPAREN, + ACTIONS(5412), 1, anon_sym_COLON, + ACTIONS(5414), 1, anon_sym_LT, + ACTIONS(5417), 1, anon_sym_QMARK, - ACTIONS(2352), 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, - [74520] = 9, - ACTIONS(2374), 1, - anon_sym_extends, - ACTIONS(4435), 1, - anon_sym_LBRACK, - ACTIONS(5030), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4438), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4639), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1691), 11, + ACTIONS(4861), 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(1695), 22, + ACTIONS(4863), 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, anon_sym_AMP_AMP, @@ -198641,70 +200248,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74583] = 9, - ACTIONS(4335), 1, - anon_sym_extends, - ACTIONS(4451), 1, + [76385] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5034), 1, - anon_sym_RPAREN, + ACTIONS(5419), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 2, + ACTIONS(5421), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5423), 2, + anon_sym_get, + anon_sym_set, + STATE(3804), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4454), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4578), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4445), 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(4449), 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, - [74646] = 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [76449] = 5, + ACTIONS(1859), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4293), 13, + ACTIONS(1851), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198718,12 +200325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 25, + ACTIONS(1857), 25, 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, @@ -198744,16 +200351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74699] = 4, + [76503] = 5, + ACTIONS(1869), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4293), 13, + ACTIONS(1861), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198767,12 +200374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 25, + ACTIONS(1867), 25, 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, @@ -198793,75 +200400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74752] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - anon_sym_RBRACE, - STATE(2764), 1, - sym_override_modifier, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [74835] = 3, + [76557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(4718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198875,7 +200418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4143), 29, + ACTIONS(4720), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198904,43 +200447,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74886] = 10, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(2374), 1, - anon_sym_extends, - ACTIONS(2376), 1, - anon_sym_QMARK, - ACTIONS(4435), 1, - anon_sym_LBRACK, - ACTIONS(5015), 1, - anon_sym_COLON, + [76607] = 5, + ACTIONS(1879), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5030), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1691), 11, + ACTIONS(1871), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1875), 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(1695), 22, + ACTIONS(1877), 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, @@ -198960,11 +200496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74951] = 3, + [76661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(1797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198978,7 +200514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 29, + ACTIONS(1799), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199007,36 +200543,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75002] = 4, - ACTIONS(3495), 1, + [76711] = 9, + ACTIONS(3477), 1, anon_sym_EQ, + ACTIONS(3572), 1, + anon_sym_COLON, + ACTIONS(4293), 1, + anon_sym_extends, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3429), 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(3439), 27, - sym__automatic_semicolon, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199056,54 +200596,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75054] = 11, - ACTIONS(1621), 1, + [76773] = 21, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(2028), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5322), 1, - anon_sym_STAR, - ACTIONS(5324), 1, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5433), 1, + anon_sym_RBRACE, + ACTIONS(5435), 1, anon_sym_async, + ACTIONS(5439), 1, + anon_sym_static, + ACTIONS(5441), 1, + anon_sym_readonly, + ACTIONS(5447), 1, + anon_sym_override, + STATE(2740), 1, + sym_accessibility_modifier, + STATE(2780), 1, + sym_override_modifier, + STATE(4919), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5326), 2, + ACTIONS(5437), 2, sym_number, sym_private_property_identifier, - ACTIONS(5328), 2, + ACTIONS(5443), 2, anon_sym_get, anon_sym_set, - STATE(3039), 3, + ACTIONS(5445), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3680), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 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(3663), 20, + STATE(4913), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5429), 14, 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, @@ -199111,19 +200661,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75120] = 6, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(5015), 1, - anon_sym_of, - ACTIONS(5330), 1, - anon_sym_in, + [76859] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1691), 12, + ACTIONS(5267), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5269), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -199134,13 +200686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 26, - sym__automatic_semicolon, + ACTIONS(3433), 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, @@ -199161,75 +200710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75176] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [75250] = 5, - ACTIONS(1897), 1, + [76913] = 5, + ACTIONS(1917), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 2, + ACTIONS(1909), 2, anon_sym_else, anon_sym_while, - ACTIONS(1893), 13, + ACTIONS(1913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199243,7 +200733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 25, + ACTIONS(1915), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -199269,50 +200759,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75304] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, + [76967] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5449), 1, anon_sym_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5451), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5453), 2, anon_sym_get, anon_sym_set, - STATE(3822), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 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(2352), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -199329,11 +200813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75380] = 3, + [77031] = 5, + ACTIONS(1927), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 13, + ACTIONS(1919), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199347,14 +200836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1795), 28, - sym__automatic_semicolon, + ACTIONS(1925), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -199376,63 +200862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75430] = 6, - ACTIONS(4266), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4782), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - 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), 24, - 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, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75486] = 4, - ACTIONS(3547), 1, - anon_sym_EQ, + [77085] = 5, + ACTIONS(1937), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(1929), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199446,12 +200885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 27, - sym__automatic_semicolon, + ACTIONS(1935), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -199474,37 +200911,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75538] = 6, - ACTIONS(4393), 1, - anon_sym_extends, + [77139] = 5, + ACTIONS(1947), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4510), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4507), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4503), 11, + ACTIONS(1939), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1943), 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(4505), 24, + ACTIONS(1945), 25, 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, @@ -199524,404 +200960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75594] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5333), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5335), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5337), 2, - anon_sym_get, - anon_sym_set, - STATE(3825), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [75658] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [75732] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5333), 1, - anon_sym_STAR, - ACTIONS(5339), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5341), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5343), 2, - anon_sym_get, - anon_sym_set, - STATE(3065), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(3663), 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, - [75798] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [75874] = 9, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1980), 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, - [75936] = 9, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 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(3801), 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, - [75998] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5322), 1, - anon_sym_STAR, - ACTIONS(5324), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5328), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5345), 2, - sym_number, - sym_private_property_identifier, - STATE(3031), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, + [77193] = 6, + ACTIONS(3578), 1, 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(3663), 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, - [76064] = 4, + ACTIONS(3586), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 3, + ACTIONS(3581), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4293), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199935,12 +200986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 25, + ACTIONS(3433), 23, 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, @@ -199961,15 +201010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76116] = 4, + [77249] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 3, + ACTIONS(5455), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5457), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4293), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199983,12 +201035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 25, + ACTIONS(3433), 23, 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, @@ -200009,329 +201059,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76168] = 21, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(2024), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5351), 1, - anon_sym_RBRACE, - ACTIONS(5353), 1, - anon_sym_async, - ACTIONS(5357), 1, - anon_sym_static, - ACTIONS(5359), 1, - anon_sym_readonly, - ACTIONS(5365), 1, - anon_sym_override, - STATE(2748), 1, - sym_accessibility_modifier, - STATE(2758), 1, - sym_override_modifier, - STATE(4914), 1, - aux_sym_object_repeat1, + [77303] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5355), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5361), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5363), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3604), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4910), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5347), 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, - [76254] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, + ACTIONS(5459), 2, anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5123), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 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, - [76328] = 16, - ACTIONS(239), 1, + ACTIONS(5461), 3, anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, - ACTIONS(5123), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + 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(3433), 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, + [77357] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(5459), 2, + anon_sym_EQ, anon_sym_QMARK, - ACTIONS(2352), 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, - [76404] = 9, - ACTIONS(3795), 1, + ACTIONS(5461), 3, anon_sym_COMMA, - ACTIONS(3818), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(3429), 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(1980), 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, - [76466] = 9, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3818), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3433), 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, + [77411] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, + ACTIONS(4710), 13, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3801), 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(4712), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, 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, - [76528] = 8, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(4435), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, - 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, + [77461] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2374), 3, + ACTIONS(5459), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5461), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1691), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 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(1695), 22, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200351,39 +201253,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76588] = 8, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(4451), 1, - anon_sym_LBRACK, - ACTIONS(5011), 1, - anon_sym_COLON, + [77515] = 5, + ACTIONS(1761), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4335), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4445), 11, + ACTIONS(1753), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1757), 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(4449), 22, + ACTIONS(1759), 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, @@ -200403,11 +201302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76648] = 3, + [77569] = 5, + ACTIONS(1771), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(1763), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200421,14 +201325,11 @@ 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(1769), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200450,29 +201351,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76698] = 10, + [77623] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5367), 1, + ACTIONS(5463), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5369), 2, + ACTIONS(5465), 2, sym_number, sym_private_property_identifier, - ACTIONS(5371), 2, + ACTIONS(5467), 2, anon_sym_get, anon_sym_set, - STATE(3841), 3, + STATE(3757), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -200504,38 +201405,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76762] = 7, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(4435), 1, - anon_sym_LBRACK, + [77687] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4438), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1691), 10, + ACTIONS(4729), 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(1695), 24, + ACTIONS(4731), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200555,38 +201452,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76820] = 7, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(4451), 1, - anon_sym_LBRACK, + [77737] = 5, + ACTIONS(1781), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4454), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4445), 10, + ACTIONS(1773), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1777), 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(4449), 24, - sym__automatic_semicolon, + ACTIONS(1779), 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, @@ -200606,36 +201501,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76878] = 9, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [77791] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5469), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 7, + ACTIONS(5471), 2, + anon_sym_get, + anon_sym_set, + STATE(3775), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(1980), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -200645,8 +201543,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, @@ -200659,47 +201555,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76940] = 9, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [77855] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, + anon_sym_STAR, + ACTIONS(5278), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5280), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 7, + ACTIONS(5284), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, @@ -200712,89 +201610,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77002] = 9, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [77921] = 5, + ACTIONS(1791), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1982), 6, + ACTIONS(1783), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1787), 13, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3801), 7, - sym__automatic_semicolon, + 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(1789), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77975] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 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(1980), 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, - [77064] = 9, - ACTIONS(3795), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3433), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3827), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + anon_sym_LPAREN, + anon_sym_of, + 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, + [78025] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, + ACTIONS(1843), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1847), 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(1849), 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, + [78077] = 10, + ACTIONS(2328), 1, anon_sym_DQUOTE, + ACTIONS(2330), 1, anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5255), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5473), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 7, + ACTIONS(5475), 2, + anon_sym_get, + anon_sym_set, + STATE(3829), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -200804,8 +201796,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, @@ -200818,36 +201808,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77126] = 9, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3809), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [78141] = 7, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1982), 6, + STATE(1647), 2, + sym_template_string, + sym_arguments, + ACTIONS(5477), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4081), 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(4083), 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, + [78199] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, anon_sym_DQUOTE, + ACTIONS(2330), 1, anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 7, - sym__automatic_semicolon, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1980), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -200857,8 +201906,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, @@ -200871,47 +201918,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77188] = 9, - ACTIONS(3795), 1, + [78273] = 16, + ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(3809), 1, + ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4215), 1, anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 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, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 7, - sym__automatic_semicolon, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, + ACTIONS(2352), 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, @@ -200924,18 +201978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77250] = 5, + [78349] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5373), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5375), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4733), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200949,10 +201996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4735), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200973,18 +202025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77304] = 5, + [78399] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5377), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5379), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4737), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200998,10 +202043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4608), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201022,18 +202072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77358] = 5, + [78449] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5377), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5379), 3, + ACTIONS(1793), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201047,7 +202096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1799), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -201071,36 +202120,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77412] = 5, + [78501] = 8, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(4291), 1, + anon_sym_QMARK, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5377), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5379), 3, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4293), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3429), 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(3439), 23, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -201120,11 +202172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77466] = 3, + [78561] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4658), 13, + ACTIONS(4739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201138,7 +202190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4660), 28, + ACTIONS(4741), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201167,11 +202219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77516] = 3, + [78611] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4743), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201185,7 +202237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 28, + ACTIONS(4511), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201214,11 +202266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77566] = 3, + [78661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 13, + ACTIONS(4745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201232,7 +202284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4664), 28, + ACTIONS(4559), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201261,66 +202313,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77616] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, + [78711] = 6, + ACTIONS(4683), 1, anon_sym_LBRACK, - ACTIONS(5381), 1, - anon_sym_STAR, - ACTIONS(5383), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5387), 2, - anon_sym_get, - anon_sym_set, - STATE(3019), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4686), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(3433), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 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, - [77682] = 3, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78767] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4716), 13, + ACTIONS(4747), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201334,7 +202381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4718), 28, + ACTIONS(4749), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201363,16 +202410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77732] = 5, - ACTIONS(1943), 1, - sym__automatic_semicolon, + [78817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1935), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1939), 13, + ACTIONS(4751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201386,11 +202428,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1941), 25, + ACTIONS(4753), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -201412,16 +202457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77786] = 5, - ACTIONS(1739), 1, - sym__automatic_semicolon, + [78867] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1735), 13, + ACTIONS(1851), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201435,12 +202481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 25, + ACTIONS(1857), 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, @@ -201461,114 +202505,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77840] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + [78919] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1861), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1865), 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(1867), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5393), 1, - anon_sym_COLON, - ACTIONS(5395), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78971] = 5, + ACTIONS(5479), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(1871), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1875), 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(1877), 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, - ACTIONS(5389), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79025] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4755), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(4757), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77948] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79075] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5427), 1, + ACTIONS(5299), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5429), 2, + ACTIONS(5481), 2, sym_number, sym_private_property_identifier, - ACTIONS(5431), 2, + ACTIONS(5483), 2, anon_sym_get, anon_sym_set, - STATE(3762), 3, + STATE(3782), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 21, anon_sym_export, anon_sym_type, @@ -201591,29 +202703,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78012] = 10, - ACTIONS(2328), 1, + [79139] = 11, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5433), 1, + ACTIONS(5299), 1, anon_sym_STAR, + ACTIONS(5301), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5435), 2, + ACTIONS(5303), 2, sym_number, sym_private_property_identifier, - ACTIONS(5437), 2, + ACTIONS(5307), 2, anon_sym_get, anon_sym_set, - STATE(3726), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -201623,12 +202737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201645,11 +202758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78076] = 3, + [79205] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4666), 13, + ACTIONS(1909), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201663,15 +202782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4668), 28, - sym__automatic_semicolon, + ACTIONS(1915), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201692,71 +202806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78126] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_STAR, - ACTIONS(5441), 1, - anon_sym_async, + [79257] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5443), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5445), 2, - anon_sym_get, - anon_sym_set, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(1919), 5, 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(3663), 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, - [78192] = 5, - ACTIONS(1871), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1863), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1867), 13, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201770,12 +202830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 25, + ACTIONS(1925), 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, @@ -201796,11 +202854,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78246] = 3, + [79309] = 5, + ACTIONS(5485), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4581), 13, + ACTIONS(1929), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201814,15 +202879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 28, - sym__automatic_semicolon, + ACTIONS(1935), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201843,38 +202903,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78296] = 7, - ACTIONS(3599), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_extends, + [79363] = 5, + ACTIONS(5487), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 2, + ACTIONS(1939), 4, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4785), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1943), 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, + ACTIONS(1945), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -201894,196 +202952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78354] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5451), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_GT_GT, - ACTIONS(5461), 1, - anon_sym_AMP, - ACTIONS(5463), 1, - anon_sym_CARET, - ACTIONS(5465), 1, - anon_sym_PIPE, - ACTIONS(5469), 1, - anon_sym_PERCENT, - ACTIONS(5471), 1, - anon_sym_STAR_STAR, - ACTIONS(5473), 1, - anon_sym_LT, - ACTIONS(5481), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5449), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5459), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5467), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5477), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5479), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5475), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78462] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5485), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5487), 2, - anon_sym_get, - anon_sym_set, - STATE(3747), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [78526] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR, - ACTIONS(5186), 1, - anon_sym_async, + [79417] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5188), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5192), 2, - anon_sym_get, - anon_sym_set, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(1753), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3663), 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, - [78592] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4642), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(1757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202097,15 +202976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4644), 28, - sym__automatic_semicolon, + ACTIONS(1759), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202126,11 +203000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78642] = 3, + [79469] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4646), 13, + ACTIONS(1763), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202144,15 +203024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4648), 28, - sym__automatic_semicolon, + ACTIONS(1769), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202173,15 +203048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78692] = 4, + [79521] = 5, ACTIONS(5489), 1, - sym_regex_flags, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 16, + ACTIONS(1773), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1777), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -202194,15 +203073,10 @@ 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(5250), 24, - sym__automatic_semicolon, + ACTIONS(1779), 23, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202218,77 +203092,25 @@ 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, - [78744] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5491), 1, - anon_sym_STAR, - ACTIONS(5493), 1, - anon_sym_async, + anon_sym_satisfies, + [79575] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5495), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5497), 2, - anon_sym_get, - anon_sym_set, - STATE(3100), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(1783), 5, 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(3663), 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, - [78810] = 6, - ACTIONS(3547), 1, - anon_sym_EQ, - ACTIONS(3638), 1, - anon_sym_in, - ACTIONS(3641), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 12, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -202299,13 +203121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, - sym__automatic_semicolon, + ACTIONS(1789), 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, @@ -202326,11 +203145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78866] = 3, + [79627] = 4, + ACTIONS(3532), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202344,14 +203165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4587), 28, + ACTIONS(3433), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -202373,35 +203193,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78916] = 10, + [79679] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5322), 1, + ACTIONS(5195), 1, anon_sym_STAR, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5499), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5501), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3725), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -202427,38 +203252,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78980] = 5, - ACTIONS(1923), 1, - sym__automatic_semicolon, + [79753] = 7, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1915), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1919), 13, + ACTIONS(3489), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3479), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 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(1921), 25, + ACTIONS(3433), 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_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -202476,44 +203303,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79034] = 10, + [79811] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, anon_sym_STAR, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5503), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5505), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3849), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -202530,39 +203363,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79098] = 10, - ACTIONS(2328), 1, + [79887] = 4, + ACTIONS(5491), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5239), 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, + 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(5241), 23, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, + [79939] = 12, + ACTIONS(169), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4608), 1, - anon_sym_STAR, - ACTIONS(4752), 1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + ACTIONS(3909), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5507), 2, + ACTIONS(5190), 2, sym_number, sym_private_property_identifier, - ACTIONS(5509), 2, - anon_sym_get, - anon_sym_set, - STATE(3728), 3, + ACTIONS(5495), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5138), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5612), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5619), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 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(2352), 21, + ACTIONS(5493), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -202572,6 +203453,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, @@ -202584,36 +203467,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79162] = 5, - ACTIONS(1847), 1, - sym__automatic_semicolon, + [80007] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1843), 13, + ACTIONS(4271), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4269), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 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(3433), 24, + 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, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80061] = 7, + ACTIONS(4357), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4359), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4843), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4840), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4836), 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(1845), 25, + ACTIONS(4838), 22, 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, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80119] = 6, + ACTIONS(4825), 1, anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(3433), 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, @@ -202633,16 +203617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79216] = 5, - ACTIONS(1749), 1, - sym__automatic_semicolon, + [80175] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1745), 13, + ACTIONS(4787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202656,11 +203635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 25, + ACTIONS(4789), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -202682,35 +203664,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79270] = 4, + [80225] = 8, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3572), 1, + anon_sym_COLON, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 5, - sym__automatic_semicolon, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4293), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1785), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3429), 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(3433), 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, + [80285] = 7, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4828), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3429), 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(1787), 23, + ACTIONS(3433), 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, + [80343] = 33, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4831), 1, + anon_sym_of, + ACTIONS(5499), 1, + anon_sym_in, + ACTIONS(5502), 1, + anon_sym_GT, + ACTIONS(5504), 1, + anon_sym_AMP_AMP, + ACTIONS(5506), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5508), 1, + anon_sym_GT_GT, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_CARET, + ACTIONS(5516), 1, + anon_sym_PIPE, + ACTIONS(5520), 1, + anon_sym_PERCENT, + ACTIONS(5522), 1, + anon_sym_STAR_STAR, + ACTIONS(5524), 1, + anon_sym_LT, + ACTIONS(5532), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5534), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5510), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80453] = 6, + ACTIONS(4840), 1, anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4359), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4843), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4836), 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(4838), 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, @@ -202730,35 +203894,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79322] = 10, + [80509] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5290), 1, + ACTIONS(5195), 1, anon_sym_STAR, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5511), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5513), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3837), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -202784,38 +203953,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79386] = 7, - ACTIONS(4264), 1, + [80583] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, + ACTIONS(2352), 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, + [80659] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4785), 2, + ACTIONS(4767), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4782), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4769), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3435), 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, + [80709] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4771), 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), 22, + ACTIONS(4773), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -202835,22 +204107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79444] = 7, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, + [80759] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1670), 2, - sym_template_string, - sym_arguments, - ACTIONS(5515), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4079), 13, + ACTIONS(4775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202864,9 +204125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4081), 21, + ACTIONS(4777), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202885,20 +204152,21 @@ 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, - [79502] = 5, - ACTIONS(1759), 1, - sym__automatic_semicolon, + [80809] = 6, + ACTIONS(4691), 1, + anon_sym_EQ, + ACTIONS(5026), 1, + anon_sym_of, + ACTIONS(5536), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1755), 13, + ACTIONS(4689), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -202909,7 +204177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 25, + ACTIONS(4693), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -202935,14 +204204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79556] = 3, + [80865] = 6, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(5028), 1, + anon_sym_of, + ACTIONS(5539), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4720), 13, + ACTIONS(1701), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -202953,14 +204227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4722), 28, + ACTIONS(1705), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -202982,11 +204254,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79606] = 3, + [80921] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4724), 13, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [80995] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [81071] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203000,7 +204391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4726), 28, + ACTIONS(1857), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203029,34 +204420,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79656] = 3, + [81121] = 6, + ACTIONS(4293), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4728), 13, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4825), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3429), 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(4730), 28, - sym__automatic_semicolon, + ACTIONS(3433), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203076,11 +204470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79706] = 3, + [81177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4732), 13, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203094,7 +204488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4734), 28, + ACTIONS(1867), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203123,11 +204517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79756] = 3, + [81227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4736), 13, + ACTIONS(1875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203141,7 +204535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 28, + ACTIONS(1877), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203170,11 +204564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79806] = 3, + [81277] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4740), 13, + ACTIONS(1913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203188,7 +204582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4742), 28, + ACTIONS(1915), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203217,93 +204611,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79856] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [79930] = 3, + [81327] = 6, + ACTIONS(4359), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 13, + ACTIONS(4843), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4840), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4836), 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(4746), 28, - sym__automatic_semicolon, + ACTIONS(4838), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203323,25 +204661,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79980] = 15, + [81383] = 15, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5195), 1, anon_sym_STAR, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -203351,11 +204689,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3822), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -203382,27 +204720,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80054] = 16, + [81457] = 16, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, ACTIONS(2354), 1, anon_sym_async, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5195), 1, anon_sym_STAR, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -203412,11 +204750,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3822), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -203442,86 +204780,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80130] = 3, + [81533] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4748), 13, + ACTIONS(1994), 6, 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(4750), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80180] = 10, - ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5236), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5517), 2, sym_number, sym_private_property_identifier, - ACTIONS(5519), 2, - anon_sym_get, - anon_sym_set, - STATE(3735), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(2352), 21, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -203531,6 +204819,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, @@ -203543,49 +204833,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80244] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5236), 1, - anon_sym_STAR, - ACTIONS(5238), 1, - anon_sym_async, + [81595] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5244), 2, - anon_sym_get, - anon_sym_set, - STATE(3067), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(3663), 20, + ACTIONS(1974), 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, @@ -203598,11 +204886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80310] = 3, + [81657] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4591), 13, + ACTIONS(4329), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203616,15 +204908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4593), 28, - sym__automatic_semicolon, + ACTIONS(4275), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203645,17 +204934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80360] = 4, + [81709] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 5, - sym__automatic_semicolon, + ACTIONS(4277), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1793), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203669,10 +204956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1795), 23, + ACTIONS(4275), 25, 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, @@ -203693,54 +204982,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80412] = 16, + [81761] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5245), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [81835] = 16, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(695), 1, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5245), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [81911] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, anon_sym_RBRACE, - ACTIONS(2328), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1994), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1992), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(4147), 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, + [81973] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 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, @@ -203753,41 +205207,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80488] = 9, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [82035] = 8, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(4249), 1, + anon_sym_LBRACK, + ACTIONS(5028), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4871), 12, + ACTIONS(4252), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2362), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1701), 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(4873), 22, + ACTIONS(1705), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203805,948 +205257,493 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [80550] = 32, - ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, anon_sym_satisfies, - ACTIONS(4597), 1, + [82095] = 8, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5017), 1, anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(4264), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4267), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4255), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80658] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4259), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4855), 1, - anon_sym_COLON, - ACTIONS(5395), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80766] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, anon_sym_satisfies, - ACTIONS(4589), 1, - anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [82155] = 7, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(4249), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, + ACTIONS(2362), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4252), 3, anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80874] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4831), 1, - anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(1701), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80982] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(1705), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4684), 1, - anon_sym_COLON, - ACTIONS(5395), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81090] = 19, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5411), 1, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5413), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [81172] = 14, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_satisfies, + [82213] = 7, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5521), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 12, + ACTIONS(4267), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4264), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4255), 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(4833), 16, + ACTIONS(4259), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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_satisfies, - [81244] = 26, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_satisfies, + [82271] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(1994), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81340] = 27, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1992), 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, + [82333] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(1976), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81438] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5521), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 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, + [82395] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3888), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(1994), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 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(4833), 15, - 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_satisfies, - [81516] = 23, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1992), 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, + [82457] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3888), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(1976), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 8, - 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_satisfies, - [81606] = 24, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 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, + [82519] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5389), 2, + ACTIONS(1994), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 8, - 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_satisfies, - [81698] = 25, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1992), 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, + [82581] = 9, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5389), 2, + ACTIONS(1976), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81792] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5521), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 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, + [82643] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5542), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5544), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -204755,60 +205752,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(4833), 15, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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_satisfies, - [81868] = 17, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, anon_sym_satisfies, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5521), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [82697] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 11, + ACTIONS(5546), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5548), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -204817,801 +205802,627 @@ 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(4833), 14, + ACTIONS(3433), 23, sym__ternary_qmark, - anon_sym_COLON, + 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, - [81946] = 21, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_satisfies, + [82751] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5546), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5548), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4835), 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(4833), 10, + ACTIONS(3433), 23, 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_satisfies, - [82032] = 28, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(5395), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 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, + [82805] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5546), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5548), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4833), 5, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [82132] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4702), 1, - anon_sym_COLON, - ACTIONS(5395), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82240] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_satisfies, + [82859] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(5550), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5554), 2, + anon_sym_get, + anon_sym_set, + STATE(3818), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4846), 1, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 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, + [82923] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5550), 1, + anon_sym_STAR, + ACTIONS(5556), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82348] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(5558), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5560), 2, + anon_sym_get, + anon_sym_set, + STATE(3033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4726), 1, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3667), 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, + [82989] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82456] = 32, - ACTIONS(825), 1, + ACTIONS(5231), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5562), 2, + sym_number, + sym_private_property_identifier, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [83055] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4734), 1, - anon_sym_COLON, - ACTIONS(5395), 1, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5403), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5405), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5407), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5411), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5423), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(5564), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5417), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82564] = 32, - ACTIONS(825), 1, + [83163] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4738), 1, - anon_sym_COLON, - ACTIONS(5395), 1, + ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, + ACTIONS(5381), 1, anon_sym_GT_GT, - ACTIONS(5403), 1, + ACTIONS(5385), 1, anon_sym_AMP, - ACTIONS(5405), 1, + ACTIONS(5387), 1, anon_sym_CARET, - ACTIONS(5407), 1, + ACTIONS(5389), 1, anon_sym_PIPE, - ACTIONS(5411), 1, + ACTIONS(5393), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, + ACTIONS(5397), 1, anon_sym_LT, - ACTIONS(5423), 1, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, + ACTIONS(5407), 1, sym__ternary_qmark, - STATE(1488), 1, + ACTIONS(5566), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, + ACTIONS(5383), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5417), 3, + ACTIONS(5399), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82672] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + [83271] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5231), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5568), 2, + sym_number, + sym_private_property_identifier, + STATE(3042), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4916), 1, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3667), 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, + [83337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(4779), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82780] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4781), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4918), 1, - anon_sym_COLON, - ACTIONS(5395), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83387] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(4874), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82888] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4876), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4920), 1, - anon_sym_COLON, - ACTIONS(5395), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82996] = 8, - ACTIONS(3509), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83437] = 6, + ACTIONS(3532), 1, anon_sym_EQ, - ACTIONS(4264), 1, - anon_sym_QMARK, - ACTIONS(4782), 1, - anon_sym_LBRACK, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3647), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4266), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(3429), 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(3439), 22, + ACTIONS(3433), 26, + 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, @@ -205631,37 +206442,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83056] = 6, - ACTIONS(4690), 1, - anon_sym_LBRACK, + [83493] = 7, + ACTIONS(5570), 1, + anon_sym_LPAREN, + ACTIONS(5573), 1, + anon_sym_COLON, + ACTIONS(5575), 1, + anon_sym_LT, + ACTIONS(5578), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3429), 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(3439), 25, + ACTIONS(3433), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205681,40 +206493,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83112] = 7, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, + [83551] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3473), 4, + ACTIONS(5582), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5584), 2, + anon_sym_get, + anon_sym_set, + STATE(3723), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [83615] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(5580), 1, + anon_sym_STAR, + ACTIONS(5586), 1, + anon_sym_async, + 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(3092), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 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, + [83681] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5216), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5218), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 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), 22, + ACTIONS(3433), 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -205732,17 +206651,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83170] = 4, + [83735] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + STATE(3807), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [83799] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5313), 1, + anon_sym_STAR, + ACTIONS(5315), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 5, + ACTIONS(5317), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5321), 2, + anon_sym_get, + anon_sym_set, + STATE(3093), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(1843), 13, + ACTIONS(3667), 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, + [83865] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5592), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5594), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205756,7 +206785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 23, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -205780,17 +206809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83222] = 4, + [83919] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1745), 13, + ACTIONS(4896), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205804,10 +206827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 23, + ACTIONS(4898), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -205828,18 +206856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83274] = 5, - ACTIONS(5524), 1, - sym__automatic_semicolon, + [83969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1755), 13, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205853,10 +206874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 23, + ACTIONS(1849), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -205877,36 +206903,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83328] = 5, + [84019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4457), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4796), 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, + ACTIONS(4798), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205926,24 +206950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83382] = 9, - ACTIONS(825), 1, + [84069] = 9, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4871), 12, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205956,11 +206980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 22, + ACTIONS(4802), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205979,428 +207003,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [83444] = 32, - ACTIONS(825), 1, + [84131] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4597), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4712), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83552] = 32, - ACTIONS(825), 1, + [84239] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4855), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4804), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83660] = 32, - ACTIONS(825), 1, + [84347] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4589), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4816), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83768] = 32, - ACTIONS(825), 1, + [84455] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4831), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4574), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83876] = 32, - ACTIONS(825), 1, + [84563] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4684), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4616), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83984] = 19, - ACTIONS(825), 1, + [84671] = 19, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 7, + ACTIONS(4722), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -206408,10 +207432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 13, + ACTIONS(4724), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -206422,35 +207446,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [84066] = 14, - ACTIONS(825), 1, + [84753] = 14, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5526), 1, + ACTIONS(5596), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 12, + ACTIONS(4722), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206463,10 +207487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 16, + ACTIONS(4724), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -206480,184 +207504,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [84138] = 26, - ACTIONS(825), 1, + [84825] = 26, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 7, + ACTIONS(4724), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84234] = 27, - ACTIONS(825), 1, + [84921] = 27, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5453), 1, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 6, + ACTIONS(4724), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84332] = 17, - ACTIONS(825), 1, + [85019] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5526), 1, + ACTIONS(5596), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 8, + ACTIONS(4722), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -206666,10 +207690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 15, + ACTIONS(4724), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -206682,244 +207706,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [84410] = 23, - ACTIONS(825), 1, + [85097] = 23, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 3, + ACTIONS(4722), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4724), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84500] = 24, - ACTIONS(825), 1, + [85187] = 24, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4724), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84592] = 25, - ACTIONS(825), 1, + [85279] = 25, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 7, + ACTIONS(4724), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84686] = 16, - ACTIONS(825), 1, + [85373] = 16, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5526), 1, + ACTIONS(5596), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 10, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -206930,10 +207954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 15, + ACTIONS(4724), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -206946,64 +207970,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [84762] = 21, - ACTIONS(825), 1, + [85449] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5357), 1, + anon_sym_STAR_STAR, + ACTIONS(5596), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(4724), 14, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [85527] = 21, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 5, + ACTIONS(4722), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 10, + ACTIONS(4724), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -207011,718 +208096,714 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84848] = 28, - ACTIONS(825), 1, + [85613] = 28, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5453), 1, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 5, + ACTIONS(4724), 5, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84948] = 32, - ACTIONS(825), 1, + [85713] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4702), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4704), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85056] = 32, - ACTIONS(825), 1, + [85821] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4846), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4869), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85164] = 32, - ACTIONS(825), 1, + [85929] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4726), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4608), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85272] = 32, - ACTIONS(825), 1, + [86037] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4734), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4511), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85380] = 32, - ACTIONS(825), 1, + [86145] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4738), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4559), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85488] = 32, - ACTIONS(825), 1, + [86253] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4916), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4561), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85596] = 32, - ACTIONS(825), 1, + [86361] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4918), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4563), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85704] = 32, - ACTIONS(825), 1, + [86469] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4920), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, + ACTIONS(4618), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85812] = 7, - ACTIONS(4391), 1, - anon_sym_QMARK, + [86577] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4510), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4507), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4503), 11, + ACTIONS(4861), 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(4505), 22, + ACTIONS(4863), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207742,39 +208823,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85870] = 8, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3571), 1, - anon_sym_COLON, - ACTIONS(4782), 1, - anon_sym_LBRACK, + [86627] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4266), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(1923), 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), 22, + ACTIONS(1925), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207794,17 +208870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85930] = 4, + [86677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1803), 13, + ACTIONS(1933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207818,10 +208888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 23, + ACTIONS(1935), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207842,17 +208917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85982] = 4, + [86727] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1857), 13, + ACTIONS(1943), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207866,10 +208935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1859), 23, + ACTIONS(1945), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207890,18 +208964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86034] = 5, - ACTIONS(5529), 1, - sym__automatic_semicolon, + [86777] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1881), 13, + ACTIONS(1757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207915,10 +208982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 23, + ACTIONS(1759), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207939,18 +209011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86088] = 5, - ACTIONS(5531), 1, - sym__automatic_semicolon, + [86827] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1893), 13, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207964,10 +209029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 23, + ACTIONS(1769), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207988,19 +209058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86142] = 7, - ACTIONS(5533), 1, + [86877] = 9, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(5536), 1, - anon_sym_COLON, - ACTIONS(5538), 1, + ACTIONS(5397), 1, anon_sym_LT, - ACTIONS(5541), 1, - anon_sym_QMARK, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 12, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208013,13 +209088,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, - sym__automatic_semicolon, + ACTIONS(4802), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208037,164 +209110,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_satisfies, + [86939] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - [86200] = 4, + ACTIONS(4712), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, + anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1935), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1939), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1941), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87047] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4804), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5373), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [87155] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - [86252] = 4, + ACTIONS(4816), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, + anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1735), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87263] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4574), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5381), 1, anon_sym_GT_GT, + ACTIONS(5385), 1, anon_sym_AMP, + ACTIONS(5387), 1, + anon_sym_CARET, + ACTIONS(5389), 1, anon_sym_PIPE, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5373), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87371] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4616), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5373), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [87479] = 19, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [86304] = 5, - ACTIONS(5543), 1, - sym__automatic_semicolon, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1867), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(1869), 23, + ACTIONS(4724), 13, 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_BQUOTE, anon_sym_satisfies, - [86358] = 4, + [87561] = 14, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5599), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, 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(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208205,610 +209593,527 @@ 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(1921), 23, + ACTIONS(4724), 16, 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_BQUOTE, anon_sym_satisfies, - [86410] = 3, + [87633] = 26, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, + anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4678), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 28, - sym__automatic_semicolon, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [87729] = 27, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5377), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 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, - [86460] = 3, + ACTIONS(5397), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4760), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4762), 28, - sym__automatic_semicolon, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [87827] = 17, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4135), 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(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 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, - [86510] = 3, + ACTIONS(5599), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4682), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5391), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 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(4684), 28, - sym__automatic_semicolon, + ACTIONS(4724), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [86560] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5226), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5545), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5547), 2, - anon_sym_get, - anon_sym_set, - STATE(3752), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [86624] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, + [87905] = 23, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [86698] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [86774] = 3, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4764), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4766), 28, - sym__automatic_semicolon, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [87995] = 24, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4135), 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(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 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, - [86824] = 3, + ACTIONS(5397), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4768), 13, - anon_sym_STAR, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4770), 28, - sym__automatic_semicolon, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4724), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [88087] = 25, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5373), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 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, + ACTIONS(4724), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [86874] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4758), 1, - anon_sym_LBRACK, - ACTIONS(5226), 1, - anon_sym_STAR, - ACTIONS(5228), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5230), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5234), 2, - anon_sym_get, - anon_sym_set, - STATE(3064), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [88181] = 16, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5599), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 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, - [86940] = 4, - ACTIONS(5489), 1, - sym_regex_flags, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 17, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_as, + anon_sym_SLASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 10, 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(5250), 23, - sym__automatic_semicolon, + ACTIONS(4724), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, 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_instanceof, + anon_sym_satisfies, + [88257] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - [86992] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5549), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5551), 2, - anon_sym_get, - anon_sym_set, - STATE(3736), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5599), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [87056] = 5, - ACTIONS(1797), 1, - sym__automatic_semicolon, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1793), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -208817,844 +210122,773 @@ 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(1795), 25, + ACTIONS(4724), 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_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, + [88335] = 21, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [87110] = 3, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4686), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4722), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4688), 28, - sym__automatic_semicolon, + ACTIONS(4724), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [87160] = 32, - ACTIONS(825), 1, + [88421] = 28, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5395), 1, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, + ACTIONS(5381), 1, anon_sym_GT_GT, - ACTIONS(5403), 1, + ACTIONS(5385), 1, anon_sym_AMP, - ACTIONS(5405), 1, + ACTIONS(5387), 1, anon_sym_CARET, - ACTIONS(5407), 1, + ACTIONS(5389), 1, anon_sym_PIPE, - ACTIONS(5411), 1, + ACTIONS(5393), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, + ACTIONS(5397), 1, anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - ACTIONS(5553), 1, - anon_sym_COLON, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, + ACTIONS(5383), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5417), 3, + ACTIONS(5399), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87268] = 6, - ACTIONS(4782), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4785), 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, + ACTIONS(4724), 5, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [88521] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4704), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 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, - [87324] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5491), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5555), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5557), 2, - anon_sym_get, - anon_sym_set, - STATE(3828), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [87388] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5559), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5561), 2, - anon_sym_get, - anon_sym_set, - STATE(3742), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [87452] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5563), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5565), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5567), 2, - anon_sym_get, - anon_sym_set, - STATE(3771), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5397), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 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, - [87516] = 9, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(3571), 1, - anon_sym_COLON, - ACTIONS(4266), 1, - anon_sym_extends, - ACTIONS(4782), 1, - anon_sym_LBRACK, + ACTIONS(5405), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5569), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3435), 11, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88629] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87578] = 3, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88737] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4608), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87628] = 3, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88845] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4511), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87678] = 3, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, 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, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88953] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4559), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87728] = 3, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89061] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4561), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87778] = 3, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4595), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4597), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [89169] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [87828] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5395), 1, + ACTIONS(4563), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, + ACTIONS(5381), 1, anon_sym_GT_GT, - ACTIONS(5403), 1, + ACTIONS(5385), 1, anon_sym_AMP, - ACTIONS(5405), 1, + ACTIONS(5387), 1, anon_sym_CARET, - ACTIONS(5407), 1, + ACTIONS(5389), 1, anon_sym_PIPE, - ACTIONS(5411), 1, + ACTIONS(5393), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, + ACTIONS(5397), 1, anon_sym_LT, - ACTIONS(5423), 1, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, + ACTIONS(5407), 1, sym__ternary_qmark, - ACTIONS(5573), 1, - anon_sym_COLON, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, + ACTIONS(5383), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + ACTIONS(5401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5417), 3, + ACTIONS(5399), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87936] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5575), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5577), 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, - anon_sym_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, + [89277] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4618), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, anon_sym_AMP_AMP, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, anon_sym_PERCENT, + ACTIONS(5395), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87990] = 5, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5579), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5581), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5371), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5401), 2, 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, + ACTIONS(5403), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 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, - [88044] = 5, + [89385] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5579), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5581), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209668,10 +210902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4867), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209692,18 +210931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88098] = 5, + [89435] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5579), 2, + ACTIONS(5602), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5581), 3, + ACTIONS(5604), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209717,7 +210956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209741,29 +210980,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88152] = 10, + [89489] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5583), 1, + ACTIONS(4923), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5585), 2, + ACTIONS(5606), 2, sym_number, sym_private_property_identifier, - ACTIONS(5587), 2, + ACTIONS(5608), 2, anon_sym_get, anon_sym_set, - STATE(3851), 3, + STATE(3839), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -209795,31 +211034,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88216] = 11, - ACTIONS(1621), 1, + [89553] = 10, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5583), 1, + ACTIONS(5610), 1, anon_sym_STAR, - ACTIONS(5589), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5591), 2, + ACTIONS(5612), 2, sym_number, sym_private_property_identifier, - ACTIONS(5593), 2, + ACTIONS(5614), 2, anon_sym_get, anon_sym_set, - STATE(3028), 3, + STATE(3800), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -209829,11 +211066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -209850,82 +211088,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88282] = 7, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4782), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4785), 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), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - 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, - [88340] = 11, + [89617] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5290), 1, + ACTIONS(5610), 1, anon_sym_STAR, - ACTIONS(5292), 1, + ACTIONS(5616), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5595), 2, + ACTIONS(5618), 2, sym_number, sym_private_property_identifier, - STATE(3041), 3, + ACTIONS(5620), 2, + anon_sym_get, + anon_sym_set, + STATE(3045), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -209935,7 +211122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 20, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -209956,502 +211143,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88406] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + [89683] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - ACTIONS(5597), 1, - anon_sym_COLON, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5419), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88514] = 7, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(4782), 1, - anon_sym_LBRACK, + ACTIONS(5622), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 2, + ACTIONS(5624), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5626), 2, + anon_sym_get, + anon_sym_set, + STATE(3046), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4785), 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), 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, - [88572] = 4, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3667), 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, + [89749] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5419), 1, + anon_sym_STAR, + ACTIONS(5622), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1785), 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(1787), 26, + ACTIONS(5626), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5628), 2, + sym_number, + sym_private_property_identifier, + STATE(3047), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3667), 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, + [89815] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 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, - [88624] = 3, + ACTIONS(5313), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 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(4652), 28, + ACTIONS(5630), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5632), 2, + anon_sym_get, + anon_sym_set, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88674] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5599), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4932), 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(4934), 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, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [88744] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5602), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4513), 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(4517), 15, - 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [88820] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88928] = 12, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5605), 1, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 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(4866), 19, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [89879] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5634), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5636), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5638), 2, + anon_sym_get, + anon_sym_set, + STATE(3824), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [88996] = 11, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [89943] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5290), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(5292), 1, + ACTIONS(5622), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, + ACTIONS(5626), 2, anon_sym_get, anon_sym_set, - ACTIONS(5608), 2, + ACTIONS(5640), 2, sym_number, sym_private_property_identifier, - STATE(3010), 3, + STATE(3049), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210461,7 +211395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 20, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210482,172 +211416,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89062] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4772), 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(4774), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + [90009] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 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, - [89112] = 3, + ACTIONS(5642), 1, + anon_sym_STAR, 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), 28, + ACTIONS(5644), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5646), 2, + anon_sym_get, + anon_sym_set, + STATE(3855), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89162] = 5, - 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(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, - [89216] = 10, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, + [90073] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5610), 1, + ACTIONS(5648), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5612), 2, + ACTIONS(5650), 2, sym_number, sym_private_property_identifier, - ACTIONS(5614), 2, + ACTIONS(5652), 2, anon_sym_get, anon_sym_set, - STATE(3790), 3, + STATE(3744), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -210679,31 +211524,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89280] = 11, - ACTIONS(1621), 1, + [90137] = 10, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5610), 1, + ACTIONS(5654), 1, anon_sym_STAR, - ACTIONS(5616), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5618), 2, + ACTIONS(5656), 2, sym_number, sym_private_property_identifier, - ACTIONS(5620), 2, + ACTIONS(5658), 2, anon_sym_get, anon_sym_set, - STATE(3108), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -210713,11 +211556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3663), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -210734,373 +211578,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89346] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - ACTIONS(5622), 1, - anon_sym_COLON, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89454] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5624), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4932), 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(4934), 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_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [89524] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5627), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4513), 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(4517), 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_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [89600] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_RBRACK, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_GT_GT, - ACTIONS(5461), 1, - anon_sym_AMP, - ACTIONS(5463), 1, - anon_sym_CARET, - ACTIONS(5465), 1, - anon_sym_PIPE, - ACTIONS(5469), 1, - anon_sym_PERCENT, - ACTIONS(5471), 1, - anon_sym_STAR_STAR, - ACTIONS(5473), 1, - anon_sym_LT, - ACTIONS(5481), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5449), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5459), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5467), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5477), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5479), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5475), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89708] = 12, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5630), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 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(4866), 19, - 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_satisfies, - [89776] = 10, - ACTIONS(2328), 1, + [90201] = 11, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(5654), 1, + anon_sym_STAR, + ACTIONS(5660), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4754), 2, + ACTIONS(5662), 2, sym_number, sym_private_property_identifier, - STATE(3737), 3, + ACTIONS(5664), 2, + anon_sym_get, + anon_sym_set, + STATE(3106), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 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(2352), 23, + ACTIONS(3667), 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, @@ -211113,31 +211633,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89840] = 11, + [90267] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5634), 1, anon_sym_STAR, - ACTIONS(5306), 1, + ACTIONS(5666), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - ACTIONS(5312), 2, + ACTIONS(5670), 2, anon_sym_get, anon_sym_set, - STATE(3101), 3, + STATE(3109), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -211147,7 +211667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3663), 20, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -211168,171 +211688,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89906] = 32, - ACTIONS(825), 1, + [90333] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5395), 1, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5403), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5405), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5407), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5411), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5423), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - ACTIONS(5633), 1, + ACTIONS(5672), 1, anon_sym_COLON, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5417), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90014] = 33, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, + [90441] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4888), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4792), 1, - anon_sym_of, - ACTIONS(5637), 1, anon_sym_in, - ACTIONS(5640), 1, anon_sym_GT, - ACTIONS(5642), 1, - anon_sym_AMP_AMP, - ACTIONS(5644), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5652), 1, - anon_sym_CARET, - ACTIONS(5654), 1, anon_sym_PIPE, - ACTIONS(5658), 1, - anon_sym_PERCENT, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5662), 1, - anon_sym_LT, - ACTIONS(5670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5648), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5656), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(4890), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5664), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90124] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90491] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5201), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(1777), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211346,10 +211829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1779), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -211370,75 +211858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90178] = 12, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5131), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5676), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5199), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5502), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5739), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5674), 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, - [90246] = 6, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(3583), 1, - anon_sym_EQ, + [90541] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211452,10 +211876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1789), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -211476,16 +211905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90302] = 5, - ACTIONS(1807), 1, - sym__automatic_semicolon, + [90591] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1803), 13, + ACTIONS(4892), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211499,11 +211923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 25, + ACTIONS(4894), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -211525,34 +211952,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90356] = 3, + [90641] = 7, + ACTIONS(3549), 1, + anon_sym_EQ, + ACTIONS(4293), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4696), 13, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(4698), 28, - sym__automatic_semicolon, + ACTIONS(3433), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -211572,87 +212002,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90406] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [90699] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5674), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5676), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5678), 2, + anon_sym_get, + anon_sym_set, + STATE(3753), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(2352), 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, + [90763] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5395), 1, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5403), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5405), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5407), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5411), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5423), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - ACTIONS(5678), 1, + ACTIONS(5680), 1, anon_sym_COLON, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5417), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90514] = 3, + [90871] = 13, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5682), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4633), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4624), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211663,21 +212170,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(4635), 28, - sym__automatic_semicolon, + ACTIONS(4626), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -211691,17 +212189,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_satisfies, + [90941] = 16, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - [90564] = 3, + ACTIONS(5685), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4776), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -211710,21 +212232,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(4778), 28, - sym__automatic_semicolon, + ACTIONS(4633), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -211738,168 +212250,106 @@ 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, + [91017] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [90614] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4700), 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(4702), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4640), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_AMP_AMP, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5343), 1, + anon_sym_GT_GT, + ACTIONS(5347), 1, + anon_sym_AMP, + ACTIONS(5349), 1, anon_sym_CARET, + ACTIONS(5351), 1, + anon_sym_PIPE, + ACTIONS(5355), 1, anon_sym_PERCENT, + ACTIONS(5357), 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, - [90664] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5359), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [90738] = 3, + ACTIONS(5367), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5369), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1857), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5333), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5345), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1859), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5361), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [91125] = 12, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [90788] = 3, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1881), 13, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211910,21 +212360,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(1883), 28, - sym__automatic_semicolon, + ACTIONS(4678), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -211940,60 +212381,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_satisfies, + [91193] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - [90838] = 3, + ACTIONS(5339), 1, + anon_sym_AMP_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5343), 1, + anon_sym_GT_GT, + ACTIONS(5347), 1, + anon_sym_AMP, + ACTIONS(5349), 1, + anon_sym_CARET, + ACTIONS(5351), 1, + anon_sym_PIPE, + ACTIONS(5355), 1, + anon_sym_PERCENT, + ACTIONS(5357), 1, + anon_sym_STAR_STAR, + ACTIONS(5359), 1, + anon_sym_LT, + ACTIONS(5367), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5369), 1, + sym__ternary_qmark, + ACTIONS(5691), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5333), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5345), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5361), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [91301] = 13, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [90888] = 3, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1939), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4624), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212004,21 +212495,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(1941), 28, - sym__automatic_semicolon, + ACTIONS(4626), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212032,17 +212514,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_satisfies, + [91371] = 16, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - [90938] = 3, + ACTIONS(5696), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1735), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -212051,21 +212557,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(1737), 28, - sym__automatic_semicolon, + ACTIONS(4633), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212079,15 +212575,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [91447] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(4640), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5381), 1, + anon_sym_GT_GT, + ACTIONS(5385), 1, + anon_sym_AMP, + ACTIONS(5387), 1, + anon_sym_CARET, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5393), 1, + anon_sym_PERCENT, + ACTIONS(5395), 1, + anon_sym_STAR_STAR, + ACTIONS(5397), 1, + anon_sym_LT, + ACTIONS(5405), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5407), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5373), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5383), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5391), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5401), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5403), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5399), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91555] = 12, + ACTIONS(821), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [90988] = 3, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5699), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212098,21 +212685,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(4656), 28, - sym__automatic_semicolon, + ACTIONS(4678), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212128,48 +212706,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, - [91038] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, + [91623] = 11, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5449), 1, anon_sym_STAR, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5702), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5704), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5706), 2, anon_sym_get, anon_sym_set, - STATE(3822), 3, + STATE(3027), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 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(2352), 20, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212190,94 +212762,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91114] = 32, - ACTIONS(825), 1, + [91689] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5395), 1, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5397), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5403), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5405), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5407), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5411), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5413), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5415), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5423), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - ACTIONS(5680), 1, + ACTIONS(5708), 1, anon_sym_COLON, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5401), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5409), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(5365), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5361), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91797] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5339), 1, + anon_sym_AMP_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5343), 1, + anon_sym_GT_GT, + ACTIONS(5347), 1, + anon_sym_AMP, + ACTIONS(5349), 1, + anon_sym_CARET, + ACTIONS(5351), 1, + anon_sym_PIPE, + ACTIONS(5355), 1, + anon_sym_PERCENT, + ACTIONS(5357), 1, + anon_sym_STAR_STAR, + ACTIONS(5359), 1, + anon_sym_LT, + ACTIONS(5367), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5369), 1, + sym__ternary_qmark, + ACTIONS(5710), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5333), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5335), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5345), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5353), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5363), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5417), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91222] = 5, + [91905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5682), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5684), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4900), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212291,10 +212932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4902), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -212315,92 +212961,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91276] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5381), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5686), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5688), 2, - anon_sym_get, - anon_sym_set, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [91340] = 10, + [91955] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5690), 1, + ACTIONS(5712), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 2, + ACTIONS(5714), 2, sym_number, sym_private_property_identifier, - ACTIONS(5694), 2, + ACTIONS(5716), 2, anon_sym_get, anon_sym_set, - STATE(3798), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 21, anon_sym_export, anon_sym_type, @@ -212423,117 +213015,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91404] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - ACTIONS(5696), 1, - anon_sym_COLON, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91512] = 11, + [92019] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5690), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5718), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, + ACTIONS(5720), 2, sym_number, sym_private_property_identifier, - ACTIONS(5702), 2, + ACTIONS(5722), 2, anon_sym_get, anon_sym_set, - STATE(3023), 3, + STATE(3078), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(3663), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212554,61 +213070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91578] = 6, - ACTIONS(4507), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4393), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4510), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4503), 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(4505), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91634] = 3, + [92085] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1785), 13, + ACTIONS(4904), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212622,7 +213088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 28, + ACTIONS(4906), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -212651,11 +213117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91684] = 3, + [92135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 13, + ACTIONS(4908), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212669,7 +213135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4706), 28, + ACTIONS(4910), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -212698,115 +213164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91734] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5704), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5706), 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, - anon_sym_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, - [91788] = 3, + [92185] = 4, + ACTIONS(5491), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1867), 13, + ACTIONS(5239), 16, 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(1869), 28, - sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91838] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5194), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5196), 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, @@ -212819,56 +213185,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [91892] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4708), 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(4710), 28, + ACTIONS(5241), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -212885,299 +213209,288 @@ 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, - [91942] = 32, - ACTIONS(825), 1, + [92237] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5453), 1, + ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5455), 1, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5343), 1, anon_sym_GT_GT, - ACTIONS(5461), 1, + ACTIONS(5347), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5349), 1, anon_sym_CARET, - ACTIONS(5465), 1, + ACTIONS(5351), 1, anon_sym_PIPE, - ACTIONS(5469), 1, + ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5471), 1, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5473), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5481), 1, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - ACTIONS(5483), 1, + ACTIONS(5369), 1, sym__ternary_qmark, - ACTIONS(5708), 1, - anon_sym_RBRACK, - STATE(1488), 1, + ACTIONS(5724), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5447), 2, + ACTIONS(5333), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5449), 2, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5459), 2, + ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5467), 2, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5477), 2, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5479), 2, + ACTIONS(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, + ACTIONS(5361), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92050] = 7, - ACTIONS(5710), 1, - anon_sym_LPAREN, - ACTIONS(5713), 1, - anon_sym_COLON, - ACTIONS(5715), 1, - anon_sym_LT, - ACTIONS(5718), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4642), 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(4644), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + [92345] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 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, - [92108] = 5, - ACTIONS(1861), 1, - sym__automatic_semicolon, + ACTIONS(5136), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1857), 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(1859), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5726), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5728), 2, + anon_sym_get, + anon_sym_set, + STATE(3745), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(2352), 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, + [92409] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4765), 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, - [92162] = 3, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 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(1921), 28, + ACTIONS(5140), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + STATE(3068), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3667), 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, + [92475] = 32, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5339), 1, anon_sym_AMP_AMP, + ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5343), 1, + anon_sym_GT_GT, + ACTIONS(5347), 1, + anon_sym_AMP, + ACTIONS(5349), 1, anon_sym_CARET, + ACTIONS(5351), 1, + anon_sym_PIPE, + ACTIONS(5355), 1, anon_sym_PERCENT, + ACTIONS(5357), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5359), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92212] = 3, + ACTIONS(5369), 1, + sym__ternary_qmark, + ACTIONS(5730), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5333), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5345), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5353), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5363), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(5365), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5361), 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, - [92262] = 9, - ACTIONS(825), 1, + [92583] = 9, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4871), 12, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213190,7 +213503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 22, + ACTIONS(4802), 22, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -213213,428 +213526,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [92324] = 32, - ACTIONS(825), 1, + [92645] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4597), 1, + ACTIONS(4712), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92432] = 32, - ACTIONS(825), 1, + [92753] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4855), 1, + ACTIONS(4804), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92540] = 32, - ACTIONS(825), 1, + [92861] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4589), 1, + ACTIONS(4816), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92648] = 32, - ACTIONS(825), 1, + [92969] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4831), 1, + ACTIONS(4574), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92756] = 32, - ACTIONS(825), 1, + [93077] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4684), 1, + ACTIONS(4616), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92864] = 19, - ACTIONS(825), 1, + [93185] = 19, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 7, + ACTIONS(4722), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -213642,7 +213955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 13, + ACTIONS(4724), 13, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -213656,35 +213969,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [92946] = 14, - ACTIONS(825), 1, + [93267] = 14, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5732), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 12, + ACTIONS(4722), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213697,7 +214010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 16, + ACTIONS(4724), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -213714,69 +214027,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93018] = 26, - ACTIONS(825), 1, + [93339] = 26, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 7, + ACTIONS(4724), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -213784,114 +214097,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93114] = 27, - ACTIONS(825), 1, + [93435] = 27, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 6, + ACTIONS(4724), 6, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93212] = 17, - ACTIONS(825), 1, + [93533] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5732), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 8, + ACTIONS(4722), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -213900,7 +214213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 15, + ACTIONS(4724), 15, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -213916,65 +214229,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93290] = 23, - ACTIONS(825), 1, + [93611] = 23, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 3, + ACTIONS(4722), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4724), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -213983,66 +214296,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93380] = 24, - ACTIONS(825), 1, + [93701] = 24, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 8, + ACTIONS(4724), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -214051,68 +214364,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93472] = 25, - ACTIONS(825), 1, + [93793] = 25, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 7, + ACTIONS(4724), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -214120,40 +214433,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93566] = 16, - ACTIONS(825), 1, + [93887] = 16, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5732), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 10, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -214164,7 +214477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 15, + ACTIONS(4724), 15, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -214180,41 +214493,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93642] = 17, - ACTIONS(825), 1, + [93963] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5720), 1, + ACTIONS(5732), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 11, + ACTIONS(4722), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -214226,7 +214539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 14, + ACTIONS(4724), 14, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -214241,61 +214554,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [93720] = 21, - ACTIONS(825), 1, + [94041] = 21, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 5, + ACTIONS(4722), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 10, + ACTIONS(4724), 10, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -214306,696 +214619,713 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93806] = 28, - ACTIONS(825), 1, + [94127] = 28, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 5, + ACTIONS(4724), 5, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93906] = 32, - ACTIONS(825), 1, + [94227] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4702), 1, + ACTIONS(4704), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94014] = 32, - ACTIONS(825), 1, + [94335] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4846), 1, + ACTIONS(4869), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94122] = 32, - ACTIONS(825), 1, + [94443] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4726), 1, + ACTIONS(4608), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94230] = 32, - ACTIONS(825), 1, + [94551] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4734), 1, + ACTIONS(4511), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94338] = 32, - ACTIONS(825), 1, + [94659] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4738), 1, + ACTIONS(4559), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94446] = 32, - ACTIONS(825), 1, + [94767] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4916), 1, + ACTIONS(4561), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94554] = 32, - ACTIONS(825), 1, + [94875] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4918), 1, + ACTIONS(4563), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94662] = 32, - ACTIONS(825), 1, + [94983] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4920), 1, + ACTIONS(4618), 1, anon_sym_of, - ACTIONS(5642), 1, + ACTIONS(5504), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, + ACTIONS(5506), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, + ACTIONS(5508), 1, anon_sym_GT_GT, - ACTIONS(5650), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5514), 1, anon_sym_CARET, - ACTIONS(5654), 1, + ACTIONS(5516), 1, anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5520), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, + ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - ACTIONS(5672), 1, + ACTIONS(5534), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5640), 2, + ACTIONS(5502), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, + ACTIONS(5510), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5656), 2, + ACTIONS(5518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + ACTIONS(5528), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(5530), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5664), 3, + ACTIONS(5526), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94770] = 5, - ACTIONS(1885), 1, - sym__automatic_semicolon, + [95091] = 13, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1881), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4624), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215006,18 +215336,73 @@ 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(1883), 25, + ACTIONS(4626), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + 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_satisfies, + [95161] = 16, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5738), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 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(4633), 15, + sym__ternary_qmark, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215031,23 +215416,109 @@ 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, + [95237] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, anon_sym_satisfies, - [94824] = 6, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(5011), 1, + ACTIONS(4640), 1, anon_sym_of, - ACTIONS(5723), 1, + ACTIONS(5504), 1, + anon_sym_AMP_AMP, + ACTIONS(5506), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5508), 1, + anon_sym_GT_GT, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_CARET, + ACTIONS(5516), 1, + anon_sym_PIPE, + ACTIONS(5520), 1, + anon_sym_PERCENT, + ACTIONS(5522), 1, + anon_sym_STAR_STAR, + ACTIONS(5524), 1, + anon_sym_LT, + ACTIONS(5532), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5534), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5497), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5502), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(5510), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95345] = 12, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5741), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 12, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 12, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -215055,19 +215526,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(4449), 26, - sym__automatic_semicolon, + ACTIONS(4678), 19, 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_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215083,21 +215547,17 @@ 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, - [94880] = 6, - ACTIONS(4601), 1, + [95413] = 4, + ACTIONS(3545), 1, anon_sym_EQ, - ACTIONS(5013), 1, - anon_sym_of, - ACTIONS(5726), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 12, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -215108,12 +215568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4603), 26, + ACTIONS(3433), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -215135,49 +215596,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94936] = 13, - ACTIONS(825), 1, + [95465] = 32, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5729), 1, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5339), 1, + anon_sym_AMP_AMP, + ACTIONS(5341), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5343), 1, + anon_sym_GT_GT, + ACTIONS(5347), 1, + anon_sym_AMP, + ACTIONS(5349), 1, + anon_sym_CARET, + ACTIONS(5351), 1, + anon_sym_PIPE, + ACTIONS(5355), 1, + anon_sym_PERCENT, + ACTIONS(5357), 1, + anon_sym_STAR_STAR, + ACTIONS(5359), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(5367), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5369), 1, + sym__ternary_qmark, + ACTIONS(5744), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + ACTIONS(5333), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5335), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5345), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5353), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5363), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5365), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4932), 12, + ACTIONS(5361), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95573] = 7, + ACTIONS(3588), 1, + anon_sym_EQ, + ACTIONS(4293), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(4934), 17, + ACTIONS(3433), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215191,41 +215719,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, - [95006] = 16, - ACTIONS(825), 1, + [95631] = 13, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5732), 1, + ACTIONS(5746), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4513), 11, + ACTIONS(4624), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -215236,9 +215762,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4517), 15, + ACTIONS(4626), 16, sym__ternary_qmark, - anon_sym_of, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215252,106 +215778,530 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95082] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + anon_sym_satisfies, + [95700] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [95769] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [95838] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5481), 2, + sym_number, + sym_private_property_identifier, + STATE(3782), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(2352), 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, + [95897] = 7, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(4293), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4825), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4828), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4207), 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(3433), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_of, - ACTIONS(5642), 1, anon_sym_AMP_AMP, - ACTIONS(5644), 1, anon_sym_PIPE_PIPE, - ACTIONS(5646), 1, - anon_sym_GT_GT, - ACTIONS(5650), 1, - anon_sym_AMP, - ACTIONS(5652), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5654), 1, - anon_sym_PIPE, - ACTIONS(5658), 1, anon_sym_PERCENT, - ACTIONS(5660), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95954] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5465), 2, + sym_number, + sym_private_property_identifier, + STATE(3757), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(2352), 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, + [96013] = 7, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3489), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3479), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3429), 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, - ACTIONS(5670), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3433), 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, - ACTIONS(5672), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96070] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4271), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4269), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3429), 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(3433), 22, sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + 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, + [96123] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5612), 2, + sym_number, + sym_private_property_identifier, + STATE(3800), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(2352), 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, + [96182] = 4, + ACTIONS(3588), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(3429), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5640), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5648), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5656), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5666), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 2, + ACTIONS(3433), 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, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5664), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95190] = 12, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_satisfies, + [96233] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5735), 1, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 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, + [96302] = 4, + ACTIONS(4329), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 12, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215362,12 +216312,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(4866), 19, + ACTIONS(4275), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -215383,50 +216340,47 @@ 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, - [95258] = 11, - ACTIONS(1621), 1, + [96353] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5322), 1, - anon_sym_STAR, - ACTIONS(5324), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5738), 2, + ACTIONS(5656), 2, sym_number, sym_private_property_identifier, - STATE(3045), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(3663), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 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, @@ -215439,111 +216393,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95324] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + [96412] = 17, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5395), 1, - anon_sym_AMP_AMP, - ACTIONS(5397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5399), 1, - anon_sym_GT_GT, - ACTIONS(5403), 1, - anon_sym_AMP, - ACTIONS(5405), 1, - anon_sym_CARET, - ACTIONS(5407), 1, - anon_sym_PIPE, - ACTIONS(5411), 1, - anon_sym_PERCENT, - ACTIONS(5413), 1, - anon_sym_STAR_STAR, - ACTIONS(5415), 1, - anon_sym_LT, - ACTIONS(5423), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5425), 1, - sym__ternary_qmark, - ACTIONS(5740), 1, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5749), 1, + anon_sym_RBRACE, + STATE(2766), 1, + sym_override_modifier, + STATE(4944), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [96489] = 6, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5389), 2, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4828), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5391), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5401), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5409), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5419), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 2, + ACTIONS(3433), 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, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95432] = 4, - ACTIONS(3471), 1, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96544] = 6, + ACTIONS(4683), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4087), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4686), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(3439), 27, + ACTIONS(3433), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -215563,170 +216551,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95484] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + [96599] = 6, + ACTIONS(4840), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5471), 1, - anon_sym_STAR_STAR, - ACTIONS(5526), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 11, - anon_sym_STAR, - anon_sym_in, + ACTIONS(4359), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4843), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4836), 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(4833), 14, + ACTIONS(4838), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACK, + 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, - [95562] = 31, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, anon_sym_satisfies, - ACTIONS(5746), 1, - anon_sym_AMP_AMP, - ACTIONS(5748), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, - anon_sym_GT_GT, - ACTIONS(5754), 1, - anon_sym_AMP, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5762), 1, - anon_sym_PERCENT, - ACTIONS(5764), 1, - anon_sym_STAR_STAR, - ACTIONS(5766), 1, - anon_sym_LT, - ACTIONS(5774), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [96654] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5742), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5744), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5752), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5770), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5772), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5768), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95667] = 13, - ACTIONS(239), 1, + ACTIONS(5329), 2, + sym_number, + sym_private_property_identifier, + STATE(3786), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(2352), 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, + [96713] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5451), 2, sym_number, sym_private_property_identifier, - STATE(3822), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 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, @@ -215754,33 +216702,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95736] = 8, + [96772] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5421), 2, sym_number, sym_private_property_identifier, - STATE(3825), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(2352), 23, anon_sym_export, anon_sym_type, @@ -215805,24 +216753,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95795] = 8, - ACTIONS(1621), 1, + [96831] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, + ACTIONS(5552), 2, sym_number, sym_private_property_identifier, - STATE(3314), 3, + STATE(3818), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -215832,7 +216780,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(2352), 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, + [96890] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5245), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215856,24 +216860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95854] = 8, + [96959] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5778), 2, + ACTIONS(5676), 2, sym_number, sym_private_property_identifier, - STATE(3763), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -215907,13 +216911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95913] = 4, - ACTIONS(4297), 1, + [97018] = 4, + ACTIONS(4277), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215927,7 +216931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 26, + ACTIONS(4275), 26, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -215954,33 +216958,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95964] = 8, + [97069] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5499), 2, + ACTIONS(5714), 2, sym_number, sym_private_property_identifier, - STATE(3725), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -216005,13 +217009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96023] = 4, - ACTIONS(4169), 1, - anon_sym_extends, + [97128] = 6, + ACTIONS(4691), 1, + anon_sym_EQ, + ACTIONS(5026), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4695), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216025,13 +217034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 26, + ACTIONS(4693), 23, 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, @@ -216052,36 +217058,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96074] = 6, - ACTIONS(4601), 1, + [97183] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5003), 2, + sym_number, + sym_private_property_identifier, + STATE(3352), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5013), 1, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3667), 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, + [97242] = 7, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(2362), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4605), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4599), 13, + ACTIONS(4249), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4252), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1701), 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(4603), 23, + ACTIONS(1705), 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, @@ -216101,65 +217159,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96129] = 23, - ACTIONS(1621), 1, + [97299] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(3771), 1, - anon_sym_AT, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5780), 1, - anon_sym_STAR, - ACTIONS(5782), 1, - anon_sym_async, - ACTIONS(5786), 1, - anon_sym_static, - ACTIONS(5788), 1, - anon_sym_readonly, - ACTIONS(5792), 1, - anon_sym_declare, - ACTIONS(5794), 1, - anon_sym_abstract, - ACTIONS(5796), 1, - anon_sym_accessor, - STATE(2663), 1, - sym_method_definition, - STATE(2704), 1, - sym_accessibility_modifier, - STATE(2733), 1, - aux_sym_export_statement_repeat1, - STATE(2760), 1, - sym_override_modifier, - STATE(2766), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5784), 2, + ACTIONS(5606), 2, sym_number, sym_private_property_identifier, - ACTIONS(5790), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3683), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3035), 3, + STATE(3839), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 13, + ACTIONS(3879), 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(2352), 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, @@ -216167,24 +217210,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96218] = 8, + [97358] = 7, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(4267), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4264), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4255), 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(4259), 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, + [97415] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5369), 2, + ACTIONS(5751), 2, sym_number, sym_private_property_identifier, - STATE(3841), 3, + STATE(3819), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216218,35 +217311,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96277] = 13, - ACTIONS(239), 1, + [97474] = 5, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3651), 3, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3429), 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(3433), 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, + [97527] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5753), 2, sym_number, sym_private_property_identifier, - STATE(3822), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 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, @@ -216274,33 +217410,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96346] = 8, + [97586] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3879), 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(1974), 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, + [97637] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5435), 2, + ACTIONS(5473), 2, sym_number, sym_private_property_identifier, - STATE(3726), 3, + STATE(3829), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(2352), 23, anon_sym_export, anon_sym_type, @@ -216325,30 +217508,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96405] = 8, + [97696] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5485), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3747), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -216376,24 +217564,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96464] = 8, + [97765] = 31, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5759), 1, + anon_sym_AMP_AMP, + ACTIONS(5761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5763), 1, + anon_sym_GT_GT, + ACTIONS(5767), 1, + anon_sym_AMP, + ACTIONS(5769), 1, + anon_sym_CARET, + ACTIONS(5771), 1, + anon_sym_PIPE, + ACTIONS(5775), 1, + anon_sym_PERCENT, + ACTIONS(5777), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_LT, + ACTIONS(5787), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5789), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5755), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5757), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5765), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5785), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5781), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97870] = 16, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + STATE(2766), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5507), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3728), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5791), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [97945] = 16, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5794), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4631), 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(4633), 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_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [98020] = 31, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5759), 1, + anon_sym_AMP_AMP, + ACTIONS(5761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5763), 1, + anon_sym_GT_GT, + ACTIONS(5767), 1, + anon_sym_AMP, + ACTIONS(5769), 1, + anon_sym_CARET, + ACTIONS(5771), 1, + anon_sym_PIPE, + ACTIONS(5775), 1, + anon_sym_PERCENT, + ACTIONS(5777), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_LT, + ACTIONS(5787), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5789), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5755), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5757), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5765), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5785), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5781), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98125] = 12, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5797), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4676), 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(4678), 18, + 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_satisfies, + [98192] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5800), 2, + sym_number, + sym_private_property_identifier, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216403,7 +217912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216427,50 +217936,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96523] = 8, + [98251] = 19, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(2028), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, + ACTIONS(5806), 1, + anon_sym_async, + ACTIONS(5808), 1, + anon_sym_static, + ACTIONS(5810), 1, + anon_sym_readonly, + ACTIONS(5816), 1, + anon_sym_override, + STATE(2740), 1, + sym_accessibility_modifier, + STATE(2780), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5545), 2, + ACTIONS(5437), 2, sym_number, sym_private_property_identifier, - STATE(3752), 3, + ACTIONS(5804), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5812), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5814), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3680), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 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(2352), 23, + STATE(5180), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5802), 14, anon_sym_export, anon_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, @@ -216478,59 +217998,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96582] = 17, + [98332] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5798), 1, - anon_sym_RBRACE, - STATE(2764), 1, - sym_override_modifier, - STATE(4950), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5469), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, + STATE(3775), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 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(2352), 18, + ACTIONS(2352), 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, @@ -216538,34 +218049,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96659] = 4, - ACTIONS(3599), 1, - anon_sym_EQ, + [98391] = 7, + ACTIONS(4085), 1, + anon_sym_QMARK, + ACTIONS(4087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4683), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3429), 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(3439), 26, + ACTIONS(3433), 22, 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, @@ -216585,24 +218099,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96710] = 8, + [98448] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5549), 2, + ACTIONS(5582), 2, sym_number, sym_private_property_identifier, - STATE(3736), 3, + STATE(3723), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -216636,84 +218150,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96769] = 7, - ACTIONS(4093), 1, - anon_sym_QMARK, - ACTIONS(4095), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4690), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - 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_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, - [96826] = 13, + [98507] = 13, ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5320), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3822), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -216742,33 +218206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96895] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5800), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + [98576] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4932), 12, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216779,197 +218224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4934), 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_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [96964] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5803), 1, anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4513), 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(4517), 14, + ACTIONS(4275), 25, + sym__automatic_semicolon, 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, - [97039] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5746), 1, - anon_sym_AMP_AMP, - ACTIONS(5748), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, - anon_sym_GT_GT, - ACTIONS(5754), 1, - anon_sym_AMP, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5762), 1, - anon_sym_PERCENT, - ACTIONS(5764), 1, - anon_sym_STAR_STAR, - ACTIONS(5766), 1, - anon_sym_LT, - ACTIONS(5774), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5742), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5744), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5752), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5770), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5772), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5768), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97144] = 12, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4067), 1, anon_sym_DOT, - ACTIONS(4207), 1, anon_sym_QMARK_DOT, - ACTIONS(5806), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4864), 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(4866), 18, - sym__ternary_qmark, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216985,34 +218251,35 @@ 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, - [97211] = 8, + [98627] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5511), 2, + ACTIONS(5630), 2, sym_number, sym_private_property_identifier, - STATE(3837), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -217037,34 +218304,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97270] = 8, - ACTIONS(1621), 1, + [98686] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5809), 2, + ACTIONS(5636), 2, sym_number, sym_private_property_identifier, - STATE(3382), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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(3663), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217088,33 +218355,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97329] = 8, + [98745] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5503), 2, + ACTIONS(5644), 2, sym_number, sym_private_property_identifier, - STATE(3849), 3, + STATE(3855), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 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, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -217139,24 +218406,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97388] = 8, + [98804] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5555), 2, + ACTIONS(5650), 2, sym_number, sym_private_property_identifier, - STATE(3828), 3, + STATE(3744), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -217190,80 +218457,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97447] = 4, - 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(3801), 11, - sym__automatic_semicolon, - anon_sym_EQ, + [98863] = 13, + ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(695), 1, 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(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, - [97498] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5559), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3742), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3879), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -217288,24 +218513,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97557] = 8, + [98932] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5565), 2, + ACTIONS(5726), 2, sym_number, sym_private_property_identifier, - STATE(3771), 3, + STATE(3745), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 9, + ACTIONS(3879), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -217339,96 +218564,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97616] = 16, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4147), 1, + [98991] = 5, + ACTIONS(3495), 1, anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - STATE(2764), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5811), 2, + ACTIONS(3581), 3, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [97691] = 7, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(2374), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4438), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1691), 11, + anon_sym_RBRACK, + ACTIONS(3429), 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(1695), 23, + ACTIONS(3433), 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, @@ -217448,25 +218612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97748] = 7, - ACTIONS(4335), 1, - anon_sym_extends, - ACTIONS(4447), 1, + [99044] = 7, + ACTIONS(3616), 1, anon_sym_EQ, + ACTIONS(4825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4454), 2, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4828), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4445), 11, + ACTIONS(3429), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -217474,11 +218638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 23, + ACTIONS(3433), 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, @@ -217498,37 +218662,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97805] = 7, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_extends, + [99101] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(4277), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4273), 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, + ACTIONS(4275), 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, @@ -217548,140 +218709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97862] = 31, - ACTIONS(89), 1, + [99152] = 9, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(4519), 1, - anon_sym_BANG, - ACTIONS(4521), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5746), 1, - anon_sym_AMP_AMP, - ACTIONS(5748), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, - anon_sym_GT_GT, - ACTIONS(5754), 1, - anon_sym_AMP, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5762), 1, - anon_sym_PERCENT, - ACTIONS(5764), 1, - anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, - sym__ternary_qmark, - STATE(2577), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4549), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5742), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5744), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5752), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5770), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5772), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2199), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97967] = 6, - ACTIONS(4782), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4785), 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), 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, - [98022] = 5, - ACTIONS(3471), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3656), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(4800), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217692,13 +218737,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(3439), 23, + ACTIONS(4802), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217717,659 +218760,468 @@ 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, - [98075] = 6, - ACTIONS(4690), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4095), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4693), 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), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [99213] = 31, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5759), 1, anon_sym_AMP_AMP, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5763), 1, + anon_sym_GT_GT, + ACTIONS(5767), 1, + anon_sym_AMP, + ACTIONS(5769), 1, anon_sym_CARET, + ACTIONS(5771), 1, + anon_sym_PIPE, + ACTIONS(5775), 1, anon_sym_PERCENT, + ACTIONS(5777), 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, - [98130] = 19, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(2024), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5818), 1, - anon_sym_async, - ACTIONS(5820), 1, - anon_sym_static, - ACTIONS(5822), 1, - anon_sym_readonly, - ACTIONS(5828), 1, - anon_sym_override, - STATE(2748), 1, - sym_accessibility_modifier, - STATE(2758), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5355), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5824), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5826), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3604), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5200), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5814), 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, - [98211] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [98280] = 9, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + ACTIONS(5787), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5789), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4871), 12, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5755), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5765), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 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(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5781), 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, - [98341] = 31, - ACTIONS(825), 1, + [99318] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98446] = 31, - ACTIONS(825), 1, + [99423] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98551] = 31, - ACTIONS(825), 1, + [99528] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98656] = 31, - ACTIONS(825), 1, + [99633] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98761] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5123), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, + [99738] = 19, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [98830] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(5763), 1, + anon_sym_GT_GT, + ACTIONS(5775), 1, + anon_sym_PERCENT, + ACTIONS(5777), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 2, - sym_number, - sym_private_property_identifier, - STATE(3798), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5755), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5765), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5773), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(4722), 7, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [98889] = 14, - ACTIONS(825), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 12, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [99819] = 14, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5830), 1, + ACTIONS(5818), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 12, + ACTIONS(4722), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218382,7 +219234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 15, + ACTIONS(4724), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218398,419 +219250,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [98960] = 26, - ACTIONS(825), 1, + [99890] = 26, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 6, + ACTIONS(4724), 6, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [99055] = 27, - ACTIONS(825), 1, + [99985] = 27, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 5, + ACTIONS(4724), 5, sym__ternary_qmark, anon_sym_as, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [99152] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [99221] = 17, - ACTIONS(825), 1, + [100082] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5830), 1, + ACTIONS(5818), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 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(4833), 14, - 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_satisfies, - [99298] = 5, - ACTIONS(3509), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3435), 13, - anon_sym_STAR, + ACTIONS(4722), 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(3439), 23, + ACTIONS(4724), 14, 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, - [99351] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5686), 2, - sym_number, - sym_private_property_identifier, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [99410] = 23, - ACTIONS(825), 1, + [100159] = 23, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 3, + ACTIONS(4722), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 7, + ACTIONS(4724), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218818,66 +219515,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [99499] = 24, - ACTIONS(825), 1, + [100248] = 24, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 7, + ACTIONS(4724), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218885,158 +219582,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [99590] = 25, - ACTIONS(825), 1, + [100339] = 25, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4722), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [99683] = 7, - ACTIONS(3624), 1, - anon_sym_EQ, - ACTIONS(4782), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4785), 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), 23, + ACTIONS(4724), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - 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, - [99740] = 16, - ACTIONS(825), 1, + [100432] = 16, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5830), 1, + ACTIONS(5818), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 10, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -219047,7 +219694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 14, + ACTIONS(4724), 14, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -219062,76 +219709,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [99815] = 17, - ACTIONS(825), 1, + [100507] = 17, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5830), 1, + ACTIONS(5818), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(4835), 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(4833), 13, - 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, - [99892] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4297), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4293), 13, + ACTIONS(4722), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -219140,90 +219753,77 @@ 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(4295), 25, - sym__automatic_semicolon, + ACTIONS(4724), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99943] = 21, - ACTIONS(825), 1, + [100584] = 21, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4835), 5, + ACTIONS(4722), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4833), 9, + ACTIONS(4724), 9, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -219233,876 +219833,750 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [100028] = 28, - ACTIONS(825), 1, + [100669] = 28, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4835), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4833), 4, + ACTIONS(4724), 4, sym__ternary_qmark, anon_sym_as, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [100127] = 31, - ACTIONS(825), 1, + [100768] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100232] = 4, + [100873] = 31, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4125), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_BANG, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4169), 1, + anon_sym_satisfies, + ACTIONS(5759), 1, + anon_sym_AMP_AMP, + ACTIONS(5761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5763), 1, + anon_sym_GT_GT, + ACTIONS(5767), 1, + anon_sym_AMP, + ACTIONS(5769), 1, + anon_sym_CARET, + ACTIONS(5771), 1, + anon_sym_PIPE, + ACTIONS(5775), 1, + anon_sym_PERCENT, + ACTIONS(5777), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_LT, + ACTIONS(5787), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5789), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(4786), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4293), 13, + ACTIONS(4167), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5755), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5765), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 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(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1799), 2, + sym_template_string, + sym_arguments, + ACTIONS(5781), 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, - [100283] = 31, - ACTIONS(825), 1, + [100978] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100388] = 31, - ACTIONS(825), 1, + [101083] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100493] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5585), 2, - sym_number, - sym_private_property_identifier, - STATE(3851), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [100552] = 31, - ACTIONS(825), 1, + [101188] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100657] = 31, - ACTIONS(825), 1, + [101293] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100762] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5833), 2, - sym_number, - sym_private_property_identifier, - STATE(3750), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [100821] = 31, - ACTIONS(825), 1, + [101398] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100926] = 31, - ACTIONS(825), 1, + [101503] = 31, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, + ACTIONS(4129), 1, anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(1493), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4786), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(1799), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101031] = 31, - ACTIONS(825), 1, + [101608] = 31, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4125), 1, anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4241), 1, + ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5746), 1, + ACTIONS(4513), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5748), 1, + ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, + ACTIONS(5763), 1, anon_sym_GT_GT, - ACTIONS(5754), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5769), 1, anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5771), 1, anon_sym_PIPE, - ACTIONS(5762), 1, + ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5764), 1, + ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5766), 1, + ACTIONS(5779), 1, anon_sym_LT, - ACTIONS(5774), 1, + ACTIONS(5787), 1, anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, + ACTIONS(5789), 1, sym__ternary_qmark, - STATE(1488), 1, + STATE(2602), 1, sym_type_arguments, - STATE(4746), 1, + STATE(4903), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5742), 2, + ACTIONS(5755), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5744), 2, + ACTIONS(5757), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5752), 2, + ACTIONS(5765), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5760), 2, + ACTIONS(5773), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5770), 2, + ACTIONS(5783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5772), 2, + ACTIONS(5785), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1646), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(5768), 3, + ACTIONS(5781), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101136] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5517), 2, - sym_number, - sym_private_property_identifier, - STATE(3735), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, - [101195] = 4, - ACTIONS(5252), 1, + [101713] = 4, + ACTIONS(5243), 1, sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 17, + ACTIONS(5239), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -220120,7 +220594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - ACTIONS(5250), 22, + ACTIONS(5241), 22, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -220143,94 +220617,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [101246] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_as, - ACTIONS(4201), 1, - anon_sym_BANG, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4241), 1, - anon_sym_satisfies, - ACTIONS(5746), 1, - anon_sym_AMP_AMP, - ACTIONS(5748), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5750), 1, - anon_sym_GT_GT, - ACTIONS(5754), 1, - anon_sym_AMP, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5762), 1, - anon_sym_PERCENT, - ACTIONS(5764), 1, - anon_sym_STAR_STAR, - ACTIONS(5766), 1, - anon_sym_LT, - ACTIONS(5774), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5776), 1, - sym__ternary_qmark, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5742), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5744), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5752), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5770), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5772), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(5768), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101351] = 6, - ACTIONS(4507), 1, + [101764] = 7, + ACTIONS(3612), 1, + anon_sym_EQ, + ACTIONS(4825), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 2, + ACTIONS(4293), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4510), 3, + ACTIONS(4828), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4503), 10, + ACTIONS(3429), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220241,12 +220643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 24, - sym__automatic_semicolon, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220266,39 +220667,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101406] = 7, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, + [101821] = 4, + ACTIONS(3549), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3473), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(3429), 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), 20, + ACTIONS(3433), 26, 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, @@ -220316,75 +220713,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101463] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, + anon_sym_implements, + [101872] = 7, + ACTIONS(3620), 1, + anon_sym_EQ, + ACTIONS(4825), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5612), 2, - sym_number, - sym_private_property_identifier, - STATE(3790), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 9, - sym__automatic_semicolon, + ACTIONS(4293), 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(2352), 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, - [101522] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4459), 3, + anon_sym_extends, + ACTIONS(4828), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4457), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(3429), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -220392,10 +220740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220415,106 +220764,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101575] = 8, - ACTIONS(2328), 1, + [101929] = 23, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(3775), 1, + anon_sym_AT, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(5821), 1, + anon_sym_STAR, + ACTIONS(5823), 1, + anon_sym_async, + ACTIONS(5827), 1, + anon_sym_static, + ACTIONS(5829), 1, + anon_sym_readonly, + ACTIONS(5833), 1, + anon_sym_declare, + ACTIONS(5835), 1, + anon_sym_abstract, + ACTIONS(5837), 1, + anon_sym_accessor, + STATE(2654), 1, + sym_method_definition, + STATE(2707), 1, + sym_accessibility_modifier, + STATE(2723), 1, + aux_sym_export_statement_repeat1, + STATE(2770), 1, + sym_decorator, + STATE(2771), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5429), 2, + ACTIONS(5825), 2, sym_number, sym_private_property_identifier, - STATE(3762), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(2352), 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, + ACTIONS(5831), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + ACTIONS(3687), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101634] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3822), 3, + STATE(3051), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, + ACTIONS(3667), 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, @@ -220522,37 +220830,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101703] = 7, - ACTIONS(3604), 1, + [102018] = 4, + ACTIONS(3608), 1, anon_sym_EQ, - ACTIONS(4782), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4785), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3429), 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, + ACTIONS(3433), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220572,13 +220876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101760] = 4, - ACTIONS(3595), 1, + [102068] = 6, + ACTIONS(1703), 1, anon_sym_EQ, + ACTIONS(4793), 1, + anon_sym_RBRACK, + ACTIONS(5028), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220592,11 +220900,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(1705), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -220618,23 +220924,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [101811] = 7, - ACTIONS(3612), 1, + [102122] = 7, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(4782), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 2, + ACTIONS(4293), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4785), 3, + ACTIONS(4828), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3429), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220645,11 +220950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220669,103 +220973,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101868] = 19, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, + [102178] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(5750), 1, - anon_sym_GT_GT, - ACTIONS(5762), 1, - anon_sym_PERCENT, - ACTIONS(5764), 1, - anon_sym_STAR_STAR, - ACTIONS(5766), 1, - anon_sym_LT, - STATE(1488), 1, - sym_type_arguments, - STATE(4746), 1, - sym_optional_chain, + ACTIONS(5839), 1, + anon_sym_readonly, + STATE(2794), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5742), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5752), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5760), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1646), 2, - sym_template_string, - sym_arguments, - ACTIONS(4835), 7, + ACTIONS(5800), 2, + sym_number, + sym_private_property_identifier, + STATE(3323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4833), 12, - 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [101949] = 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 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, + [102242] = 9, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5841), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 12, - anon_sym_STAR, + ACTIONS(5800), 2, + sym_number, + sym_private_property_identifier, + STATE(3323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 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, + [102302] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5791), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [102370] = 11, + ACTIONS(1621), 1, anon_sym_DQUOTE, + ACTIONS(1623), 1, anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5845), 1, + anon_sym_readonly, + STATE(2804), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5843), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3326), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3174), 27, + ACTIONS(3667), 21, 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, @@ -220773,33 +221185,26 @@ 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, - [101997] = 11, + [102434] = 9, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5837), 1, - anon_sym_readonly, - STATE(2796), 1, - sym_override_modifier, + ACTIONS(5849), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5835), 2, + ACTIONS(5847), 2, sym_number, sym_private_property_identifier, - STATE(3347), 3, + STATE(3328), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -220807,7 +221212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 21, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220816,12 +221221,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, @@ -220829,33 +221236,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102061] = 4, + [102494] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5749), 1, + anon_sym_RBRACE, + STATE(4944), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4766), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(5839), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [102562] = 6, + ACTIONS(4683), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4087), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3429), 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(5842), 23, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220875,33 +221339,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102111] = 4, + [102616] = 6, + ACTIONS(4087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4770), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5845), 13, + ACTIONS(4683), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3429), 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(5848), 23, + ACTIONS(3433), 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, @@ -220921,17 +221387,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102161] = 6, - ACTIONS(4447), 1, + [102670] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5851), 1, + anon_sym_readonly, + STATE(2833), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5003), 2, + sym_number, + sym_private_property_identifier, + STATE(3352), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4578), 1, - anon_sym_RBRACK, - ACTIONS(5011), 1, anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 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, + [102734] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4273), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220945,11 +221461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4449), 23, + ACTIONS(4275), 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, @@ -220969,35 +221486,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102215] = 6, - ACTIONS(4095), 1, - anon_sym_extends, + [102784] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(4277), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4273), 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, + ACTIONS(4275), 24, 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_AMP_AMP, @@ -221017,41 +221532,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102269] = 3, + [102834] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + STATE(2766), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3172), 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, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3170), 27, + ACTIONS(2352), 18, 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, @@ -221059,23 +221589,20 @@ 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, - [102317] = 6, - ACTIONS(4507), 1, + [102906] = 6, + ACTIONS(4825), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4510), 2, + ACTIONS(4828), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4393), 3, + ACTIONS(4293), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4503), 11, + ACTIONS(3429), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221087,7 +221614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 22, + ACTIONS(3433), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221110,79 +221637,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102371] = 6, - ACTIONS(4147), 1, - anon_sym_EQ, + [102960] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, + ACTIONS(1789), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1982), 6, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5855), 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(5858), 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, + [103010] = 9, + ACTIONS(1621), 1, anon_sym_DQUOTE, + ACTIONS(1623), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1980), 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, - [102425] = 6, - ACTIONS(4147), 1, - anon_sym_EQ, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5011), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5003), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 7, + STATE(3352), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 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(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221206,35 +221734,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102479] = 6, - ACTIONS(4601), 1, - anon_sym_EQ, - ACTIONS(4605), 1, - anon_sym_RBRACK, - ACTIONS(5013), 1, - anon_sym_COMMA, + [103070] = 6, + ACTIONS(4840), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 13, + ACTIONS(4843), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4359), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4836), 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(4603), 23, + ACTIONS(4838), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221254,35 +221782,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102533] = 6, - ACTIONS(4782), 1, - anon_sym_LBRACK, + [103124] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4266), 3, + ACTIONS(1759), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5861), 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), 22, + ACTIONS(5864), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221302,35 +221828,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102587] = 6, - ACTIONS(4690), 1, - anon_sym_LBRACK, + [103174] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4095), 3, + ACTIONS(1769), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5867), 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), 22, + ACTIONS(5870), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221350,71 +221874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102641] = 12, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, + [103224] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5811), 2, + ACTIONS(4798), 3, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [102707] = 6, - ACTIONS(1693), 1, - anon_sym_EQ, - ACTIONS(4639), 1, - anon_sym_RBRACK, - ACTIONS(5015), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1691), 13, + ACTIONS(5873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221428,7 +221896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 23, + ACTIONS(5876), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221452,52 +221920,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102761] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5851), 1, - anon_sym_readonly, - STATE(2829), 1, - sym_override_modifier, + [103274] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5809), 2, + ACTIONS(3172), 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, - STATE(3382), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(3663), 21, + ACTIONS(3170), 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, @@ -221505,115 +221962,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102825] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1805), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5853), 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(5856), 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, - [102875] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4297), 2, - anon_sym_COMMA, + anon_sym_abstract, + anon_sym_accessor, anon_sym_extends, - ACTIONS(4293), 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(4295), 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, - [102925] = 15, + [103322] = 14, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, ACTIONS(2354), 1, anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5195), 1, anon_sym_STAR, - STATE(2764), 1, - sym_override_modifier, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5749), 1, + anon_sym_RBRACE, + STATE(4944), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -221623,19 +221991,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - ACTIONS(5859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3822), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 18, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221643,10 +222008,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, @@ -221654,30 +222021,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102997] = 11, + [103392] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5863), 1, + ACTIONS(5881), 1, anon_sym_readonly, - STATE(2836), 1, + STATE(2792), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5861), 2, + ACTIONS(5879), 2, sym_number, sym_private_property_identifier, - STATE(3441), 3, + STATE(3386), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221685,7 +222052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 21, + ACTIONS(3667), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221707,26 +222074,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103061] = 9, + [103456] = 9, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5867), 1, + ACTIONS(5885), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5865), 2, + ACTIONS(5883), 2, sym_number, sym_private_property_identifier, - STATE(3442), 3, + STATE(3389), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221734,7 +222101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221758,40 +222125,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103121] = 13, - ACTIONS(2328), 1, + [103516] = 11, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5798), 1, - anon_sym_RBRACE, - STATE(4950), 1, - aux_sym_object_repeat1, + ACTIONS(5889), 1, + anon_sym_readonly, + STATE(2797), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5887), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + STATE(3403), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 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, - STATE(3822), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103580] = 9, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5893), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5891), 2, + sym_number, + sym_private_property_identifier, + STATE(3407), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, + ACTIONS(3879), 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(2352), 21, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221801,6 +222215,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, @@ -221813,15 +222229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103189] = 4, + [103640] = 6, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(4871), 1, + anon_sym_RBRACK, + ACTIONS(5017), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1921), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5869), 13, + ACTIONS(4255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221835,7 +222253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5872), 23, + ACTIONS(4259), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221859,61 +222277,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103239] = 4, + [103694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4293), 13, + ACTIONS(3176), 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(4295), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + 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(3174), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103289] = 4, + 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, + [103742] = 6, + ACTIONS(4691), 1, + anon_sym_EQ, + ACTIONS(4695), 1, + anon_sym_RBRACK, + ACTIONS(5026), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5875), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221927,7 +222346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5878), 23, + ACTIONS(4693), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221951,15 +222370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103339] = 4, + [103796] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1941), 3, + ACTIONS(1915), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5881), 13, + ACTIONS(5895), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221973,7 +222392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5884), 23, + ACTIONS(5898), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221997,15 +222416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103389] = 4, + [103846] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 3, + ACTIONS(4773), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5887), 13, + ACTIONS(5901), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222019,7 +222438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5890), 23, + ACTIONS(5904), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222043,29 +222462,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103439] = 3, + [103896] = 6, + ACTIONS(4215), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 12, - anon_sym_STAR, + ACTIONS(4023), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1994), 6, + anon_sym_STAR, 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, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3178), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -222085,18 +222510,15 @@ 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, - [103487] = 4, + [103950] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4778), 3, + ACTIONS(4708), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5893), 13, + ACTIONS(5907), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222110,7 +222532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5896), 23, + ACTIONS(5910), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222134,169 +222556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103537] = 14, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5798), 1, - anon_sym_RBRACE, - STATE(4950), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [103607] = 7, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(4782), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4785), 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), 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, - [103663] = 9, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5901), 1, - anon_sym_abstract, + [104000] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5899), 2, - sym_number, - sym_private_property_identifier, - STATE(3352), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4777), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3663), 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, - [103723] = 4, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, + ACTIONS(5913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222310,12 +222578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, - sym__automatic_semicolon, + ACTIONS(5916), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -222336,87 +222602,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103773] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5903), 1, - anon_sym_readonly, - STATE(2811), 1, - sym_override_modifier, + [104050] = 6, + ACTIONS(4215), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, - sym_number, - sym_private_property_identifier, - STATE(3314), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4023), 2, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3663), 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, - [103837] = 9, - ACTIONS(1621), 1, + anon_sym_RBRACE, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5059), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5051), 2, sym_number, sym_private_property_identifier, - STATE(3314), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 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(3663), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222440,72 +222650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103897] = 13, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5811), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 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, - [103965] = 6, - ACTIONS(3552), 1, - anon_sym_COMMA, - ACTIONS(3586), 1, + [104104] = 6, + ACTIONS(3581), 1, anon_sym_RBRACK, - ACTIONS(3649), 1, + ACTIONS(3593), 1, + anon_sym_COMMA, + ACTIONS(3654), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222519,111 +222674,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 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, - [104019] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5907), 1, - anon_sym_readonly, - STATE(2790), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5905), 2, - sym_number, - sym_private_property_identifier, - STATE(3316), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3663), 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, - [104083] = 9, - ACTIONS(1621), 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, + [104158] = 12, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5911), 1, - anon_sym_abstract, + ACTIONS(5195), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3320), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5791), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222633,8 +222740,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, @@ -222647,38 +222752,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104143] = 9, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5913), 1, - anon_sym_abstract, + [104224] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5809), 2, + ACTIONS(3180), 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, - STATE(3382), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 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(3663), 23, + ACTIONS(3178), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -222698,32 +222794,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104203] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [104272] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 2, - sym_number, - sym_private_property_identifier, - STATE(3312), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222747,33 +222847,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104260] = 9, + [104331] = 9, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(695), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1982), 6, + ACTIONS(1994), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1980), 23, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222797,18 +222897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104319] = 6, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4521), 1, - anon_sym_LPAREN, + [104390] = 4, + ACTIONS(3620), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2330), 2, - sym_template_string, - sym_arguments, - ACTIONS(4079), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222822,9 +222917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4081), 21, + ACTIONS(3433), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -222843,34 +222940,35 @@ 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, - [104372] = 9, + [104439] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5320), 1, + ACTIONS(695), 1, anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1982), 6, + ACTIONS(1976), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1980), 23, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222894,33 +222992,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104431] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5123), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [104498] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5919), 2, sym_number, sym_private_property_identifier, - ACTIONS(1980), 23, + STATE(3335), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222944,33 +223041,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104490] = 9, + [104555] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(695), 1, + ACTIONS(672), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1976), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222994,32 +223091,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104549] = 8, - ACTIONS(1621), 1, + [104614] = 10, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5917), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3448), 3, + ACTIONS(5791), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223043,34 +223142,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104606] = 10, - ACTIONS(2328), 1, + [104675] = 8, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5921), 2, sym_number, sym_private_property_identifier, - ACTIONS(5811), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3822), 3, + STATE(3374), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, + ACTIONS(3879), 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(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223094,80 +223191,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104667] = 6, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3638), 1, - anon_sym_in, - ACTIONS(3641), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 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(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, - [104720] = 9, + [104732] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(5123), 1, + ACTIONS(5245), 1, anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1994), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223191,32 +223241,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104779] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, + [104791] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5245), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 2, - sym_number, - sym_private_property_identifier, - STATE(3319), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223240,33 +223291,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104836] = 9, + [104850] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(672), 1, anon_sym_RBRACE, - STATE(4793), 1, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1994), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223290,24 +223341,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104895] = 8, + [104909] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [104972] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5921), 2, + ACTIONS(5923), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + STATE(3373), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223315,7 +223418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223339,33 +223442,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104952] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5320), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [105029] = 4, + ACTIONS(5243), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(5239), 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, + 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(5241), 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, + [105078] = 8, + ACTIONS(1621), 1, anon_sym_DQUOTE, + ACTIONS(1623), 1, anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5925), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + STATE(3446), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223389,33 +223536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105011] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [105135] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5927), 2, sym_number, sym_private_property_identifier, - ACTIONS(1980), 23, + STATE(3381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223439,33 +223585,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105070] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [105192] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5929), 2, sym_number, sym_private_property_identifier, - ACTIONS(1980), 23, + STATE(3385), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223489,33 +223634,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105129] = 9, + [105249] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(5246), 1, + ACTIONS(5202), 1, anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1994), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223539,24 +223684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105188] = 8, + [105308] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, + ACTIONS(5931), 2, sym_number, sym_private_property_identifier, - STATE(3440), 3, + STATE(3357), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223564,7 +223709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223588,83 +223733,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105245] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + [105365] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5933), 2, sym_number, sym_private_property_identifier, - ACTIONS(1980), 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, - [105304] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, + STATE(3397), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 7, + sym__automatic_semicolon, anon_sym_EQ, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, 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(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223688,24 +223782,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105363] = 8, + [105422] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5925), 2, + ACTIONS(5935), 2, sym_number, sym_private_property_identifier, - STATE(3334), 3, + STATE(3452), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223713,7 +223807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223737,18 +223831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105420] = 4, - ACTIONS(5252), 1, - sym_regex_flags, + [105479] = 6, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3647), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 17, + ACTIONS(3429), 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, @@ -223759,10 +223854,9 @@ 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(5250), 20, + ACTIONS(3433), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -223779,27 +223873,29 @@ 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, - [105469] = 8, + anon_sym_satisfies, + [105532] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5927), 2, + ACTIONS(5937), 2, sym_number, sym_private_property_identifier, - STATE(3318), 3, + STATE(3300), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223807,7 +223903,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 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, + [105589] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1994), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223831,24 +223977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105526] = 8, + [105648] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5929), 2, + ACTIONS(5939), 2, sym_number, sym_private_property_identifier, - STATE(3348), 3, + STATE(3412), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223856,7 +224002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223880,24 +224026,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105583] = 8, + [105705] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5931), 2, + ACTIONS(5941), 2, sym_number, sym_private_property_identifier, - STATE(3409), 3, + STATE(3433), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223905,7 +224051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223929,37 +224075,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105640] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, + [105762] = 6, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4515), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5859), 2, + STATE(2170), 2, + sym_template_string, + sym_arguments, + ACTIONS(4081), 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(4083), 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, + [105815] = 9, + ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(697), 1, anon_sym_RBRACE, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223969,6 +224158,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, @@ -223981,47 +224172,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105703] = 12, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, + [105874] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(1994), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1992), 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, @@ -224034,24 +224222,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105768] = 8, + [105933] = 6, + ACTIONS(4691), 1, + anon_sym_EQ, + ACTIONS(5026), 1, + anon_sym_of, + ACTIONS(5536), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4689), 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(4693), 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, + [105986] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5933), 2, + ACTIONS(5943), 2, sym_number, sym_private_property_identifier, - STATE(3330), 3, + STATE(3441), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224059,7 +224294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224083,33 +224318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105825] = 9, + [106043] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1976), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224133,32 +224368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105884] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, + [106102] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5935), 2, - sym_number, - sym_private_property_identifier, - STATE(3354), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(1994), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224182,35 +224418,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105941] = 11, - ACTIONS(2328), 1, + [106161] = 8, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5798), 1, - anon_sym_RBRACE, - STATE(4950), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5945), 2, sym_number, sym_private_property_identifier, - STATE(3822), 3, + STATE(3448), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, + ACTIONS(3879), 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(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224234,24 +224467,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106004] = 8, + [106218] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5937), 2, + ACTIONS(5947), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + STATE(3320), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224259,7 +224492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224283,90 +224516,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106061] = 6, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(5011), 1, - anon_sym_of, - ACTIONS(5723), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4445), 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(4449), 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, - [106114] = 8, - ACTIONS(1621), 1, + [106275] = 12, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4759), 1, anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5939), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3384), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(2352), 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, @@ -224379,32 +224569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106171] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, + [106340] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5941), 2, - sym_number, - sym_private_property_identifier, - STATE(3392), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224428,64 +224619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106228] = 6, - ACTIONS(4601), 1, - anon_sym_EQ, - ACTIONS(5013), 1, - anon_sym_of, - ACTIONS(5726), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4599), 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(4603), 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, - [106281] = 6, - ACTIONS(1693), 1, + [106399] = 6, + ACTIONS(4257), 1, anon_sym_EQ, - ACTIONS(5015), 1, + ACTIONS(5017), 1, anon_sym_of, - ACTIONS(5330), 1, + ACTIONS(5326), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1691), 12, + ACTIONS(4255), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -224498,7 +224642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 23, + ACTIONS(4259), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224522,73 +224666,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106334] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, + [106452] = 6, + ACTIONS(1703), 1, + anon_sym_EQ, + ACTIONS(5028), 1, + anon_sym_of, + ACTIONS(5539), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5943), 2, - sym_number, - sym_private_property_identifier, - STATE(3296), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(1701), 12, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3663), 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, - [106391] = 8, + 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(1705), 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, + [106505] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5945), 2, + ACTIONS(5949), 2, sym_number, sym_private_property_identifier, - STATE(3307), 3, + STATE(3451), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224596,7 +224738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224620,13 +224762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106448] = 4, - ACTIONS(3624), 1, + [106562] = 4, + ACTIONS(3616), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224640,7 +224782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(3433), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224665,13 +224807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106497] = 4, - ACTIONS(3604), 1, + [106611] = 4, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224685,7 +224827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(3433), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224710,13 +224852,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106546] = 4, - ACTIONS(3612), 1, + [106660] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5749), 1, + anon_sym_RBRACE, + STATE(4944), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [106723] = 4, + ACTIONS(3711), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224730,11 +224924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -224755,33 +224948,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106595] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + [106771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1982), 6, + ACTIONS(5953), 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, - ACTIONS(1980), 23, + anon_sym_AT, + ACTIONS(5951), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224805,12 +224989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106654] = 3, + anon_sym_abstract, + anon_sym_accessor, + [106817] = 4, + ACTIONS(5955), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 12, - sym__automatic_semicolon, + ACTIONS(1821), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -224822,7 +225009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5947), 25, + ACTIONS(1823), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224848,56 +225035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106700] = 4, - ACTIONS(3749), 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, - [106748] = 3, + [106865] = 4, + ACTIONS(5957), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 12, - sym__automatic_semicolon, + ACTIONS(1821), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -224909,7 +225053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5951), 25, + ACTIONS(1823), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224935,11 +225079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106794] = 3, + [106913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 12, + ACTIONS(5961), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224952,7 +225096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5955), 25, + ACTIONS(5959), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224978,11 +225122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106840] = 3, + [106959] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(5965), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224995,7 +225139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(5963), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225021,11 +225165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106886] = 3, + [107005] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 12, + ACTIONS(5969), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225038,7 +225182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5947), 25, + ACTIONS(5967), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225064,11 +225208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106932] = 3, + [107051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 12, + ACTIONS(5973), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225081,7 +225225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5951), 25, + ACTIONS(5971), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225107,11 +225251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106978] = 3, + [107097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 12, + ACTIONS(5969), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225124,7 +225268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5947), 25, + ACTIONS(5967), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225150,11 +225294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107024] = 3, + [107143] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 12, + ACTIONS(5973), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225167,7 +225311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5955), 25, + ACTIONS(5971), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225193,55 +225337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107070] = 4, - ACTIONS(3711), 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, - [107118] = 3, + [107189] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 12, + ACTIONS(5977), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225254,7 +225354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5951), 25, + ACTIONS(5975), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225280,11 +225380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107164] = 3, + [107235] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 12, + ACTIONS(5981), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225297,7 +225397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5963), 25, + ACTIONS(5979), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225323,11 +225423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107210] = 3, + [107281] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(5969), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225340,7 +225440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(5967), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225366,11 +225466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107256] = 3, + [107327] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(5973), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225383,7 +225483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(5971), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225409,7 +225509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107302] = 3, + [107373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -225452,11 +225552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107348] = 3, + [107419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(5969), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225469,7 +225569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(5967), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225495,13 +225595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107394] = 4, - ACTIONS(5971), 1, - sym__automatic_semicolon, + [107465] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1687), 11, + ACTIONS(5985), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225513,7 +225612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1689), 25, + ACTIONS(5983), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225539,28 +225638,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107442] = 3, + [107511] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 12, - sym__automatic_semicolon, + ACTIONS(3634), 10, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5955), 25, + ACTIONS(3632), 27, 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, @@ -225582,11 +225681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107488] = 3, + [107557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 12, + ACTIONS(5961), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225599,7 +225698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5955), 25, + ACTIONS(5959), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225625,11 +225724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107534] = 3, + [107603] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5961), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225642,7 +225741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5959), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225668,11 +225767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107580] = 3, + [107649] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5961), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225685,7 +225784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5959), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225711,11 +225810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107626] = 3, + [107695] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5969), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225728,7 +225827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5967), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225754,55 +225853,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107672] = 4, - ACTIONS(3753), 1, - anon_sym_EQ, + [107741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(5973), 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(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, - [107720] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5971), 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, + [107787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5977), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225815,7 +225913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5975), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225841,12 +225939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107766] = 3, + [107833] = 4, + ACTIONS(5987), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 12, - sym__automatic_semicolon, + ACTIONS(1697), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225858,7 +225957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5985), 25, + ACTIONS(1699), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225884,13 +225983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107812] = 4, - ACTIONS(5989), 1, - sym__automatic_semicolon, + [107881] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 11, + ACTIONS(5981), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225902,7 +226000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1875), 25, + ACTIONS(5979), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225928,11 +226026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107860] = 3, + [107927] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5991), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225945,7 +226043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5989), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225971,11 +226069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107906] = 3, + [107973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5961), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225988,7 +226086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5959), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226014,11 +226112,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107952] = 3, + [108019] = 4, + ACTIONS(3745), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 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(3433), 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, + [108067] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1907), 12, + ACTIONS(5965), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226031,7 +226173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1909), 25, + ACTIONS(5963), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226057,11 +226199,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107998] = 3, + [108113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5985), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226074,7 +226216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5983), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226100,11 +226242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108044] = 3, + [108159] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5995), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226117,7 +226259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5993), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226143,17 +226285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108090] = 5, - ACTIONS(5995), 1, - anon_sym_SEMI, - ACTIONS(5998), 1, - sym__automatic_semicolon, + [108205] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5993), 10, + ACTIONS(5999), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -226162,7 +226302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5991), 25, + ACTIONS(5997), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226188,11 +226328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108140] = 3, + [108251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(6003), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226205,7 +226345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(6001), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226231,11 +226371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108186] = 3, + [108297] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, + ACTIONS(6007), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226248,7 +226388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(6005), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226274,15 +226414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108232] = 3, + [108343] = 5, + ACTIONS(6013), 1, + anon_sym_SEMI, + ACTIONS(6016), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 12, - sym__automatic_semicolon, + ACTIONS(6011), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -226291,7 +226433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5955), 25, + ACTIONS(6009), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226317,13 +226459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108278] = 4, - ACTIONS(6000), 1, - sym__automatic_semicolon, + [108393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1687), 11, + ACTIONS(5981), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226335,7 +226476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1689), 25, + ACTIONS(5979), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226361,13 +226502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108326] = 4, - ACTIONS(3731), 1, + [108439] = 4, + ACTIONS(3749), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226381,7 +226522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226405,13 +226546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108374] = 4, - ACTIONS(6002), 1, - sym__automatic_semicolon, + [108487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 11, + ACTIONS(6020), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226423,7 +226563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1875), 25, + ACTIONS(6018), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226449,11 +226589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108422] = 3, + [108533] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(1821), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226466,7 +226606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(1823), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226492,29 +226632,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108468] = 8, - ACTIONS(6004), 1, - anon_sym_LPAREN, - ACTIONS(6006), 1, - anon_sym_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(2777), 1, - sym_arguments, - STATE(5205), 1, - sym_type_arguments, + [108579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3537), 7, + ACTIONS(5981), 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(3535), 25, + ACTIONS(5979), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226540,55 +226675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108524] = 4, - ACTIONS(3739), 1, - anon_sym_EQ, + [108625] = 3, 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, - [108572] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6012), 12, + ACTIONS(5977), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226601,7 +226692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6010), 25, + ACTIONS(5975), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226627,11 +226718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108618] = 3, + [108671] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 12, + ACTIONS(5981), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226644,7 +226735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5947), 25, + ACTIONS(5979), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226670,11 +226761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108664] = 3, + [108717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, + ACTIONS(5977), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226687,7 +226778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(5975), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226713,13 +226804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108710] = 4, - ACTIONS(3713), 1, + [108763] = 4, + ACTIONS(3727), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226733,7 +226824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226757,57 +226848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108758] = 5, - ACTIONS(6018), 1, - anon_sym_SEMI, - ACTIONS(6021), 1, + [108811] = 4, + ACTIONS(6022), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6016), 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(6014), 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, - [108808] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6025), 12, - sym__automatic_semicolon, + ACTIONS(1697), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226819,7 +226866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6023), 25, + ACTIONS(1699), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226845,11 +226892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108854] = 3, + [108859] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 12, + ACTIONS(1831), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226862,7 +226909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5951), 25, + ACTIONS(1833), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226888,11 +226935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108900] = 3, + [108905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(5991), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226905,7 +226952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(5989), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226931,11 +226978,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108946] = 3, + [108951] = 4, + ACTIONS(3753), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 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(3433), 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, + [108999] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 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, + [109057] = 4, + ACTIONS(3717), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 12, + ACTIONS(3429), 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(3433), 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, + [109105] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5991), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226948,7 +227132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1875), 25, + ACTIONS(5989), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226974,11 +227158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108992] = 3, + [109151] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 12, + ACTIONS(5991), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226991,7 +227175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5951), 25, + ACTIONS(5989), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227017,13 +227201,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109038] = 4, - ACTIONS(3705), 1, + [109197] = 4, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 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(3433), 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, + [109245] = 4, + ACTIONS(3747), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227037,7 +227265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227061,7 +227289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109086] = 3, + [109293] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -227104,11 +227332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109132] = 3, + [109339] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(5973), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227121,7 +227349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(5971), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227147,13 +227375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109178] = 4, + [109385] = 4, ACTIONS(3725), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227167,7 +227395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227191,11 +227419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109226] = 3, + [109433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 12, + ACTIONS(5981), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227208,7 +227436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5955), 25, + ACTIONS(5979), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227234,11 +227462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109272] = 3, + [109479] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 12, + ACTIONS(5991), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227251,7 +227479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5955), 25, + ACTIONS(5989), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227277,11 +227505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109318] = 3, + [109525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6029), 12, + ACTIONS(5977), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227294,7 +227522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6027), 25, + ACTIONS(5975), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227320,11 +227548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109364] = 3, + [109571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6033), 12, + ACTIONS(5981), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227337,7 +227565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6031), 25, + ACTIONS(5979), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227363,24 +227591,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109410] = 3, + [109617] = 8, + ACTIONS(6024), 1, + anon_sym_LPAREN, + ACTIONS(6026), 1, + anon_sym_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(2761), 1, + sym_arguments, + STATE(5283), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 12, - sym__automatic_semicolon, + ACTIONS(3518), 7, 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(5947), 25, + ACTIONS(3516), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227406,13 +227639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109456] = 4, - ACTIONS(3721), 1, + [109673] = 4, + ACTIONS(3743), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227426,7 +227659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3433), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227450,15 +227683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109504] = 3, + [109721] = 5, + ACTIONS(6034), 1, + anon_sym_SEMI, + ACTIONS(6037), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, - sym__automatic_semicolon, + ACTIONS(6032), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -227467,7 +227702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227493,76 +227728,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109550] = 4, - ACTIONS(3743), 1, - anon_sym_EQ, + [109771] = 7, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5749), 1, + anon_sym_RBRACE, + STATE(4944), 1, + aux_sym_object_repeat1, 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, + ACTIONS(3879), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1994), 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, - [109598] = 9, - ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227586,23 +227774,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109656] = 3, + [109824] = 6, + ACTIONS(4215), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6037), 11, - anon_sym_STAR, + ACTIONS(5791), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1994), 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(6035), 25, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227626,25 +227819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109701] = 3, + [109875] = 6, + ACTIONS(4215), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1907), 11, - anon_sym_STAR, + ACTIONS(5791), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 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(1909), 25, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227668,41 +227864,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109746] = 3, + [109926] = 14, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(6039), 1, + anon_sym_STAR, + ACTIONS(6041), 1, + anon_sym_async, + ACTIONS(6045), 1, + anon_sym_readonly, + STATE(2765), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6041), 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(6043), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6039), 25, + ACTIONS(6047), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3831), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 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, @@ -227710,25 +227917,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109791] = 3, + [109993] = 7, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5749), 1, + anon_sym_RBRACE, + STATE(4944), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6041), 11, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 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(6039), 25, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227752,13 +227963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109836] = 3, + [110046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6045), 11, + ACTIONS(6051), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227770,7 +227979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6043), 25, + ACTIONS(6049), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227796,74 +228005,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109881] = 7, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5798), 1, - anon_sym_RBRACE, - STATE(4950), 1, - aux_sym_object_repeat1, + [110091] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1821), 11, 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, - [109934] = 6, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5811), 2, - anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1982), 6, - anon_sym_STAR, + 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(1980), 23, + anon_sym_AT, + ACTIONS(1823), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227887,29 +228045,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109985] = 7, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5798), 1, - anon_sym_RBRACE, - STATE(4950), 1, - aux_sym_object_repeat1, + anon_sym_abstract, + anon_sym_accessor, + [110136] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1982), 6, + ACTIONS(1831), 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(1980), 23, + anon_sym_AT, + ACTIONS(1833), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227933,28 +228087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110038] = 6, - ACTIONS(4147), 1, - anon_sym_EQ, + anon_sym_abstract, + anon_sym_accessor, + [110181] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5811), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(6055), 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(1988), 23, + anon_sym_AT, + ACTIONS(6053), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227978,60 +228129,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110089] = 14, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(6047), 1, - anon_sym_STAR, - ACTIONS(6049), 1, - anon_sym_async, - ACTIONS(6053), 1, - anon_sym_readonly, - STATE(2775), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6051), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6055), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3764), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 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, - [110156] = 3, + anon_sym_abstract, + anon_sym_accessor, + [110226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -228073,27 +228173,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110201] = 3, + [110271] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3634), 9, + ACTIONS(6063), 11, anon_sym_STAR, - anon_sym_LPAREN, + 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(3632), 27, + ACTIONS(6061), 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, @@ -228115,11 +228215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110246] = 3, + [110316] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 11, + ACTIONS(6063), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228131,7 +228231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1875), 25, + ACTIONS(6061), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228157,26 +228257,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110291] = 9, + [110361] = 9, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6061), 1, + ACTIONS(6065), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(6043), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3764), 3, + STATE(3831), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228204,33 +228304,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110347] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(6063), 1, - anon_sym_STAR, + [110417] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6065), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6067), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3801), 3, + ACTIONS(5853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3879), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + ACTIONS(1994), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1992), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228240,6 +228333,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, @@ -228252,43 +228347,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110405] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(6063), 1, - anon_sym_STAR, - ACTIONS(6069), 1, - anon_sym_async, + [110465] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6065), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6067), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3801), 3, + ACTIONS(5853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3879), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 20, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 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, @@ -228301,29 +228390,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110465] = 10, + [110513] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6047), 1, + ACTIONS(6039), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(6043), 2, sym_number, sym_private_property_identifier, - ACTIONS(6055), 2, + ACTIONS(6047), 2, anon_sym_get, anon_sym_set, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3764), 3, + STATE(3831), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228349,47 +228438,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110523] = 10, - ACTIONS(2328), 1, + [110571] = 17, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6071), 1, + ACTIONS(4814), 1, + anon_sym_accessor, + ACTIONS(4923), 1, anon_sym_STAR, + ACTIONS(4927), 1, + anon_sym_async, + ACTIONS(6067), 1, + anon_sym_static, + ACTIONS(6069), 1, + anon_sym_readonly, + ACTIONS(6071), 1, + anon_sym_declare, + ACTIONS(6073), 1, + anon_sym_abstract, + STATE(2774), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6073), 2, + ACTIONS(4929), 2, sym_number, sym_private_property_identifier, - ACTIONS(6075), 2, + ACTIONS(4933), 2, anon_sym_get, anon_sym_set, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3786), 3, + STATE(3039), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 21, + ACTIONS(3667), 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_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -228397,39 +228493,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110581] = 11, + [110643] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6071), 1, + ACTIONS(6075), 1, anon_sym_STAR, - ACTIONS(6077), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6073), 2, + ACTIONS(6077), 2, sym_number, sym_private_property_identifier, - ACTIONS(6075), 2, + ACTIONS(6079), 2, anon_sym_get, anon_sym_set, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3786), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -228446,31 +228541,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110641] = 11, + [110701] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6047), 1, + ACTIONS(6075), 1, anon_sym_STAR, - ACTIONS(6049), 1, + ACTIONS(6081), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(6077), 2, sym_number, sym_private_property_identifier, - ACTIONS(6055), 2, + ACTIONS(6079), 2, anon_sym_get, anon_sym_set, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3764), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228495,26 +228590,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110701] = 5, + [110761] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(6083), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3801), 4, + ACTIONS(6085), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6087), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3879), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1982), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1980), 23, + STATE(3792), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228524,8 +228626,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, @@ -228538,29 +228638,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110749] = 10, + [110819] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6079), 1, + ACTIONS(6089), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6081), 2, + ACTIONS(6091), 2, sym_number, sym_private_property_identifier, - ACTIONS(6083), 2, + ACTIONS(6093), 2, anon_sym_get, anon_sym_set, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3816), 3, + STATE(3756), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228586,54 +228686,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110807] = 17, - ACTIONS(1621), 1, + [110877] = 11, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(6083), 1, anon_sym_STAR, - ACTIONS(5210), 1, - anon_sym_async, - ACTIONS(6087), 1, - anon_sym_static, - ACTIONS(6089), 1, - anon_sym_readonly, - ACTIONS(6091), 1, - anon_sym_declare, - ACTIONS(6093), 1, - anon_sym_abstract, ACTIONS(6095), 1, - anon_sym_accessor, - STATE(2767), 1, - sym_override_modifier, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5216), 2, - anon_sym_get, - anon_sym_set, ACTIONS(6085), 2, sym_number, sym_private_property_identifier, - STATE(3044), 3, + ACTIONS(6087), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3792), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 16, + ACTIONS(2352), 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, @@ -228641,37 +228735,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110879] = 5, + [110937] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(6039), 1, + anon_sym_STAR, + ACTIONS(6041), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3801), 4, + ACTIONS(6043), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6047), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3879), 3, 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, + STATE(3831), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 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, @@ -228684,45 +228784,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110927] = 17, + [110997] = 17, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5255), 1, anon_sym_STAR, - ACTIONS(4612), 1, + ACTIONS(5257), 1, anon_sym_async, - ACTIONS(4631), 1, - anon_sym_accessor, - ACTIONS(6097), 1, - anon_sym_static, ACTIONS(6099), 1, - anon_sym_readonly, + anon_sym_static, ACTIONS(6101), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(6103), 1, + anon_sym_declare, + ACTIONS(6105), 1, anon_sym_abstract, - STATE(2773), 1, + ACTIONS(6107), 1, + anon_sym_accessor, + STATE(2779), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4618), 2, + ACTIONS(5261), 2, anon_sym_get, anon_sym_set, - STATE(3026), 3, + ACTIONS(6097), 2, + sym_number, + sym_private_property_identifier, + STATE(3021), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 16, + ACTIONS(3667), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228739,24 +228839,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110999] = 8, + [111069] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5485), 2, + ACTIONS(5650), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3747), 3, + STATE(3744), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228784,28 +228884,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111052] = 8, - ACTIONS(2328), 1, + [111122] = 13, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(6111), 1, + anon_sym_static, + ACTIONS(6113), 1, + anon_sym_readonly, + ACTIONS(6115), 1, + anon_sym_abstract, + ACTIONS(6117), 1, + anon_sym_accessor, + STATE(2809), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5435), 2, + ACTIONS(6109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3726), 3, + STATE(3333), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228813,15 +228921,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, @@ -228829,24 +228934,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111105] = 8, + [111185] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(5469), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3764), 3, + STATE(3775), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228874,24 +228979,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111158] = 8, + [111238] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(6085), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3775), 3, + STATE(3792), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228919,36 +229024,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111211] = 13, + [111291] = 13, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6109), 1, + ACTIONS(5005), 1, anon_sym_static, - ACTIONS(6111), 1, + ACTIONS(5007), 1, anon_sym_readonly, - ACTIONS(6113), 1, + ACTIONS(5009), 1, anon_sym_abstract, - ACTIONS(6115), 1, + ACTIONS(5011), 1, anon_sym_accessor, - STATE(2782), 1, + STATE(2833), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6107), 2, + ACTIONS(5003), 2, sym_number, sym_private_property_identifier, - STATE(3446), 3, + STATE(3352), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 20, + ACTIONS(3667), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228969,24 +229074,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111274] = 8, + [111354] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(5612), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3808), 3, + STATE(3800), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229014,12 +229119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111327] = 8, + [111407] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -229027,11 +229132,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6119), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3811), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229059,24 +229164,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111380] = 8, + [111460] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5833), 2, + ACTIONS(5630), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3750), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229104,24 +229209,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111433] = 8, + [111513] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5636), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3825), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229149,36 +229254,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111486] = 13, - ACTIONS(1621), 1, + [111566] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5053), 1, - anon_sym_static, - ACTIONS(5055), 1, - anon_sym_readonly, - ACTIONS(5057), 1, - anon_sym_abstract, - ACTIONS(5059), 1, - anon_sym_accessor, - STATE(2811), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, + ACTIONS(5644), 2, sym_number, sym_private_property_identifier, - STATE(3314), 3, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3855), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 20, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229186,12 +229283,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, @@ -229199,24 +229299,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111549] = 8, + [111619] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 2, + ACTIONS(6121), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3758), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229244,24 +229344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111602] = 8, + [111672] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6121), 2, + ACTIONS(5656), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3814), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229289,24 +229389,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111655] = 8, + [111725] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5517), 2, + ACTIONS(6077), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3735), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229334,24 +229434,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111708] = 8, + [111778] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5559), 2, + ACTIONS(6123), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3742), 3, + STATE(3740), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229379,24 +229479,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111761] = 8, + [111831] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5511), 2, + ACTIONS(5676), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3837), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229424,28 +229524,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111814] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, + [111884] = 6, + ACTIONS(6125), 1, + anon_sym_AT, + STATE(2723), 1, + aux_sym_export_statement_repeat1, + STATE(2770), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6081), 2, + ACTIONS(3560), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3558), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229469,24 +229565,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111867] = 8, + anon_sym_abstract, + anon_sym_accessor, + [111933] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6065), 2, + ACTIONS(6128), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3797), 3, + STATE(3728), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229514,24 +229612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111920] = 8, + [111986] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5565), 2, + ACTIONS(5714), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3771), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229559,24 +229657,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111973] = 8, + [112039] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5555), 2, + ACTIONS(5481), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3828), 3, + STATE(3782), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229604,24 +229702,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112026] = 8, + [112092] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5585), 2, + ACTIONS(5582), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3851), 3, + STATE(3723), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229649,24 +229747,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112079] = 8, + [112145] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5499), 2, + ACTIONS(6130), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3725), 3, + STATE(3801), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229694,24 +229792,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112132] = 8, + [112198] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5549), 2, + ACTIONS(6043), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3736), 3, + STATE(3831), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229739,24 +229837,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112185] = 8, + [112251] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5686), 2, + ACTIONS(5329), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3758), 3, + STATE(3786), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229784,24 +229882,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112238] = 8, + [112304] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6073), 2, + ACTIONS(5421), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3786), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229829,24 +229927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112291] = 8, + [112357] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5369), 2, + ACTIONS(5451), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3841), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229874,24 +229972,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112344] = 8, + [112410] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5612), 2, + ACTIONS(5465), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3790), 3, + STATE(3757), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229919,24 +230017,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112397] = 6, - ACTIONS(6123), 1, - anon_sym_AT, - STATE(2733), 1, - aux_sym_export_statement_repeat1, - STATE(2766), 1, - sym_decorator, + [112463] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3560), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6132), 2, sym_number, sym_private_property_identifier, - ACTIONS(3558), 25, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3805), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229960,26 +230062,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112446] = 8, + [112516] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5429), 2, + ACTIONS(6091), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3762), 3, + STATE(3756), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230007,24 +230107,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112499] = 8, + [112569] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6126), 2, + ACTIONS(5552), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3857), 3, + STATE(3818), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230052,24 +230152,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112552] = 8, + [112622] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(5753), 2, sym_number, sym_private_property_identifier, - ACTIONS(3801), 3, + ACTIONS(3879), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3767), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230097,24 +230197,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112605] = 9, - ACTIONS(1561), 1, + [112675] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6130), 1, + ACTIONS(6134), 1, anon_sym_RBRACE, - STATE(5319), 1, + STATE(5117), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(4372), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230142,24 +230242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112659] = 9, - ACTIONS(1561), 1, + [112729] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6134), 1, + ACTIONS(6138), 1, anon_sym_RBRACE, - STATE(5319), 1, + STATE(4785), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6140), 2, sym_number, sym_private_property_identifier, - STATE(4372), 3, + STATE(4167), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230187,39 +230287,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112713] = 14, - ACTIONS(1621), 1, + [112783] = 14, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(4151), 1, + ACTIONS(2354), 1, anon_sym_async, - ACTIONS(4155), 1, + ACTIONS(2356), 1, anon_sym_readonly, - ACTIONS(6136), 1, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, + ACTIONS(6142), 1, anon_sym_static, - STATE(2774), 1, + STATE(2766), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(4157), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3084), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 17, + ACTIONS(2352), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230237,7 +230337,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112777] = 22, + [112847] = 9, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(6144), 1, + anon_sym_RBRACE, + STATE(5117), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6136), 2, + sym_number, + sym_private_property_identifier, + STATE(4376), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 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, + [112901] = 22, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2382), 1, @@ -230270,18 +230415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(4255), 1, + STATE(4082), 1, sym_internal_module, - STATE(4274), 1, - aux_sym_export_statement_repeat1, - STATE(4276), 1, + STATE(4120), 1, sym_declaration, + STATE(4277), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4247), 13, + STATE(4071), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -230295,28 +230440,35 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [112857] = 9, - ACTIONS(1561), 1, + [112981] = 12, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(3689), 1, + anon_sym_override, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6138), 1, - anon_sym_RBRACE, - STATE(5319), 1, - sym_enum_assignment, + ACTIONS(5851), 1, + anon_sym_readonly, + ACTIONS(6146), 1, + anon_sym_STAR, + STATE(2778), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6148), 2, sym_number, sym_private_property_identifier, - STATE(4372), 3, + ACTIONS(6150), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230325,14 +230477,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, @@ -230340,7 +230488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112911] = 22, + [113041] = 22, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2382), 1, @@ -230369,80 +230517,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3803), 1, + ACTIONS(3881), 1, anon_sym_module, - ACTIONS(6140), 1, + ACTIONS(6152), 1, anon_sym_default, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(3889), 1, - sym_declaration, - STATE(4255), 1, + STATE(4082), 1, sym_internal_module, - STATE(4274), 1, + STATE(4277), 1, aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4247), 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, - [112991] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2280), 1, - anon_sym_namespace, - ACTIONS(2284), 1, - anon_sym_import, - ACTIONS(2286), 1, - anon_sym_var, - ACTIONS(2288), 1, - anon_sym_let, - ACTIONS(2290), 1, - anon_sym_const, - ACTIONS(2295), 1, - anon_sym_class, - ACTIONS(2297), 1, - anon_sym_async, - ACTIONS(2299), 1, - anon_sym_function, - ACTIONS(2304), 1, - anon_sym_declare, - ACTIONS(2306), 1, - anon_sym_module, - ACTIONS(2308), 1, - anon_sym_abstract, - ACTIONS(2310), 1, - anon_sym_interface, - ACTIONS(2312), 1, - anon_sym_enum, - ACTIONS(2342), 1, - anon_sym_type, - ACTIONS(6142), 1, - anon_sym_default, - STATE(865), 1, - sym_internal_module, - STATE(880), 1, + STATE(4280), 1, sym_declaration, - STATE(1270), 1, - sym_decorator, - STATE(4278), 1, - aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(868), 13, + STATE(4071), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -230456,35 +230546,35 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113071] = 12, + [113121] = 12, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5903), 1, - anon_sym_readonly, - ACTIONS(6144), 1, + ACTIONS(6154), 1, anon_sym_STAR, - STATE(2761), 1, + ACTIONS(6158), 1, + anon_sym_readonly, + STATE(2776), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6146), 2, + ACTIONS(6156), 2, sym_number, sym_private_property_identifier, - ACTIONS(6148), 2, + ACTIONS(6160), 2, anon_sym_get, anon_sym_set, - STATE(3024), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230504,43 +230594,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113131] = 12, + [113181] = 14, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(6150), 1, + ACTIONS(4213), 1, anon_sym_STAR, - ACTIONS(6154), 1, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4223), 1, anon_sym_readonly, + ACTIONS(6162), 1, + anon_sym_static, STATE(2769), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6152), 2, + ACTIONS(4221), 2, sym_number, sym_private_property_identifier, - ACTIONS(6156), 2, + ACTIONS(4225), 2, anon_sym_get, anon_sym_set, - STATE(3037), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 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_declare, anon_sym_public, anon_sym_private, @@ -230552,24 +230644,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113191] = 9, - ACTIONS(1561), 1, + [113245] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6158), 1, + ACTIONS(6164), 1, anon_sym_RBRACE, - STATE(4635), 1, + STATE(5117), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6160), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(3953), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230597,24 +230689,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113245] = 9, - ACTIONS(1561), 1, + [113299] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6162), 1, + ACTIONS(6166), 1, anon_sym_RBRACE, - STATE(5319), 1, + STATE(5117), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(4372), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230642,39 +230734,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113299] = 14, - ACTIONS(2328), 1, + [113353] = 14, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, + ACTIONS(3689), 1, anon_sym_override, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5136), 1, anon_sym_STAR, - ACTIONS(6164), 1, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5142), 1, + anon_sym_readonly, + ACTIONS(6168), 1, anon_sym_static, - STATE(2764), 1, + STATE(2760), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5140), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5144), 2, anon_sym_get, anon_sym_set, - STATE(3822), 3, + STATE(3068), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 17, + ACTIONS(3667), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230692,114 +230784,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113363] = 9, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(6166), 1, - anon_sym_RBRACE, - STATE(5319), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6132), 2, - sym_number, - sym_private_property_identifier, - STATE(4372), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, + [113417] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2280), 1, anon_sym_namespace, + ACTIONS(2284), 1, + anon_sym_import, + ACTIONS(2286), 1, + anon_sym_var, + ACTIONS(2288), 1, anon_sym_let, + ACTIONS(2290), 1, + anon_sym_const, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2299), 1, + anon_sym_function, + ACTIONS(2304), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2306), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113417] = 9, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(6168), 1, - anon_sym_RBRACE, - STATE(5319), 1, - sym_enum_assignment, + ACTIONS(2308), 1, + anon_sym_abstract, + ACTIONS(2310), 1, + anon_sym_interface, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2342), 1, + anon_sym_type, + ACTIONS(6170), 1, + anon_sym_default, + STATE(873), 1, + sym_declaration, + STATE(880), 1, + sym_internal_module, + STATE(1267), 1, + sym_decorator, + STATE(4053), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, - sym_number, - sym_private_property_identifier, - STATE(4372), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 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, - [113471] = 9, - ACTIONS(1561), 1, + STATE(851), 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, + [113497] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, + ACTIONS(6172), 1, anon_sym_RBRACE, - STATE(4667), 1, + STATE(5117), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6172), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(4125), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230827,24 +230887,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113525] = 9, - ACTIONS(1561), 1, + [113551] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(6174), 1, anon_sym_RBRACE, - STATE(5319), 1, + STATE(5117), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(4372), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230872,24 +230932,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113579] = 9, - ACTIONS(1561), 1, + [113605] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(6176), 1, anon_sym_RBRACE, - STATE(5319), 1, + STATE(5117), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(4372), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230917,7 +230977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113633] = 22, + [113659] = 22, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2280), 1, @@ -230950,76 +231010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(6178), 1, anon_sym_default, - STATE(865), 1, - sym_internal_module, - STATE(880), 1, - sym_declaration, - STATE(1270), 1, - sym_decorator, - STATE(4278), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(868), 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, - [113713] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2280), 1, - anon_sym_namespace, - ACTIONS(2284), 1, - anon_sym_import, - ACTIONS(2286), 1, - anon_sym_var, - ACTIONS(2288), 1, - anon_sym_let, - ACTIONS(2290), 1, - anon_sym_const, - ACTIONS(2295), 1, - anon_sym_class, - ACTIONS(2297), 1, - anon_sym_async, - ACTIONS(2299), 1, - anon_sym_function, - ACTIONS(2304), 1, - anon_sym_declare, - ACTIONS(2308), 1, - anon_sym_abstract, - ACTIONS(2310), 1, - anon_sym_interface, - ACTIONS(2312), 1, - anon_sym_enum, - ACTIONS(2342), 1, - anon_sym_type, - ACTIONS(2344), 1, - anon_sym_module, - ACTIONS(2346), 1, - anon_sym_global, - STATE(830), 1, + STATE(873), 1, sym_declaration, - STATE(865), 1, + STATE(880), 1, sym_internal_module, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(4278), 1, + STATE(4053), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(868), 13, + STATE(851), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -231033,90 +231035,39 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113793] = 14, - ACTIONS(1621), 1, + [113739] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(3685), 1, - anon_sym_override, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5226), 1, - anon_sym_STAR, - ACTIONS(5228), 1, - anon_sym_async, - ACTIONS(5232), 1, - anon_sym_readonly, ACTIONS(6180), 1, - anon_sym_static, - STATE(2762), 1, - sym_override_modifier, + anon_sym_RBRACE, + STATE(5117), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5230), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - ACTIONS(5234), 2, - anon_sym_get, - anon_sym_set, - STATE(3064), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 17, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, 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, - [113857] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_STAR, - ACTIONS(5292), 1, - anon_sym_async, - ACTIONS(6184), 1, + anon_sym_static, anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5298), 2, anon_sym_get, anon_sym_set, - ACTIONS(6182), 2, - sym_number, - sym_private_property_identifier, - STATE(3043), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3663), 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, @@ -231129,40 +231080,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113914] = 11, - ACTIONS(2328), 1, + [113793] = 9, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, + ACTIONS(6182), 1, + anon_sym_RBRACE, + STATE(4712), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6184), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, + STATE(3958), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 19, + ACTIONS(2352), 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, @@ -231175,79 +231125,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113971] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5491), 1, - anon_sym_STAR, - ACTIONS(5493), 1, - anon_sym_async, - ACTIONS(6186), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5495), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5497), 2, - anon_sym_get, - anon_sym_set, - STATE(3100), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3663), 19, - anon_sym_export, - anon_sym_type, + [113847] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2280), 1, anon_sym_namespace, + ACTIONS(2284), 1, + anon_sym_import, + ACTIONS(2286), 1, + anon_sym_var, + ACTIONS(2288), 1, anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(2290), 1, + anon_sym_const, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_async, + ACTIONS(2299), 1, + anon_sym_function, + ACTIONS(2304), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2308), 1, + anon_sym_abstract, + ACTIONS(2310), 1, + anon_sym_interface, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2342), 1, + anon_sym_type, + ACTIONS(2344), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114028] = 11, + ACTIONS(2346), 1, + anon_sym_global, + STATE(868), 1, + sym_declaration, + STATE(880), 1, + sym_internal_module, + STATE(1267), 1, + sym_decorator, + STATE(4053), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(851), 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, + [113927] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5223), 1, anon_sym_STAR, - ACTIONS(5210), 1, + ACTIONS(5225), 1, anon_sym_async, - ACTIONS(6190), 1, + ACTIONS(6188), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - ACTIONS(6188), 2, + ACTIONS(6186), 2, sym_number, sym_private_property_identifier, - STATE(3046), 3, + STATE(3035), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231267,29 +231229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114085] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - ACTIONS(6192), 1, - anon_sym_STAR, + [113984] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5833), 2, + ACTIONS(3600), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6194), 2, - anon_sym_get, - anon_sym_set, - STATE(3750), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + anon_sym_AT, + ACTIONS(3598), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231299,6 +231251,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, @@ -231311,33 +231265,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114138] = 11, + anon_sym_abstract, + anon_sym_accessor, + [114025] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5236), 1, + ACTIONS(5299), 1, anon_sym_STAR, - ACTIONS(5238), 1, + ACTIONS(5301), 1, anon_sym_async, - ACTIONS(5242), 1, + ACTIONS(5305), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(5303), 2, sym_number, sym_private_property_identifier, - ACTIONS(5244), 2, + ACTIONS(5307), 2, anon_sym_get, anon_sym_set, - STATE(3067), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231357,22 +231313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114195] = 4, + [114082] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(3570), 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(3568), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231396,33 +231349,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114238] = 11, - ACTIONS(2328), 1, + anon_sym_abstract, + anon_sym_accessor, + [114123] = 11, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6047), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(6049), 1, + ACTIONS(5622), 1, anon_sym_async, - ACTIONS(6053), 1, + ACTIONS(6192), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6055), 2, + ACTIONS(5626), 2, anon_sym_get, anon_sym_set, - STATE(3764), 3, + ACTIONS(6190), 2, + sym_number, + sym_private_property_identifier, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231442,33 +231397,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114295] = 11, + [114180] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4145), 1, - anon_sym_STAR, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4151), 1, + ACTIONS(5634), 1, + anon_sym_STAR, + ACTIONS(5666), 1, anon_sym_async, - ACTIONS(4155), 1, + ACTIONS(6194), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - ACTIONS(4157), 2, + ACTIONS(5670), 2, anon_sym_get, anon_sym_set, - STATE(3084), 3, + STATE(3109), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231488,19 +231443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114352] = 3, + [114237] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 7, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3620), 25, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231524,35 +231482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114393] = 11, - ACTIONS(1621), 1, + [114280] = 11, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5290), 1, + ACTIONS(6075), 1, anon_sym_STAR, - ACTIONS(5292), 1, + ACTIONS(6081), 1, anon_sym_async, - ACTIONS(6198), 1, + ACTIONS(6196), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6196), 2, + ACTIONS(6077), 2, sym_number, sym_private_property_identifier, - STATE(3022), 3, + ACTIONS(6079), 2, + anon_sym_get, + anon_sym_set, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(2352), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231572,30 +231528,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114450] = 3, + [114337] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(6039), 1, + anon_sym_STAR, + ACTIONS(6041), 1, + anon_sym_async, + ACTIONS(6045), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3610), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6043), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3608), 25, + ACTIONS(6047), 2, + anon_sym_get, + anon_sym_set, + STATE(3831), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 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, @@ -231608,40 +231574,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114491] = 9, - ACTIONS(2328), 1, + [114394] = 11, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6144), 1, + ACTIONS(4923), 1, anon_sym_STAR, + ACTIONS(4927), 1, + anon_sym_async, + ACTIONS(4931), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5778), 2, + ACTIONS(4929), 2, sym_number, sym_private_property_identifier, - ACTIONS(6200), 2, + ACTIONS(4933), 2, anon_sym_get, anon_sym_set, - STATE(3763), 3, + STATE(3039), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 21, + ACTIONS(3667), 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, @@ -231654,33 +231620,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114544] = 11, + [114451] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5226), 1, + ACTIONS(5136), 1, anon_sym_STAR, - ACTIONS(5228), 1, + ACTIONS(5138), 1, anon_sym_async, - ACTIONS(5232), 1, + ACTIONS(5142), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5230), 2, + ACTIONS(5140), 2, sym_number, sym_private_property_identifier, - ACTIONS(5234), 2, + ACTIONS(5144), 2, anon_sym_get, anon_sym_set, - STATE(3064), 3, + STATE(3068), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231700,30 +231666,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114601] = 3, + [114508] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5313), 1, + anon_sym_STAR, + ACTIONS(5315), 1, + anon_sym_async, + ACTIONS(5319), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3537), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5317), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3535), 25, + ACTIONS(5321), 2, + anon_sym_get, + anon_sym_set, + STATE(3093), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3667), 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, @@ -231736,28 +231712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114642] = 8, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACK, - STATE(5319), 1, - sym_enum_assignment, + [114565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(3630), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(4372), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(3628), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231781,33 +231748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114693] = 11, + anon_sym_abstract, + anon_sym_accessor, + [114606] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5184), 1, + ACTIONS(5255), 1, anon_sym_STAR, - ACTIONS(5186), 1, + ACTIONS(5257), 1, anon_sym_async, - ACTIONS(5190), 1, + ACTIONS(6200), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5188), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5192), 2, + ACTIONS(5261), 2, anon_sym_get, anon_sym_set, - STATE(3015), 3, + ACTIONS(6198), 2, + sym_number, + sym_private_property_identifier, + STATE(3022), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231827,40 +231796,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114750] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_STAR, - ACTIONS(5306), 1, - anon_sym_async, - ACTIONS(5310), 1, - anon_sym_readonly, + [114663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5308), 2, + ACTIONS(3518), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5312), 2, - anon_sym_get, - anon_sym_set, - STATE(3101), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3663), 19, + anon_sym_AT, + ACTIONS(3516), 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, @@ -231873,40 +231832,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114807] = 11, - ACTIONS(2328), 1, + anon_sym_abstract, + anon_sym_accessor, + [114704] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6071), 1, - anon_sym_STAR, - ACTIONS(6077), 1, - anon_sym_async, - ACTIONS(6202), 1, - anon_sym_readonly, + STATE(5117), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6073), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - ACTIONS(6075), 2, - anon_sym_get, - anon_sym_set, - STATE(3786), 3, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 19, + ACTIONS(2352), 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, @@ -231919,33 +231877,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114864] = 11, + [114755] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5276), 1, anon_sym_STAR, - ACTIONS(4612), 1, + ACTIONS(5278), 1, anon_sym_async, - ACTIONS(4616), 1, + ACTIONS(5282), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, + ACTIONS(5280), 2, sym_number, sym_private_property_identifier, - ACTIONS(4618), 2, + ACTIONS(5284), 2, anon_sym_get, anon_sym_set, - STATE(3026), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231965,11 +231923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114921] = 3, + [114812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3618), 7, + ACTIONS(3626), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -231977,7 +231935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3616), 25, + ACTIONS(3624), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232003,33 +231961,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114962] = 11, + [114853] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(6146), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5751), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6202), 2, + anon_sym_get, + anon_sym_set, + STATE(3819), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 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, + [114906] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5583), 1, + ACTIONS(5550), 1, anon_sym_STAR, - ACTIONS(5589), 1, + ACTIONS(5556), 1, anon_sym_async, ACTIONS(6204), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5591), 2, + ACTIONS(5558), 2, sym_number, sym_private_property_identifier, - ACTIONS(5593), 2, + ACTIONS(5560), 2, anon_sym_get, anon_sym_set, - STATE(3028), 3, + STATE(3033), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232049,40 +232051,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115019] = 11, - ACTIONS(1621), 1, + [114963] = 9, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5610), 1, - anon_sym_STAR, - ACTIONS(5616), 1, - anon_sym_async, ACTIONS(6206), 1, - anon_sym_readonly, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5618), 2, + ACTIONS(5753), 2, sym_number, sym_private_property_identifier, - ACTIONS(5620), 2, + ACTIONS(6208), 2, anon_sym_get, anon_sym_set, - STATE(3108), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(2352), 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, @@ -232095,33 +232095,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115076] = 11, + [115016] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5322), 1, + ACTIONS(5223), 1, anon_sym_STAR, - ACTIONS(5324), 1, + ACTIONS(5225), 1, anon_sym_async, - ACTIONS(6210), 1, + ACTIONS(6212), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - ACTIONS(6208), 2, + ACTIONS(6210), 2, sym_number, sym_private_property_identifier, - STATE(3020), 3, + STATE(3041), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 19, + ACTIONS(3667), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232141,35 +232141,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115133] = 7, + [115073] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(4759), 1, anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5499), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3725), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(2352), 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, + [115130] = 11, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4213), 1, + anon_sym_STAR, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(4219), 1, + anon_sym_async, + ACTIONS(4223), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4225), 2, anon_sym_get, anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3667), 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, @@ -232182,36 +232233,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115181] = 8, + [115187] = 11, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_STAR, + ACTIONS(5586), 1, + anon_sym_async, ACTIONS(6214), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6212), 2, + ACTIONS(5588), 2, sym_number, sym_private_property_identifier, - STATE(3333), 3, + ACTIONS(5590), 2, + anon_sym_get, + anon_sym_set, + STATE(3092), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(3667), 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_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232224,12 +232279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115231] = 8, + [115244] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(6218), 1, anon_sym_readonly, @@ -232239,11 +232294,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6216), 2, sym_number, sym_private_property_identifier, - STATE(3439), 3, + STATE(3330), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232266,24 +232321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115281] = 7, - ACTIONS(2328), 1, + [115294] = 7, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5369), 2, + ACTIONS(6220), 2, sym_number, sym_private_property_identifier, - STATE(3841), 3, + STATE(3339), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232307,20 +232362,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115329] = 7, + [115342] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5485), 2, + ACTIONS(5469), 2, sym_number, sym_private_property_identifier, - STATE(3747), 3, + STATE(3775), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232348,26 +232403,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115377] = 8, - ACTIONS(1621), 1, + [115390] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6222), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6220), 2, + ACTIONS(5751), 2, sym_number, sym_private_property_identifier, - STATE(3417), 3, + STATE(3819), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232376,6 +232429,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, @@ -232390,24 +232444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115427] = 7, - ACTIONS(1621), 1, + [115438] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, + ACTIONS(6077), 2, sym_number, sym_private_property_identifier, - STATE(3314), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232431,26 +232485,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115475] = 8, - ACTIONS(1621), 1, + [115486] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(5903), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, + ACTIONS(5606), 2, sym_number, sym_private_property_identifier, - STATE(3314), 3, + STATE(3839), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232459,6 +232511,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, @@ -232473,20 +232526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115525] = 7, + [115534] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5778), 2, + ACTIONS(6123), 2, sym_number, sym_private_property_identifier, - STATE(3763), 3, + STATE(3740), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232514,103 +232567,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115573] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(6226), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6224), 2, - sym_number, - sym_private_property_identifier, - STATE(3327), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3663), 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, - [115623] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4149), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6228), 2, - sym_number, - sym_private_property_identifier, - STATE(3328), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3663), 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, - [115671] = 7, + [115582] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5612), 2, sym_number, sym_private_property_identifier, - STATE(3822), 3, + STATE(3800), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232638,20 +232608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115719] = 7, + [115630] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5507), 2, + ACTIONS(5676), 2, sym_number, sym_private_property_identifier, - STATE(3728), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232679,26 +232649,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115767] = 8, + [115678] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6232), 1, + ACTIONS(6224), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6230), 2, + ACTIONS(6222), 2, sym_number, sym_private_property_identifier, - STATE(3322), 3, + STATE(3449), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232721,24 +232691,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115817] = 7, + [115728] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6234), 2, + ACTIONS(6226), 2, sym_number, sym_private_property_identifier, - STATE(3323), 3, + STATE(3450), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232762,26 +232732,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115865] = 8, + [115776] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6238), 1, + ACTIONS(6228), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6236), 2, + ACTIONS(5923), 2, sym_number, sym_private_property_identifier, - STATE(3379), 3, + STATE(3373), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232804,24 +232774,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115915] = 7, + [115826] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6240), 2, + ACTIONS(5923), 2, sym_number, sym_private_property_identifier, - STATE(3380), 3, + STATE(3373), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232845,20 +232815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115963] = 7, + [115874] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5517), 2, + ACTIONS(6128), 2, sym_number, sym_private_property_identifier, - STATE(3735), 3, + STATE(3728), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232886,24 +232856,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116011] = 7, + [115922] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(6232), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 2, + ACTIONS(6230), 2, sym_number, sym_private_property_identifier, - STATE(3306), 3, + STATE(3312), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232912,7 +232884,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, @@ -232927,24 +232898,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116059] = 7, - ACTIONS(2328), 1, + [115972] = 7, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5435), 2, + ACTIONS(6234), 2, sym_number, sym_private_property_identifier, - STATE(3726), 3, + STATE(3343), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232968,20 +232939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116107] = 7, + [116020] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(6119), 2, sym_number, sym_private_property_identifier, - STATE(3737), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233009,20 +232980,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116155] = 7, + [116068] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5549), 2, + ACTIONS(4761), 2, sym_number, sym_private_property_identifier, - STATE(3736), 3, + STATE(3807), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233050,20 +233021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116203] = 7, + [116116] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5555), 2, + ACTIONS(5582), 2, sym_number, sym_private_property_identifier, - STATE(3828), 3, + STATE(3723), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233091,20 +233062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116251] = 7, + [116164] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5559), 2, + ACTIONS(6043), 2, sym_number, sym_private_property_identifier, - STATE(3742), 3, + STATE(3831), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233132,20 +233103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116299] = 7, + [116212] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5565), 2, + ACTIONS(5714), 2, sym_number, sym_private_property_identifier, - STATE(3771), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233173,24 +233144,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116347] = 7, - ACTIONS(2328), 1, + [116260] = 8, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(6238), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5335), 2, + ACTIONS(6236), 2, sym_number, sym_private_property_identifier, - STATE(3825), 3, + STATE(3383), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233199,7 +233172,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, @@ -233214,20 +233186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116395] = 7, + [116310] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6065), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233255,24 +233227,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116443] = 7, - ACTIONS(2328), 1, + [116358] = 7, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5585), 2, + ACTIONS(6240), 2, sym_number, sym_private_property_identifier, - STATE(3851), 3, + STATE(3384), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233296,24 +233268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116491] = 7, - ACTIONS(2328), 1, + [116406] = 8, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(6244), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(6242), 2, sym_number, sym_private_property_identifier, - STATE(3808), 3, + STATE(3392), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233322,7 +233296,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, @@ -233337,24 +233310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116539] = 7, + [116456] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6242), 2, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - STATE(3435), 3, + STATE(3393), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233378,26 +233351,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116587] = 8, + [116504] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(5851), 1, + ACTIONS(6250), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5809), 2, + ACTIONS(6248), 2, sym_number, sym_private_property_identifier, - STATE(3382), 3, + STATE(3396), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233420,24 +233393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116637] = 7, - ACTIONS(1621), 1, + [116554] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5809), 2, + ACTIONS(5726), 2, sym_number, sym_private_property_identifier, - STATE(3382), 3, + STATE(3745), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233461,20 +233434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116685] = 7, + [116602] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5833), 2, + ACTIONS(6085), 2, sym_number, sym_private_property_identifier, - STATE(3750), 3, + STATE(3792), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233502,24 +233475,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116733] = 7, - ACTIONS(1621), 1, + [116650] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6244), 2, + ACTIONS(5630), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233543,26 +233516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116781] = 8, - ACTIONS(1621), 1, + [116698] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6248), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6246), 2, + ACTIONS(6091), 2, sym_number, sym_private_property_identifier, - STATE(3443), 3, + STATE(3756), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233571,6 +233542,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, @@ -233585,24 +233557,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116831] = 7, + [116746] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6250), 2, + ACTIONS(6252), 2, sym_number, sym_private_property_identifier, - STATE(3444), 3, + STATE(3400), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233626,26 +233598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116879] = 8, - ACTIONS(1621), 1, + [116794] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6254), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6252), 2, + ACTIONS(5473), 2, sym_number, sym_private_property_identifier, - STATE(3447), 3, + STATE(3829), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233654,6 +233624,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, @@ -233668,26 +233639,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116929] = 8, - ACTIONS(1621), 1, + [116842] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6258), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6130), 2, sym_number, sym_private_property_identifier, - STATE(3357), 3, + STATE(3801), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233696,6 +233665,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, @@ -233710,24 +233680,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116979] = 7, + [116890] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(6256), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6260), 2, + ACTIONS(6254), 2, sym_number, sym_private_property_identifier, - STATE(3340), 3, + STATE(3453), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233736,7 +233708,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, @@ -233751,24 +233722,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117027] = 7, - ACTIONS(2328), 1, + [116940] = 7, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5612), 2, + ACTIONS(6258), 2, sym_number, sym_private_property_identifier, - STATE(3790), 3, + STATE(3378), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233792,20 +233763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117075] = 7, + [116988] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(5329), 2, sym_number, sym_private_property_identifier, - STATE(3764), 3, + STATE(3786), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233833,24 +233804,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117123] = 7, - ACTIONS(2328), 1, + [117036] = 8, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(6262), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5545), 2, + ACTIONS(6260), 2, sym_number, sym_private_property_identifier, - STATE(3752), 3, + STATE(3409), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233859,7 +233832,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, @@ -233874,24 +233846,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117171] = 7, - ACTIONS(2328), 1, + [117086] = 7, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6073), 2, + ACTIONS(6264), 2, sym_number, sym_private_property_identifier, - STATE(3786), 3, + STATE(3410), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233915,24 +233887,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117219] = 7, - ACTIONS(2328), 1, + [117134] = 8, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(6268), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6081), 2, + ACTIONS(6266), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3411), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233941,7 +233915,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, @@ -233956,20 +233929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117267] = 7, + [117184] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5503), 2, + ACTIONS(5421), 2, sym_number, sym_private_property_identifier, - STATE(3849), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233997,20 +233970,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117315] = 7, + [117232] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 2, + ACTIONS(5451), 2, sym_number, sym_private_property_identifier, - STATE(3798), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234038,20 +234011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117363] = 7, + [117280] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6121), 2, + ACTIONS(5636), 2, sym_number, sym_private_property_identifier, - STATE(3814), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234079,20 +234052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117411] = 7, + [117328] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5511), 2, + ACTIONS(5465), 2, sym_number, sym_private_property_identifier, - STATE(3837), 3, + STATE(3757), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234120,26 +234093,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117459] = 8, - ACTIONS(1621), 1, + [117376] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(6262), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5929), 2, + ACTIONS(6132), 2, sym_number, sym_private_property_identifier, - STATE(3348), 3, + STATE(3805), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234148,6 +234119,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, @@ -234162,20 +234134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117509] = 7, + [117424] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5686), 2, + ACTIONS(5644), 2, sym_number, sym_private_property_identifier, - STATE(3758), 3, + STATE(3855), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234203,24 +234175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117557] = 7, - ACTIONS(1621), 1, + [117472] = 7, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5929), 2, + ACTIONS(5650), 2, sym_number, sym_private_property_identifier, - STATE(3348), 3, + STATE(3744), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234244,20 +234216,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117605] = 7, + [117520] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5429), 2, + ACTIONS(5552), 2, sym_number, sym_private_property_identifier, - STATE(3762), 3, + STATE(3818), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234285,24 +234257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117653] = 7, - ACTIONS(2328), 1, + [117568] = 7, + ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(5003), 2, sym_number, sym_private_property_identifier, - STATE(3767), 3, + STATE(3352), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234326,20 +234298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117701] = 7, + [117616] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6126), 2, + ACTIONS(6121), 2, sym_number, sym_private_property_identifier, - STATE(3857), 3, + STATE(3758), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234367,20 +234339,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117749] = 7, + [117664] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5839), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5800), 2, + sym_number, + sym_private_property_identifier, + STATE(3323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3667), 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, + [117714] = 7, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5800), 2, + sym_number, + sym_private_property_identifier, + STATE(3323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3667), 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, + [117762] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6119), 2, + ACTIONS(5753), 2, sym_number, sym_private_property_identifier, - STATE(3811), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234408,26 +234463,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117797] = 8, + [117810] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6266), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4806), 2, + sym_number, + sym_private_property_identifier, + STATE(3351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3667), 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, + [117858] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4759), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6264), 2, + ACTIONS(5656), 2, sym_number, sym_private_property_identifier, - STATE(3300), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234436,6 +234530,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, @@ -234450,24 +234545,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117847] = 7, + [117906] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6268), 2, + ACTIONS(6270), 2, sym_number, sym_private_property_identifier, - STATE(3303), 3, + STATE(3325), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234491,24 +234586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117895] = 7, + [117954] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6270), 2, + ACTIONS(6272), 2, sym_number, sym_private_property_identifier, - STATE(3343), 3, + STATE(3331), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234532,26 +234627,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117943] = 8, + [118002] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(6274), 1, + ACTIONS(6276), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6272), 2, + ACTIONS(6274), 2, sym_number, sym_private_property_identifier, - STATE(3325), 3, + STATE(3334), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 22, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234574,24 +234669,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117993] = 7, + [118052] = 8, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4149), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, + ACTIONS(5851), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6276), 2, + ACTIONS(5003), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(3352), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3663), 23, + ACTIONS(3667), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234600,7 +234697,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, + [118102] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(4217), 1, + anon_sym_LBRACK, + ACTIONS(6280), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6278), 2, + sym_number, + sym_private_property_identifier, + STATE(3290), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3667), 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, @@ -234615,20 +234753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118041] = 7, + [118152] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4752), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(5481), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3782), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234656,15 +234794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118089] = 4, - ACTIONS(6278), 1, + [118200] = 4, + ACTIONS(6282), 1, sym_identifier, - STATE(5557), 1, + STATE(5500), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6280), 22, + ACTIONS(6284), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234687,26 +234825,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118124] = 9, - ACTIONS(3497), 1, + [118235] = 9, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(3499), 1, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6286), 1, anon_sym_DOT, - ACTIONS(3503), 1, + ACTIONS(6288), 1, anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(2895), 1, + STATE(2900), 1, sym_arguments, - STATE(2984), 1, + STATE(3002), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 2, + ACTIONS(4061), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3473), 12, + ACTIONS(4063), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -234719,26 +234857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [118165] = 9, - ACTIONS(3497), 1, + [118276] = 9, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(6008), 1, + ACTIONS(6028), 1, anon_sym_LT, - ACTIONS(6282), 1, + ACTIONS(6290), 1, anon_sym_DOT, - ACTIONS(6284), 1, + ACTIONS(6292), 1, anon_sym_QMARK_DOT, STATE(2897), 1, sym_arguments, - STATE(2909), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, + ACTIONS(4055), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4025), 12, + ACTIONS(4057), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -234751,26 +234889,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [118206] = 9, - ACTIONS(3497), 1, + [118317] = 9, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6286), 1, + ACTIONS(3526), 1, anon_sym_DOT, - ACTIONS(6288), 1, + ACTIONS(3528), 1, anon_sym_QMARK_DOT, - STATE(2884), 1, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(2894), 1, sym_arguments, - STATE(2912), 1, + STATE(2980), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4053), 2, + ACTIONS(3489), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4055), 12, + ACTIONS(3479), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -234783,14 +234921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [118247] = 3, + [118358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 2, + ACTIONS(4177), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4409), 17, + ACTIONS(4179), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234808,14 +234946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118275] = 3, + [118386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 2, + ACTIONS(4245), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4109), 17, + ACTIONS(4247), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234833,14 +234971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118303] = 3, + [118414] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 2, + ACTIONS(4115), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4161), 17, + ACTIONS(4117), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234858,14 +234996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118331] = 3, + [118442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 2, + ACTIONS(4119), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4109), 17, + ACTIONS(4121), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234883,14 +235021,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118359] = 3, + [118470] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 2, + ACTIONS(4119), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4109), 17, + ACTIONS(4121), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234908,14 +235046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118387] = 3, + [118498] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4445), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4143), 17, + ACTIONS(4447), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234933,14 +235071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118415] = 3, + [118526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 2, + ACTIONS(4119), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4274), 17, + ACTIONS(4121), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234958,14 +235096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118443] = 3, + [118554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 2, + ACTIONS(4173), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4117), 17, + ACTIONS(4175), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234983,14 +235121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118471] = 3, + [118582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 2, + ACTIONS(4173), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4274), 17, + ACTIONS(4175), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235008,14 +235146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118499] = 3, + [118610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 2, + ACTIONS(4245), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4161), 17, + ACTIONS(4247), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235033,14 +235171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118527] = 3, + [118638] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 2, + ACTIONS(4173), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4161), 17, + ACTIONS(4175), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235058,14 +235196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118555] = 3, + [118666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 2, + ACTIONS(4177), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4483), 17, + ACTIONS(4179), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235083,14 +235221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118583] = 3, + [118694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 2, + ACTIONS(4445), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4371), 17, + ACTIONS(4447), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235108,14 +235246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118611] = 3, + [118722] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 2, + ACTIONS(4429), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4375), 17, + ACTIONS(4431), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235133,14 +235271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118639] = 3, + [118750] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 2, + ACTIONS(4235), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4379), 17, + ACTIONS(4237), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235158,14 +235296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118667] = 3, + [118778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4445), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4447), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235183,14 +235321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118695] = 3, + [118806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 2, + ACTIONS(4235), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4379), 17, + ACTIONS(4237), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235208,14 +235346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118723] = 3, + [118834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4201), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4203), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235233,14 +235371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118751] = 3, + [118862] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 2, + ACTIONS(4429), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4401), 17, + ACTIONS(4431), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235258,14 +235396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118779] = 3, + [118890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 2, + ACTIONS(4429), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4409), 17, + ACTIONS(4431), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235283,14 +235421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118807] = 3, + [118918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 2, + ACTIONS(4201), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4401), 17, + ACTIONS(4203), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235308,14 +235446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118835] = 3, + [118946] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 2, + ACTIONS(4227), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4274), 17, + ACTIONS(4229), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235333,14 +235471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118863] = 3, + [118974] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, + ACTIONS(4437), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4419), 17, + ACTIONS(4439), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235358,14 +235496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118891] = 3, + [119002] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 2, + ACTIONS(4239), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4433), 17, + ACTIONS(4241), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235383,14 +235521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118919] = 3, + [119030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, + ACTIONS(4343), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4419), 17, + ACTIONS(4345), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235408,14 +235546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118947] = 3, + [119058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 2, + ACTIONS(4227), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4433), 17, + ACTIONS(4229), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235433,14 +235571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [118975] = 3, + [119086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 2, + ACTIONS(4472), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4309), 17, + ACTIONS(4474), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235458,14 +235596,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [119003] = 3, + [119114] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 2, + ACTIONS(4437), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4117), 17, + ACTIONS(4439), 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_LT, + anon_sym_extends, + [119142] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4233), 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_LT, + anon_sym_extends, + [119170] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4233), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235483,14 +235671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [119031] = 3, + [119198] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 2, + ACTIONS(4239), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4387), 17, + ACTIONS(4241), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235508,14 +235696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [119059] = 3, + [119226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 2, + ACTIONS(4437), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4309), 17, + ACTIONS(4439), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235533,14 +235721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [119087] = 3, + [119254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4425), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4143), 17, + ACTIONS(4427), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235558,14 +235746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [119115] = 3, + [119282] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 2, + ACTIONS(4177), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4117), 17, + ACTIONS(4179), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235583,175 +235771,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [119143] = 3, + [119310] = 3, + ACTIONS(1811), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 2, + ACTIONS(1809), 17, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4309), 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_RPAREN, + anon_sym_SEMI, 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_QMARK, anon_sym_extends, - [119171] = 3, + anon_sym_PIPE_RBRACE, + [119337] = 3, + ACTIONS(1805), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 2, + ACTIONS(1803), 17, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4143), 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_RPAREN, + anon_sym_SEMI, 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_QMARK, anon_sym_extends, - [119199] = 14, + anon_sym_PIPE_RBRACE, + [119364] = 14, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(6290), 1, + ACTIONS(6294), 1, sym_identifier, - ACTIONS(6292), 1, + ACTIONS(6296), 1, anon_sym_STAR, - ACTIONS(6294), 1, + ACTIONS(6298), 1, anon_sym_type, - ACTIONS(6296), 1, + ACTIONS(6300), 1, anon_sym_LBRACE, - ACTIONS(6298), 1, + ACTIONS(6302), 1, anon_sym_typeof, - STATE(4344), 1, - sym_import_require_clause, - STATE(4449), 1, + STATE(4215), 1, sym_string, - STATE(5097), 1, - sym__import_identifier, - STATE(5325), 1, + STATE(4216), 1, + sym_import_require_clause, + STATE(5233), 1, sym_import_clause, + STATE(5234), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5635), 2, + STATE(5622), 2, sym_namespace_import, sym_named_imports, - ACTIONS(6300), 5, + ACTIONS(6304), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [119248] = 4, - ACTIONS(1925), 1, - anon_sym_DOT, - ACTIONS(4257), 1, + [119413] = 3, + ACTIONS(4491), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 15, + ACTIONS(4493), 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, - [119276] = 3, - ACTIONS(1947), 1, - anon_sym_PIPE, + [119439] = 3, + ACTIONS(4495), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1945), 16, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4497), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + 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_LT, + anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119302] = 9, - ACTIONS(3475), 1, - anon_sym_LPAREN, - ACTIONS(3477), 1, + [119465] = 4, + ACTIONS(1839), 1, anon_sym_DOT, - ACTIONS(3481), 1, - anon_sym_QMARK_DOT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, - anon_sym_LT, - STATE(3077), 1, - sym_arguments, - STATE(3196), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3473), 10, - sym__automatic_semicolon, + ACTIONS(4453), 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, - [119340] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4189), 15, + ACTIONS(4455), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235761,48 +235918,42 @@ 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_extends, - [119366] = 9, - ACTIONS(3475), 1, - anon_sym_LPAREN, - ACTIONS(4023), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, anon_sym_LT, - ACTIONS(6304), 1, - anon_sym_DOT, - ACTIONS(6306), 1, - anon_sym_QMARK_DOT, - STATE(3078), 1, - sym_arguments, - STATE(3197), 1, - sym_type_arguments, + anon_sym_QMARK, + anon_sym_extends, + [119493] = 3, + ACTIONS(3665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3469), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119404] = 3, - ACTIONS(3647), 1, + [119519] = 3, + ACTIONS(3661), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 16, + ACTIONS(3471), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235819,13 +235970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119430] = 3, - ACTIONS(3661), 1, + [119545] = 3, + ACTIONS(4483), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3459), 16, + ACTIONS(4485), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235842,16 +235993,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119456] = 4, - ACTIONS(1929), 1, - anon_sym_DOT, - ACTIONS(4257), 1, + [119571] = 7, + ACTIONS(4069), 1, anon_sym_EQ, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6306), 1, + anon_sym_DOT, + ACTIONS(6308), 1, + anon_sym_is, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 15, - anon_sym_as, + ACTIONS(3502), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -235863,39 +236019,39 @@ 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, - [119484] = 3, - ACTIONS(4325), 1, - anon_sym_EQ, + [119605] = 5, + ACTIONS(6310), 1, + anon_sym_DOT, + ACTIONS(6312), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 16, + ACTIONS(4333), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4335), 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, 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, - [119510] = 3, - ACTIONS(4329), 1, + [119635] = 3, + ACTIONS(4111), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4331), 16, + ACTIONS(4113), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235912,18 +236068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119536] = 3, - ACTIONS(4337), 1, - anon_sym_EQ, + [119661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 16, + ACTIONS(4279), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4277), 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, @@ -235931,52 +236087,54 @@ 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, - [119562] = 3, - ACTIONS(4345), 1, - anon_sym_EQ, + [119687] = 5, + ACTIONS(3526), 1, + anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 16, + ACTIONS(3489), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3479), 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, 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, - [119588] = 9, - ACTIONS(3475), 1, + [119717] = 9, + ACTIONS(3481), 1, anon_sym_LPAREN, - ACTIONS(4053), 1, + ACTIONS(4061), 1, anon_sym_PIPE, - ACTIONS(6302), 1, - anon_sym_LT, - ACTIONS(6308), 1, + ACTIONS(6314), 1, anon_sym_DOT, - ACTIONS(6310), 1, + ACTIONS(6316), 1, anon_sym_QMARK_DOT, - STATE(3079), 1, + ACTIONS(6318), 1, + anon_sym_LT, + STATE(3058), 1, sym_arguments, - STATE(3198), 1, + STATE(3187), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4055), 10, + ACTIONS(4063), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -235987,19 +236145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119626] = 6, - ACTIONS(4047), 1, - anon_sym_EQ, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6312), 1, - anon_sym_DOT, - STATE(2926), 1, - sym_type_arguments, + [119755] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 13, + ACTIONS(4409), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4411), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236008,20 +236162,25 @@ 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, - [119658] = 3, + [119781] = 6, + ACTIONS(4069), 1, + anon_sym_EQ, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6306), 1, + anon_sym_DOT, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4169), 15, - anon_sym_as, + ACTIONS(3502), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236030,27 +236189,21 @@ 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, - [119684] = 7, - ACTIONS(4047), 1, - anon_sym_EQ, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6312), 1, + [119813] = 4, + ACTIONS(1813), 1, anon_sym_DOT, - ACTIONS(6314), 1, - anon_sym_is, - STATE(2926), 1, - sym_type_arguments, + ACTIONS(4453), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 12, + ACTIONS(4455), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236062,15 +236215,17 @@ 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, - [119718] = 3, + [119841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 2, + ACTIONS(4417), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4177), 15, + ACTIONS(4419), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236086,88 +236241,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [119744] = 3, - ACTIONS(1851), 1, + [119867] = 9, + ACTIONS(3481), 1, + anon_sym_LPAREN, + ACTIONS(3483), 1, + anon_sym_DOT, + ACTIONS(3487), 1, + anon_sym_QMARK_DOT, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(6318), 1, + anon_sym_LT, + STATE(3056), 1, + sym_arguments, + STATE(3237), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 16, + ACTIONS(3479), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - 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, - [119770] = 5, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3483), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3473), 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_GT, - anon_sym_EQ_GT, - anon_sym_AMP, + [119905] = 9, + ACTIONS(3481), 1, + anon_sym_LPAREN, + ACTIONS(4055), 1, anon_sym_PIPE, - anon_sym_extends, - [119800] = 5, - ACTIONS(6316), 1, - anon_sym_DOT, ACTIONS(6318), 1, + anon_sym_LT, + ACTIONS(6320), 1, + anon_sym_DOT, + ACTIONS(6322), 1, anon_sym_QMARK_DOT, + STATE(3057), 1, + sym_arguments, + STATE(3220), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 2, + ACTIONS(4057), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4303), 13, - anon_sym_as, 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, - [119830] = 4, - ACTIONS(4129), 1, + anon_sym_PIPE_RBRACE, + [119943] = 3, + ACTIONS(4331), 1, anon_sym_EQ, - ACTIONS(6320), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 14, + ACTIONS(4329), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236177,22 +236315,22 @@ 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_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119857] = 5, - ACTIONS(4097), 1, + [119968] = 4, + ACTIONS(4299), 1, anon_sym_EQ, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(2969), 1, - sym_type_arguments, + ACTIONS(6324), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4301), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236206,14 +236344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119886] = 3, - ACTIONS(4103), 1, + [119995] = 6, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(4093), 1, anon_sym_EQ, + ACTIONS(6326), 1, + anon_sym_DOT, + STATE(2907), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 15, - anon_sym_as, + ACTIONS(4095), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236225,17 +236368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [119911] = 3, - ACTIONS(4299), 1, + [120026] = 5, + ACTIONS(4075), 1, anon_sym_EQ, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(2947), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 15, - anon_sym_as, + ACTIONS(4077), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236244,19 +236388,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_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119936] = 3, - ACTIONS(4111), 1, + [120055] = 3, + ACTIONS(4393), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 15, + ACTIONS(4395), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236272,19 +236415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119961] = 6, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(4073), 1, + [120080] = 3, + ACTIONS(1819), 1, anon_sym_EQ, - ACTIONS(6322), 1, - anon_sym_DOT, - STATE(2905), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 12, + ACTIONS(1817), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236296,14 +236434,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, - [119992] = 3, - ACTIONS(1905), 1, + anon_sym_is, + [120105] = 3, + ACTIONS(4089), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 15, + ACTIONS(4091), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236319,23 +236459,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_is, - [120017] = 8, - ACTIONS(6324), 1, + [120130] = 8, + ACTIONS(6328), 1, anon_sym_LPAREN, - ACTIONS(6326), 1, + ACTIONS(6330), 1, anon_sym_DOT, - ACTIONS(6328), 1, + ACTIONS(6332), 1, anon_sym_QMARK_DOT, - ACTIONS(6330), 1, + ACTIONS(6334), 1, anon_sym_LT, - STATE(3241), 1, + STATE(3198), 1, sym_arguments, - STATE(3414), 1, + STATE(3382), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 9, + ACTIONS(4063), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -236345,13 +236485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120051] = 3, - ACTIONS(4179), 1, + [120164] = 3, + ACTIONS(4397), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 14, + ACTIONS(4399), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236366,13 +236506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120075] = 3, - ACTIONS(4123), 1, + [120188] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6336), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120210] = 3, + ACTIONS(4503), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 14, + ACTIONS(4505), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236387,13 +236547,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120099] = 3, - ACTIONS(4311), 1, + [120234] = 3, + ACTIONS(4437), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4439), 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, + [120258] = 3, + ACTIONS(4361), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 14, + ACTIONS(4363), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236408,13 +236589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120123] = 3, - ACTIONS(4191), 1, + [120282] = 3, + ACTIONS(4499), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 14, + ACTIONS(4501), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236429,13 +236610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120147] = 3, - ACTIONS(4465), 1, + [120306] = 3, + ACTIONS(4319), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4467), 14, + ACTIONS(4321), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236450,54 +236631,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120171] = 2, + [120330] = 3, + ACTIONS(4119), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6332), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120193] = 3, - ACTIONS(4461), 1, + ACTIONS(4121), 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, + [120354] = 5, + ACTIONS(4369), 1, anon_sym_EQ, + ACTIONS(6338), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 14, + ACTIONS(4307), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4371), 10, 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, - [120217] = 3, - ACTIONS(4421), 1, + [120382] = 3, + ACTIONS(4487), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 14, + ACTIONS(4489), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236512,13 +236696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120241] = 3, - ACTIONS(4183), 1, + [120406] = 3, + ACTIONS(4325), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 14, + ACTIONS(4327), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236533,22 +236717,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120265] = 7, - ACTIONS(1561), 1, + [120430] = 7, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6336), 1, + ACTIONS(6342), 1, sym_number, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5762), 2, + STATE(5620), 2, sym_string, sym_predefined_type, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236558,49 +236742,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120297] = 8, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, - ACTIONS(6340), 1, - sym_number, - STATE(5768), 1, - sym_string, - STATE(5771), 1, - sym_predefined_type, + [120462] = 3, + ACTIONS(4479), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 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, - [120331] = 8, - ACTIONS(1561), 1, + ACTIONS(4481), 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, + [120486] = 3, + ACTIONS(4445), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 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, + [120510] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6342), 1, + ACTIONS(6346), 1, sym_number, - STATE(5779), 1, + STATE(5624), 1, sym_string, - STATE(5783), 1, + STATE(5625), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236610,23 +236810,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120365] = 8, - ACTIONS(1561), 1, + [120544] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6348), 1, sym_number, - STATE(5789), 1, + STATE(5645), 1, sym_string, - STATE(5791), 1, + STATE(5654), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236636,34 +236836,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120399] = 3, - ACTIONS(4459), 1, - anon_sym_EQ, + [120578] = 3, + ACTIONS(4429), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 14, - anon_sym_as, + ACTIONS(4431), 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_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120602] = 3, + ACTIONS(4437), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4439), 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, - [120423] = 3, - ACTIONS(4315), 1, + anon_sym_PIPE_RBRACE, + [120626] = 3, + ACTIONS(4305), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 14, + ACTIONS(4307), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236678,13 +236899,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120447] = 3, - ACTIONS(4391), 1, + [120650] = 8, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6350), 1, + sym_number, + STATE(5510), 1, + sym_predefined_type, + STATE(5828), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6340), 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, + [120684] = 3, + ACTIONS(4181), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 14, + ACTIONS(4183), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236699,38 +236946,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120471] = 7, - ACTIONS(4047), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, + [120708] = 8, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6352), 1, + sym_number, + STATE(5663), 1, + sym_string, + STATE(5667), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6340), 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, + [120742] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6354), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120764] = 8, + ACTIONS(6328), 1, + anon_sym_LPAREN, + ACTIONS(6334), 1, anon_sym_LT, - ACTIONS(6346), 1, + ACTIONS(6356), 1, anon_sym_DOT, - ACTIONS(6348), 1, - anon_sym_is, - STATE(3189), 1, + ACTIONS(6358), 1, + anon_sym_QMARK_DOT, + STATE(3196), 1, + sym_arguments, + STATE(3454), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 10, + ACTIONS(3479), 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, + [120798] = 8, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6360), 1, + sym_number, + STATE(5545), 1, + sym_string, + STATE(5587), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6340), 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, + [120832] = 3, + ACTIONS(4445), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 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, - [120503] = 3, - ACTIONS(4395), 1, + [120856] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6362), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120878] = 3, + ACTIONS(4460), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 14, + ACTIONS(4462), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236745,36 +237106,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120527] = 5, - ACTIONS(4413), 1, - anon_sym_EQ, - ACTIONS(6350), 1, - anon_sym_LBRACK, + [120902] = 3, + ACTIONS(4119), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4415), 10, - anon_sym_as, + ACTIONS(4121), 14, + sym__automatic_semicolon, + anon_sym_EQ, 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, - [120555] = 3, - ACTIONS(4349), 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, + [120926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6364), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120948] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6366), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120970] = 3, + ACTIONS(4311), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 14, + ACTIONS(4313), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236789,13 +237188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120579] = 3, - ACTIONS(4365), 1, + [120994] = 3, + ACTIONS(4464), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 14, + ACTIONS(4466), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236810,13 +237209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120603] = 3, - ACTIONS(4264), 1, + [121018] = 3, + ACTIONS(4468), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 14, + ACTIONS(4470), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236831,13 +237230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120627] = 3, - ACTIONS(4399), 1, + [121042] = 3, + ACTIONS(4445), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 14, + ACTIONS(4447), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236852,13 +237251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120651] = 3, - ACTIONS(4407), 1, + [121066] = 3, + ACTIONS(4119), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 14, + ACTIONS(4121), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236873,11 +237272,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120675] = 2, + [121090] = 3, + ACTIONS(4387), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4389), 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, + [121114] = 4, + ACTIONS(4379), 1, + anon_sym_EQ, + ACTIONS(6338), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 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, + [121140] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6352), 15, + ACTIONS(6368), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236893,13 +237335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120697] = 3, - ACTIONS(4399), 1, + [121162] = 3, + ACTIONS(4173), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 14, + ACTIONS(4175), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236914,95 +237356,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120721] = 3, - ACTIONS(4407), 1, - anon_sym_PIPE, + [121186] = 8, + ACTIONS(6328), 1, + anon_sym_LPAREN, + ACTIONS(6334), 1, + anon_sym_LT, + ACTIONS(6370), 1, + anon_sym_DOT, + ACTIONS(6372), 1, + anon_sym_QMARK_DOT, + STATE(3197), 1, + sym_arguments, + STATE(3380), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 14, + ACTIONS(4057), 9, 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_LT, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120745] = 7, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, - ACTIONS(6354), 1, - sym_number, + [121220] = 3, + ACTIONS(4271), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5782), 2, - sym_string, - sym_predefined_type, - ACTIONS(6334), 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, - [120777] = 8, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, - ACTIONS(6356), 1, - sym_number, - STATE(5504), 1, - sym_predefined_type, - STATE(5800), 1, - sym_string, + ACTIONS(4269), 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, + [121244] = 3, + ACTIONS(4357), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 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, - [120811] = 8, - ACTIONS(1561), 1, + 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, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [121268] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6358), 1, + ACTIONS(6374), 1, sym_number, - STATE(5456), 1, + STATE(5583), 1, sym_string, - STATE(5506), 1, + STATE(5652), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237012,102 +237450,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120845] = 8, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, - ACTIONS(6360), 1, - sym_number, - STATE(5472), 1, - sym_string, - STATE(5501), 1, - sym_predefined_type, + [121302] = 3, + ACTIONS(4287), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 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, - [120879] = 3, - ACTIONS(4417), 1, + ACTIONS(4289), 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, + [121326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 14, - sym__automatic_semicolon, + ACTIONS(6376), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121348] = 3, + ACTIONS(4449), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4451), 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, - [120903] = 3, - ACTIONS(4431), 1, + [121372] = 7, + ACTIONS(4069), 1, anon_sym_PIPE, + ACTIONS(6318), 1, + anon_sym_LT, + ACTIONS(6378), 1, + anon_sym_DOT, + ACTIONS(6380), 1, + anon_sym_is, + STATE(3221), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 14, + ACTIONS(3502), 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, - [120927] = 3, - ACTIONS(4417), 1, - anon_sym_PIPE, + [121404] = 3, + ACTIONS(4099), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4101), 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, - [120951] = 3, - ACTIONS(4431), 1, + [121428] = 3, + ACTIONS(4173), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 14, + ACTIONS(4175), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237122,13 +237579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120975] = 3, - ACTIONS(4093), 1, + [121452] = 3, + ACTIONS(4339), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 14, + ACTIONS(4341), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237143,11 +237600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120999] = 2, + [121476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6362), 15, + ACTIONS(6382), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237163,65 +237620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [121021] = 4, - ACTIONS(4441), 1, - anon_sym_EQ, - ACTIONS(6350), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4443), 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, - [121047] = 3, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4089), 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, - [121071] = 7, - ACTIONS(1561), 1, + [121498] = 7, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6364), 1, + ACTIONS(6384), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5659), 2, + STATE(5752), 2, sym_string, sym_predefined_type, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237231,23 +237645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121103] = 8, - ACTIONS(1561), 1, + [121530] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6366), 1, + ACTIONS(6386), 1, sym_number, - STATE(5665), 1, + STATE(5756), 1, sym_string, - STATE(5666), 1, + STATE(5761), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237257,23 +237671,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121137] = 8, - ACTIONS(1561), 1, + [121564] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6368), 1, + ACTIONS(6388), 1, sym_number, - STATE(5668), 1, + STATE(5770), 1, sym_string, - STATE(5669), 1, + STATE(5773), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237283,48 +237697,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121171] = 8, - ACTIONS(1561), 1, + [121598] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6370), 1, + ACTIONS(6390), 1, sym_number, - STATE(5674), 1, + STATE(5779), 1, sym_string, - STATE(5676), 1, + STATE(5781), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 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, - [121205] = 7, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, - ACTIONS(6372), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5717), 2, - sym_string, - sym_predefined_type, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237334,13 +237723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121237] = 3, - ACTIONS(4341), 1, + [121632] = 3, + ACTIONS(4291), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 14, + ACTIONS(4293), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237355,33 +237744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [121261] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6374), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121283] = 3, - ACTIONS(4481), 1, + [121656] = 3, + ACTIONS(4177), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 14, + ACTIONS(4179), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237396,39 +237765,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121307] = 8, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, - ACTIONS(6376), 1, - sym_number, - STATE(5438), 1, - sym_string, - STATE(5621), 1, - sym_predefined_type, + [121680] = 3, + ACTIONS(4343), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 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, - [121341] = 3, - ACTIONS(4115), 1, + ACTIONS(4345), 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, + [121704] = 3, + ACTIONS(4177), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 14, + ACTIONS(4179), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237443,13 +237807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121365] = 3, - ACTIONS(4115), 1, + [121728] = 3, + ACTIONS(4472), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 14, + ACTIONS(4474), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237464,13 +237828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121389] = 3, - ACTIONS(4115), 1, + [121752] = 3, + ACTIONS(4177), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 14, + ACTIONS(4179), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237485,13 +237849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121413] = 3, - ACTIONS(4253), 1, + [121776] = 3, + ACTIONS(4085), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 14, + ACTIONS(4087), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237506,23 +237870,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [121437] = 8, - ACTIONS(1561), 1, + [121800] = 7, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6378), 1, + ACTIONS(6392), 1, sym_number, - STATE(5658), 1, - sym_string, - STATE(5754), 1, - sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + STATE(5808), 2, + sym_string, + sym_predefined_type, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237532,13 +237895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121471] = 3, - ACTIONS(4307), 1, + [121832] = 3, + ACTIONS(4201), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 14, + ACTIONS(4203), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237553,13 +237916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121495] = 3, - ACTIONS(4307), 1, + [121856] = 3, + ACTIONS(4425), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 14, + ACTIONS(4427), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237574,13 +237937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121519] = 3, - ACTIONS(4159), 1, + [121880] = 3, + ACTIONS(4227), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 14, + ACTIONS(4229), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237595,13 +237958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121543] = 3, - ACTIONS(4159), 1, + [121904] = 3, + ACTIONS(4429), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 14, + ACTIONS(4431), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237616,39 +237979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121567] = 8, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(6338), 1, - anon_sym_unique, - ACTIONS(6380), 1, - sym_number, - STATE(5554), 1, - sym_string, - STATE(5581), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6334), 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, - [121601] = 3, - ACTIONS(4159), 1, + [121928] = 3, + ACTIONS(4201), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 14, + ACTIONS(4203), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237663,34 +238000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121625] = 3, - ACTIONS(4333), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4335), 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, - [121649] = 3, - ACTIONS(4495), 1, + [121952] = 3, + ACTIONS(4405), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 14, + ACTIONS(4407), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237705,54 +238021,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [121673] = 3, - ACTIONS(4385), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4387), 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, - [121697] = 2, + [121976] = 8, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6394), 1, + sym_number, + STATE(5821), 1, + sym_string, + STATE(5822), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6382), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121719] = 3, - ACTIONS(4141), 1, + ACTIONS(6340), 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, + [122010] = 3, + ACTIONS(4429), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 14, + ACTIONS(4431), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237767,13 +238068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121743] = 3, - ACTIONS(4141), 1, + [122034] = 3, + ACTIONS(4227), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 14, + ACTIONS(4229), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237788,13 +238089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121767] = 3, - ACTIONS(4141), 1, + [122058] = 3, + ACTIONS(4231), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 14, + ACTIONS(4233), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237809,13 +238110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121791] = 3, - ACTIONS(4272), 1, + [122082] = 3, + ACTIONS(4437), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 14, + ACTIONS(4439), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237830,76 +238131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121815] = 3, - ACTIONS(4485), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4487), 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, - [121839] = 3, - ACTIONS(4489), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4491), 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, - [121863] = 3, - ACTIONS(4477), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4479), 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, - [121887] = 3, - ACTIONS(4286), 1, + [122106] = 3, + ACTIONS(4401), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 14, + ACTIONS(4403), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237914,13 +238152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [121911] = 3, - ACTIONS(4135), 1, + [122130] = 3, + ACTIONS(4413), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 14, + ACTIONS(4415), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237935,33 +238173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [121935] = 4, - ACTIONS(4135), 1, - anon_sym_EQ, - ACTIONS(6350), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4137), 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, - [121961] = 2, + [122154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6384), 15, + ACTIONS(6396), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237977,13 +238193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [121983] = 3, - ACTIONS(4272), 1, + [122176] = 3, + ACTIONS(4235), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 14, + ACTIONS(4237), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237998,54 +238214,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122007] = 3, - ACTIONS(4171), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 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, - [122031] = 2, + [122200] = 7, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6398), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6386), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122053] = 3, - ACTIONS(4097), 1, + STATE(5734), 2, + sym_string, + sym_predefined_type, + ACTIONS(6340), 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, + [122232] = 3, + ACTIONS(4347), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 14, + ACTIONS(4267), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238060,33 +238260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [122077] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6388), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122099] = 3, - ACTIONS(4272), 1, + [122256] = 3, + ACTIONS(4231), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 14, + ACTIONS(4233), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238101,13 +238281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122123] = 3, - ACTIONS(4107), 1, + [122280] = 3, + ACTIONS(4235), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 14, + ACTIONS(4237), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238122,22 +238302,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122147] = 7, - ACTIONS(1561), 1, + [122304] = 7, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6390), 1, + ACTIONS(6400), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5681), 2, + STATE(5758), 2, sym_string, sym_predefined_type, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238147,23 +238327,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122179] = 8, - ACTIONS(1561), 1, + [122336] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6392), 1, + ACTIONS(6402), 1, sym_number, - STATE(5688), 1, + STATE(5788), 1, sym_string, - STATE(5695), 1, + STATE(5790), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238173,23 +238353,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122213] = 8, - ACTIONS(1561), 1, + [122370] = 3, + ACTIONS(4239), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 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, + [122394] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6394), 1, + ACTIONS(6404), 1, sym_number, - STATE(5701), 1, + STATE(5793), 1, sym_string, - STATE(5702), 1, + STATE(5796), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238199,23 +238400,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122247] = 8, - ACTIONS(1561), 1, + [122428] = 8, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1563), 1, + ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(6338), 1, + ACTIONS(6344), 1, anon_sym_unique, - ACTIONS(6396), 1, + ACTIONS(6406), 1, sym_number, - STATE(5709), 1, + STATE(5798), 1, sym_string, - STATE(5716), 1, + STATE(5799), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6334), 9, + ACTIONS(6340), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238225,13 +238426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122281] = 3, - ACTIONS(4107), 1, + [122462] = 3, + ACTIONS(4115), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 14, + ACTIONS(4117), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238246,11 +238447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122305] = 2, + [122486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6398), 15, + ACTIONS(6408), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238266,13 +238467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122327] = 3, - ACTIONS(4107), 1, + [122508] = 3, + ACTIONS(4245), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 14, + ACTIONS(4247), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238287,86 +238488,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122351] = 8, - ACTIONS(6324), 1, - anon_sym_LPAREN, - ACTIONS(6330), 1, - anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_DOT, - ACTIONS(6402), 1, - anon_sym_QMARK_DOT, - STATE(3240), 1, - sym_arguments, - STATE(3413), 1, - sym_type_arguments, + [122532] = 3, + ACTIONS(4421), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4423), 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, - [122385] = 3, - ACTIONS(4369), 1, - anon_sym_PIPE, + [122556] = 3, + ACTIONS(4433), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4371), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4435), 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, - [122409] = 8, - ACTIONS(6324), 1, - anon_sym_LPAREN, - ACTIONS(6330), 1, - anon_sym_LT, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6406), 1, - anon_sym_QMARK_DOT, - STATE(3242), 1, - sym_arguments, - STATE(3416), 1, - sym_type_arguments, + [122580] = 3, + ACTIONS(4441), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4055), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4443), 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, - [122443] = 3, - ACTIONS(4373), 1, + [122604] = 3, + ACTIONS(4239), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 14, + ACTIONS(4241), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238381,61 +238572,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122467] = 3, - ACTIONS(4163), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4165), 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, - [122491] = 2, + [122628] = 8, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6410), 1, + sym_number, + STATE(5478), 1, + sym_predefined_type, + STATE(5817), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6408), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122513] = 3, - ACTIONS(4245), 1, + ACTIONS(6340), 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, + [122662] = 4, + ACTIONS(4305), 1, anon_sym_EQ, + ACTIONS(6338), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 14, + ACTIONS(4307), 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_GT, anon_sym_EQ_GT, @@ -238443,13 +238620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [122537] = 3, - ACTIONS(4249), 1, + [122688] = 3, + ACTIONS(4075), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 14, + ACTIONS(4077), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238464,13 +238641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [122561] = 3, - ACTIONS(4377), 1, + [122712] = 3, + ACTIONS(4245), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 14, + ACTIONS(4247), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238485,13 +238662,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122585] = 3, - ACTIONS(4381), 1, + [122736] = 8, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(6344), 1, + anon_sym_unique, + ACTIONS(6412), 1, + sym_number, + STATE(5497), 1, + sym_string, + STATE(5521), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6340), 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, + [122770] = 3, + ACTIONS(4173), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 14, + ACTIONS(4175), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238506,240 +238709,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122609] = 3, - ACTIONS(4377), 1, - anon_sym_PIPE, + [122794] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(3298), 1, + sym_type_predicate, + STATE(5567), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 14, - sym__automatic_semicolon, + ACTIONS(6414), 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, + [122823] = 4, + ACTIONS(4085), 1, anon_sym_EQ, + ACTIONS(6308), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 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_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122633] = 3, - ACTIONS(4381), 1, anon_sym_PIPE, + anon_sym_extends, + [122848] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(2959), 1, + sym_type_predicate, + STATE(5474), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 14, - sym__automatic_semicolon, + ACTIONS(6416), 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, + [122877] = 4, + ACTIONS(4075), 1, anon_sym_EQ, + ACTIONS(6418), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4077), 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_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122657] = 3, - ACTIONS(4307), 1, + [122902] = 6, + ACTIONS(4069), 1, anon_sym_PIPE, + ACTIONS(6318), 1, + anon_sym_LT, + ACTIONS(6378), 1, + anon_sym_DOT, + STATE(3221), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 14, + ACTIONS(3502), 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, - [122681] = 13, - ACTIONS(2540), 1, + [122931] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6414), 1, + ACTIONS(6424), 1, anon_sym_BANG, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6420), 1, + ACTIONS(6430), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(4141), 1, + STATE(3734), 1, + sym__call_signature, + STATE(4077), 1, sym_type_annotation, - STATE(4696), 1, + STATE(4663), 1, sym__initializer, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, - STATE(5301), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122724] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6292), 1, - anon_sym_STAR, - ACTIONS(6296), 1, - anon_sym_LBRACE, - ACTIONS(6422), 1, - sym_identifier, + [122974] = 13, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(6420), 1, + anon_sym_EQ, ACTIONS(6424), 1, - anon_sym_type, - ACTIONS(6426), 1, - anon_sym_COMMA, + anon_sym_BANG, ACTIONS(6428), 1, - anon_sym_from, - STATE(4389), 1, - sym_string, - STATE(4403), 1, - sym_import_require_clause, - STATE(5097), 1, - sym__import_identifier, - STATE(5318), 1, - sym_import_clause, + anon_sym_COLON, + ACTIONS(6432), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(4077), 1, + sym_type_annotation, + STATE(4687), 1, + sym__call_signature, + STATE(4688), 1, + sym__initializer, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5635), 2, - sym_namespace_import, - sym_named_imports, - [122769] = 6, - ACTIONS(3475), 1, + ACTIONS(6422), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123017] = 13, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6436), 1, + anon_sym_BANG, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(6430), 1, - anon_sym_DOT, - STATE(3168), 1, - sym_arguments, + ACTIONS(6440), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(4093), 1, + sym_type_annotation, + STATE(4693), 1, + sym__initializer, + STATE(5275), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 10, + ACTIONS(6434), 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, - [122798] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3207), 1, - sym_type_predicate, - STATE(5699), 1, - sym_predefined_type, + [123060] = 13, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(6442), 1, + anon_sym_BANG, + ACTIONS(6444), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(4097), 1, + sym_type_annotation, + STATE(4700), 1, + sym__initializer, + STATE(5288), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6432), 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, - [122827] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(2141), 1, - sym_type_predicate, - STATE(5590), 1, - sym_predefined_type, + ACTIONS(6434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123103] = 13, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(6446), 1, + anon_sym_BANG, + ACTIONS(6448), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(4129), 1, + sym_type_annotation, + STATE(4742), 1, + sym__initializer, + STATE(5383), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 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, - [122856] = 13, - ACTIONS(2540), 1, + ACTIONS(6434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123146] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, ACTIONS(6438), 1, - anon_sym_BANG, - ACTIONS(6440), 1, anon_sym_LPAREN, - ACTIONS(6442), 1, + ACTIONS(6450), 1, + anon_sym_BANG, + ACTIONS(6452), 1, anon_sym_QMARK, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3867), 1, - sym__call_signature, - STATE(4280), 1, + STATE(4140), 1, sym_type_annotation, - STATE(4976), 1, + STATE(4752), 1, sym__initializer, - STATE(5103), 1, + STATE(5413), 1, + sym__call_signature, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6436), 3, + ACTIONS(6434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122899] = 6, + [123189] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(3532), 1, + sym_formal_parameters, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5417), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [123228] = 5, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1647), 2, + sym_template_string, + sym_arguments, + ACTIONS(4407), 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, + [123255] = 6, ACTIONS(215), 1, anon_sym_unique, - STATE(2947), 1, + STATE(3213), 1, sym_type_predicate, - STATE(5639), 1, + STATE(5678), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6444), 2, + ACTIONS(6454), 2, sym_identifier, sym_this, ACTIONS(217), 9, @@ -238752,133 +239073,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122928] = 11, - ACTIONS(2540), 1, + [123284] = 11, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(3795), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3827), 1, + ACTIONS(3888), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - STATE(3671), 1, + STATE(3532), 1, sym_formal_parameters, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(5169), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [122967] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3809), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(3671), 1, - sym_formal_parameters, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - STATE(5169), 1, + STATE(5417), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 5, + ACTIONS(3879), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123006] = 13, - ACTIONS(2540), 1, + [123323] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6448), 1, - anon_sym_BANG, - ACTIONS(6450), 1, - anon_sym_QMARK, - STATE(3818), 1, - sym_formal_parameters, - STATE(4096), 1, - sym_type_annotation, - STATE(4600), 1, - sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5431), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123049] = 13, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6454), 1, + ACTIONS(6458), 1, anon_sym_BANG, - ACTIONS(6456), 1, + ACTIONS(6460), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3928), 1, + STATE(4334), 1, sym_type_annotation, - STATE(4502), 1, + STATE(4490), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5256), 1, + STATE(5402), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123092] = 6, + [123366] = 6, ACTIONS(215), 1, anon_sym_unique, - STATE(3351), 1, + STATE(1975), 1, sym_type_predicate, - STATE(5703), 1, + STATE(5472), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6458), 2, + ACTIONS(6462), 2, sym_identifier, sym_this, ACTIONS(217), 9, @@ -238891,179 +239154,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123121] = 13, - ACTIONS(2540), 1, + [123395] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6460), 1, - anon_sym_BANG, - ACTIONS(6462), 1, - anon_sym_QMARK, - STATE(3818), 1, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(3532), 1, sym_formal_parameters, - STATE(4117), 1, - sym_type_annotation, - STATE(4651), 1, - sym__initializer, - STATE(5174), 1, - sym__call_signature, - STATE(5213), 1, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5417), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(3879), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [123164] = 13, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, anon_sym_COLON, - ACTIONS(6440), 1, - anon_sym_LPAREN, - ACTIONS(6466), 1, - anon_sym_BANG, - ACTIONS(6468), 1, anon_sym_QMARK, - STATE(3428), 1, + anon_sym_PIPE_RBRACE, + [123434] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(3532), 1, sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(4299), 1, - sym_type_annotation, - STATE(5028), 1, - sym__initializer, - STATE(5103), 1, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5417), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(3879), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [123207] = 13, - ACTIONS(2540), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [123473] = 11, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6410), 1, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6438), 1, - anon_sym_BANG, - ACTIONS(6470), 1, - anon_sym_QMARK, - STATE(3271), 1, + STATE(3532), 1, sym_formal_parameters, - STATE(4280), 1, - sym_type_annotation, - STATE(5017), 1, - sym__call_signature, - STATE(5038), 1, - sym__initializer, - STATE(5207), 1, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + STATE(5417), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6436), 3, + ACTIONS(3879), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [123250] = 13, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, anon_sym_COLON, - ACTIONS(6474), 1, - anon_sym_BANG, - ACTIONS(6476), 1, anon_sym_QMARK, - STATE(3818), 1, - sym_formal_parameters, - STATE(4318), 1, - sym_type_annotation, - STATE(5063), 1, - sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5396), 1, - sym__call_signature, + anon_sym_PIPE_RBRACE, + [123512] = 6, + ACTIONS(3481), 1, + anon_sym_LPAREN, + ACTIONS(4093), 1, + anon_sym_PIPE, + ACTIONS(6464), 1, + anon_sym_DOT, + STATE(3182), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4095), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [123293] = 13, - ACTIONS(2540), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123541] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6440), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(6480), 1, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6468), 1, anon_sym_BANG, - ACTIONS(6482), 1, + ACTIONS(6470), 1, anon_sym_QMARK, - STATE(3428), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(3739), 1, + STATE(3812), 1, sym__call_signature, - STATE(4208), 1, + STATE(4186), 1, sym_type_annotation, STATE(4811), 1, sym__initializer, - STATE(5103), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6478), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123336] = 13, - ACTIONS(2540), 1, + [123584] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6484), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(6474), 1, anon_sym_BANG, - ACTIONS(6486), 1, + ACTIONS(6476), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4323), 1, + STATE(4193), 1, sym_type_annotation, - STATE(5066), 1, + STATE(4819), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5401), 1, + STATE(5179), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -239071,47 +239321,47 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123379] = 13, - ACTIONS(2540), 1, + [123627] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(6478), 1, anon_sym_BANG, - ACTIONS(6492), 1, + ACTIONS(6480), 1, anon_sym_QMARK, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3845), 1, - sym__call_signature, - STATE(4170), 1, + STATE(4198), 1, sym_type_annotation, - STATE(4674), 1, + STATE(4828), 1, sym__initializer, - STATE(5103), 1, + STATE(5189), 1, + sym__call_signature, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6488), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123422] = 6, + [123670] = 6, ACTIONS(215), 1, anon_sym_unique, - STATE(2947), 1, + STATE(2959), 1, sym_type_predicate, - STATE(5631), 1, + STATE(5653), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 2, + ACTIONS(6482), 2, sym_identifier, sym_this, ACTIONS(217), 9, @@ -239124,67 +239374,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123451] = 5, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + [123699] = 13, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, anon_sym_LPAREN, + ACTIONS(6484), 1, + anon_sym_BANG, + ACTIONS(6486), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(4225), 1, + sym_type_annotation, + STATE(4887), 1, + sym__initializer, + STATE(5246), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1670), 2, - sym_template_string, - sym_arguments, - ACTIONS(4173), 10, + ACTIONS(6472), 3, + sym__automatic_semicolon, 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_SEMI, + [123742] = 13, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_BANG, + ACTIONS(6490), 1, anon_sym_QMARK, - anon_sym_extends, - [123478] = 13, - ACTIONS(2540), 1, + STATE(3796), 1, + sym_formal_parameters, + STATE(4228), 1, + sym_type_annotation, + STATE(4891), 1, + sym__initializer, + STATE(5255), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123785] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6496), 1, + ACTIONS(6494), 1, anon_sym_BANG, - ACTIONS(6498), 1, + ACTIONS(6496), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(3984), 1, + STATE(3836), 1, + sym__call_signature, + STATE(3908), 1, sym_type_annotation, - STATE(4760), 1, + STATE(4679), 1, sym__initializer, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, - STATE(5407), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6492), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123521] = 4, - ACTIONS(4087), 1, + [123828] = 4, + ACTIONS(4099), 1, anon_sym_EQ, - ACTIONS(6314), 1, + ACTIONS(6308), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 12, + ACTIONS(4101), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239197,440 +239485,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [123546] = 6, - ACTIONS(4047), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, - anon_sym_LT, - ACTIONS(6346), 1, - anon_sym_DOT, - STATE(3189), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3533), 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, - [123575] = 13, - ACTIONS(2540), 1, + [123853] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6500), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, anon_sym_BANG, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4005), 1, + STATE(4238), 1, sym_type_annotation, - STATE(4862), 1, + STATE(4912), 1, sym__initializer, - STATE(5184), 1, + STATE(5279), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123618] = 13, - ACTIONS(2540), 1, + [123896] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6506), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(6502), 1, anon_sym_BANG, - ACTIONS(6508), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4221), 1, + STATE(4239), 1, sym_type_annotation, - STATE(4853), 1, + STATE(4916), 1, sym__initializer, - STATE(5163), 1, + STATE(5280), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6504), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123661] = 11, - ACTIONS(2540), 1, + [123939] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(3671), 1, - sym_formal_parameters, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - STATE(5169), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123700] = 13, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6480), 1, + ACTIONS(6508), 1, anon_sym_BANG, ACTIONS(6510), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(4208), 1, - sym_type_annotation, - STATE(4827), 1, + STATE(3813), 1, sym__call_signature, - STATE(4828), 1, + STATE(4011), 1, + sym_type_annotation, + STATE(4929), 1, sym__initializer, - STATE(5207), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6478), 3, + ACTIONS(6506), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123743] = 11, - ACTIONS(2540), 1, + [123982] = 13, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(3671), 1, - sym_formal_parameters, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - STATE(5169), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123782] = 13, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6512), 1, + ACTIONS(6494), 1, anon_sym_BANG, - ACTIONS(6514), 1, + ACTIONS(6512), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3916), 1, + STATE(3908), 1, sym_type_annotation, - STATE(4920), 1, + STATE(4836), 1, + sym__call_signature, + STATE(4877), 1, sym__initializer, - STATE(5213), 1, + STATE(5245), 1, sym_type_parameters, - STATE(5238), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6492), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123825] = 13, - ACTIONS(2540), 1, + [124025] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, ACTIONS(6516), 1, anon_sym_BANG, ACTIONS(6518), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(3998), 1, + STATE(3767), 1, + sym__call_signature, + STATE(4276), 1, sym_type_annotation, - STATE(4814), 1, + STATE(4972), 1, sym__initializer, - STATE(5148), 1, - sym__call_signature, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123868] = 13, - ACTIONS(2540), 1, + [124068] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6520), 1, - anon_sym_BANG, + ACTIONS(6438), 1, + anon_sym_LPAREN, ACTIONS(6522), 1, + anon_sym_BANG, + ACTIONS(6524), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4263), 1, + STATE(4289), 1, sym_type_annotation, - STATE(4947), 1, + STATE(4984), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5273), 1, + STATE(5343), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123911] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(1534), 1, - sym_type_predicate, - STATE(5591), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6524), 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, - [123940] = 13, - ACTIONS(2540), 1, + [124111] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, ACTIONS(6526), 1, anon_sym_BANG, ACTIONS(6528), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4287), 1, + STATE(4229), 1, sym_type_annotation, - STATE(4997), 1, + STATE(5052), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5333), 1, + STATE(5291), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123983] = 13, - ACTIONS(2540), 1, + [124154] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, ACTIONS(6530), 1, anon_sym_BANG, ACTIONS(6532), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4301), 1, + STATE(4079), 1, sym_type_annotation, - STATE(4852), 1, + STATE(4664), 1, sym__initializer, - STATE(5170), 1, + STATE(5212), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124026] = 13, - ACTIONS(2540), 1, + [124197] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, ACTIONS(6534), 1, anon_sym_BANG, ACTIONS(6536), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4309), 1, + STATE(3944), 1, sym_type_annotation, - STATE(5042), 1, + STATE(4575), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5383), 1, + STATE(5166), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124069] = 13, - ACTIONS(2540), 1, + [124240] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(2959), 1, + sym_type_predicate, + STATE(5639), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6538), 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, + [124269] = 13, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6538), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, anon_sym_BANG, - ACTIONS(6540), 1, + ACTIONS(6544), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4071), 1, + STATE(3945), 1, sym_type_annotation, - STATE(4958), 1, + STATE(4577), 1, sym__initializer, - STATE(5181), 1, + STATE(5198), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6540), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124112] = 4, - ACTIONS(4093), 1, - anon_sym_EQ, - ACTIONS(6314), 1, - anon_sym_is, + [124312] = 14, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(6296), 1, + anon_sym_STAR, + ACTIONS(6300), 1, + anon_sym_LBRACE, + ACTIONS(6546), 1, + sym_identifier, + ACTIONS(6548), 1, + anon_sym_type, + ACTIONS(6550), 1, + anon_sym_COMMA, + ACTIONS(6552), 1, + anon_sym_from, + STATE(4183), 1, + sym_string, + STATE(4188), 1, + sym_import_require_clause, + STATE(5162), 1, + sym_import_clause, + STATE(5234), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 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, - [124137] = 6, + STATE(5622), 2, + sym_namespace_import, + sym_named_imports, + [124357] = 6, ACTIONS(215), 1, anon_sym_unique, - STATE(2947), 1, + STATE(1550), 1, sym_type_predicate, - STATE(5437), 1, + STATE(5549), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6542), 2, + ACTIONS(6554), 2, sym_identifier, sym_this, ACTIONS(217), 9, @@ -239643,15 +239862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [124166] = 4, - ACTIONS(4097), 1, + [124386] = 4, + ACTIONS(4353), 1, anon_sym_EQ, - ACTIONS(6544), 1, - anon_sym_is, + ACTIONS(6556), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 12, + ACTIONS(4355), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239661,152 +239880,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [124191] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3818), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(3671), 1, - sym_formal_parameters, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(5169), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124230] = 13, - ACTIONS(2540), 1, + [124410] = 6, + ACTIONS(6334), 1, anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6440), 1, - anon_sym_LPAREN, - ACTIONS(6548), 1, - anon_sym_BANG, - ACTIONS(6550), 1, - anon_sym_QMARK, - STATE(3428), 1, - sym_formal_parameters, - STATE(3861), 1, - sym__call_signature, - STATE(3981), 1, - sym_type_annotation, - STATE(4744), 1, - sym__initializer, - STATE(5103), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6546), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124273] = 2, + ACTIONS(6558), 1, + anon_sym_DOT, + ACTIONS(6560), 1, + anon_sym_is, + STATE(3364), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 13, + ACTIONS(3502), 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_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124293] = 4, - ACTIONS(4361), 1, - anon_sym_EQ, - ACTIONS(6552), 1, - anon_sym_AMP, + [124438] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 11, + ACTIONS(4277), 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_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [124317] = 2, + anon_sym_PIPE_RBRACE, + [124460] = 3, + ACTIONS(4409), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 13, + ACTIONS(4411), 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, - [124337] = 2, + anon_sym_PIPE_RBRACE, + [124482] = 3, + ACTIONS(4417), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 13, + ACTIONS(4419), 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, - [124357] = 5, - ACTIONS(3477), 1, + anon_sym_PIPE_RBRACE, + [124504] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6564), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(4147), 1, + sym__call_signature, + STATE(4148), 1, + sym_type_annotation, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6562), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124540] = 4, + ACTIONS(1813), 1, anon_sym_DOT, - ACTIONS(3481), 1, - anon_sym_QMARK_DOT, - ACTIONS(3483), 1, + ACTIONS(4453), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 10, + ACTIONS(4455), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239815,55 +240004,56 @@ 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, - [124383] = 2, + [124564] = 3, + ACTIONS(3665), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 13, + ACTIONS(3469), 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, - [124403] = 2, + anon_sym_PIPE_RBRACE, + [124586] = 3, + ACTIONS(3661), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 13, + ACTIONS(3471), 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, - [124423] = 5, - ACTIONS(4301), 1, - anon_sym_PIPE, - ACTIONS(6554), 1, + anon_sym_PIPE_RBRACE, + [124608] = 4, + ACTIONS(1839), 1, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_QMARK_DOT, + ACTIONS(4453), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 10, + ACTIONS(4455), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239872,322 +240062,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124449] = 11, - ACTIONS(6008), 1, anon_sym_LT, - ACTIONS(6312), 1, - anon_sym_DOT, - ACTIONS(6558), 1, - anon_sym_EQ, - ACTIONS(6563), 1, - anon_sym_COLON, - ACTIONS(6565), 1, anon_sym_extends, - STATE(2926), 1, - sym_type_arguments, - STATE(4385), 1, - sym_constraint, - STATE(5171), 1, - sym_default_type, + anon_sym_PIPE_RBRACE, + [124632] = 3, + ACTIONS(4483), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6560), 2, + ACTIONS(4485), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3533), 3, + 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, + [124654] = 3, + ACTIONS(4111), 1, anon_sym_PIPE, - [124487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 13, + ACTIONS(4113), 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, - [124507] = 4, - ACTIONS(4353), 1, - anon_sym_EQ, - ACTIONS(6552), 1, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [124676] = 3, + ACTIONS(4491), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 11, + ACTIONS(4493), 12, + 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_PIPE, - anon_sym_extends, - [124531] = 6, - ACTIONS(6330), 1, - anon_sym_LT, - ACTIONS(6568), 1, anon_sym_DOT, - ACTIONS(6570), 1, - anon_sym_is, - STATE(3398), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124698] = 3, + ACTIONS(4495), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 9, + ACTIONS(4497), 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_AMP, - anon_sym_PIPE, anon_sym_extends, - [124559] = 10, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [124720] = 10, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6574), 1, + ACTIONS(6568), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4233), 1, + STATE(3993), 1, sym__call_signature, - STATE(4234), 1, + STATE(3994), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6572), 5, + ACTIONS(6566), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124595] = 10, - ACTIONS(2540), 1, + [124756] = 10, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6578), 1, + ACTIONS(6570), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4002), 1, + STATE(3639), 1, sym__call_signature, - STATE(4003), 1, + STATE(3994), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6576), 5, + ACTIONS(6566), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124631] = 2, + [124792] = 6, + ACTIONS(4383), 1, + anon_sym_EQ, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4385), 9, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - 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, + [124820] = 5, + ACTIONS(3483), 1, anon_sym_DOT, + ACTIONS(3487), 1, anon_sym_QMARK_DOT, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3479), 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, + [124846] = 6, + ACTIONS(4401), 1, + anon_sym_EQ, + ACTIONS(6556), 1, anon_sym_AMP, + ACTIONS(6572), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6574), 1, anon_sym_extends, - [124651] = 10, - ACTIONS(2540), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4403), 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, + [124874] = 10, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6582), 1, + ACTIONS(6578), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4028), 1, + STATE(4076), 1, sym__call_signature, - STATE(4036), 1, + STATE(4080), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6580), 5, + ACTIONS(6576), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124687] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4109), 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, + [124910] = 6, + ACTIONS(4295), 1, + anon_sym_EQ, + ACTIONS(6556), 1, anon_sym_AMP, + ACTIONS(6572), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6574), 1, anon_sym_extends, - [124707] = 3, - ACTIONS(3316), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4297), 9, 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_GT, + anon_sym_EQ_GT, + [124938] = 6, + ACTIONS(4315), 1, + anon_sym_EQ, + ACTIONS(6556), 1, anon_sym_AMP, - anon_sym_BQUOTE, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4317), 9, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - 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, + [124966] = 5, + ACTIONS(4333), 1, + anon_sym_PIPE, + ACTIONS(6580), 1, anon_sym_DOT, + ACTIONS(6582), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [124749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4335), 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_extends, + anon_sym_PIPE_RBRACE, + [124992] = 11, + ACTIONS(6028), 1, anon_sym_LT, + ACTIONS(6306), 1, + anon_sym_DOT, + ACTIONS(6584), 1, + anon_sym_EQ, + ACTIONS(6589), 1, + anon_sym_COLON, + ACTIONS(6591), 1, anon_sym_extends, - [124769] = 3, - ACTIONS(3178), 1, - anon_sym_PIPE, + STATE(2915), 1, + sym_type_arguments, + STATE(4436), 1, + sym_constraint, + STATE(5349), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(6586), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_GT, + ACTIONS(3502), 3, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124791] = 10, - ACTIONS(2540), 1, + anon_sym_PIPE, + [125030] = 10, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6584), 1, + ACTIONS(6596), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3554), 1, + STATE(3577), 1, sym__call_signature, - STATE(4003), 1, + STATE(4084), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6576), 5, + ACTIONS(6594), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124827] = 6, - ACTIONS(4499), 1, + [125066] = 6, + ACTIONS(4185), 1, anon_sym_EQ, - ACTIONS(6552), 1, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 9, + ACTIONS(4187), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240197,37 +240424,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [124855] = 2, + [125094] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, + anon_sym_COLON, + ACTIONS(6600), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(3635), 1, + sym__call_signature, + STATE(4080), 1, + sym_type_annotation, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(6576), 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, + [125130] = 6, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, + ACTIONS(4405), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1647), 2, + sym_template_string, + sym_arguments, + ACTIONS(4407), 8, + sym__automatic_semicolon, + 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_LT, anon_sym_extends, - [124875] = 6, - ACTIONS(4403), 1, + anon_sym_PIPE_RBRACE, + [125158] = 6, + ACTIONS(4365), 1, anon_sym_EQ, - ACTIONS(6552), 1, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 9, + ACTIONS(4367), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240237,51 +240494,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [124903] = 3, - ACTIONS(4167), 1, - anon_sym_PIPE, + [125186] = 4, + ACTIONS(4373), 1, + anon_sym_EQ, + ACTIONS(6602), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4375), 11, 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_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124925] = 3, - ACTIONS(4175), 1, + anon_sym_PIPE, + [125210] = 3, + ACTIONS(3354), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 12, + ACTIONS(3356), 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_QMARK_DOT, anon_sym_AMP, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124947] = 3, - ACTIONS(4187), 1, + [125232] = 3, + ACTIONS(3170), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 12, + ACTIONS(3172), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240294,67 +240552,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124969] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6592), 1, - anon_sym_COLON, - ACTIONS(6594), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(3601), 1, - sym__call_signature, - STATE(4058), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, + [125254] = 6, + ACTIONS(4479), 1, + anon_sym_EQ, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6590), 5, - sym__automatic_semicolon, + ACTIONS(4481), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125005] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6596), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(4056), 1, - sym__call_signature, - STATE(4058), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6590), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125041] = 4, - ACTIONS(4425), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [125282] = 4, + ACTIONS(4349), 1, anon_sym_EQ, - ACTIONS(6598), 1, - anon_sym_extends, + ACTIONS(6556), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 11, + ACTIONS(4351), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240364,9 +240592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, anon_sym_PIPE, - [125065] = 3, + anon_sym_extends, + [125306] = 3, ACTIONS(3342), 1, anon_sym_PIPE, ACTIONS(5), 2, @@ -240385,75 +240613,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125087] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6600), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(3707), 1, - sym__call_signature, - STATE(4234), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6572), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125123] = 2, + [125328] = 3, + ACTIONS(3174), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(3176), 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, - [125143] = 2, + anon_sym_PIPE_RBRACE, + [125350] = 3, + ACTIONS(3278), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 13, + ACTIONS(3280), 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_BQUOTE, anon_sym_extends, - [125163] = 3, - ACTIONS(3174), 1, + anon_sym_PIPE_RBRACE, + [125372] = 3, + ACTIONS(3178), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 12, + ACTIONS(3180), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240466,190 +240670,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125185] = 4, - ACTIONS(1925), 1, - anon_sym_DOT, - ACTIONS(4257), 1, - anon_sym_PIPE, + [125394] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6606), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(4253), 1, + sym__call_signature, + STATE(4254), 1, + sym_type_annotation, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 11, + ACTIONS(6604), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [125430] = 10, + ACTIONS(2708), 1, anon_sym_LT, - anon_sym_extends, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6608), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(3594), 1, + sym__call_signature, + STATE(4148), 1, + sym_type_annotation, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6562), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125209] = 3, - ACTIONS(3647), 1, + [125466] = 5, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(6318), 1, + anon_sym_LT, + STATE(3247), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 12, + ACTIONS(4077), 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_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125231] = 3, - ACTIONS(3661), 1, - anon_sym_PIPE, + [125492] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3459), 12, + ACTIONS(4474), 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, - [125253] = 6, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + anon_sym_LT, anon_sym_extends, + [125512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 9, + ACTIONS(4203), 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, - [125281] = 4, - ACTIONS(1929), 1, anon_sym_DOT, - ACTIONS(4257), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 11, + ACTIONS(4229), 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, - [125305] = 3, - ACTIONS(4325), 1, - anon_sym_PIPE, + [125552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 12, + ACTIONS(4203), 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, - [125327] = 6, - ACTIONS(4286), 1, - anon_sym_EQ, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + anon_sym_LT, anon_sym_extends, + [125572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 9, + ACTIONS(4229), 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, - [125355] = 3, - ACTIONS(4329), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4331), 12, + ACTIONS(4233), 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, - [125377] = 3, - ACTIONS(4337), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 12, + ACTIONS(4237), 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, - [125399] = 2, + [125632] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 13, + ACTIONS(4233), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240663,107 +240887,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125419] = 6, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, + [125652] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4471), 9, + ACTIONS(4237), 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, - [125447] = 6, - ACTIONS(4473), 1, - anon_sym_EQ, - ACTIONS(6552), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6586), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + anon_sym_LT, anon_sym_extends, + [125672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 9, + ACTIONS(4241), 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, - [125475] = 10, - ACTIONS(2540), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6604), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(3528), 1, - sym__call_signature, - STATE(4251), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, + anon_sym_extends, + [125692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 5, + ACTIONS(4247), 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, - [125511] = 10, - ACTIONS(2540), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125712] = 10, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6606), 1, + ACTIONS(6610), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3639), 1, + STATE(4083), 1, sym__call_signature, - STATE(4036), 1, + STATE(4084), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6580), 5, + ACTIONS(6594), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125547] = 2, + [125748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 13, + ACTIONS(4241), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240777,11 +240985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125567] = 2, + [125768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 13, + ACTIONS(4247), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240795,33 +241003,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125587] = 6, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + [125788] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(4171), 1, - anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6612), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(3522), 1, + sym__call_signature, + STATE(4254), 1, + sym_type_annotation, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1670), 2, - sym_template_string, - sym_arguments, - ACTIONS(4173), 8, + ACTIONS(6604), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [125615] = 2, + [125824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 13, + ACTIONS(4427), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240835,11 +241047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125635] = 2, + [125844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 13, + ACTIONS(4431), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240853,77 +241065,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125655] = 5, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, - anon_sym_LT, - STATE(3255), 1, - sym_type_arguments, + [125864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 10, + ACTIONS(4431), 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, - [125681] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6608), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(4249), 1, - sym__call_signature, - STATE(4251), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6602), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125717] = 3, - ACTIONS(3308), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3310), 12, + ACTIONS(4431), 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_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125739] = 2, + [125904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4371), 13, + ACTIONS(4439), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240937,11 +241119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125759] = 2, + [125924] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 13, + ACTIONS(4439), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240955,11 +241137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125779] = 2, + [125944] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 13, + ACTIONS(4439), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240973,11 +241155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125799] = 2, + [125964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4447), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240991,11 +241173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125819] = 2, + [125984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 13, + ACTIONS(4447), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241009,33 +241191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125839] = 6, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4317), 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, - [125867] = 2, + [126004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 13, + ACTIONS(4447), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241049,11 +241209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125887] = 2, + [126024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4117), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241067,11 +241227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125907] = 2, + [126044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 13, + ACTIONS(4121), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241085,11 +241245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125927] = 2, + [126064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(4121), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241103,30 +241263,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125947] = 3, - ACTIONS(3170), 1, - anon_sym_PIPE, + [126084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3172), 12, + ACTIONS(4121), 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, - [125969] = 2, + [126104] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(4175), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241140,11 +241299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125989] = 2, + [126124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 13, + ACTIONS(4175), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241158,11 +241317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126009] = 2, + [126144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4175), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241176,11 +241335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126029] = 2, + [126164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(4179), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241194,11 +241353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126049] = 2, + [126184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 13, + ACTIONS(4179), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241212,11 +241371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126069] = 2, + [126204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 13, + ACTIONS(4179), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241230,11 +241389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126089] = 2, + [126224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(4345), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241248,66 +241407,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126109] = 3, - ACTIONS(4345), 1, + [126244] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(4242), 1, + sym_type_annotation, + STATE(4921), 1, + sym__initializer, + STATE(5281), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6614), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126281] = 4, + ACTIONS(4299), 1, anon_sym_PIPE, + ACTIONS(6616), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 12, + ACTIONS(4301), 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_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126131] = 11, - ACTIONS(2540), 1, + [126304] = 9, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4140), 1, + STATE(3558), 1, + sym__call_signature, + STATE(4075), 1, sym_type_annotation, - STATE(4693), 1, - sym__initializer, - STATE(5213), 1, + STATE(5245), 1, sym_type_parameters, - STATE(5297), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6618), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126168] = 7, - ACTIONS(3795), 1, + anon_sym_PIPE_RBRACE, + [126337] = 8, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6306), 1, + anon_sym_DOT, + ACTIONS(6620), 1, + anon_sym_QMARK, + STATE(2915), 1, + sym_type_arguments, + STATE(5393), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3502), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [126368] = 7, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3818), 1, + ACTIONS(3885), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - STATE(4793), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -241315,47 +241521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126197] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3818), 1, - sym_formal_parameters, - STATE(4098), 1, - sym_type_annotation, - STATE(4605), 1, - sym__initializer, - STATE(5105), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6610), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126234] = 7, - ACTIONS(3795), 1, + [126397] = 7, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3798), 1, + ACTIONS(3891), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, + STATE(4821), 1, aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -241363,15 +241543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126263] = 4, - ACTIONS(4087), 1, + [126426] = 4, + ACTIONS(4085), 1, anon_sym_PIPE, - ACTIONS(6348), 1, + ACTIONS(6380), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 10, + ACTIONS(4087), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241382,320 +241562,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126286] = 5, - ACTIONS(6324), 1, - anon_sym_LPAREN, - ACTIONS(6612), 1, - anon_sym_DOT, - STATE(3286), 1, - sym_arguments, - 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, - [126311] = 11, - ACTIONS(2540), 1, + [126449] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(4304), 1, + STATE(3872), 1, + sym__call_signature, + STATE(4182), 1, sym_type_annotation, - STATE(5033), 1, + STATE(4805), 1, sym__initializer, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, - STATE(5378), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6623), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126348] = 11, - ACTIONS(2540), 1, + [126486] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(3932), 1, + STATE(3739), 1, + sym__call_signature, + STATE(4078), 1, sym_type_annotation, - STATE(4516), 1, + STATE(4668), 1, sym__initializer, - STATE(5113), 1, - sym__call_signature, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6625), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126385] = 7, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, + [126523] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3276), 1, + sym_formal_parameters, + STATE(4182), 1, + sym_type_annotation, + STATE(4817), 1, + sym__call_signature, STATE(4818), 1, - aux_sym_object_repeat1, + sym__initializer, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(6623), 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, - [126414] = 11, - ACTIONS(2540), 1, + [126560] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3779), 1, - sym__call_signature, - STATE(4068), 1, + STATE(4195), 1, sym_type_annotation, - STATE(4537), 1, + STATE(4822), 1, sym__initializer, - STATE(5103), 1, + STATE(5181), 1, + sym__call_signature, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6616), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126451] = 11, - ACTIONS(2540), 1, + [126597] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4204), 1, sym_type_annotation, - STATE(4617), 1, + STATE(4837), 1, sym__initializer, - STATE(5111), 1, + STATE(5201), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126488] = 7, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3809), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [126634] = 12, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(6296), 1, + anon_sym_STAR, + ACTIONS(6300), 1, + anon_sym_LBRACE, + ACTIONS(6546), 1, + sym_identifier, + ACTIONS(6548), 1, + anon_sym_type, + STATE(4183), 1, + sym_string, + STATE(4188), 1, + sym_import_require_clause, + STATE(5162), 1, + sym_import_clause, + STATE(5234), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5622), 2, + sym_namespace_import, + sym_named_imports, + [126673] = 4, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(6627), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(4077), 10, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126517] = 7, - ACTIONS(3795), 1, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3894), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126696] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(4237), 1, + sym_type_annotation, + STATE(4908), 1, + sym__initializer, + STATE(5272), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(6614), 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, - [126546] = 9, - ACTIONS(2540), 1, + [126733] = 11, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3561), 1, - sym__call_signature, - STATE(4146), 1, + STATE(4078), 1, sym_type_annotation, - STATE(5207), 1, + STATE(4683), 1, + sym__call_signature, + STATE(4684), 1, + sym__initializer, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6620), 5, + ACTIONS(6625), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126579] = 9, - ACTIONS(2540), 1, + [126770] = 9, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3642), 1, + STATE(4249), 1, sym__call_signature, - STATE(4069), 1, + STATE(4250), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 5, + ACTIONS(6629), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126612] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, + [126803] = 5, + ACTIONS(6328), 1, anon_sym_LPAREN, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(3671), 1, - sym_formal_parameters, - STATE(5169), 1, - sym_type_parameters, + ACTIONS(6631), 1, + anon_sym_DOT, + STATE(3280), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3801), 5, + ACTIONS(4095), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126643] = 9, - ACTIONS(2540), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [126828] = 9, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4145), 1, + STATE(3604), 1, sym__call_signature, - STATE(4146), 1, + STATE(4150), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6620), 5, + ACTIONS(6633), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126676] = 3, - ACTIONS(1905), 1, - anon_sym_PIPE, + [126861] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(4035), 1, + sym_type_annotation, + STATE(4514), 1, + sym__initializer, + STATE(5261), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 11, + ACTIONS(6635), 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_is, - anon_sym_PIPE_RBRACE, - [126697] = 5, - ACTIONS(6330), 1, + [126898] = 5, + ACTIONS(6334), 1, anon_sym_LT, - ACTIONS(6568), 1, + ACTIONS(6558), 1, anon_sym_DOT, - STATE(3398), 1, + STATE(3364), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 9, + ACTIONS(3502), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241705,303 +241904,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [126722] = 2, + [126923] = 3, + ACTIONS(4089), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1945), 12, - anon_sym_as, + ACTIONS(4091), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - [126741] = 11, - ACTIONS(2540), 1, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [126944] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6440), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - STATE(3428), 1, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3429), 1, sym_formal_parameters, - STATE(3799), 1, + STATE(3754), 1, sym__call_signature, - STATE(4281), 1, + STATE(4273), 1, sym_type_annotation, - STATE(4980), 1, + STATE(4957), 1, sym__initializer, - STATE(5103), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6624), 3, + ACTIONS(6637), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126778] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3271), 1, - sym_formal_parameters, - STATE(4068), 1, - sym_type_annotation, - STATE(4939), 1, - sym__call_signature, - STATE(4940), 1, - sym__initializer, - STATE(5207), 1, - sym_type_parameters, + [126981] = 3, + ACTIONS(4331), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6616), 3, + ACTIONS(4329), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126815] = 8, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6312), 1, - anon_sym_DOT, - ACTIONS(6626), 1, - anon_sym_QMARK, - STATE(2926), 1, - sym_type_arguments, - STATE(5140), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3533), 6, - anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [126846] = 11, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [127002] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3819), 1, - sym__call_signature, - STATE(4024), 1, + STATE(4285), 1, sym_type_annotation, - STATE(4964), 1, + STATE(4978), 1, sym__initializer, - STATE(5103), 1, + STATE(5337), 1, + sym__call_signature, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6629), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126883] = 11, - ACTIONS(2540), 1, + [127039] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4203), 1, + STATE(4292), 1, sym_type_annotation, - STATE(4798), 1, + STATE(4987), 1, sym__initializer, - STATE(5135), 1, + STATE(5347), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126920] = 3, - ACTIONS(4103), 1, - anon_sym_PIPE, + [127076] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6426), 1, + anon_sym_LPAREN, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3429), 1, + sym_formal_parameters, + STATE(3811), 1, + sym__call_signature, + STATE(3918), 1, + sym_type_annotation, + STATE(5007), 1, + sym__initializer, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 11, + ACTIONS(6641), 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_is, - anon_sym_PIPE_RBRACE, - [126941] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6292), 1, - anon_sym_STAR, - ACTIONS(6296), 1, - anon_sym_LBRACE, - ACTIONS(6422), 1, - sym_identifier, - ACTIONS(6424), 1, - anon_sym_type, - STATE(4389), 1, - sym_string, - STATE(4403), 1, - sym_import_require_clause, - STATE(5097), 1, - sym__import_identifier, - STATE(5318), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5635), 2, - sym_namespace_import, - sym_named_imports, - [126980] = 8, - ACTIONS(6286), 1, + [127113] = 8, + ACTIONS(6290), 1, anon_sym_DOT, - ACTIONS(6288), 1, + ACTIONS(6292), 1, anon_sym_QMARK_DOT, - ACTIONS(6633), 1, + ACTIONS(6643), 1, anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(6645), 1, anon_sym_LT, - STATE(2884), 1, + STATE(2897), 1, sym_arguments, - STATE(2912), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4055), 6, + ACTIONS(4057), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127011] = 11, - ACTIONS(2540), 1, + [127144] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4159), 1, + STATE(4087), 1, sym_type_annotation, - STATE(4718), 1, + STATE(4672), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5349), 1, + STATE(5398), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127048] = 11, - ACTIONS(2540), 1, + [127181] = 8, + ACTIONS(6286), 1, + anon_sym_DOT, + ACTIONS(6288), 1, + anon_sym_QMARK_DOT, + ACTIONS(6643), 1, + anon_sym_LPAREN, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6410), 1, + STATE(2900), 1, + sym_arguments, + STATE(3002), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4063), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127212] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4035), 1, + STATE(4224), 1, sym_type_annotation, - STATE(5002), 1, + STATE(4886), 1, sym__initializer, STATE(5213), 1, - sym_type_parameters, - STATE(5354), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127085] = 11, - ACTIONS(2540), 1, + [127249] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4270), 1, + STATE(4110), 1, sym_type_annotation, - STATE(4953), 1, + STATE(4723), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5290), 1, + STATE(5139), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127122] = 3, - ACTIONS(4299), 1, + [127286] = 4, + ACTIONS(4099), 1, anon_sym_PIPE, + ACTIONS(6380), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 11, + ACTIONS(4101), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242009,285 +242184,409 @@ 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, - [127143] = 11, - ACTIONS(2540), 1, + [127309] = 8, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6410), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(6418), 1, + STATE(3532), 1, + sym_formal_parameters, + STATE(5417), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3879), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127340] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4281), 1, + STATE(3992), 1, sym_type_annotation, - STATE(5012), 1, - sym__call_signature, - STATE(5013), 1, + STATE(4801), 1, sym__initializer, - STATE(5207), 1, + STATE(5114), 1, + sym__call_signature, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6624), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127180] = 11, - ACTIONS(2540), 1, + [127377] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4300), 1, + STATE(4036), 1, sym_type_annotation, - STATE(5021), 1, + STATE(4504), 1, sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5374), 1, + STATE(5350), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127217] = 9, - ACTIONS(2540), 1, + [127414] = 9, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4238), 1, + STATE(3681), 1, sym__call_signature, - STATE(4239), 1, + STATE(3998), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6637), 5, + ACTIONS(6649), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127250] = 11, - ACTIONS(2540), 1, + [127447] = 9, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3919), 1, + STATE(3665), 1, + sym__call_signature, + STATE(3990), 1, sym_type_annotation, - STATE(4960), 1, - sym__initializer, - STATE(5213), 1, + STATE(5245), 1, sym_type_parameters, - STATE(5265), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6651), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127287] = 9, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [127480] = 9, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3709), 1, + STATE(4074), 1, sym__call_signature, - STATE(4239), 1, + STATE(4075), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6637), 5, + ACTIONS(6618), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127320] = 9, - ACTIONS(2540), 1, + [127513] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(4342), 1, + sym_type_annotation, + STATE(5060), 1, + sym__initializer, + STATE(5406), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6653), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [127550] = 9, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3999), 1, + STATE(3520), 1, sym__call_signature, - STATE(4000), 1, + STATE(4250), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 5, + ACTIONS(6629), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127353] = 11, - ACTIONS(2540), 1, + [127583] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(3994), 1, + STATE(3976), 1, sym_type_annotation, - STATE(4806), 1, + STATE(4750), 1, sym__initializer, - STATE(5139), 1, + STATE(5340), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127390] = 3, - ACTIONS(4111), 1, - anon_sym_PIPE, + [127620] = 9, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3276), 1, + sym_formal_parameters, + STATE(3997), 1, + sym__call_signature, + STATE(3998), 1, + sym_type_annotation, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 11, + ACTIONS(6649), 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_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [127411] = 11, - ACTIONS(2540), 1, + [127653] = 9, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4311), 1, + STATE(3988), 1, + sym__call_signature, + STATE(3990), 1, sym_type_annotation, - STATE(5047), 1, - sym__initializer, - STATE(5213), 1, + STATE(5245), 1, sym_type_parameters, - STATE(5386), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6651), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127448] = 11, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [127686] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6410), 1, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3818), 1, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, sym_formal_parameters, - STATE(4338), 1, + STATE(4322), 1, sym_type_annotation, - STATE(5091), 1, + STATE(5035), 1, sym__initializer, - STATE(5154), 1, + STATE(5381), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6641), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127485] = 9, - ACTIONS(2540), 1, + [127723] = 9, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4244), 1, + STATE(4149), 1, sym__call_signature, - STATE(4246), 1, + STATE(4150), 1, sym_type_annotation, - STATE(5207), 1, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6633), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [127756] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6426), 1, + anon_sym_LPAREN, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3429), 1, + sym_formal_parameters, + STATE(3864), 1, + sym__call_signature, + STATE(4104), 1, + sym_type_annotation, + STATE(4730), 1, + sym__initializer, + STATE(5368), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6655), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [127793] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(4128), 1, + sym_type_annotation, + STATE(4740), 1, + sym__initializer, + STATE(5374), 1, + sym__call_signature, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6643), 5, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [127830] = 7, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3898), 1, anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127518] = 2, + [127859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 12, + ACTIONS(1803), 12, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -242300,15 +242599,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [127537] = 4, - ACTIONS(4093), 1, + [127878] = 7, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127907] = 3, + ACTIONS(4393), 1, anon_sym_PIPE, - ACTIONS(6348), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 10, + ACTIONS(4395), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242316,18 +242635,17 @@ 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, - [127560] = 4, - ACTIONS(4097), 1, + [127928] = 3, + ACTIONS(1819), 1, anon_sym_PIPE, - ACTIONS(6645), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 10, + ACTIONS(1817), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242337,66 +242655,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [127583] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3794), 1, - sym__call_signature, - STATE(4215), 1, - sym_type_annotation, - STATE(4833), 1, - sym__initializer, - STATE(5103), 1, - sym_type_parameters, + [127949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6647), 3, - sym__automatic_semicolon, + ACTIONS(1809), 12, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - [127620] = 9, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6418), 1, anon_sym_COLON, - STATE(3271), 1, - sym_formal_parameters, - STATE(4044), 1, - sym__call_signature, - STATE(4069), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [127968] = 7, + ACTIONS(3873), 1, + anon_sym_COMMA, + ACTIONS(3888), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 5, + ACTIONS(3879), 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, - [127653] = 4, - ACTIONS(4129), 1, - anon_sym_PIPE, - ACTIONS(6649), 1, + [127997] = 8, + ACTIONS(3526), 1, anon_sym_DOT, + ACTIONS(3528), 1, + anon_sym_QMARK_DOT, + ACTIONS(6643), 1, + anon_sym_LPAREN, + ACTIONS(6645), 1, + anon_sym_LT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3479), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128028] = 3, + ACTIONS(4421), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 10, + ACTIONS(4423), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242407,185 +242736,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127676] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3818), 1, - sym_formal_parameters, - STATE(3988), 1, - sym_type_annotation, - STATE(4787), 1, - sym__initializer, - STATE(5128), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, + [128048] = 3, + ACTIONS(4487), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(4489), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127713] = 9, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3271), 1, - sym_formal_parameters, - STATE(3526), 1, - sym__call_signature, - STATE(4246), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [128068] = 3, + ACTIONS(4433), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6643), 5, + ACTIONS(4435), 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, - [127746] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3842), 1, - sym__call_signature, - STATE(4295), 1, - sym_type_annotation, - STATE(5008), 1, - sym__initializer, - STATE(5103), 1, - sym_type_parameters, + [128088] = 4, + ACTIONS(6356), 1, + anon_sym_DOT, + ACTIONS(6358), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(3479), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [127783] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3818), 1, - sym_formal_parameters, - STATE(4093), 1, - sym_type_annotation, - STATE(4593), 1, - sym__initializer, - STATE(5213), 1, - sym_type_parameters, - STATE(5398), 1, - sym__call_signature, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128110] = 4, + ACTIONS(6657), 1, + anon_sym_DOT, + ACTIONS(6659), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(4335), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [127820] = 8, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK_DOT, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_LT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, - sym_type_arguments, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128132] = 3, + ACTIONS(4479), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 6, - anon_sym_as, + ACTIONS(4481), 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, - [127851] = 8, - ACTIONS(6282), 1, - anon_sym_DOT, - ACTIONS(6284), 1, - anon_sym_QMARK_DOT, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_LT, - STATE(2897), 1, - sym_arguments, - STATE(2909), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [128152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 6, - anon_sym_as, + ACTIONS(3172), 11, + 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127882] = 9, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3271), 1, - sym_formal_parameters, - STATE(3553), 1, - sym__call_signature, - STATE(4000), 1, - sym_type_annotation, - STATE(5207), 1, - sym_type_parameters, + [128170] = 3, + ACTIONS(4441), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 5, + ACTIONS(4443), 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, - [127915] = 3, - ACTIONS(4421), 1, + [128190] = 3, + ACTIONS(4311), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 10, + ACTIONS(4313), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242596,48 +242873,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127935] = 4, - ACTIONS(4353), 1, - anon_sym_PIPE, - ACTIONS(6653), 1, - anon_sym_AMP, + [128210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 9, + ACTIONS(4277), 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, - [127957] = 3, - ACTIONS(4459), 1, + [128228] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4411), 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, + [128246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 10, + ACTIONS(4419), 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, - [127977] = 3, - ACTIONS(4391), 1, + [128264] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 10, + ACTIONS(4481), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242645,158 +242939,144 @@ 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(4395), 1, - anon_sym_PIPE, + [128288] = 3, + ACTIONS(1813), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 10, + ACTIONS(4455), 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, - [128017] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6657), 1, + anon_sym_LT, anon_sym_extends, + [128308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 8, + ACTIONS(3469), 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_PIPE_RBRACE, - [128041] = 5, - ACTIONS(4135), 1, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6659), 1, - anon_sym_LBRACK, + anon_sym_extends, + [128326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4415), 7, + ACTIONS(3471), 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_PIPE_RBRACE, - [128065] = 4, - ACTIONS(4425), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6661), 1, anon_sym_extends, + [128344] = 3, + ACTIONS(1839), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 9, + ACTIONS(4455), 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_RBRACE, - [128087] = 4, - ACTIONS(4441), 1, anon_sym_PIPE, - ACTIONS(6659), 1, - anon_sym_LBRACK, + anon_sym_LT, + anon_sym_extends, + [128364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 9, + ACTIONS(4485), 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_extends, - anon_sym_PIPE_RBRACE, - [128109] = 3, - ACTIONS(4341), 1, anon_sym_PIPE, + anon_sym_extends, + [128382] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 10, + ACTIONS(4113), 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_extends, - anon_sym_PIPE_RBRACE, - [128129] = 3, - ACTIONS(2364), 1, anon_sym_PIPE, + anon_sym_extends, + [128400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2362), 10, + ACTIONS(4493), 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_extends, - anon_sym_PIPE_RBRACE, - [128149] = 3, - ACTIONS(4171), 1, anon_sym_PIPE, + anon_sym_extends, + [128418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 10, + ACTIONS(4497), 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, - [128169] = 3, - ACTIONS(4179), 1, + [128436] = 3, + ACTIONS(4181), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 10, + ACTIONS(4183), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242807,13 +243087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128189] = 3, - ACTIONS(4191), 1, + [128456] = 4, + ACTIONS(4353), 1, anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 10, + ACTIONS(4355), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242821,16 +243103,19 @@ 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, - [128209] = 3, - ACTIONS(4245), 1, + [128478] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 10, + ACTIONS(4187), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242838,33 +243123,30 @@ 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, - [128229] = 3, - ACTIONS(4249), 1, - anon_sym_PIPE, + [128502] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 10, + ACTIONS(3176), 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, - [128249] = 3, - ACTIONS(4253), 1, + [128520] = 3, + ACTIONS(4271), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 10, + ACTIONS(4269), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242875,13 +243157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128269] = 3, - ACTIONS(4315), 1, + [128540] = 3, + ACTIONS(4099), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 10, + ACTIONS(4101), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242892,32 +243174,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128289] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE, - ACTIONS(6657), 1, - anon_sym_extends, + [128560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 8, + ACTIONS(5412), 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, - [128313] = 3, - ACTIONS(4349), 1, + [128578] = 3, + ACTIONS(2372), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 10, + ACTIONS(2370), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242928,15 +243207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128333] = 4, - ACTIONS(4361), 1, + [128598] = 3, + ACTIONS(2368), 1, anon_sym_PIPE, - ACTIONS(6653), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 9, + ACTIONS(2366), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242944,15 +243221,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, - [128355] = 3, - ACTIONS(4365), 1, + [128618] = 3, + ACTIONS(2364), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 10, + ACTIONS(2362), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242963,13 +243241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128375] = 3, - ACTIONS(4087), 1, + [128638] = 3, + ACTIONS(2376), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 10, + ACTIONS(2374), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242980,13 +243258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128395] = 3, - ACTIONS(2368), 1, + [128658] = 3, + ACTIONS(4357), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2366), 10, + ACTIONS(4359), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242997,29 +243275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128415] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3176), 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, - [128433] = 3, - ACTIONS(4485), 1, + [128678] = 3, + ACTIONS(4413), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4487), 10, + ACTIONS(4415), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243030,13 +243292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128453] = 3, - ACTIONS(4489), 1, + [128698] = 3, + ACTIONS(4361), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 10, + ACTIONS(4363), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243047,32 +243309,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128473] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE, - ACTIONS(6657), 1, - anon_sym_extends, + [128718] = 4, + ACTIONS(6334), 1, + anon_sym_LT, + STATE(3370), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 8, + ACTIONS(4077), 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, - [128497] = 3, - ACTIONS(4477), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128740] = 3, + ACTIONS(4305), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4479), 10, + ACTIONS(4307), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243083,34 +243344,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128517] = 3, - ACTIONS(4286), 1, + [128760] = 5, + ACTIONS(4305), 1, anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 10, + ACTIONS(4307), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4371), 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, - [128537] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6655), 1, + [128784] = 4, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(6657), 1, + ACTIONS(6669), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 8, + ACTIONS(4375), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243118,37 +243379,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [128561] = 5, - ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE, - ACTIONS(6657), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [128806] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4471), 8, + ACTIONS(3180), 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, - [128585] = 5, - ACTIONS(6653), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6657), 1, anon_sym_extends, + [128824] = 3, + ACTIONS(4319), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 8, + ACTIONS(4321), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243156,14 +243411,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, - [128609] = 3, - ACTIONS(2380), 1, + [128844] = 3, + ACTIONS(4325), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 10, + ACTIONS(4327), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243174,13 +243431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128629] = 3, - ACTIONS(4461), 1, + [128864] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 10, + ACTIONS(4385), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243188,16 +243449,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, - [128649] = 3, - ACTIONS(4183), 1, + [128888] = 3, + ACTIONS(4397), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 10, + ACTIONS(4399), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243208,13 +243467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128669] = 3, - ACTIONS(2372), 1, + [128908] = 3, + ACTIONS(4401), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2370), 10, + ACTIONS(4403), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243225,13 +243484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128689] = 3, - ACTIONS(4465), 1, + [128928] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4467), 10, + ACTIONS(4403), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243239,20 +243502,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, - [128709] = 5, - ACTIONS(6653), 1, + [128952] = 5, + ACTIONS(6661), 1, anon_sym_AMP, - ACTIONS(6655), 1, + ACTIONS(6663), 1, anon_sym_PIPE, - ACTIONS(6657), 1, + ACTIONS(6665), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 8, + ACTIONS(4297), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243261,35 +243522,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [128733] = 2, + [128976] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, + anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 11, + ACTIONS(4317), 8, 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_PIPE_RBRACE, - [128751] = 6, - ACTIONS(2540), 1, + [129000] = 6, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(3671), 1, + STATE(3532), 1, sym_formal_parameters, - STATE(5169), 1, + STATE(5417), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -243297,13 +243561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128777] = 3, - ACTIONS(4123), 1, + [129026] = 3, + ACTIONS(2380), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 10, + ACTIONS(2378), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243314,13 +243578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128797] = 3, - ACTIONS(4264), 1, + [129046] = 3, + ACTIONS(4405), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 10, + ACTIONS(4407), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243331,13 +243595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128817] = 3, - ACTIONS(4093), 1, + [129066] = 3, + ACTIONS(4499), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 10, + ACTIONS(4501), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243348,54 +243612,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128837] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - anon_sym_type, - ACTIONS(6667), 1, - anon_sym_COMMA, - ACTIONS(6669), 1, - anon_sym_RBRACE, - ACTIONS(6671), 1, - anon_sym_typeof, - STATE(4583), 1, - sym_import_specifier, - STATE(5321), 1, - sym__import_identifier, + [129086] = 3, + ACTIONS(4339), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5767), 2, - sym__module_export_name, - sym_string, - [128873] = 4, - ACTIONS(6330), 1, - anon_sym_LT, - STATE(3405), 1, - sym_type_arguments, + ACTIONS(4341), 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, + [129106] = 3, + ACTIONS(4347), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 9, + ACTIONS(4267), 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, - [128895] = 2, + anon_sym_PIPE_RBRACE, + [129126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5713), 11, + ACTIONS(3879), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -243407,13 +243662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128913] = 3, - ACTIONS(4135), 1, + [129144] = 3, + ACTIONS(4460), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 10, + ACTIONS(4462), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243424,19 +243679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128933] = 6, - ACTIONS(6008), 1, + [129164] = 6, + ACTIONS(6028), 1, anon_sym_LT, - ACTIONS(6312), 1, + ACTIONS(6306), 1, anon_sym_DOT, - ACTIONS(6673), 1, + ACTIONS(6671), 1, anon_sym_is, - STATE(2926), 1, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 7, + ACTIONS(3502), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -243444,31 +243699,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [128959] = 4, - ACTIONS(4135), 1, + [129190] = 3, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(6659), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 9, + ACTIONS(4077), 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, - [128981] = 3, - ACTIONS(4097), 1, + [129210] = 3, + ACTIONS(4468), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 10, + ACTIONS(4470), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243479,276 +243733,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129001] = 3, - ACTIONS(4163), 1, + [129230] = 4, + ACTIONS(4379), 1, anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 10, + ACTIONS(4381), 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, - [129021] = 4, - ACTIONS(6400), 1, - anon_sym_DOT, - ACTIONS(6402), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3473), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [129252] = 3, + ACTIONS(4387), 1, anon_sym_PIPE, - anon_sym_extends, - [129043] = 4, - ACTIONS(6675), 1, - anon_sym_DOT, - ACTIONS(6677), 1, - anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 9, + ACTIONS(4389), 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, - [129065] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3172), 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_RBRACE, + [129272] = 3, + ACTIONS(4449), 1, anon_sym_PIPE, - anon_sym_extends, - [129083] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 11, + ACTIONS(4451), 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, - [129101] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4177), 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_RBRACE, + [129292] = 3, + ACTIONS(4287), 1, anon_sym_PIPE, - anon_sym_extends, - [129119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 11, + ACTIONS(4289), 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, - [129137] = 3, - ACTIONS(1925), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4259), 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_RBRACE, + [129312] = 4, + ACTIONS(4305), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [129157] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3469), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6667), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3459), 11, + ACTIONS(4307), 9, 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, - [129193] = 3, - ACTIONS(1929), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4259), 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_RBRACE, + [129334] = 3, + ACTIONS(4291), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [129213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 11, + ACTIONS(4293), 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, - [129231] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4331), 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_RBRACE, + [129354] = 3, + ACTIONS(4085), 1, anon_sym_PIPE, - anon_sym_extends, - [129249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 11, + ACTIONS(4087), 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, - [129267] = 2, + anon_sym_PIPE_RBRACE, + [129374] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(6673), 1, + sym_identifier, + ACTIONS(6675), 1, + anon_sym_type, + ACTIONS(6677), 1, + anon_sym_COMMA, + ACTIONS(6679), 1, + anon_sym_RBRACE, + ACTIONS(6681), 1, + anon_sym_typeof, + STATE(4847), 1, + sym_import_specifier, + STATE(5285), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 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, + STATE(5458), 2, + sym__module_export_name, + sym_string, + [129410] = 3, + ACTIONS(4464), 1, anon_sym_PIPE, - anon_sym_extends, - [129285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 11, + ACTIONS(4466), 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, - [129303] = 3, - ACTIONS(2376), 1, + anon_sym_PIPE_RBRACE, + [129430] = 3, + ACTIONS(4503), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 10, + ACTIONS(4505), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243759,13 +243913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129323] = 3, - ACTIONS(4311), 1, + [129450] = 4, + ACTIONS(4349), 1, anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 10, + ACTIONS(4351), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243773,16 +243929,19 @@ 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, - [129343] = 3, - ACTIONS(4333), 1, + [129472] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 10, + ACTIONS(4367), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243790,279 +243949,272 @@ 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, - [129363] = 3, - ACTIONS(4495), 1, - anon_sym_PIPE, + [129496] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(6673), 1, + sym_identifier, + ACTIONS(6683), 1, + anon_sym_type, + ACTIONS(6685), 1, + anon_sym_as, + STATE(5415), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(6550), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129383] = 11, - ACTIONS(2540), 1, + STATE(5745), 2, + sym__module_export_name, + sym_string, + [129527] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6679), 1, + ACTIONS(6687), 1, sym_identifier, - ACTIONS(6681), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6683), 1, + ACTIONS(6691), 1, anon_sym_extends, - ACTIONS(6685), 1, + ACTIONS(6693), 1, anon_sym_implements, - STATE(2221), 1, + STATE(2308), 1, sym_class_body, - STATE(3581), 1, + STATE(3631), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5155), 1, + STATE(5286), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129418] = 5, - ACTIONS(6004), 1, - anon_sym_LPAREN, - ACTIONS(6322), 1, - anon_sym_DOT, - STATE(2905), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4075), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [129441] = 11, - ACTIONS(2540), 1, + [129562] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6683), 1, + ACTIONS(6691), 1, anon_sym_extends, - ACTIONS(6685), 1, + ACTIONS(6693), 1, anon_sym_implements, - ACTIONS(6687), 1, + ACTIONS(6695), 1, sym_identifier, - STATE(2399), 1, + STATE(2176), 1, sym_class_body, - STATE(3548), 1, + STATE(3592), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5179), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129476] = 11, - ACTIONS(2540), 1, + [129597] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6683), 1, + ACTIONS(6691), 1, anon_sym_extends, - ACTIONS(6685), 1, + ACTIONS(6693), 1, anon_sym_implements, - ACTIONS(6689), 1, + ACTIONS(6697), 1, sym_identifier, - ACTIONS(6691), 1, + ACTIONS(6699), 1, anon_sym_LBRACE, - STATE(1643), 1, + STATE(2570), 1, sym_class_body, - STATE(3532), 1, + STATE(3513), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5141), 1, + STATE(5301), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129511] = 11, - ACTIONS(2540), 1, + [129632] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(6685), 1, - anon_sym_implements, - ACTIONS(6691), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, + ACTIONS(6691), 1, + anon_sym_extends, ACTIONS(6693), 1, + anon_sym_implements, + ACTIONS(6701), 1, sym_identifier, - STATE(2559), 1, + STATE(2308), 1, sym_class_body, - STATE(3579), 1, + STATE(3631), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5144), 1, + STATE(5286), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129546] = 6, - ACTIONS(6312), 1, + [129667] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, + anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6703), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [129690] = 8, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6705), 1, + anon_sym_EQ, + ACTIONS(6709), 1, + anon_sym_BANG, + STATE(3882), 1, + sym__initializer, + STATE(3901), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129719] = 5, + ACTIONS(6024), 1, + anon_sym_LPAREN, + ACTIONS(6326), 1, + anon_sym_DOT, + STATE(2907), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [129742] = 4, + ACTIONS(6715), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3781), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6713), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [129763] = 6, + ACTIONS(6306), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6695), 1, + ACTIONS(6717), 1, anon_sym_is, - STATE(2926), 1, + STATE(2915), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 6, + ACTIONS(3502), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129571] = 11, - ACTIONS(2540), 1, + [129788] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6683), 1, + ACTIONS(6691), 1, anon_sym_extends, - ACTIONS(6685), 1, + ACTIONS(6693), 1, anon_sym_implements, - ACTIONS(6697), 1, + ACTIONS(6719), 1, sym_identifier, - STATE(2221), 1, + STATE(2308), 1, sym_class_body, - STATE(3581), 1, + STATE(3631), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5155), 1, + STATE(5286), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129606] = 10, + [129823] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(6663), 1, + ACTIONS(6673), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6675), 1, anon_sym_type, - ACTIONS(6671), 1, + ACTIONS(6681), 1, anon_sym_typeof, - ACTIONS(6699), 1, + ACTIONS(6721), 1, anon_sym_RBRACE, - STATE(5284), 1, - sym_import_specifier, - STATE(5321), 1, + STATE(5285), 1, sym__import_identifier, + STATE(5328), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5767), 2, + STATE(5458), 2, sym__module_export_name, sym_string, - [129639] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(6685), 1, - anon_sym_implements, - ACTIONS(6701), 1, - sym_identifier, - STATE(2221), 1, - sym_class_body, - STATE(3581), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5155), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129674] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(6685), 1, - anon_sym_implements, - ACTIONS(6703), 1, - sym_identifier, - STATE(2399), 1, - sym_class_body, - STATE(3548), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5179), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129709] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(2330), 2, - sym_template_string, - sym_arguments, - ACTIONS(4173), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129732] = 3, - ACTIONS(6570), 1, + [129856] = 3, + ACTIONS(6723), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 9, + ACTIONS(4077), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244072,34 +244224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129751] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE, - ACTIONS(6657), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6705), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129774] = 4, - ACTIONS(4147), 1, + [129875] = 4, + ACTIONS(4215), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 2, + ACTIONS(4023), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3801), 7, + ACTIONS(3879), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -244107,13 +244241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [129795] = 3, - ACTIONS(6707), 1, + [129896] = 3, + ACTIONS(6560), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 9, + ACTIONS(4087), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244123,52 +244257,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129814] = 4, - ACTIONS(6711), 1, - anon_sym_COLON, + [129915] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6691), 1, + anon_sym_extends, + ACTIONS(6693), 1, + anon_sym_implements, + ACTIONS(6725), 1, + sym_identifier, + STATE(2176), 1, + sym_class_body, + STATE(3592), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5260), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3746), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6709), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129835] = 9, + [129950] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(6713), 1, + ACTIONS(6673), 1, sym_identifier, - ACTIONS(6717), 1, - anon_sym_COMMA, - ACTIONS(6719), 1, + ACTIONS(6675), 1, + anon_sym_type, + ACTIONS(6681), 1, + anon_sym_typeof, + ACTIONS(6727), 1, anon_sym_RBRACE, - STATE(4705), 1, - sym_export_specifier, + STATE(5285), 1, + sym__import_identifier, + STATE(5328), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4708), 2, + STATE(5458), 2, sym__module_export_name, sym_string, - [129866] = 3, - ACTIONS(6570), 1, - anon_sym_is, + [129983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(4091), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244178,412 +244318,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129885] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(6685), 1, - anon_sym_implements, - ACTIONS(6721), 1, - sym_identifier, - STATE(2221), 1, - sym_class_body, - STATE(3581), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5155), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129920] = 8, - ACTIONS(6418), 1, + anon_sym_is, + [130000] = 4, + ACTIONS(6715), 1, anon_sym_COLON, - ACTIONS(6723), 1, - anon_sym_EQ, - ACTIONS(6727), 1, - anon_sym_BANG, - STATE(4001), 1, - sym_type_annotation, - STATE(4189), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6729), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 10, + STATE(3797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6729), 6, 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, - anon_sym_is, - [129966] = 11, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [130021] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6683), 1, + ACTIONS(6691), 1, anon_sym_extends, - ACTIONS(6685), 1, + ACTIONS(6693), 1, anon_sym_implements, ACTIONS(6731), 1, sym_identifier, - STATE(2399), 1, + STATE(2176), 1, sym_class_body, - STATE(3548), 1, + STATE(3592), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5179), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130001] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6727), 1, - anon_sym_BANG, - STATE(4001), 1, - sym_type_annotation, - STATE(4790), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6729), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130030] = 3, - ACTIONS(6733), 1, - anon_sym_DOT, + [130056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 9, + ACTIONS(4329), 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, - [130049] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6735), 1, - anon_sym_type, - ACTIONS(6737), 1, - anon_sym_as, - STATE(5370), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6426), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5649), 2, - sym__module_export_name, - sym_string, - [130080] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - anon_sym_type, - ACTIONS(6671), 1, - anon_sym_typeof, - ACTIONS(6739), 1, - anon_sym_RBRACE, - STATE(5284), 1, - sym_import_specifier, - STATE(5321), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5767), 2, - sym__module_export_name, - sym_string, - [130113] = 11, - ACTIONS(2540), 1, + [130073] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6683), 1, + ACTIONS(6691), 1, anon_sym_extends, - ACTIONS(6685), 1, + ACTIONS(6693), 1, anon_sym_implements, - ACTIONS(6741), 1, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6733), 1, sym_identifier, - STATE(2399), 1, + STATE(1773), 1, sym_class_body, - STATE(3548), 1, + STATE(3536), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5179), 1, + STATE(5215), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130148] = 4, - ACTIONS(6711), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3749), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6743), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130169] = 2, + [130108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 10, + ACTIONS(4395), 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, - [130186] = 2, + [130125] = 3, + ACTIONS(6735), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 10, + ACTIONS(4301), 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, - [130203] = 2, + [130144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 10, + ACTIONS(1817), 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, - [130220] = 11, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(6685), 1, - anon_sym_implements, - ACTIONS(6691), 1, - anon_sym_LBRACE, - ACTIONS(6745), 1, - sym_identifier, - STATE(1674), 1, - sym_class_body, - STATE(3620), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5112), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130255] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5320), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [130281] = 10, - ACTIONS(2540), 1, + anon_sym_is, + [130161] = 11, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6691), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6693), 1, anon_sym_implements, - STATE(2377), 1, + ACTIONS(6737), 1, + sym_identifier, + STATE(2176), 1, sym_class_body, - STATE(3496), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5193), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130313] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(3498), 1, + STATE(3592), 1, sym_type_parameters, - STATE(3972), 1, - sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5206), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130345] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6753), 1, - anon_sym_BANG, - ACTIONS(6755), 1, - anon_sym_QMARK, - STATE(4064), 1, - sym_type_annotation, - STATE(4521), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6412), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130373] = 8, + [130196] = 9, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(6713), 1, + ACTIONS(6739), 1, sym_identifier, - ACTIONS(6757), 1, + ACTIONS(6743), 1, + anon_sym_COMMA, + ACTIONS(6745), 1, anon_sym_RBRACE, - STATE(5358), 1, + STATE(4569), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 2, + ACTIONS(6741), 2, anon_sym_type, anon_sym_typeof, - STATE(4708), 2, + STATE(4670), 2, sym__module_export_name, sym_string, - [130401] = 10, - ACTIONS(2540), 1, + [130227] = 11, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(6691), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6693), 1, anon_sym_implements, - STATE(1697), 1, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6747), 1, + sym_identifier, + STATE(1657), 1, sym_class_body, - STATE(3499), 1, + STATE(3581), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5228), 1, + STATE(5387), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130433] = 2, + [130262] = 3, + ACTIONS(6560), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 9, + ACTIONS(4101), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244593,190 +244531,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130449] = 5, - ACTIONS(6759), 1, + [130281] = 11, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6691), 1, + anon_sym_extends, + ACTIONS(6693), 1, + anon_sym_implements, + ACTIONS(6749), 1, + sym_identifier, + STATE(2308), 1, + sym_class_body, + STATE(3631), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5286), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130316] = 5, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2170), 2, + sym_template_string, + sym_arguments, + ACTIONS(4407), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6761), 1, anon_sym_PIPE, - ACTIONS(6763), 1, anon_sym_extends, + [130339] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6709), 1, + anon_sym_BANG, + STATE(3901), 1, + sym_type_annotation, + STATE(4961), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 6, + ACTIONS(6711), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6707), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [130471] = 8, - ACTIONS(6410), 1, + [130368] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6765), 1, + ACTIONS(6751), 1, anon_sym_BANG, - ACTIONS(6767), 1, + ACTIONS(6753), 1, anon_sym_QMARK, - STATE(4316), 1, + STATE(4234), 1, sym_type_annotation, - STATE(5061), 1, + STATE(4900), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130499] = 10, - ACTIONS(825), 1, + [130396] = 10, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4207), 1, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(6008), 1, + ACTIONS(6028), 1, anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_DOT, - STATE(1646), 1, + STATE(1799), 1, sym_template_string, - STATE(2175), 1, + STATE(2273), 1, sym_arguments, - STATE(4445), 1, + STATE(3024), 1, sym_type_arguments, - STATE(5342), 1, + STATE(5421), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130531] = 10, - ACTIONS(2540), 1, + [130428] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6747), 1, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(787), 1, + STATE(2266), 1, sym_class_body, - STATE(3571), 1, + STATE(3559), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5198), 1, + STATE(5266), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130563] = 2, + [130460] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(6739), 1, + sym_identifier, + ACTIONS(6759), 1, + anon_sym_RBRACE, + STATE(5165), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3344), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6741), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4670), 2, + sym__module_export_name, + sym_string, + [130488] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6689), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6755), 1, anon_sym_extends, - [130579] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6771), 1, - anon_sym_BANG, - ACTIONS(6773), 1, - anon_sym_QMARK, - STATE(4324), 1, - sym_type_annotation, - STATE(5067), 1, - sym__initializer, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(2172), 1, + sym_class_body, + STATE(3564), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5292), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130607] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(6008), 1, + [130520] = 10, + ACTIONS(2708), 1, anon_sym_LT, - STATE(2063), 1, - sym_arguments, - STATE(2199), 1, - sym_template_string, - STATE(3266), 1, - sym_type_arguments, - STATE(5100), 1, - sym_optional_chain, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(2190), 1, + sym_class_body, + STATE(3607), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5338), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130639] = 10, - ACTIONS(2540), 1, + [130552] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6775), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(800), 1, - sym_class_body, - STATE(3547), 1, + STATE(3609), 1, sym_type_parameters, - STATE(4670), 1, + STATE(3895), 1, + sym_class_body, + STATE(5008), 1, sym_extends_clause, - STATE(5225), 1, + STATE(5351), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130671] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6777), 1, - anon_sym_BANG, - ACTIONS(6779), 1, - anon_sym_QMARK, - STATE(4326), 1, - sym_type_annotation, - STATE(5070), 1, - sym__initializer, + [130584] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(1687), 1, + sym_class_body, + STATE(3610), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5372), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130699] = 2, + [130616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4479), 9, + ACTIONS(4101), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244786,346 +244780,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130715] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [130632] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6763), 1, + anon_sym_DOT, + STATE(1571), 1, + sym_arguments, + STATE(1799), 1, + sym_template_string, + STATE(4408), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [130741] = 7, - ACTIONS(6410), 1, + [130664] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4208), 1, + ACTIONS(6765), 1, + anon_sym_BANG, + ACTIONS(6767), 1, + anon_sym_QMARK, + STATE(3946), 1, sym_type_annotation, - STATE(4822), 1, + STATE(4597), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6480), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6478), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130767] = 8, - ACTIONS(6410), 1, + [130692] = 7, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6705), 1, anon_sym_EQ, - ACTIONS(6418), 1, + STATE(3883), 1, + sym__initializer, + STATE(3901), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130718] = 7, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6781), 1, - anon_sym_BANG, - ACTIONS(6783), 1, - anon_sym_QMARK, - STATE(4330), 1, + STATE(3901), 1, sym_type_annotation, - STATE(5078), 1, + STATE(4726), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6711), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130795] = 5, - ACTIONS(6322), 1, + [130744] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6769), 1, anon_sym_DOT, - ACTIONS(6633), 1, + STATE(2173), 1, + sym_template_string, + STATE(2494), 1, + sym_arguments, + STATE(4450), 1, + sym_type_arguments, + STATE(5221), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130776] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, anon_sym_LPAREN, - STATE(2905), 1, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(2173), 1, + sym_template_string, + STATE(2503), 1, sym_arguments, + STATE(3288), 1, + sym_type_arguments, + STATE(5221), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130817] = 2, + [130808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6771), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130833] = 10, - ACTIONS(2540), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [130824] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(3687), 1, - sym_type_parameters, - STATE(3952), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5147), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, + anon_sym_QMARK, + [130850] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(1547), 1, + sym_arguments, + STATE(1799), 1, + sym_template_string, + STATE(3024), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130865] = 10, - ACTIONS(2540), 1, + [130882] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6751), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(3511), 1, - sym_type_parameters, - STATE(4016), 1, + STATE(758), 1, sym_class_body, - STATE(4670), 1, + STATE(3608), 1, + sym_type_parameters, + STATE(5008), 1, sym_extends_clause, - STATE(5348), 1, + STATE(5295), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130897] = 7, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4026), 1, - sym_type_annotation, - STATE(4954), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6787), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6785), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130923] = 10, - ACTIONS(2540), 1, + [130914] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6747), 1, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6789), 1, - anon_sym_LBRACE, - STATE(211), 1, + STATE(2567), 1, sym_class_body, - STATE(3656), 1, + STATE(3589), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5393), 1, + STATE(5326), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130955] = 7, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4280), 1, - sym_type_annotation, - STATE(4990), 1, - sym__initializer, + [130946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6438), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6436), 3, - sym__automatic_semicolon, + ACTIONS(6773), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [130981] = 9, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [130962] = 10, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(6008), 1, + ACTIONS(6028), 1, anon_sym_LT, - STATE(4361), 1, + STATE(2127), 1, + sym_arguments, + STATE(2173), 1, + sym_template_string, + STATE(3288), 1, sym_type_arguments, - STATE(5100), 1, + STATE(5221), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2199), 2, - sym_template_string, - sym_arguments, - [131011] = 8, - ACTIONS(6410), 1, + [130994] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6791), 1, + ACTIONS(6775), 1, anon_sym_BANG, - ACTIONS(6793), 1, + ACTIONS(6777), 1, anon_sym_QMARK, - STATE(3873), 1, + STATE(3905), 1, sym_type_annotation, - STATE(4924), 1, + STATE(4627), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131039] = 2, + [131022] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(6673), 1, + sym_identifier, + ACTIONS(6675), 1, + anon_sym_type, + ACTIONS(6681), 1, + anon_sym_typeof, + STATE(5285), 1, + sym__import_identifier, + STATE(5328), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 9, + STATE(5458), 2, + sym__module_export_name, + sym_string, + [131052] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6779), 1, + anon_sym_DOT, + STATE(1799), 1, + sym_template_string, + STATE(2548), 1, + sym_arguments, + STATE(4408), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131084] = 5, + ACTIONS(6781), 1, + anon_sym_AMP, + ACTIONS(6783), 1, + anon_sym_PIPE, + ACTIONS(6785), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4297), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + [131106] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(1799), 1, + sym_template_string, + STATE(2549), 1, + sym_arguments, + STATE(3024), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131138] = 5, + ACTIONS(6781), 1, anon_sym_AMP, + ACTIONS(6783), 1, anon_sym_PIPE, + ACTIONS(6785), 1, anon_sym_extends, - [131055] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6797), 1, - anon_sym_BANG, - ACTIONS(6799), 1, - anon_sym_QMARK, - STATE(4171), 1, - sym_type_annotation, - STATE(4741), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6795), 3, + ACTIONS(4317), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131083] = 8, - ACTIONS(6410), 1, + anon_sym_LBRACK, + [131160] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6787), 1, + anon_sym_DOT, + STATE(1799), 1, + sym_template_string, + STATE(2142), 1, + sym_arguments, + STATE(4408), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131192] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(6318), 1, + anon_sym_LT, + STATE(1799), 1, + sym_template_string, + STATE(1954), 1, + sym_arguments, + STATE(3081), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131224] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6801), 1, + ACTIONS(6791), 1, anon_sym_BANG, - ACTIONS(6803), 1, + ACTIONS(6793), 1, anon_sym_QMARK, - STATE(4048), 1, + STATE(4021), 1, sym_type_annotation, - STATE(4485), 1, + STATE(4990), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6789), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131111] = 8, - ACTIONS(6410), 1, + [131252] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6795), 9, anon_sym_EQ, - ACTIONS(6418), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(6805), 1, - anon_sym_BANG, - ACTIONS(6807), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(3877), 1, - sym_type_annotation, - STATE(4498), 1, - sym__initializer, + [131268] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131139] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6809), 1, - anon_sym_BANG, - ACTIONS(6811), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4329), 1, + [131294] = 7, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4186), 1, sym_type_annotation, - STATE(5077), 1, + STATE(4813), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6468), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131167] = 8, - ACTIONS(6410), 1, + [131320] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(3497), 1, + sym_type_parameters, + STATE(3939), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5436), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131352] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6813), 1, + ACTIONS(6797), 1, anon_sym_BANG, - ACTIONS(6815), 1, + ACTIONS(6799), 1, anon_sym_QMARK, - STATE(4334), 1, + STATE(4200), 1, sym_type_annotation, - STATE(5084), 1, + STATE(4832), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -245134,18 +245316,18 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131195] = 8, - ACTIONS(6410), 1, + [131380] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6817), 1, + ACTIONS(6801), 1, anon_sym_BANG, - ACTIONS(6819), 1, + ACTIONS(6803), 1, anon_sym_QMARK, - STATE(4336), 1, + STATE(4205), 1, sym_type_annotation, - STATE(5086), 1, + STATE(4842), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -245154,533 +245336,415 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131223] = 8, - ACTIONS(6410), 1, + [131408] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6821), 1, - anon_sym_BANG, - ACTIONS(6823), 1, - anon_sym_QMARK, - STATE(4065), 1, - sym_type_annotation, - STATE(4524), 1, - sym__initializer, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131251] = 8, - ACTIONS(6410), 1, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131434] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6825), 1, + ACTIONS(6805), 1, anon_sym_BANG, - ACTIONS(6827), 1, + ACTIONS(6807), 1, anon_sym_QMARK, - STATE(3880), 1, + STATE(4206), 1, sym_type_annotation, - STATE(4961), 1, + STATE(4846), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131279] = 8, - ACTIONS(6410), 1, + [131462] = 6, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(6809), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6829), 1, - anon_sym_BANG, - ACTIONS(6831), 1, - anon_sym_QMARK, - STATE(3881), 1, - sym_type_annotation, - STATE(4609), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, - sym__automatic_semicolon, + ACTIONS(6703), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [131307] = 8, - ACTIONS(6410), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [131486] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6833), 1, + ACTIONS(6811), 1, anon_sym_BANG, - ACTIONS(6835), 1, + ACTIONS(6813), 1, anon_sym_QMARK, - STATE(4070), 1, + STATE(4207), 1, sym_type_annotation, - STATE(4538), 1, + STATE(4850), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131335] = 8, - ACTIONS(6410), 1, + [131514] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6837), 1, + ACTIONS(6815), 1, anon_sym_BANG, - ACTIONS(6839), 1, + ACTIONS(6817), 1, anon_sym_QMARK, - STATE(4072), 1, + STATE(4208), 1, sym_type_annotation, - STATE(4540), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131363] = 2, + [131542] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6819), 1, + anon_sym_DOT, + STATE(1571), 1, + sym_arguments, + STATE(1799), 1, + sym_template_string, + STATE(4408), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6841), 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, - [131379] = 8, - ACTIONS(6410), 1, + [131574] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6843), 1, + ACTIONS(6821), 1, anon_sym_BANG, - ACTIONS(6845), 1, + ACTIONS(6823), 1, anon_sym_QMARK, - STATE(4077), 1, + STATE(4214), 1, sym_type_annotation, - STATE(4546), 1, + STATE(4865), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131407] = 5, - ACTIONS(6759), 1, - anon_sym_AMP, - ACTIONS(6761), 1, - anon_sym_PIPE, - ACTIONS(6763), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4278), 6, + ACTIONS(6472), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [131429] = 6, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(6847), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6705), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [131453] = 8, - ACTIONS(6410), 1, + [131602] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6849), 1, + ACTIONS(6825), 1, anon_sym_BANG, - ACTIONS(6851), 1, + ACTIONS(6827), 1, anon_sym_QMARK, - STATE(3885), 1, + STATE(4217), 1, sym_type_annotation, - STATE(4919), 1, + STATE(4871), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131481] = 8, - ACTIONS(6410), 1, + [131630] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6853), 1, + ACTIONS(6829), 1, anon_sym_BANG, - ACTIONS(6855), 1, + ACTIONS(6831), 1, anon_sym_QMARK, - STATE(3902), 1, + STATE(4219), 1, sym_type_annotation, - STATE(4545), 1, + STATE(4873), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131509] = 4, - ACTIONS(6857), 1, + [131658] = 4, + ACTIONS(6833), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3888), 3, + STATE(4279), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6743), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [131529] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(1646), 1, - sym_template_string, - STATE(2176), 1, - sym_arguments, - STATE(3030), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131561] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6789), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_class_body, - STATE(3588), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5277), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131593] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4185), 9, + ACTIONS(6713), 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, - [131609] = 10, - ACTIONS(2540), 1, + [131678] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6691), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2551), 1, + STATE(2186), 1, sym_class_body, - STATE(3698), 1, + STATE(3509), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5125), 1, + STATE(5403), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131641] = 8, - ACTIONS(6410), 1, + [131710] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6859), 1, + ACTIONS(6835), 1, anon_sym_BANG, - ACTIONS(6861), 1, + ACTIONS(6837), 1, anon_sym_QMARK, - STATE(4094), 1, + STATE(4233), 1, sym_type_annotation, - STATE(4594), 1, + STATE(4898), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131669] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4467), 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, - [131685] = 9, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(4445), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1646), 2, - sym_template_string, - sym_arguments, - [131715] = 8, - ACTIONS(6410), 1, + [131738] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6863), 1, + ACTIONS(6839), 1, anon_sym_BANG, - ACTIONS(6865), 1, + ACTIONS(6841), 1, anon_sym_QMARK, - STATE(3930), 1, + STATE(4235), 1, sym_type_annotation, - STATE(4509), 1, + STATE(4904), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131743] = 8, + [131766] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6843), 1, + anon_sym_LBRACE, + STATE(864), 1, + sym_class_body, + STATE(3549), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5244), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131798] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(6713), 1, + ACTIONS(6739), 1, sym_identifier, - ACTIONS(6867), 1, + ACTIONS(6845), 1, anon_sym_RBRACE, - STATE(5358), 1, + STATE(5165), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 2, + ACTIONS(6741), 2, anon_sym_type, anon_sym_typeof, - STATE(4708), 2, + STATE(4670), 2, sym__module_export_name, sym_string, - [131771] = 5, - ACTIONS(6759), 1, - anon_sym_AMP, - ACTIONS(6761), 1, - anon_sym_PIPE, - ACTIONS(6763), 1, - anon_sym_extends, + [131826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 6, + ACTIONS(4289), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131793] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6747), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_class_body, - STATE(3658), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5388), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131825] = 8, - ACTIONS(6410), 1, + [131842] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6869), 1, + ACTIONS(6847), 1, anon_sym_BANG, - ACTIONS(6871), 1, + ACTIONS(6849), 1, anon_sym_QMARK, - STATE(3934), 1, + STATE(3911), 1, sym_type_annotation, - STATE(4535), 1, + STATE(4660), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131853] = 7, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4299), 1, - sym_type_annotation, - STATE(5020), 1, - sym__initializer, + [131870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6464), 3, + ACTIONS(4293), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131879] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6873), 1, - anon_sym_DOT, - STATE(1551), 1, - sym_arguments, - STATE(1646), 1, - sym_template_string, - STATE(4445), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131886] = 2, + 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, + [131902] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 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, + [131918] = 3, + ACTIONS(6851), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131911] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_DOT, - STATE(1551), 1, - sym_arguments, - STATE(1646), 1, - sym_template_string, - STATE(4445), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, + ACTIONS(4307), 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, + [131936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131943] = 2, + ACTIONS(4077), 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, + [131952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(4313), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245690,195 +245754,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131959] = 8, - ACTIONS(6410), 1, + [131968] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(4937), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6877), 1, - anon_sym_BANG, - ACTIONS(6879), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(3938), 1, + [131994] = 7, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3908), 1, sym_type_annotation, - STATE(4554), 1, + STATE(4800), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6494), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6492), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131987] = 7, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6881), 1, - anon_sym_DOT, - STATE(1259), 1, - sym_arguments, - STATE(5420), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3537), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [132013] = 8, - ACTIONS(6410), 1, + [132020] = 7, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6883), 1, - anon_sym_BANG, - ACTIONS(6885), 1, - anon_sym_QMARK, - STATE(4084), 1, + STATE(4077), 1, sym_type_annotation, - STATE(4565), 1, + STATE(4677), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6424), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6422), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132041] = 10, - ACTIONS(2540), 1, + [132046] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2247), 1, + ACTIONS(6843), 1, + anon_sym_LBRACE, + STATE(889), 1, sym_class_body, - STATE(3596), 1, + STATE(3637), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5306), 1, + STATE(5119), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132073] = 2, + [132078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6887), 9, - anon_sym_EQ, + ACTIONS(2362), 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, + [132094] = 7, + ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(672), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [132089] = 8, - ACTIONS(6410), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6889), 1, - anon_sym_BANG, - ACTIONS(6891), 1, - anon_sym_QMARK, - STATE(4076), 1, - sym_type_annotation, - STATE(4544), 1, - sym__initializer, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132117] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(3879), 4, anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, + anon_sym_COLON, anon_sym_LT, - STATE(1597), 1, + anon_sym_QMARK, + [132120] = 5, + ACTIONS(6326), 1, + anon_sym_DOT, + ACTIONS(6643), 1, + anon_sym_LPAREN, + STATE(2907), 1, sym_arguments, - STATE(1646), 1, - sym_template_string, - STATE(3030), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132149] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6893), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4095), 6, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - [132165] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6895), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132142] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6428), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6853), 1, + anon_sym_BANG, + ACTIONS(6855), 1, anon_sym_QMARK, - [132181] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4793), 1, - aux_sym_object_repeat1, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + STATE(3919), 1, + sym_type_annotation, + STATE(4901), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [132207] = 2, + ACTIONS(6456), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132170] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 9, + ACTIONS(4341), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245888,54 +245917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132223] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_DOT, - STATE(1646), 1, - sym_template_string, - STATE(2451), 1, - sym_arguments, - STATE(4445), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132255] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - anon_sym_type, - ACTIONS(6671), 1, - anon_sym_typeof, - STATE(5284), 1, - sym_import_specifier, - STATE(5321), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5767), 2, - sym__module_export_name, - sym_string, - [132285] = 2, + [132186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 9, + ACTIONS(4267), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245945,11 +245931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132301] = 2, + [132202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 9, + ACTIONS(4505), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245959,144 +245945,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132317] = 2, + [132218] = 3, + ACTIONS(6781), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 9, + ACTIONS(4355), 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, anon_sym_extends, - [132333] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6897), 1, - anon_sym_BANG, - ACTIONS(6899), 1, - anon_sym_QMARK, - STATE(4104), 1, - sym_type_annotation, - STATE(4621), 1, - sym__initializer, + [132236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(4269), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132361] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2164), 1, - sym_class_body, - STATE(3659), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5260), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132393] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6901), 1, - anon_sym_DOT, - STATE(2199), 1, - sym_template_string, - STATE(2508), 1, - sym_arguments, - STATE(4361), 1, - sym_type_arguments, - STATE(5100), 1, - sym_optional_chain, + [132252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132425] = 7, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6723), 1, - anon_sym_EQ, - STATE(4001), 1, - sym_type_annotation, - STATE(4190), 1, - sym__initializer, + ACTIONS(4359), 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, + [132268] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6729), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6725), 3, + ACTIONS(4363), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132451] = 5, - ACTIONS(6759), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6761), 1, anon_sym_PIPE, - ACTIONS(6763), 1, + anon_sym_extends, + [132284] = 5, + ACTIONS(6781), 1, + anon_sym_AMP, + ACTIONS(6783), 1, + anon_sym_PIPE, + ACTIONS(6785), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4471), 6, + ACTIONS(4367), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [132473] = 5, - ACTIONS(6759), 1, + [132306] = 4, + ACTIONS(6851), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 3, anon_sym_AMP, - ACTIONS(6761), 1, anon_sym_PIPE, - ACTIONS(6763), 1, + anon_sym_extends, + ACTIONS(4371), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [132326] = 3, + ACTIONS(6857), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 6, + ACTIONS(4375), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [132495] = 3, - ACTIONS(6903), 1, + anon_sym_AMP, + anon_sym_PIPE, + [132344] = 3, + ACTIONS(6851), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 8, + ACTIONS(4381), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246105,11 +246065,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132513] = 2, + [132362] = 9, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(4408), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1799), 2, + sym_template_string, + sym_arguments, + [132392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 9, + ACTIONS(4389), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246119,33 +246100,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132529] = 10, - ACTIONS(2540), 1, + [132408] = 3, + ACTIONS(3354), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3356), 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, + [132426] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6761), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + STATE(3582), 1, + sym_type_parameters, + STATE(4288), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5290), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132458] = 7, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4276), 1, + sym_type_annotation, + STATE(4962), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6516), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132484] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6859), 1, + anon_sym_BANG, + ACTIONS(6861), 1, + anon_sym_QMARK, + STATE(4044), 1, + sym_type_annotation, + STATE(4543), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6789), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132512] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2309), 1, + ACTIONS(6863), 1, + anon_sym_LBRACE, + STATE(232), 1, sym_class_body, - STATE(3650), 1, + STATE(3498), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5387), 1, + STATE(5148), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132544] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(1662), 1, + sym_class_body, + STATE(3716), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5144), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132561] = 2, + [132576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 9, + ACTIONS(2366), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246155,150 +246234,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132577] = 7, + [132592] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6865), 1, + anon_sym_BANG, + ACTIONS(6867), 1, + anon_sym_QMARK, + STATE(4108), 1, + sym_type_annotation, + STATE(4720), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132620] = 7, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4147), 1, + ACTIONS(4215), 1, anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(5245), 1, anon_sym_RBRACE, - STATE(4793), 1, + STATE(4821), 1, aux_sym_object_repeat1, - STATE(4796), 1, + STATE(4940), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(3879), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [132603] = 8, - ACTIONS(6410), 1, + [132646] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4415), 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, + [132662] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6905), 1, + ACTIONS(6869), 1, anon_sym_BANG, - ACTIONS(6907), 1, + ACTIONS(6871), 1, anon_sym_QMARK, - STATE(4113), 1, + STATE(4314), 1, sym_type_annotation, - STATE(4641), 1, + STATE(5020), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132631] = 8, - ACTIONS(6410), 1, + [132690] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4423), 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, + [132706] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6909), 1, + ACTIONS(6873), 1, anon_sym_BANG, - ACTIONS(6911), 1, + ACTIONS(6875), 1, anon_sym_QMARK, - STATE(4114), 1, + STATE(4318), 1, sym_type_annotation, - STATE(4642), 1, + STATE(5027), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132659] = 7, - ACTIONS(6410), 1, + [132734] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4001), 1, + ACTIONS(6877), 1, + anon_sym_BANG, + ACTIONS(6879), 1, + anon_sym_QMARK, + STATE(4319), 1, sym_type_annotation, - STATE(4801), 1, + STATE(5029), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6729), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6725), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132685] = 7, - ACTIONS(6410), 1, + [132762] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4170), 1, + ACTIONS(6881), 1, + anon_sym_BANG, + ACTIONS(6883), 1, + anon_sym_QMARK, + STATE(4323), 1, sym_type_annotation, - STATE(4917), 1, + STATE(5036), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6488), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132711] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6913), 1, - anon_sym_DOT, - STATE(2046), 1, - sym_arguments, - STATE(2199), 1, - sym_template_string, - STATE(4361), 1, - sym_type_arguments, - STATE(5100), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132743] = 8, - ACTIONS(6410), 1, + [132790] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6915), 1, + ACTIONS(6885), 1, anon_sym_BANG, - ACTIONS(6917), 1, + ACTIONS(6887), 1, anon_sym_QMARK, - STATE(4118), 1, + STATE(4340), 1, sym_type_annotation, - STATE(4652), 1, + STATE(5059), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132771] = 2, + [132818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 9, + ACTIONS(4435), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246308,55 +246415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132787] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6775), 1, - anon_sym_LBRACE, - STATE(842), 1, - sym_class_body, - STATE(3598), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5270), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132819] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(1646), 1, - sym_template_string, - STATE(2453), 1, - sym_arguments, - STATE(3030), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132851] = 2, + [132834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 9, + ACTIONS(4443), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246366,33 +246429,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132867] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(6008), 1, - anon_sym_LT, - ACTIONS(6919), 1, - anon_sym_DOT, - STATE(1646), 1, - sym_template_string, - STATE(2552), 1, - sym_arguments, - STATE(4445), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, + [132850] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6889), 1, + anon_sym_BANG, + ACTIONS(6891), 1, + anon_sym_QMARK, + STATE(4341), 1, + sym_type_annotation, + STATE(5064), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132899] = 2, + ACTIONS(6520), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132878] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 9, + ACTIONS(4451), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246402,59 +246463,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132915] = 2, + [132894] = 5, + ACTIONS(6306), 1, + anon_sym_DOT, + ACTIONS(6645), 1, + anon_sym_LT, + STATE(2915), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3502), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132931] = 8, - ACTIONS(6410), 1, + [132916] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6921), 1, + ACTIONS(6893), 1, anon_sym_BANG, - ACTIONS(6923), 1, + ACTIONS(6895), 1, anon_sym_QMARK, - STATE(4129), 1, + STATE(4343), 1, sym_type_annotation, - STATE(4675), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132959] = 2, + [132944] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6897), 1, + anon_sym_BANG, + ACTIONS(6899), 1, + anon_sym_QMARK, + STATE(4344), 1, + sym_type_annotation, + STATE(5071), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 9, + ACTIONS(6520), 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, - [132975] = 2, + [132972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 9, + ACTIONS(4481), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246464,54 +246534,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132991] = 3, - ACTIONS(6759), 1, + [132988] = 5, + ACTIONS(6781), 1, anon_sym_AMP, + ACTIONS(6783), 1, + anon_sym_PIPE, + ACTIONS(6785), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 8, + ACTIONS(4481), 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, - [133009] = 2, + [133010] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + anon_sym_BANG, + ACTIONS(6903), 1, + anon_sym_QMARK, + STATE(4348), 1, + sym_type_annotation, + STATE(5077), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 9, + ACTIONS(6520), 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, - [133025] = 2, + [133038] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6905), 1, + anon_sym_BANG, + ACTIONS(6907), 1, + anon_sym_QMARK, + STATE(4349), 1, + sym_type_annotation, + STATE(5081), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 9, + ACTIONS(6520), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [133066] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6863), 1, + anon_sym_LBRACE, + STATE(211), 1, + sym_class_body, + STATE(3534), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5120), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133098] = 3, + ACTIONS(3342), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3344), 8, + anon_sym_as, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133041] = 2, + anon_sym_LBRACE_PIPE, + [133116] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6909), 1, + anon_sym_BANG, + ACTIONS(6911), 1, + anon_sym_QMARK, + STATE(4090), 1, + sym_type_annotation, + STATE(4689), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6520), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 9, + ACTIONS(4501), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246521,46 +246662,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133057] = 5, - ACTIONS(6759), 1, + [133160] = 3, + ACTIONS(6781), 1, anon_sym_AMP, - ACTIONS(6761), 1, - anon_sym_PIPE, - ACTIONS(6763), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 6, + ACTIONS(4351), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133079] = 4, - ACTIONS(6903), 1, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [133178] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6913), 1, + anon_sym_BANG, + ACTIONS(6915), 1, + anon_sym_QMARK, + STATE(4043), 1, + sym_type_annotation, + STATE(4826), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4415), 5, + ACTIONS(6520), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133099] = 3, - ACTIONS(6925), 1, - anon_sym_extends, + [133206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 8, + ACTIONS(4489), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246569,297 +246710,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [133117] = 3, - ACTIONS(6903), 1, - anon_sym_LBRACK, + anon_sym_extends, + [133222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 8, + ACTIONS(2374), 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, - [133135] = 10, - ACTIONS(2540), 1, + [133238] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6681), 1, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2329), 1, + STATE(2217), 1, sym_class_body, - STATE(3508), 1, + STATE(3622), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5230), 1, + STATE(5320), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133167] = 2, + [133270] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_BANG, + ACTIONS(6919), 1, + anon_sym_QMARK, + STATE(4086), 1, + sym_type_annotation, + STATE(4676), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 9, + ACTIONS(6520), 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, - [133183] = 2, + [133298] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4215), 1, + anon_sym_EQ, + STATE(4821), 1, + aux_sym_object_repeat1, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 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, - [133199] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(3879), 4, anon_sym_LPAREN, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(6008), 1, + anon_sym_COLON, anon_sym_LT, - STATE(2199), 1, - sym_template_string, - STATE(2512), 1, - sym_arguments, - STATE(3266), 1, - sym_type_arguments, - STATE(5100), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133231] = 3, - ACTIONS(3308), 1, - anon_sym_LBRACE, + anon_sym_QMARK, + [133324] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6921), 1, + anon_sym_BANG, + ACTIONS(6923), 1, + anon_sym_QMARK, + STATE(4099), 1, + sym_type_annotation, + STATE(4694), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3310), 8, - anon_sym_as, + ACTIONS(6520), 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, - [133249] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(3621), 1, - sym_type_parameters, - STATE(3895), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5129), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133281] = 8, - ACTIONS(6410), 1, + anon_sym_SEMI, + [133352] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6927), 1, + ACTIONS(6925), 1, anon_sym_BANG, - ACTIONS(6929), 1, + ACTIONS(6927), 1, anon_sym_QMARK, - STATE(4210), 1, + STATE(4118), 1, sym_type_annotation, - STATE(4815), 1, + STATE(4727), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6795), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133309] = 10, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2340), 1, - sym_class_body, - STATE(3676), 1, - sym_type_parameters, - STATE(4670), 1, - sym_extends_clause, - STATE(5418), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, + [133380] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6929), 1, + anon_sym_BANG, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(4227), 1, + sym_type_annotation, + STATE(4889), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133341] = 2, + ACTIONS(6520), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133408] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6933), 1, + anon_sym_BANG, + ACTIONS(6935), 1, + anon_sym_QMARK, + STATE(4278), 1, + sym_type_annotation, + STATE(4938), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2362), 9, + ACTIONS(6520), 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, - [133357] = 10, - ACTIONS(825), 1, + [133436] = 10, + ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(6008), 1, + ACTIONS(6028), 1, anon_sym_LT, - STATE(1646), 1, + ACTIONS(6763), 1, + anon_sym_DOT, + STATE(1799), 1, sym_template_string, - STATE(2558), 1, + STATE(2458), 1, sym_arguments, - STATE(3030), 1, + STATE(4408), 1, sym_type_arguments, - STATE(5342), 1, + STATE(5421), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133389] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 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, - [133405] = 2, + [133468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6937), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133421] = 10, - ACTIONS(825), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [133484] = 10, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4207), 1, + ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(6008), 1, + ACTIONS(6028), 1, anon_sym_LT, - ACTIONS(6931), 1, + ACTIONS(6939), 1, anon_sym_DOT, - STATE(1646), 1, - sym_template_string, - STATE(2152), 1, + STATE(2096), 1, sym_arguments, - STATE(4445), 1, + STATE(2173), 1, + sym_template_string, + STATE(4450), 1, sym_type_arguments, - STATE(5342), 1, + STATE(5221), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133453] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4193), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [133516] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6689), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6755), 1, anon_sym_extends, - [133469] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6933), 1, - anon_sym_BANG, - ACTIONS(6935), 1, - anon_sym_QMARK, - STATE(3942), 1, - sym_type_annotation, - STATE(4573), 1, - sym__initializer, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(2231), 1, + sym_class_body, + STATE(3629), 1, + sym_type_parameters, + STATE(5008), 1, + sym_extends_clause, + STATE(5386), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133497] = 2, + [133548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 9, + ACTIONS(4321), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246869,11 +246960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133513] = 2, + [133564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 9, + ACTIONS(4327), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246883,27 +246974,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133529] = 2, + [133580] = 5, + ACTIONS(6781), 1, + anon_sym_AMP, + ACTIONS(6783), 1, + anon_sym_PIPE, + ACTIONS(6785), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 9, + ACTIONS(4385), 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, - [133545] = 3, - ACTIONS(3342), 1, + [133602] = 3, + ACTIONS(3278), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3344), 8, + ACTIONS(3280), 8, anon_sym_as, anon_sym_COMMA, anon_sym_LBRACK, @@ -246912,33 +247006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [133563] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4067), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_QMARK_DOT, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(6302), 1, - anon_sym_LT, - STATE(1646), 1, - sym_template_string, - STATE(2153), 1, - sym_arguments, - STATE(3104), 1, - sym_type_arguments, - STATE(5342), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133595] = 2, + [133620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1945), 9, + ACTIONS(4399), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246948,11 +247020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133611] = 2, + [133636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 9, + ACTIONS(4403), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246962,100 +247034,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133627] = 5, - ACTIONS(6759), 1, + [133652] = 5, + ACTIONS(6781), 1, anon_sym_AMP, - ACTIONS(6761), 1, + ACTIONS(6783), 1, anon_sym_PIPE, - ACTIONS(6763), 1, + ACTIONS(6785), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 6, + ACTIONS(4403), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133649] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [133674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, + ACTIONS(2378), 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, + [133690] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, anon_sym_LT, - anon_sym_QMARK, - [133675] = 10, - ACTIONS(2540), 1, + STATE(1799), 1, + sym_template_string, + STATE(2470), 1, + sym_arguments, + STATE(3024), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133722] = 10, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6691), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(1678), 1, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(761), 1, sym_class_body, - STATE(3629), 1, + STATE(3504), 1, sym_type_parameters, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5161), 1, + STATE(5182), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133707] = 4, - ACTIONS(6857), 1, - anon_sym_COLON, + [133754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4285), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6709), 5, + ACTIONS(4462), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133727] = 3, - ACTIONS(3316), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3318), 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, - [133745] = 2, + [133770] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 9, + ACTIONS(4466), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247065,26 +247137,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133761] = 3, - ACTIONS(6759), 1, - anon_sym_AMP, + [133786] = 4, + ACTIONS(6833), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4146), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6729), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [133806] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 8, + ACTIONS(4470), 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, - [133779] = 2, + [133822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 9, + ACTIONS(2370), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247094,30 +247181,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133795] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [133838] = 9, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(4450), 1, + sym_type_arguments, + STATE(5221), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, + STATE(2173), 2, + sym_template_string, + sym_arguments, + [133868] = 7, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - anon_sym_LT, + STATE(4113), 1, + sym_type_annotation, + STATE(4725), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6943), 2, + anon_sym_BANG, anon_sym_QMARK, - [133821] = 2, + ACTIONS(6941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133894] = 10, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(3572), 1, + sym_type_parameters, + STATE(3877), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5296), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6937), 9, + [133926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6945), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -247127,31 +247257,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [133837] = 8, - ACTIONS(6410), 1, + [133942] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4183), 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, + [133958] = 5, + ACTIONS(6781), 1, + anon_sym_AMP, + ACTIONS(6783), 1, + anon_sym_PIPE, + ACTIONS(6785), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4187), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [133980] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6939), 1, + ACTIONS(6947), 1, anon_sym_BANG, - ACTIONS(6941), 1, + ACTIONS(6949), 1, anon_sym_QMARK, - STATE(3944), 1, + STATE(4102), 1, sym_type_annotation, - STATE(4597), 1, + STATE(4711), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(6434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133865] = 2, + [134008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2366), 9, + ACTIONS(1803), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247161,289 +247322,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133881] = 8, - ACTIONS(6410), 1, + [134024] = 7, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6951), 1, + anon_sym_DOT, + STATE(1225), 1, + sym_arguments, + STATE(5122), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3518), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [134050] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6943), 1, + ACTIONS(6953), 1, anon_sym_BANG, - ACTIONS(6945), 1, + ACTIONS(6955), 1, anon_sym_QMARK, - STATE(4296), 1, + STATE(4164), 1, sym_type_annotation, - STATE(5007), 1, + STATE(4778), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133909] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5123), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, - STATE(4818), 1, - aux_sym_object_repeat1, + [134078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133935] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6947), 1, - anon_sym_BANG, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(3951), 1, - sym_type_annotation, - STATE(4613), 1, - sym__initializer, + ACTIONS(1809), 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, + [134094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(3356), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133963] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6951), 1, - anon_sym_BANG, - ACTIONS(6953), 1, - anon_sym_QMARK, - STATE(3957), 1, - sym_type_annotation, - STATE(4626), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 3, + ACTIONS(3344), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133991] = 8, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6955), 1, - anon_sym_BANG, - ACTIONS(6957), 1, - anon_sym_QMARK, - STATE(4314), 1, - sym_type_annotation, - STATE(5049), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(3280), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [134019] = 8, - ACTIONS(6410), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134142] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6959), 1, + ACTIONS(6957), 1, anon_sym_BANG, - ACTIONS(6961), 1, + ACTIONS(6959), 1, anon_sym_QMARK, - STATE(4325), 1, + STATE(3900), 1, sym_type_annotation, - STATE(5069), 1, + STATE(4932), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134047] = 8, - ACTIONS(6410), 1, + [134170] = 10, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6961), 1, + anon_sym_DOT, + STATE(1799), 1, + sym_template_string, + STATE(2272), 1, + sym_arguments, + STATE(4408), 1, + sym_type_arguments, + STATE(5421), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134202] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, ACTIONS(6963), 1, anon_sym_BANG, ACTIONS(6965), 1, anon_sym_QMARK, - STATE(4339), 1, + STATE(4212), 1, sym_type_annotation, - STATE(5095), 1, + STATE(4859), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134075] = 8, - ACTIONS(6410), 1, + [134230] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, ACTIONS(6967), 1, anon_sym_BANG, ACTIONS(6969), 1, anon_sym_QMARK, - STATE(3875), 1, + STATE(4226), 1, sym_type_annotation, - STATE(4729), 1, + STATE(4890), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134103] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3310), 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, - [134119] = 8, - ACTIONS(6410), 1, + [134258] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, ACTIONS(6971), 1, anon_sym_BANG, ACTIONS(6973), 1, anon_sym_QMARK, - STATE(3927), 1, + STATE(4230), 1, sym_type_annotation, - STATE(4482), 1, + STATE(4894), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134147] = 8, - ACTIONS(6410), 1, + [134286] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, ACTIONS(6975), 1, anon_sym_BANG, ACTIONS(6977), 1, anon_sym_QMARK, - STATE(3933), 1, + STATE(4260), 1, sym_type_annotation, - STATE(4531), 1, + STATE(4939), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134175] = 8, - ACTIONS(6410), 1, + [134314] = 8, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, ACTIONS(6979), 1, anon_sym_BANG, ACTIONS(6981), 1, anon_sym_QMARK, - STATE(3937), 1, + STATE(4296), 1, sym_type_annotation, - STATE(4547), 1, + STATE(4971), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 3, + ACTIONS(6456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134203] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2370), 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, - [134219] = 5, - ACTIONS(6312), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_LT, - STATE(2926), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3533), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134241] = 2, + [134342] = 8, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6983), 1, + anon_sym_BANG, + ACTIONS(6985), 1, + anon_sym_QMARK, + STATE(4106), 1, + sym_type_annotation, + STATE(4718), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4487), 9, + ACTIONS(6434), 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, - [134257] = 2, + [134370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 9, + ACTIONS(4407), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247453,675 +247593,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134273] = 7, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6727), 1, - anon_sym_BANG, - STATE(4001), 1, - sym_type_annotation, - STATE(4790), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134298] = 7, - ACTIONS(6983), 1, - sym_escape_sequence, - ACTIONS(6985), 1, - anon_sym_BQUOTE, - ACTIONS(6987), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6989), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3748), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4107), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134323] = 5, - ACTIONS(6991), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, - anon_sym_DOT, - STATE(4256), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1699), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134344] = 7, - ACTIONS(6983), 1, - sym_escape_sequence, + [134386] = 9, + ACTIONS(132), 1, + anon_sym_import, ACTIONS(6987), 1, - anon_sym_DOLLAR_LBRACE, + sym_identifier, ACTIONS(6989), 1, - sym__template_chars, - ACTIONS(6995), 1, - anon_sym_BQUOTE, + sym_this, + STATE(1483), 1, + sym__type_query_member_expression, + STATE(1484), 1, + sym__type_query_subscript_expression, + STATE(1572), 1, + sym__type_query_call_expression, + STATE(1573), 1, + sym__type_query_instantiation_expression, + STATE(4377), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3748), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4107), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134369] = 6, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6997), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, - anon_sym_QMARK_COLON, + [134415] = 4, + ACTIONS(6645), 1, + anon_sym_LT, + STATE(2947), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4014), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134392] = 5, + ACTIONS(4077), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134434] = 7, ACTIONS(6991), 1, - anon_sym_LBRACE, - ACTIONS(7003), 1, - anon_sym_DOT, - STATE(4256), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1699), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134413] = 6, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6997), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4015), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134436] = 7, - ACTIONS(6983), 1, sym_escape_sequence, - ACTIONS(6987), 1, + ACTIONS(6993), 1, + anon_sym_BQUOTE, + ACTIONS(6995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6989), 1, + ACTIONS(6997), 1, sym__template_chars, - ACTIONS(7005), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3748), 2, + STATE(3798), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4030), 2, + STATE(4112), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134461] = 9, + [134459] = 9, ACTIONS(132), 1, anon_sym_import, - ACTIONS(7007), 1, + ACTIONS(6999), 1, sym_identifier, - ACTIONS(7009), 1, + ACTIONS(7001), 1, sym_this, - STATE(2908), 1, + STATE(1783), 1, sym__type_query_member_expression, - STATE(2999), 1, + STATE(1784), 1, sym__type_query_subscript_expression, - STATE(3238), 1, + STATE(2024), 1, sym__type_query_call_expression, - STATE(3391), 1, + STATE(2026), 1, sym__type_query_instantiation_expression, - STATE(4441), 1, + STATE(4400), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134490] = 7, - ACTIONS(6983), 1, - sym_escape_sequence, - ACTIONS(6987), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6989), 1, - sym__template_chars, - ACTIONS(7011), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3748), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4107), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134515] = 6, - ACTIONS(6418), 1, + [134488] = 6, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6997), 1, + ACTIONS(7003), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, + ACTIONS(7005), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, + ACTIONS(7007), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4273), 4, + STATE(3999), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134538] = 3, - ACTIONS(6673), 1, - anon_sym_is, + [134511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 7, - anon_sym_COMMA, + ACTIONS(3176), 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, - [134555] = 7, - ACTIONS(3392), 1, + [134526] = 7, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3394), 1, + ACTIONS(3388), 1, anon_sym_LBRACE, - ACTIONS(3396), 1, + ACTIONS(3390), 1, anon_sym_LBRACK, - ACTIONS(7013), 1, + ACTIONS(7009), 1, anon_sym_enum, - STATE(4412), 1, + STATE(4481), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3645), 3, + STATE(3543), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [134580] = 2, + [134551] = 3, + ACTIONS(6671), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 8, - anon_sym_as, + ACTIONS(4101), 7, + anon_sym_COMMA, 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, - [134595] = 7, - ACTIONS(6983), 1, - sym_escape_sequence, - ACTIONS(6987), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6989), 1, - sym__template_chars, - ACTIONS(7015), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3748), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4107), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134620] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7017), 1, - sym_identifier, - ACTIONS(7019), 1, - sym_this, - STATE(2844), 1, - sym__type_query_member_expression, - STATE(2845), 1, - sym__type_query_subscript_expression, - STATE(2900), 1, - sym__type_query_call_expression, - STATE(2911), 1, - sym__type_query_instantiation_expression, - STATE(4409), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134649] = 3, - ACTIONS(7021), 1, - anon_sym_is, + [134568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 7, - anon_sym_COMMA, + ACTIONS(3180), 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, - [134666] = 5, - ACTIONS(6759), 1, - anon_sym_AMP, - ACTIONS(6761), 1, - anon_sym_PIPE, - ACTIONS(6763), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6705), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [134687] = 7, - ACTIONS(6983), 1, - sym_escape_sequence, - ACTIONS(6987), 1, + [134583] = 7, + ACTIONS(6995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6989), 1, + ACTIONS(6997), 1, sym__template_chars, - ACTIONS(7023), 1, + ACTIONS(7011), 1, + sym_escape_sequence, + ACTIONS(7013), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3748), 2, + STATE(3846), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4107), 2, + STATE(4112), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134712] = 6, - ACTIONS(6418), 1, + [134608] = 6, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6997), 1, + ACTIONS(7003), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, + ACTIONS(7005), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, + ACTIONS(7007), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4153), 4, + STATE(4101), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134735] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7025), 1, - sym_identifier, - ACTIONS(7027), 1, - sym_this, - STATE(2885), 1, - sym__type_query_member_expression, - STATE(2893), 1, - sym__type_query_subscript_expression, - STATE(3059), 1, - sym__type_query_call_expression, - STATE(3253), 1, - sym__type_query_instantiation_expression, - STATE(4348), 1, - sym_import, + [134631] = 6, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(7003), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7005), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7007), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134764] = 7, - ACTIONS(6987), 1, + STATE(4103), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134654] = 7, + ACTIONS(6991), 1, + sym_escape_sequence, + ACTIONS(6995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6989), 1, + ACTIONS(6997), 1, sym__template_chars, - ACTIONS(7029), 1, - sym_escape_sequence, - ACTIONS(7031), 1, + ACTIONS(7015), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3806), 2, + STATE(3798), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4107), 2, + STATE(4112), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134789] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE, - ACTIONS(6657), 1, - anon_sym_extends, + [134679] = 5, + ACTIONS(7017), 1, + anon_sym_LBRACE, + ACTIONS(7019), 1, + anon_sym_DOT, + STATE(4211), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7033), 5, + ACTIONS(1715), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134810] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE, - ACTIONS(6657), 1, - anon_sym_extends, + [134700] = 5, + ACTIONS(7017), 1, + anon_sym_LBRACE, + ACTIONS(7021), 1, + anon_sym_DOT, + STATE(4211), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7035), 5, + ACTIONS(1715), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134831] = 6, - ACTIONS(6418), 1, - anon_sym_COLON, - ACTIONS(6997), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4282), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134854] = 7, - ACTIONS(3392), 1, + [134721] = 9, + ACTIONS(132), 1, + anon_sym_import, + ACTIONS(7023), 1, sym_identifier, - ACTIONS(3394), 1, - anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - ACTIONS(7037), 1, - anon_sym_enum, - STATE(4381), 1, - sym_variable_declarator, + ACTIONS(7025), 1, + sym_this, + STATE(2845), 1, + sym__type_query_subscript_expression, + STATE(2846), 1, + sym__type_query_member_expression, + STATE(2892), 1, + sym__type_query_call_expression, + STATE(2961), 1, + sym__type_query_instantiation_expression, + STATE(4374), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3645), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134879] = 6, - ACTIONS(6418), 1, + [134750] = 6, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6997), 1, + ACTIONS(7003), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, + ACTIONS(7005), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, + ACTIONS(7007), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4279), 4, + STATE(4067), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134902] = 4, - ACTIONS(6635), 1, - anon_sym_LT, - STATE(2969), 1, - sym_type_arguments, + [134773] = 3, + ACTIONS(6671), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 6, - anon_sym_as, + ACTIONS(4087), 7, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [134921] = 2, + [134790] = 9, + ACTIONS(132), 1, + anon_sym_import, + ACTIONS(7027), 1, + sym_identifier, + ACTIONS(7029), 1, + sym_this, + STATE(2896), 1, + sym__type_query_subscript_expression, + STATE(2902), 1, + sym__type_query_member_expression, + STATE(3076), 1, + sym__type_query_call_expression, + STATE(3239), 1, + sym__type_query_instantiation_expression, + STATE(4418), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 8, - anon_sym_as, + [134819] = 3, + ACTIONS(7031), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4077), 7, + anon_sym_COMMA, 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, - [134936] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7039), 1, + [134836] = 7, + ACTIONS(6991), 1, + sym_escape_sequence, + ACTIONS(6995), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6997), 1, + sym__template_chars, + ACTIONS(7033), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3798), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4018), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134861] = 7, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(7041), 1, - sym_this, - STATE(1480), 1, - sym__type_query_member_expression, - STATE(1483), 1, - sym__type_query_subscript_expression, - STATE(1552), 1, - sym__type_query_call_expression, - STATE(1556), 1, - sym__type_query_instantiation_expression, - STATE(4350), 1, - sym_import, + ACTIONS(3388), 1, + anon_sym_LBRACE, + ACTIONS(3390), 1, + anon_sym_LBRACK, + ACTIONS(7035), 1, + anon_sym_enum, + STATE(4440), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3543), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134886] = 7, + ACTIONS(6995), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6997), 1, + sym__template_chars, + ACTIONS(7011), 1, + sym_escape_sequence, + ACTIONS(7037), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3846), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4112), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134911] = 7, + ACTIONS(6991), 1, + sym_escape_sequence, + ACTIONS(6995), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6997), 1, + sym__template_chars, + ACTIONS(7039), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134965] = 7, + STATE(3798), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4112), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134936] = 7, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(6713), 1, + ACTIONS(6739), 1, sym_identifier, - STATE(5358), 1, + STATE(5165), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 2, + ACTIONS(6741), 2, anon_sym_type, anon_sym_typeof, - STATE(4708), 2, + STATE(4670), 2, sym__module_export_name, sym_string, - [134990] = 6, - ACTIONS(6418), 1, - anon_sym_COLON, + [134961] = 7, + ACTIONS(6991), 1, + sym_escape_sequence, + ACTIONS(6995), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(6997), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4152), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [135013] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7043), 1, - sym_identifier, - ACTIONS(7045), 1, - sym_this, - STATE(1666), 1, - sym__type_query_member_expression, - STATE(1667), 1, - sym__type_query_subscript_expression, - STATE(2140), 1, - sym__type_query_call_expression, - STATE(2144), 1, - sym__type_query_instantiation_expression, - STATE(4458), 1, - sym_import, + sym__template_chars, + ACTIONS(7041), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135042] = 6, - ACTIONS(6418), 1, + STATE(3798), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4112), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134986] = 6, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6997), 1, + ACTIONS(7003), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, + ACTIONS(7005), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, + ACTIONS(7007), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4284), 4, + STATE(4268), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [135065] = 6, - ACTIONS(6418), 1, + [135009] = 6, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(6997), 1, + ACTIONS(7003), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(6999), 1, + ACTIONS(7005), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7001), 1, + ACTIONS(7007), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4248), 4, + STATE(4269), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [135088] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7019), 1, - sym_this, - ACTIONS(7047), 1, - sym_identifier, - STATE(2900), 1, - sym__type_query_call_expression, - STATE(2911), 1, - sym__type_query_instantiation_expression, - STATE(3156), 1, - sym__type_query_subscript_expression, - STATE(3183), 1, - sym__type_query_member_expression, - STATE(4346), 1, - sym_import, + [135032] = 5, + ACTIONS(6781), 1, + anon_sym_AMP, + ACTIONS(6783), 1, + anon_sym_PIPE, + ACTIONS(6785), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135117] = 7, - ACTIONS(6987), 1, + ACTIONS(6703), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [135053] = 7, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6709), 1, + anon_sym_BANG, + STATE(3901), 1, + sym_type_annotation, + STATE(4961), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135078] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, + anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7043), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135099] = 7, + ACTIONS(6991), 1, + sym_escape_sequence, + ACTIONS(6995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6989), 1, + ACTIONS(6997), 1, sym__template_chars, - ACTIONS(7029), 1, - sym_escape_sequence, - ACTIONS(7049), 1, + ACTIONS(7045), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3806), 2, + STATE(3798), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4107), 2, + STATE(4112), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [135142] = 5, - ACTIONS(6653), 1, + [135124] = 5, + ACTIONS(6661), 1, anon_sym_AMP, - ACTIONS(6655), 1, + ACTIONS(6663), 1, anon_sym_PIPE, - ACTIONS(6657), 1, + ACTIONS(6665), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7051), 5, + ACTIONS(7047), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135163] = 3, - ACTIONS(6673), 1, - anon_sym_is, + [135145] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6663), 1, + anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 7, + ACTIONS(7049), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [135180] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135166] = 6, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(7003), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7005), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7007), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3996), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135189] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -248134,1856 +248200,2032 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [135195] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + [135204] = 6, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4178), 1, + ACTIONS(7003), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7005), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7007), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4187), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(4749), 1, - sym__initializer, + [135227] = 9, + ACTIONS(132), 1, + anon_sym_import, + ACTIONS(7025), 1, + sym_this, + ACTIONS(7051), 1, + sym_identifier, + STATE(2892), 1, + sym__type_query_call_expression, + STATE(2961), 1, + sym__type_query_instantiation_expression, + STATE(3158), 1, + sym__type_query_member_expression, + STATE(3160), 1, + sym__type_query_subscript_expression, + STATE(4454), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135217] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + [135256] = 6, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3869), 1, + ACTIONS(7003), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7005), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7007), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4270), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(5079), 1, - sym__initializer, + [135279] = 9, + ACTIONS(132), 1, + anon_sym_import, + ACTIONS(7053), 1, + sym_identifier, + ACTIONS(7055), 1, + sym_this, + STATE(2910), 1, + sym__type_query_subscript_expression, + STATE(2951), 1, + sym__type_query_member_expression, + STATE(3191), 1, + sym__type_query_call_expression, + STATE(3358), 1, + sym__type_query_instantiation_expression, + STATE(4421), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135239] = 6, - ACTIONS(6410), 1, + [135308] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4331), 1, + STATE(4056), 1, sym_type_annotation, - STATE(5080), 1, + STATE(4580), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135261] = 8, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2204), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5347), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135287] = 6, - ACTIONS(6410), 1, + [135330] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4024), 1, + STATE(4317), 1, sym_type_annotation, - STATE(4915), 1, + STATE(5026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6629), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135309] = 8, - ACTIONS(6747), 1, + [135352] = 8, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6751), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(4021), 1, + STATE(3973), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5367), 1, + STATE(5129), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135335] = 8, - ACTIONS(6691), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, + [135378] = 8, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(1704), 1, + ACTIONS(6863), 1, + anon_sym_LBRACE, + STATE(208), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5375), 1, + STATE(5200), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135361] = 6, - ACTIONS(6410), 1, + [135404] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4332), 1, + STATE(4004), 1, sym_type_annotation, - STATE(5082), 1, + STATE(4838), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(7057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135383] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4281), 1, - sym_type_annotation, - STATE(4979), 1, - sym__initializer, + [135426] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6624), 3, - sym__automatic_semicolon, + ACTIONS(4385), 4, anon_sym_COMMA, - anon_sym_SEMI, - [135405] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4166), 1, - sym_type_annotation, - STATE(4735), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135446] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, - sym__automatic_semicolon, + ACTIONS(4403), 4, anon_sym_COMMA, - anon_sym_SEMI, - [135427] = 4, - ACTIONS(4147), 1, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135466] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5811), 2, + ACTIONS(4297), 4, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - [135445] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4031), 1, - sym_type_annotation, - STATE(4989), 1, - sym__initializer, + [135486] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, - sym__automatic_semicolon, + ACTIONS(4317), 4, anon_sym_COMMA, - anon_sym_SEMI, - [135467] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4335), 1, - sym_type_annotation, - STATE(5083), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135506] = 8, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5177), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135489] = 6, - ACTIONS(6410), 1, + [135532] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(6673), 1, + sym_identifier, + ACTIONS(6683), 1, + anon_sym_type, + STATE(5415), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5745), 2, + sym__module_export_name, + sym_string, + [135556] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5412), 7, anon_sym_EQ, - ACTIONS(6418), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COLON, - STATE(4168), 1, - sym_type_annotation, - STATE(4736), 1, - sym__initializer, + anon_sym_LT, + anon_sym_QMARK, + [135570] = 4, + ACTIONS(7017), 1, + anon_sym_LBRACE, + STATE(4211), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(1715), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135511] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [135588] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4215), 1, + STATE(4240), 1, sym_type_annotation, - STATE(4831), 1, + STATE(4918), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6647), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135533] = 8, - ACTIONS(6681), 1, + [135610] = 8, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2227), 1, + STATE(2264), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5209), 1, + STATE(5258), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135559] = 2, + [135636] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5015), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4187), 4, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [135573] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4037), 1, - sym_type_annotation, - STATE(5032), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135656] = 6, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(2174), 1, + sym_arguments, + STATE(5238), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7065), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [135678] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(7067), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135595] = 8, - ACTIONS(6747), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [135692] = 8, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(4046), 1, + STATE(2571), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5409), 1, + STATE(5375), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135621] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4038), 1, - sym_type_annotation, - STATE(5052), 1, - sym__initializer, + [135718] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5124), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(7069), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135643] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + anon_sym_PIPE_RBRACE, + [135736] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5126), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7071), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135754] = 4, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4175), 1, + STATE(4255), 1, sym_type_annotation, - STATE(4742), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(7073), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135665] = 6, - ACTIONS(3394), 1, - anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - ACTIONS(7053), 1, + anon_sym_PIPE_RBRACE, + [135772] = 8, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(7075), 1, sym_identifier, - STATE(4427), 1, - sym_variable_declarator, + ACTIONS(7077), 1, + anon_sym_DOT, + STATE(3469), 1, + sym_nested_identifier, + STATE(3507), 1, + sym_string, + STATE(4121), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3645), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [135687] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4049), 1, - sym_type_annotation, - STATE(4486), 1, - sym__initializer, + [135798] = 8, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1613), 1, + anon_sym_LBRACE, + ACTIONS(7079), 1, + anon_sym_LT, + ACTIONS(7081), 1, + anon_sym_extends, + STATE(3935), 1, + sym_type_parameters, + STATE(4245), 1, + sym_object_type, + STATE(4541), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135709] = 6, - ACTIONS(6410), 1, + [135824] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4176), 1, + STATE(4338), 1, sym_type_annotation, - STATE(4745), 1, + STATE(5053), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135731] = 6, - ACTIONS(3394), 1, + [135846] = 4, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - ACTIONS(7053), 1, - sym_identifier, - STATE(4412), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3645), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [135753] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4050), 1, - sym_type_annotation, - STATE(4487), 1, - sym__initializer, + STATE(5219), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(7069), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135775] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [135864] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4052), 1, + STATE(3913), 1, sym_type_annotation, - STATE(4489), 1, + STATE(4738), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135797] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4053), 1, - sym_type_annotation, - STATE(4492), 1, - sym__initializer, + [135886] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5223), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(7071), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135819] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + anon_sym_PIPE_RBRACE, + [135904] = 4, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4054), 1, + STATE(4151), 1, sym_type_annotation, - STATE(4497), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135841] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [135922] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7085), 1, + sym_identifier, + ACTIONS(7087), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5167), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135948] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4055), 1, + STATE(4033), 1, sym_type_annotation, - STATE(4500), 1, + STATE(4509), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135863] = 6, - ACTIONS(6410), 1, + [135970] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4337), 1, + STATE(3914), 1, sym_type_annotation, - STATE(5089), 1, + STATE(4751), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6641), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135885] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5411), 1, - sym_statement_block, + [135992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7055), 5, + ACTIONS(6773), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135903] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5302), 1, - sym_statement_block, + anon_sym_COLON, + [136006] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7057), 5, + ACTIONS(7089), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [135921] = 4, - ACTIONS(2476), 1, + [136020] = 6, + ACTIONS(3388), 1, anon_sym_LBRACE, - STATE(5208), 1, - sym_statement_block, + ACTIONS(3390), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + sym_identifier, + STATE(4481), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7055), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135939] = 6, - ACTIONS(6410), 1, + STATE(3302), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136042] = 6, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(1655), 1, + sym_arguments, + STATE(5273), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7065), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [136064] = 6, + ACTIONS(6584), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4066), 1, - sym_type_annotation, - STATE(4525), 1, - sym__initializer, + STATE(4436), 1, + sym_constraint, + STATE(5349), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, - sym__automatic_semicolon, + ACTIONS(6589), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7093), 2, anon_sym_COMMA, - anon_sym_SEMI, - [135961] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5224), 1, - sym_statement_block, + anon_sym_GT, + [136086] = 4, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3974), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7057), 5, + ACTIONS(7095), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135979] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - sym_identifier, - ACTIONS(7061), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5235), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136005] = 6, - ACTIONS(6410), 1, + [136104] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4067), 1, + STATE(3921), 1, sym_type_annotation, - STATE(4528), 1, + STATE(4967), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136027] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3882), 1, - sym_type_annotation, - STATE(4686), 1, - sym__initializer, + [136126] = 8, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6863), 1, + anon_sym_LBRACE, + STATE(227), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5118), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + [136152] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5017), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [136049] = 8, - ACTIONS(6691), 1, + anon_sym_COLON, + [136166] = 8, + ACTIONS(6699), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(1661), 1, + STATE(1769), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5242), 1, + STATE(5321), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136075] = 6, - ACTIONS(6410), 1, + [136192] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(4041), 1, sym_type_annotation, - STATE(4541), 1, + STATE(4531), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136097] = 6, - ACTIONS(6410), 1, + [136214] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3883), 1, + STATE(4109), 1, sym_type_annotation, - STATE(4758), 1, + STATE(4721), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136119] = 6, - ACTIONS(6410), 1, + [136236] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4074), 1, + STATE(4006), 1, sym_type_annotation, - STATE(4542), 1, + STATE(4872), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136141] = 6, - ACTIONS(6410), 1, + [136258] = 4, + ACTIONS(4075), 1, + anon_sym_extends, + ACTIONS(7097), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4077), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + [136276] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4078), 1, + STATE(4008), 1, sym_type_annotation, - STATE(4548), 1, + STATE(4888), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136163] = 6, - ACTIONS(6410), 1, + [136298] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4180), 1, + STATE(4015), 1, sym_type_annotation, - STATE(4750), 1, + STATE(4950), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136185] = 6, - ACTIONS(6410), 1, + [136320] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4185), 1, + STATE(3901), 1, sym_type_annotation, - STATE(4763), 1, + STATE(4726), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136207] = 6, - ACTIONS(6410), 1, + [136342] = 6, + ACTIONS(3388), 1, + anon_sym_LBRACE, + ACTIONS(3390), 1, + anon_sym_LBRACK, + ACTIONS(7099), 1, + sym_identifier, + STATE(4428), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3543), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136364] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4235), 1, + STATE(3918), 1, sym_type_annotation, - STATE(4874), 1, + STATE(4926), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7063), 3, + ACTIONS(6641), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136229] = 4, - ACTIONS(6418), 1, + [136386] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3929), 1, + STATE(4273), 1, sym_type_annotation, + STATE(4955), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7065), 5, + ACTIONS(6637), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136247] = 4, - ACTIONS(6418), 1, + [136408] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4252), 1, + STATE(4042), 1, sym_type_annotation, + STATE(4532), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7067), 5, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136265] = 6, - ACTIONS(6410), 1, + [136430] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3903), 1, + STATE(4017), 1, sym_type_annotation, - STATE(4683), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136287] = 6, - ACTIONS(6410), 1, + [136452] = 8, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6843), 1, + anon_sym_LBRACE, + STATE(901), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5123), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136478] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3905), 1, + STATE(4284), 1, sym_type_annotation, - STATE(4699), 1, + STATE(4976), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136309] = 6, - ACTIONS(6410), 1, + [136500] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3907), 1, + STATE(4182), 1, sym_type_annotation, - STATE(4752), 1, + STATE(4802), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6623), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136331] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7069), 1, - sym_identifier, - ACTIONS(7071), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5149), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136357] = 4, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4112), 1, - sym_type_annotation, + [136522] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5307), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7073), 5, + ACTIONS(7101), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136375] = 8, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6775), 1, + [136540] = 4, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(834), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5255), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, + STATE(5310), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136401] = 8, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2325), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5313), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, + ACTIONS(7103), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136427] = 6, - ACTIONS(6410), 1, + ACTIONS(1813), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [136572] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3908), 1, + STATE(4290), 1, sym_type_annotation, - STATE(4772), 1, + STATE(4986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136449] = 8, - ACTIONS(6635), 1, - anon_sym_LT, - ACTIONS(7075), 1, - anon_sym_LBRACE, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7079), 1, - anon_sym_DOT, - ACTIONS(7081), 1, - anon_sym_LBRACE_PIPE, - STATE(4363), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5057), 1, - sym_type_arguments, + [136594] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3948), 1, + sym_type_annotation, + STATE(4617), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136475] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5294), 1, - sym_statement_block, + ACTIONS(6653), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(1839), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [136493] = 4, + [136630] = 4, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5305), 1, + STATE(5237), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 5, + ACTIONS(7101), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136511] = 4, - ACTIONS(2476), 1, + [136648] = 8, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(5286), 1, - sym_statement_block, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(2342), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5319), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + [136674] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5028), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136529] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5371), 1, - sym_statement_block, + anon_sym_COLON, + [136688] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4302), 1, + sym_type_annotation, + STATE(4992), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 5, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136547] = 6, - ACTIONS(6410), 1, + [136710] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4237), 1, + STATE(4309), 1, sym_type_annotation, - STATE(4877), 1, + STATE(5004), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7063), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136569] = 6, - ACTIONS(6410), 1, + [136732] = 6, + ACTIONS(3388), 1, + anon_sym_LBRACE, + ACTIONS(3390), 1, + anon_sym_LBRACK, + ACTIONS(7099), 1, + sym_identifier, + STATE(4440), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3543), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136754] = 8, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(2183), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5190), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136780] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3917), 1, + STATE(4315), 1, sym_type_annotation, - STATE(4926), 1, + STATE(5021), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136591] = 6, - ACTIONS(6410), 1, + [136802] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4295), 1, + STATE(4316), 1, sym_type_annotation, - STATE(5004), 1, + STATE(5023), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136613] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5186), 1, - sym_statement_block, + [136824] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4022), 1, + sym_type_annotation, + STATE(4999), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7087), 5, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136631] = 6, - ACTIONS(6410), 1, + [136846] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7107), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5329), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136872] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4080), 1, + STATE(4024), 1, sym_type_annotation, - STATE(4550), 1, + STATE(5009), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136653] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5189), 1, - sym_statement_block, + [136894] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4320), 1, + sym_type_annotation, + STATE(5031), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7089), 5, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136671] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5121), 1, - sym_statement_block, + [136916] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4321), 1, + sym_type_annotation, + STATE(5033), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7087), 5, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136689] = 6, - ACTIONS(6410), 1, + [136938] = 8, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(3930), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5426), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136964] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4186), 1, + STATE(4324), 1, sym_type_annotation, - STATE(4764), 1, + STATE(5038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136711] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5331), 1, - sym_statement_block, + [136986] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4325), 1, + sym_type_annotation, + STATE(5039), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7091), 5, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136729] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5340), 1, - sym_statement_block, + [137008] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4326), 1, + sym_type_annotation, + STATE(5041), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7093), 5, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136747] = 6, - ACTIONS(6410), 1, + [137030] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4187), 1, + STATE(4336), 1, sym_type_annotation, - STATE(4770), 1, + STATE(5054), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136769] = 4, + [137052] = 4, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5190), 1, + STATE(5240), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7095), 5, + ACTIONS(7103), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136787] = 8, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(7097), 1, - sym_identifier, - ACTIONS(7099), 1, - anon_sym_DOT, - STATE(745), 1, - sym_nested_identifier, - STATE(759), 1, - sym_string, - STATE(832), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136813] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7101), 1, - sym_identifier, - ACTIONS(7103), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5419), 1, - sym__call_signature, + [137070] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4062), 1, + sym_type_annotation, + STATE(4625), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136839] = 6, - ACTIONS(6410), 1, + ACTIONS(7109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137092] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3931), 1, + STATE(3928), 1, sym_type_annotation, - STATE(4511), 1, + STATE(5037), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136861] = 6, - ACTIONS(6410), 1, + [137114] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4188), 1, + STATE(4045), 1, sym_type_annotation, - STATE(4771), 1, + STATE(4545), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136883] = 8, - ACTIONS(6747), 1, + [137136] = 8, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6751), 1, + STATE(1683), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5342), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137162] = 8, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(778), 1, + STATE(3893), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5376), 1, + STATE(5348), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136909] = 6, - ACTIONS(6410), 1, + [137188] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4082), 1, + STATE(4078), 1, sym_type_annotation, - STATE(4556), 1, + STATE(4667), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6625), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136931] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7105), 1, - sym_identifier, - ACTIONS(7107), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5247), 1, - sym__call_signature, + [137210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136957] = 6, - ACTIONS(6410), 1, + ACTIONS(5026), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6418), 1, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - STATE(4219), 1, - sym_type_annotation, - STATE(4845), 1, - sym__initializer, + [137224] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5186), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(7111), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136979] = 6, - ACTIONS(3394), 1, - anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - ACTIONS(7053), 1, - sym_identifier, - STATE(4381), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3645), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137001] = 6, - ACTIONS(6558), 1, + anon_sym_PIPE_RBRACE, + [137242] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4379), 1, - sym_constraint, - STATE(5412), 1, - sym_default_type, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4345), 1, + sym_type_annotation, + STATE(5073), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6563), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7109), 2, + ACTIONS(6639), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [137023] = 2, + anon_sym_SEMI, + [137264] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4346), 1, + sym_type_annotation, + STATE(5074), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 7, + ACTIONS(6639), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [137286] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [137037] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7115), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5149), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, + STATE(4063), 1, + sym_type_annotation, + STATE(4628), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137063] = 8, - ACTIONS(6691), 1, + ACTIONS(7109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137308] = 8, + ACTIONS(6699), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2538), 1, + STATE(2556), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5126), 1, + STATE(5163), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137089] = 6, - ACTIONS(6410), 1, + [137334] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5196), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7113), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137352] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4241), 1, + STATE(4027), 1, sym_type_annotation, - STATE(4893), 1, + STATE(5012), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7063), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137111] = 8, - ACTIONS(6681), 1, + [137374] = 8, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2389), 1, + STATE(2257), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5404), 1, + STATE(5155), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137137] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4083), 1, - sym_type_annotation, - STATE(4558), 1, - sym__initializer, + [137400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6945), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [137159] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, anon_sym_COLON, - STATE(4242), 1, - sym_type_annotation, - STATE(4895), 1, - sym__initializer, + [137414] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5112), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7063), 3, + ACTIONS(7113), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137181] = 2, + anon_sym_PIPE_RBRACE, + [137432] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6887), 7, + ACTIONS(7115), 7, sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, - [137195] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [137446] = 3, + ACTIONS(6717), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4101), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137462] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4086), 1, + STATE(4350), 1, sym_type_annotation, - STATE(4569), 1, + STATE(5082), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137217] = 2, + [137484] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4351), 1, + sym_type_annotation, + STATE(5084), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6895), 7, + ACTIONS(6639), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [137231] = 6, - ACTIONS(6558), 1, + [137506] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4385), 1, - sym_constraint, - STATE(5171), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6563), 2, + ACTIONS(6428), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(7117), 2, - anon_sym_COMMA, - anon_sym_GT, - [137253] = 8, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6789), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5268), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, + STATE(4352), 1, + sym_type_annotation, + STATE(5087), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137279] = 6, - ACTIONS(6410), 1, + ACTIONS(6639), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137528] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4087), 1, + STATE(3874), 1, sym_type_annotation, - STATE(4572), 1, + STATE(5091), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137301] = 6, - ACTIONS(6410), 1, + [137550] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4090), 1, + STATE(3950), 1, sym_type_annotation, - STATE(4579), 1, + STATE(4636), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137323] = 6, - ACTIONS(6410), 1, + [137572] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4201), 1, + STATE(3915), 1, sym_type_annotation, - STATE(4792), 1, + STATE(4656), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137345] = 2, + [137594] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3923), 1, + sym_type_annotation, + STATE(4994), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6893), 7, + ACTIONS(6653), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [137359] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4091), 1, - sym_type_annotation, - STATE(4585), 1, - sym__initializer, + [137616] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5113), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(7111), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137381] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [137634] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4092), 1, + STATE(4028), 1, sym_type_annotation, - STATE(4591), 1, + STATE(5042), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137403] = 6, - ACTIONS(6410), 1, + [137656] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3987), 1, + STATE(4111), 1, sym_type_annotation, - STATE(4779), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137425] = 8, - ACTIONS(6681), 1, + [137678] = 8, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(2279), 1, + STATE(2202), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5355), 1, + STATE(5433), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137451] = 2, + [137704] = 8, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5175), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5011), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [137465] = 8, - ACTIONS(6747), 1, + [137730] = 8, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6775), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(864), 1, + STATE(3942), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5400), 1, + STATE(5105), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137491] = 2, + [137756] = 8, + ACTIONS(6699), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(1702), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5111), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6937), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [137505] = 6, - ACTIONS(6410), 1, + [137782] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4156), 1, + STATE(4203), 1, sym_type_annotation, - STATE(4712), 1, + STATE(4835), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7119), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137527] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5245), 1, - sym_statement_block, + [137804] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7117), 1, + sym_identifier, + ACTIONS(7119), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5322), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137545] = 6, - ACTIONS(6410), 1, + [137830] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4097), 1, + STATE(4134), 1, sym_type_annotation, - STATE(4602), 1, + STATE(4732), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137567] = 3, - ACTIONS(6695), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4089), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137583] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7123), 1, + [137852] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(7125), 1, - anon_sym_QMARK, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5269), 1, - sym__call_signature, + STATE(4160), 1, + sym_type_annotation, + STATE(4775), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137609] = 6, - ACTIONS(6410), 1, + ACTIONS(6639), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137874] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4100), 1, + STATE(4327), 1, sym_type_annotation, - STATE(4610), 1, + STATE(4969), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137631] = 6, - ACTIONS(6410), 1, + [137896] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4101), 1, + STATE(4331), 1, sym_type_annotation, - STATE(4612), 1, + STATE(5045), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137653] = 6, - ACTIONS(6410), 1, + [137918] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4303), 1, + STATE(3885), 1, sym_type_annotation, - STATE(5031), 1, + STATE(5066), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137675] = 4, - ACTIONS(6991), 1, - anon_sym_LBRACE, - STATE(4256), 1, - sym_statement_block, + [137940] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3887), 1, + sym_type_annotation, + STATE(4522), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 5, + ACTIONS(6639), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137693] = 6, - ACTIONS(3394), 1, - anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - ACTIONS(7053), 1, - sym_identifier, - STATE(4607), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3645), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137715] = 2, + [137962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6841), 7, + ACTIONS(6937), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -249991,1068 +250233,1017 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [137729] = 2, + [137976] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3977), 1, + sym_type_annotation, + STATE(4759), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7127), 7, + ACTIONS(6639), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [137998] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [137743] = 8, - ACTIONS(1043), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1613), 1, - anon_sym_LBRACE, - ACTIONS(7129), 1, - anon_sym_LT, - ACTIONS(7131), 1, - anon_sym_extends, - STATE(3926), 1, - sym_type_parameters, - STATE(4132), 1, - sym_object_type, - STATE(4491), 1, - sym_extends_type_clause, + STATE(4019), 1, + sym_type_annotation, + STATE(4861), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137769] = 3, - ACTIONS(6695), 1, - anon_sym_is, + ACTIONS(6639), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138020] = 8, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, + anon_sym_extends, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(2226), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5352), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 6, - anon_sym_as, + [138046] = 6, + ACTIONS(3388), 1, + anon_sym_LBRACE, + ACTIONS(3390), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137785] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7133), 1, + ACTIONS(7099), 1, sym_identifier, - ACTIONS(7135), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5419), 1, - sym__call_signature, + STATE(4472), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137811] = 6, - ACTIONS(6410), 1, + STATE(3543), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138068] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4310), 1, + STATE(3951), 1, sym_type_annotation, - STATE(5044), 1, + STATE(4652), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137833] = 3, - ACTIONS(7137), 1, - anon_sym_is, + [138090] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4061), 1, + sym_type_annotation, + STATE(4605), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137849] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7139), 1, - sym_identifier, - ACTIONS(7141), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5149), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, + ACTIONS(7109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138112] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5195), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137875] = 2, + ACTIONS(7121), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138130] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4209), 1, + sym_type_annotation, + STATE(4853), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7143), 7, + ACTIONS(6614), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [138152] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [137889] = 6, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(1672), 1, - sym_arguments, - STATE(5227), 1, - sym_type_arguments, + STATE(4210), 1, + sym_type_annotation, + STATE(4855), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7145), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [137911] = 8, - ACTIONS(6691), 1, + ACTIONS(6614), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138174] = 8, + ACTIONS(6689), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(1693), 1, + STATE(2236), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5194), 1, + STATE(5407), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137937] = 8, - ACTIONS(6747), 1, + [138200] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7123), 1, + anon_sym_COLON, + ACTIONS(7125), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(5397), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138226] = 8, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(3971), 1, + STATE(2388), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5201), 1, + STATE(5130), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137963] = 6, - ACTIONS(6410), 1, + [138252] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4108), 1, + STATE(4029), 1, sym_type_annotation, - STATE(4629), 1, + STATE(5089), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137985] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7147), 1, - sym_identifier, - ACTIONS(7149), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5419), 1, - sym__call_signature, + [138274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138011] = 6, - ACTIONS(6410), 1, + ACTIONS(6795), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6418), 1, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - STATE(4111), 1, + [138288] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(3955), 1, sym_type_annotation, - STATE(4634), 1, + STATE(4658), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138033] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4068), 1, - sym_type_annotation, - STATE(4484), 1, - sym__initializer, + [138310] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5400), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6616), 3, + ACTIONS(7127), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138055] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [138328] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4204), 1, + STATE(3959), 1, sym_type_annotation, - STATE(4805), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138077] = 5, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4317), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138097] = 3, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4363), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [138113] = 8, - ACTIONS(6691), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, + [138350] = 8, + ACTIONS(6755), 1, anon_sym_extends, - ACTIONS(6749), 1, + ACTIONS(6757), 1, anon_sym_implements, - STATE(1695), 1, + ACTIONS(6843), 1, + anon_sym_LBRACE, + STATE(852), 1, sym_class_body, - STATE(4670), 1, + STATE(5008), 1, sym_extends_clause, - STATE(5217), 1, + STATE(5410), 1, sym_class_heritage, - STATE(5738), 1, + STATE(5687), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138139] = 3, - ACTIONS(7157), 1, - anon_sym_EQ, + [138376] = 8, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(7129), 1, + anon_sym_LBRACE, + ACTIONS(7131), 1, + anon_sym_COMMA, + ACTIONS(7133), 1, + anon_sym_DOT, + ACTIONS(7135), 1, + anon_sym_LBRACE_PIPE, + STATE(4426), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5049), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138402] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5202), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3571), 6, + ACTIONS(7121), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [138155] = 6, - ACTIONS(6410), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138420] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4115), 1, + STATE(4131), 1, sym_type_annotation, - STATE(4646), 1, + STATE(5079), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138177] = 3, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4355), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [138193] = 5, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4405), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138213] = 3, - ACTIONS(7159), 1, - anon_sym_extends, + [138442] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4220), 1, + sym_type_annotation, + STATE(4875), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 6, + ACTIONS(6614), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [138229] = 6, - ACTIONS(6410), 1, + anon_sym_SEMI, + [138464] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4116), 1, + STATE(4221), 1, sym_type_annotation, - STATE(4648), 1, + STATE(4876), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138251] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5279), 1, - sym_statement_block, + [138486] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4104), 1, + sym_type_annotation, + STATE(4715), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 5, + ACTIONS(6655), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138269] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5281), 1, - sym_statement_block, + [138508] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7137), 1, + sym_identifier, + ACTIONS(7139), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5167), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138287] = 6, - ACTIONS(6410), 1, + [138534] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4312), 1, + STATE(3876), 1, sym_type_annotation, - STATE(5051), 1, + STATE(4731), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138309] = 4, - ACTIONS(2476), 1, + [138556] = 6, + ACTIONS(3388), 1, anon_sym_LBRACE, - STATE(5406), 1, - sym_statement_block, + ACTIONS(3390), 1, + anon_sym_LBRACK, + ACTIONS(7099), 1, + sym_identifier, + STATE(4481), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, - sym__automatic_semicolon, + STATE(3543), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138578] = 7, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(7141), 1, + anon_sym_EQ, + ACTIONS(7145), 1, + anon_sym_QMARK, + STATE(4406), 1, + sym_type_annotation, + STATE(5300), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7143), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138327] = 6, - ACTIONS(6410), 1, + anon_sym_RPAREN, + [138602] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4121), 1, + STATE(4222), 1, sym_type_annotation, - STATE(4655), 1, + STATE(4879), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138349] = 6, - ACTIONS(6410), 1, + [138624] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4223), 1, sym_type_annotation, - STATE(4659), 1, + STATE(4881), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138371] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5109), 1, - sym_statement_block, + [138646] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7147), 1, + sym_identifier, + ACTIONS(7149), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5140), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138389] = 6, - ACTIONS(6410), 1, + [138672] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4205), 1, + STATE(3936), 1, sym_type_annotation, - STATE(4807), 1, + STATE(4538), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138411] = 6, - ACTIONS(6410), 1, + [138694] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4123), 1, + STATE(4124), 1, sym_type_annotation, - STATE(4662), 1, + STATE(4736), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138433] = 6, - ACTIONS(6410), 1, + [138716] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4001), 1, + STATE(4060), 1, sym_type_annotation, - STATE(4801), 1, + STATE(4604), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6725), 3, + ACTIONS(7109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138455] = 5, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, + [138738] = 3, + ACTIONS(6717), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 4, - anon_sym_COMMA, + ACTIONS(4087), 6, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - [138475] = 5, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7153), 1, anon_sym_PIPE, - ACTIONS(7155), 1, anon_sym_extends, + [138754] = 3, + ACTIONS(7151), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 4, + ACTIONS(3572), 6, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [138495] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4124), 1, - sym_type_annotation, - STATE(4663), 1, - sym__initializer, + [138770] = 5, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(5749), 1, + anon_sym_RBRACE, + STATE(4944), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138517] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(3879), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(4313), 1, - sym_type_annotation, - STATE(5053), 1, - sym__initializer, + anon_sym_LT, + anon_sym_QMARK, + [138790] = 3, + ACTIONS(7059), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, + ACTIONS(4355), 6, anon_sym_COMMA, - anon_sym_SEMI, - [138539] = 8, - ACTIONS(6681), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2315), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5405), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138565] = 5, - ACTIONS(7151), 1, + [138806] = 5, + ACTIONS(7059), 1, anon_sym_AMP, - ACTIONS(7153), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7155), 1, + ACTIONS(7063), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4471), 4, + ACTIONS(4367), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [138585] = 5, - ACTIONS(7151), 1, - anon_sym_AMP, + [138826] = 3, ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 4, + ACTIONS(4375), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [138605] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7125), 1, - anon_sym_QMARK, - ACTIONS(7165), 1, - anon_sym_COLON, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5269), 1, - sym__call_signature, + [138842] = 6, + ACTIONS(3388), 1, + anon_sym_LBRACE, + ACTIONS(3390), 1, + anon_sym_LBRACK, + ACTIONS(7099), 1, + sym_identifier, + STATE(5101), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138631] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3992), 1, - sym_type_annotation, - STATE(4795), 1, - sym__initializer, + STATE(3543), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138864] = 3, + ACTIONS(7155), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138653] = 6, - ACTIONS(6410), 1, + ACTIONS(4077), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138880] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4218), 1, + STATE(4046), 1, sym_type_annotation, - STATE(4843), 1, + STATE(4547), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138675] = 8, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6789), 1, + [138902] = 4, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(207), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5220), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138701] = 5, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, + STATE(5249), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 4, + ACTIONS(7157), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138721] = 8, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(770), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5278), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138747] = 8, - ACTIONS(6681), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138920] = 4, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2338), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5410), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138773] = 2, + STATE(5256), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5713), 7, - anon_sym_EQ, + ACTIONS(7159), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [138787] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4320), 1, - sym_type_annotation, - STATE(5062), 1, - sym__initializer, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138938] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5264), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(7157), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138809] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [138956] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4321), 1, + STATE(4030), 1, sym_type_annotation, - STATE(5064), 1, + STATE(5092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138831] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4131), 1, - sym_type_annotation, - STATE(4676), 1, - sym__initializer, + [138978] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5168), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(7161), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138853] = 6, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [138996] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4133), 1, + STATE(4154), 1, sym_type_annotation, - STATE(4678), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138875] = 6, - ACTIONS(6410), 1, + [139018] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4161), 1, + STATE(4156), 1, sym_type_annotation, - STATE(4723), 1, + STATE(4769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138897] = 2, + [139040] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5173), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 7, + ACTIONS(7163), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [138911] = 2, + [139058] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4031), 1, + sym_type_annotation, + STATE(4494), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1929), 7, + ACTIONS(6635), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [138925] = 6, - ACTIONS(6410), 1, + [139080] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4136), 1, + STATE(4166), 1, sym_type_annotation, - STATE(4681), 1, + STATE(4783), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138947] = 6, - ACTIONS(6410), 1, + [139102] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4138), 1, + STATE(4171), 1, sym_type_annotation, - STATE(4682), 1, + STATE(4787), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138969] = 6, - ACTIONS(6410), 1, + [139124] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4211), 1, + STATE(4174), 1, sym_type_annotation, - STATE(4817), 1, + STATE(4792), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138991] = 4, - ACTIONS(6418), 1, + [139146] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4231), 1, + STATE(4176), 1, sym_type_annotation, + STATE(4795), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7167), 5, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139009] = 6, - ACTIONS(6410), 1, + [139168] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4139), 1, + STATE(4196), 1, sym_type_annotation, - STATE(4691), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139031] = 6, - ACTIONS(6410), 1, + [139190] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4147), 1, + STATE(4199), 1, sym_type_annotation, - STATE(4702), 1, + STATE(4831), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139053] = 4, - ACTIONS(4097), 1, - anon_sym_extends, - ACTIONS(7169), 1, + [139212] = 8, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(7165), 1, sym_identifier, + ACTIONS(7167), 1, + anon_sym_DOT, + STATE(745), 1, + sym_nested_identifier, + STATE(778), 1, + sym_string, + STATE(890), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - [139071] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4327), 1, - sym_type_annotation, - STATE(5071), 1, - sym__initializer, + [139238] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5395), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(7169), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139093] = 8, - ACTIONS(6681), 1, + anon_sym_PIPE_RBRACE, + [139256] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7125), 1, + anon_sym_QMARK, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(3796), 1, + sym_formal_parameters, + STATE(5397), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139282] = 4, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2388), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5292), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, + STATE(5222), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139119] = 6, - ACTIONS(6410), 1, + ACTIONS(7173), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139300] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4162), 1, + STATE(4047), 1, sym_type_annotation, - STATE(4724), 1, + STATE(4550), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139141] = 6, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(6008), 1, + [139322] = 8, + ACTIONS(2708), 1, anon_sym_LT, - STATE(2378), 1, - sym_arguments, - STATE(5168), 1, - sym_type_arguments, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + sym_identifier, + ACTIONS(7177), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5167), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7145), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [139163] = 2, + [139348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5013), 7, + ACTIONS(6771), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -251060,3399 +251251,3436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [139177] = 5, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5798), 1, - anon_sym_RBRACE, - STATE(4950), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [139197] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4095), 1, - sym_type_annotation, - STATE(4599), 1, - sym__initializer, + [139362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(7179), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139219] = 2, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [139376] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7181), 1, + sym_identifier, + ACTIONS(7183), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5140), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [139233] = 6, - ACTIONS(6410), 1, + [139402] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4328), 1, + STATE(4048), 1, sym_type_annotation, - STATE(5075), 1, + STATE(4552), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139255] = 7, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(7171), 1, - anon_sym_EQ, - ACTIONS(7175), 1, - anon_sym_QMARK, - STATE(4367), 1, - sym_type_annotation, - STATE(5261), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7173), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [139279] = 6, - ACTIONS(3394), 1, - anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - ACTIONS(7177), 1, - sym_identifier, - STATE(4427), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3371), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139301] = 6, - ACTIONS(6410), 1, + [139424] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4265), 1, + STATE(4049), 1, sym_type_annotation, - STATE(4949), 1, + STATE(4557), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139323] = 8, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(6751), 1, + [139446] = 8, + ACTIONS(219), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1565), 1, anon_sym_LBRACE, - STATE(4007), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5327), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139349] = 8, - ACTIONS(2540), 1, + ACTIONS(7079), 1, anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7179), 1, - sym_identifier, - ACTIONS(7181), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5149), 1, - sym__call_signature, - STATE(5213), 1, + ACTIONS(7081), 1, + anon_sym_extends, + STATE(863), 1, + sym_object_type, + STATE(4181), 1, sym_type_parameters, + STATE(4793), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139375] = 3, - ACTIONS(7183), 1, + [139472] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3552), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(6428), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [139391] = 8, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7186), 1, - sym_identifier, - ACTIONS(7188), 1, - anon_sym_STAR, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5419), 1, - sym__call_signature, + STATE(4050), 1, + sym_type_annotation, + STATE(4559), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139417] = 6, - ACTIONS(3394), 1, + ACTIONS(6635), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139494] = 6, + ACTIONS(3388), 1, anon_sym_LBRACE, - ACTIONS(3396), 1, + ACTIONS(3390), 1, anon_sym_LBRACK, - ACTIONS(7190), 1, + ACTIONS(7185), 1, sym_identifier, - STATE(4381), 1, + STATE(4472), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3381), 3, + STATE(3301), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [139439] = 6, - ACTIONS(6410), 1, + [139516] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3945), 1, + STATE(4054), 1, sym_type_annotation, - STATE(4601), 1, + STATE(4574), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139461] = 6, - ACTIONS(6410), 1, + [139538] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4298), 1, + STATE(4032), 1, sym_type_annotation, - STATE(5016), 1, + STATE(4495), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139483] = 6, - ACTIONS(6410), 1, + [139560] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3946), 1, + STATE(3902), 1, sym_type_annotation, - STATE(4603), 1, + STATE(5058), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139505] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7192), 7, + ACTIONS(6653), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139519] = 6, - ACTIONS(6410), 1, + [139582] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3958), 1, + STATE(4213), 1, sym_type_annotation, - STATE(4649), 1, + STATE(4862), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139541] = 6, - ACTIONS(6410), 1, + [139604] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4212), 1, + STATE(4218), 1, sym_type_annotation, - STATE(4819), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139563] = 8, - ACTIONS(6691), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_implements, - STATE(2561), 1, - sym_class_body, - STATE(4670), 1, - sym_extends_clause, - STATE(5310), 1, - sym_class_heritage, - STATE(5738), 1, - sym_implements_clause, + [139626] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7187), 1, + sym_identifier, + ACTIONS(7189), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5167), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139589] = 6, - ACTIONS(6410), 1, + [139652] = 6, + ACTIONS(6584), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3962), 1, - sym_type_annotation, - STATE(4656), 1, - sym__initializer, + STATE(4413), 1, + sym_constraint, + STATE(5330), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, + ACTIONS(6589), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7191), 2, anon_sym_COMMA, - anon_sym_SEMI, - [139611] = 6, - ACTIONS(6410), 1, + anon_sym_GT, + [139674] = 3, + ACTIONS(7193), 1, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4213), 1, - sym_type_annotation, - STATE(4823), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, - sym__automatic_semicolon, + ACTIONS(3593), 6, anon_sym_COMMA, - anon_sym_SEMI, - [139633] = 6, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6418), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3965), 1, - sym_type_annotation, - STATE(4672), 1, - sym__initializer, + anon_sym_RBRACK, + anon_sym_QMARK, + [139690] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7196), 1, + sym_identifier, + ACTIONS(7198), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5140), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, + [139716] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4481), 4, anon_sym_COMMA, - anon_sym_SEMI, - [139655] = 6, - ACTIONS(6410), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139736] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3876), 1, + STATE(4232), 1, sym_type_annotation, - STATE(4943), 1, + STATE(4896), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139677] = 6, - ACTIONS(6410), 1, + [139758] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3878), 1, + STATE(4241), 1, sym_type_annotation, - STATE(4640), 1, + STATE(4899), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139699] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5394), 1, - sym_statement_block, + [139780] = 4, + ACTIONS(4215), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, - sym__automatic_semicolon, + ACTIONS(5791), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139717] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6735), 1, - anon_sym_type, - STATE(5370), 1, - sym__import_identifier, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [139798] = 3, + ACTIONS(7059), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5649), 2, - sym__module_export_name, - sym_string, - [139741] = 6, - ACTIONS(6410), 1, + ACTIONS(4351), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139814] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4214), 1, + STATE(4263), 1, sym_type_annotation, - STATE(4825), 1, + STATE(4942), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139763] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5353), 1, - sym_statement_block, + [139836] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4264), 1, + sym_type_annotation, + STATE(4943), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139781] = 6, - ACTIONS(6410), 1, + [139858] = 8, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7200), 1, + sym_identifier, + ACTIONS(7202), 1, + anon_sym_STAR, + STATE(3796), 1, + sym_formal_parameters, + STATE(5140), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139884] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4216), 1, + STATE(4267), 1, sym_type_annotation, - STATE(4835), 1, + STATE(4946), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139803] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5408), 1, - sym_statement_block, + [139906] = 4, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4145), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7204), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139821] = 6, - ACTIONS(6410), 1, + [139924] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3974), 1, + STATE(4272), 1, sym_type_annotation, - STATE(4692), 1, + STATE(4952), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139843] = 6, - ACTIONS(3394), 1, - anon_sym_LBRACE, - ACTIONS(3396), 1, - anon_sym_LBRACK, - ACTIONS(7053), 1, - sym_identifier, - STATE(4394), 1, - sym_variable_declarator, + [139946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3645), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139865] = 6, - ACTIONS(6410), 1, + ACTIONS(3593), 7, anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(3939), 1, - sym_type_annotation, - STATE(4551), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6618), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [139887] = 6, - ACTIONS(6410), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [139960] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3941), 1, + STATE(3903), 1, sym_type_annotation, - STATE(4561), 1, + STATE(4507), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139909] = 6, - ACTIONS(6410), 1, + [139982] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3947), 1, + STATE(4298), 1, sym_type_annotation, - STATE(4584), 1, + STATE(4993), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139931] = 6, - ACTIONS(6410), 1, + [140004] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(3950), 1, + STATE(4299), 1, sym_type_annotation, - STATE(4606), 1, + STATE(4996), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139953] = 8, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1553), 1, + [140026] = 8, + ACTIONS(6699), 1, anon_sym_LBRACE, - ACTIONS(7129), 1, - anon_sym_LT, - ACTIONS(7131), 1, + ACTIONS(6755), 1, anon_sym_extends, - STATE(876), 1, - sym_object_type, - STATE(4184), 1, - sym_type_parameters, - STATE(4759), 1, - sym_extends_type_clause, + ACTIONS(6757), 1, + anon_sym_implements, + STATE(1685), 1, + sym_class_body, + STATE(5008), 1, + sym_extends_clause, + STATE(5362), 1, + sym_class_heritage, + STATE(5687), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139979] = 6, - ACTIONS(6410), 1, + [140052] = 6, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(6418), 1, + ACTIONS(6428), 1, anon_sym_COLON, - STATE(4217), 1, + STATE(4236), 1, sym_type_annotation, - STATE(4837), 1, + STATE(4906), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6631), 3, + ACTIONS(6614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140001] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(7198), 1, - sym_identifier, - ACTIONS(7200), 1, - anon_sym_DOT, - STATE(3458), 1, - sym_nested_identifier, - STATE(3608), 1, - sym_string, - STATE(4277), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140027] = 6, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, - ACTIONS(7204), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7202), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [140048] = 4, - STATE(3756), 1, - aux_sym_object_type_repeat1, + [140074] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4300), 1, + sym_type_annotation, + STATE(5000), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3735), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7206), 3, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140065] = 7, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(7097), 1, - sym_identifier, - STATE(745), 1, - sym_nested_identifier, - STATE(759), 1, - sym_string, - STATE(874), 1, - sym__module, + [140096] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4306), 1, + sym_type_annotation, + STATE(5001), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140088] = 7, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7208), 1, + ACTIONS(6653), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7210), 1, - anon_sym_GT, - STATE(4616), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140111] = 2, + anon_sym_SEMI, + [140118] = 6, + ACTIONS(6420), 1, + anon_sym_EQ, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(4194), 1, + sym_type_annotation, + STATE(4820), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7192), 6, + ACTIONS(6614), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140124] = 4, - STATE(3765), 1, + [140140] = 4, + STATE(3866), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3735), 2, + ACTIONS(7208), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140141] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7212), 1, - anon_sym_QMARK, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5369), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140164] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7214), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(4144), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, + [140157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140187] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7216), 6, + ACTIONS(7179), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140200] = 7, - ACTIONS(2540), 1, + anon_sym_COLON, + [140170] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7210), 1, anon_sym_QMARK, - STATE(3428), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3864), 1, + STATE(4248), 1, sym__call_signature, - STATE(5103), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140223] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7220), 1, - sym_identifier, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, + STATE(5245), 1, sym_type_parameters, - STATE(5253), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140246] = 4, - STATE(3788), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7224), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7222), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140263] = 4, - STATE(3765), 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(7226), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140280] = 4, - STATE(3765), 1, + [140193] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3727), 2, + ACTIONS(3759), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7228), 3, + ACTIONS(7212), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140297] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7230), 1, - anon_sym_export, - ACTIONS(7232), 1, - anon_sym_class, - ACTIONS(7234), 1, - anon_sym_abstract, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, + [140210] = 3, + ACTIONS(7214), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140320] = 7, - ACTIONS(6552), 1, + ACTIONS(4355), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [140225] = 5, + ACTIONS(7214), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(7216), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(7218), 1, anon_sym_extends, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_GT, - STATE(4710), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, - sym_comment, - [140343] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7240), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(3922), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, + sym_comment, + ACTIONS(4367), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140244] = 3, + ACTIONS(7220), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140366] = 7, - ACTIONS(2540), 1, + ACTIONS(4375), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [140259] = 7, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7242), 1, + ACTIONS(7222), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3637), 1, + STATE(4059), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140389] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7244), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(3704), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, + [140282] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140412] = 2, + ACTIONS(5853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3879), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [140297] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2362), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140425] = 4, - ACTIONS(7246), 1, + ACTIONS(7089), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2628), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [140310] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2678), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 4, + ACTIONS(7121), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140442] = 4, - STATE(3765), 1, + [140327] = 5, + ACTIONS(7226), 1, + anon_sym_BQUOTE, + ACTIONS(7228), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7011), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3846), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140346] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3729), 2, + ACTIONS(3713), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7248), 3, + ACTIONS(7230), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140459] = 3, - ACTIONS(7250), 1, - anon_sym_AMP, + [140363] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2659), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [140474] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(3552), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, + ACTIONS(7113), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140380] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7232), 1, + anon_sym_export, + ACTIONS(7234), 1, + anon_sym_class, + ACTIONS(7236), 1, + anon_sym_abstract, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140497] = 5, - ACTIONS(7250), 1, - anon_sym_AMP, - ACTIONS(7254), 1, - anon_sym_PIPE, - ACTIONS(7256), 1, - anon_sym_extends, + [140403] = 4, + STATE(3842), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140516] = 3, - ACTIONS(7258), 1, + ACTIONS(3723), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7238), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140420] = 7, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, anon_sym_extends, + ACTIONS(7240), 1, + anon_sym_COMMA, + ACTIONS(7242), 1, + anon_sym_GT, + STATE(4629), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [140531] = 7, - ACTIONS(6552), 1, + [140443] = 5, + ACTIONS(7214), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(7216), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(7218), 1, anon_sym_extends, - ACTIONS(7260), 1, - anon_sym_COMMA, - ACTIONS(7262), 1, - anon_sym_GT, - STATE(5090), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140554] = 2, + ACTIONS(4317), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140462] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 6, + ACTIONS(7111), 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, - [140567] = 7, - ACTIONS(2540), 1, + [140479] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7266), 1, + ACTIONS(7244), 1, anon_sym_QMARK, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3850), 1, + STATE(5270), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140590] = 5, - ACTIONS(7270), 1, - anon_sym_BQUOTE, - ACTIONS(7272), 1, - anon_sym_DOLLAR_LBRACE, + [140502] = 5, + ACTIONS(7214), 1, + anon_sym_AMP, + ACTIONS(7216), 1, + anon_sym_PIPE, + ACTIONS(7218), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3777), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140609] = 2, + ACTIONS(4297), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140521] = 4, + STATE(3763), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7274), 6, + ACTIONS(7248), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7246), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140622] = 7, - ACTIONS(2540), 1, + [140538] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6713), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5257), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [140555] = 7, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7276), 1, + ACTIONS(7252), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4935), 1, + STATE(3664), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140645] = 7, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7278), 1, - anon_sym_COMMA, - ACTIONS(7280), 1, - anon_sym_GT, - STATE(4988), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140668] = 7, - ACTIONS(2540), 1, + [140578] = 7, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7282), 1, + ACTIONS(7254), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4228), 1, + STATE(3961), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140691] = 5, - ACTIONS(6552), 1, + [140601] = 6, + ACTIONS(7059), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(7063), 1, anon_sym_extends, + ACTIONS(7258), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7284), 3, - anon_sym_LBRACE, + ACTIONS(7256), 2, anon_sym_COMMA, - anon_sym_GT, - [140710] = 5, - ACTIONS(7250), 1, + anon_sym_RBRACK, + [140622] = 5, + ACTIONS(7214), 1, anon_sym_AMP, - ACTIONS(7254), 1, + ACTIONS(7216), 1, anon_sym_PIPE, - ACTIONS(7256), 1, + ACTIONS(7218), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 3, + ACTIONS(4481), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [140729] = 4, - STATE(3731), 1, + [140641] = 7, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(7131), 1, + anon_sym_COMMA, + ACTIONS(7260), 1, + anon_sym_LBRACE, + ACTIONS(7262), 1, + anon_sym_LBRACE_PIPE, + STATE(4355), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5050), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140664] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3727), 2, + ACTIONS(3709), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7228), 3, + ACTIONS(7264), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140746] = 4, - STATE(3765), 1, - aux_sym_object_type_repeat1, + [140681] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2646), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3751), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7286), 3, + ACTIONS(7101), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140763] = 4, - STATE(3765), 1, - aux_sym_object_type_repeat1, + [140698] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2648), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3717), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7288), 3, + ACTIONS(7103), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140780] = 7, - ACTIONS(2540), 1, + [140715] = 7, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7268), 1, + anon_sym_COMMA, + STATE(4500), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140738] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(7290), 1, + ACTIONS(7270), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5428), 1, + STATE(3845), 1, sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140803] = 5, - ACTIONS(3244), 1, + [140761] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - ACTIONS(7292), 1, - sym_identifier, - ACTIONS(7294), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4794), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140822] = 4, - STATE(3772), 1, - aux_sym_object_type_repeat1, + STATE(2623), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3707), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7296), 3, + ACTIONS(7101), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140839] = 7, - ACTIONS(6552), 1, + [140778] = 5, + ACTIONS(7214), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(7216), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(7218), 1, anon_sym_extends, - ACTIONS(7298), 1, - anon_sym_COMMA, - ACTIONS(7300), 1, - anon_sym_GT, - STATE(4520), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140862] = 7, - ACTIONS(2540), 1, + ACTIONS(4187), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140797] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7302), 1, + ACTIONS(7272), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5104), 1, + STATE(5311), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140885] = 7, - ACTIONS(2540), 1, + [140820] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7304), 1, + ACTIONS(7274), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5011), 1, + STATE(5146), 1, sym__call_signature, - STATE(5207), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140908] = 7, - ACTIONS(2540), 1, + [140843] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7306), 1, + ACTIONS(7276), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5402), 1, + STATE(3670), 1, sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140931] = 4, - STATE(3765), 1, - aux_sym_object_type_repeat1, + [140866] = 5, + ACTIONS(7278), 1, + anon_sym_default, + ACTIONS(7281), 1, + anon_sym_RBRACE, + ACTIONS(7283), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7311), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140948] = 5, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(7294), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - sym_identifier, + STATE(3759), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [140885] = 5, + ACTIONS(7228), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7286), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4400), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140967] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7315), 1, - anon_sym_QMARK, - STATE(3818), 1, - sym_formal_parameters, - STATE(5115), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, + ACTIONS(6991), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3798), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140904] = 4, + STATE(3772), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140990] = 4, - STATE(3765), 1, + ACTIONS(3729), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7288), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140921] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3707), 2, + ACTIONS(3721), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7296), 3, + ACTIONS(7290), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141007] = 4, - STATE(3765), 1, + [140938] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3723), 2, + ACTIONS(3729), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7317), 3, + ACTIONS(7288), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141024] = 5, - ACTIONS(7250), 1, - anon_sym_AMP, - ACTIONS(7254), 1, - anon_sym_PIPE, - ACTIONS(7256), 1, - anon_sym_extends, + [140955] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2652), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141043] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7163), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140972] = 7, + ACTIONS(3520), 1, anon_sym_LPAREN, - ACTIONS(7319), 1, - anon_sym_QMARK, - STATE(3271), 1, - sym_formal_parameters, - STATE(3560), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6951), 1, + anon_sym_DOT, + ACTIONS(7292), 1, + anon_sym_RPAREN, + STATE(1225), 1, + sym_arguments, + STATE(5122), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141066] = 4, - STATE(3765), 1, + [140995] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3745), 2, + ACTIONS(3737), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7321), 3, + ACTIONS(7294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141083] = 5, - ACTIONS(7250), 1, - anon_sym_AMP, - ACTIONS(7254), 1, - anon_sym_PIPE, - ACTIONS(7256), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4501), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141102] = 4, - ACTIONS(7246), 1, + [141012] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2641), 1, + STATE(2624), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7087), 4, + ACTIONS(7103), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141119] = 7, - ACTIONS(2540), 1, + [141029] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7323), 1, - anon_sym_QMARK, - STATE(3271), 1, + ACTIONS(7296), 1, + sym_identifier, + STATE(3796), 1, sym_formal_parameters, - STATE(3564), 1, + STATE(5211), 1, sym__call_signature, - STATE(5207), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141142] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7325), 1, + [141052] = 3, + ACTIONS(7298), 1, sym_identifier, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5253), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141165] = 5, - ACTIONS(7330), 1, + ACTIONS(6304), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, anon_sym_BQUOTE, - ACTIONS(7332), 1, - anon_sym_DOLLAR_LBRACE, + [141067] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7300), 1, + sym_identifier, + STATE(3796), 1, + sym_formal_parameters, + STATE(5152), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7327), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3777), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141184] = 4, - STATE(3724), 1, + [141090] = 4, + STATE(3857), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7337), 2, + ACTIONS(3719), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7335), 3, + ACTIONS(7302), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141201] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2652), 1, - sym_statement_block, + [141107] = 4, + STATE(3842), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7055), 4, + ACTIONS(3733), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7304), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141218] = 2, + [141124] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2649), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7143), 6, + ACTIONS(7157), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [141231] = 4, - STATE(3757), 1, + [141141] = 4, + STATE(3762), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7341), 2, + ACTIONS(3709), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7339), 3, + ACTIONS(7264), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141248] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3801), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [141158] = 7, + ACTIONS(2708), 1, anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + ACTIONS(7306), 1, anon_sym_QMARK, - [141263] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(7198), 1, - sym_identifier, - STATE(3458), 1, - sym_nested_identifier, - STATE(3608), 1, - sym_string, - STATE(4277), 1, - sym__module, + STATE(3429), 1, + sym_formal_parameters, + STATE(3802), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141286] = 7, - ACTIONS(6635), 1, - anon_sym_LT, - ACTIONS(7077), 1, + [141181] = 7, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7308), 1, anon_sym_COMMA, - ACTIONS(7343), 1, - anon_sym_LBRACE, - ACTIONS(7345), 1, - anon_sym_LBRACE_PIPE, - STATE(4364), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5058), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141309] = 2, + ACTIONS(7310), 1, + anon_sym_GT, + STATE(4749), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [141204] = 5, + ACTIONS(6556), 1, anon_sym_AMP, + ACTIONS(6572), 1, anon_sym_PIPE, + ACTIONS(6574), 1, anon_sym_extends, - [141322] = 7, - ACTIONS(2540), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7312), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [141223] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7347), 1, - anon_sym_QMARK, - STATE(3818), 1, + ACTIONS(7314), 1, + sym_identifier, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5282), 1, + STATE(5211), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141345] = 4, - STATE(3796), 1, - aux_sym_object_type_repeat1, + [141246] = 5, + ACTIONS(7316), 1, + anon_sym_default, + ACTIONS(7318), 1, + anon_sym_RBRACE, + ACTIONS(7320), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3757), 2, + STATE(3759), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141265] = 5, + ACTIONS(7316), 1, + anon_sym_default, + ACTIONS(7320), 1, + anon_sym_case, + ACTIONS(7322), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7349), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3779), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141284] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7324), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141362] = 4, - STATE(3765), 1, + anon_sym_PIPE_RBRACE, + [141297] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(7326), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(4144), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141320] = 4, + STATE(3826), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3757), 2, + ACTIONS(7330), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7349), 3, + ACTIONS(7328), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141379] = 2, + [141337] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7332), 1, + sym_identifier, + STATE(3796), 1, + sym_formal_parameters, + STATE(5211), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2370), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [141360] = 5, + ACTIONS(7214), 1, anon_sym_AMP, + ACTIONS(7216), 1, anon_sym_PIPE, + ACTIONS(7218), 1, anon_sym_extends, - [141392] = 7, - ACTIONS(2540), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141379] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7351), 1, + ACTIONS(7334), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4220), 1, + STATE(5360), 1, sym__call_signature, - STATE(5207), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141415] = 5, - ACTIONS(7353), 1, - anon_sym_AT, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3560), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [141434] = 4, - STATE(3732), 1, - aux_sym_object_type_repeat1, + [141402] = 7, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7336), 1, + anon_sym_COMMA, + ACTIONS(7338), 1, + anon_sym_GT, + STATE(4579), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7358), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7356), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141451] = 6, - ACTIONS(3516), 1, - anon_sym_COLON, - ACTIONS(7171), 1, - anon_sym_EQ, - STATE(4414), 1, - sym_type_annotation, - STATE(5099), 1, - sym__initializer, + [141425] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7340), 1, + sym_identifier, + STATE(3796), 1, + sym_formal_parameters, + STATE(5197), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7360), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [141472] = 4, - ACTIONS(7246), 1, + [141448] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, STATE(2629), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 4, + ACTIONS(7111), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141489] = 4, - STATE(3768), 1, - aux_sym_object_type_repeat1, + [141465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7364), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7362), 3, + ACTIONS(7342), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [141506] = 4, - STATE(3765), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3709), 2, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7366), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141523] = 7, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [141478] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7368), 1, + ACTIONS(7344), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(5143), 1, + STATE(4816), 1, sym__call_signature, - STATE(5213), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141546] = 7, - ACTIONS(2540), 1, + [141501] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7346), 1, anon_sym_QMARK, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3833), 1, + STATE(5127), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141569] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2632), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7161), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141586] = 3, - ACTIONS(7372), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6300), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [141601] = 5, - ACTIONS(7250), 1, + [141524] = 7, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(7254), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(7256), 1, + ACTIONS(6574), 1, anon_sym_extends, + ACTIONS(7348), 1, + anon_sym_COMMA, + ACTIONS(7350), 1, + anon_sym_GT, + STATE(4511), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4471), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141620] = 5, - ACTIONS(7250), 1, - anon_sym_AMP, - ACTIONS(7254), 1, - anon_sym_PIPE, - ACTIONS(7256), 1, - anon_sym_extends, + [141547] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7236), 1, + anon_sym_abstract, + ACTIONS(7352), 1, + anon_sym_export, + ACTIONS(7354), 1, + anon_sym_class, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141639] = 7, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7374), 1, + [141570] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - ACTIONS(7376), 1, - anon_sym_COMMA, - STATE(4909), 1, - aux_sym_implements_clause_repeat1, + STATE(2640), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141662] = 5, + ACTIONS(7069), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141587] = 4, ACTIONS(7250), 1, - anon_sym_AMP, - ACTIONS(7254), 1, - anon_sym_PIPE, - ACTIONS(7256), 1, - anon_sym_extends, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141681] = 4, - ACTIONS(7246), 1, + ACTIONS(6729), 2, anon_sym_LBRACE, - STATE(2648), 1, - sym_statement_block, + anon_sym_EQ_GT, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [141604] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 4, + ACTIONS(7356), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141698] = 5, - ACTIONS(7272), 1, + anon_sym_PIPE_RBRACE, + [141617] = 5, + ACTIONS(7228), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7378), 1, + ACTIONS(7360), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 2, + ACTIONS(7358), 2, sym__template_chars, sym_escape_sequence, - STATE(3777), 2, + STATE(3808), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [141717] = 7, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(7097), 1, - sym_identifier, - STATE(745), 1, - sym_nested_identifier, - STATE(759), 1, - sym_string, - STATE(832), 1, - sym__module, + [141636] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141740] = 7, - ACTIONS(2540), 1, + ACTIONS(7071), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141653] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7362), 1, anon_sym_QMARK, - STATE(3428), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(3823), 1, + STATE(3751), 1, sym__call_signature, - STATE(5103), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141763] = 3, - ACTIONS(7250), 1, - anon_sym_AMP, + [141676] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + ACTIONS(7364), 1, + anon_sym_QMARK, + STATE(3429), 1, + sym_formal_parameters, + STATE(3764), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [141778] = 4, - STATE(3769), 1, - aux_sym_object_type_repeat1, + [141699] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3717), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7288), 3, + ACTIONS(7113), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141795] = 7, - ACTIONS(2540), 1, + [141716] = 7, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + ACTIONS(7075), 1, + sym_identifier, + STATE(3469), 1, + sym_nested_identifier, + STATE(3507), 1, + sym_string, + STATE(4201), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141739] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7366), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5030), 1, + STATE(5108), 1, sym__call_signature, - STATE(5207), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141818] = 5, - ACTIONS(7384), 1, - anon_sym_default, - ACTIONS(7386), 1, - anon_sym_RBRACE, - ACTIONS(7388), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3821), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141837] = 5, - ACTIONS(7384), 1, - anon_sym_default, - ACTIONS(7388), 1, - anon_sym_case, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3812), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141856] = 7, - ACTIONS(2540), 1, + [141762] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7392), 1, + ACTIONS(7368), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5195), 1, + STATE(5156), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141879] = 4, - ACTIONS(7246), 1, + [141785] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2674), 1, + STATE(2653), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7055), 4, + ACTIONS(7169), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141896] = 7, - ACTIONS(2540), 1, + [141802] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7394), 1, + ACTIONS(7370), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5309), 1, + STATE(3626), 1, sym__call_signature, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141825] = 5, + ACTIONS(7375), 1, + anon_sym_BQUOTE, + ACTIONS(7377), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7372), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3808), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141844] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2362), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141857] = 3, + ACTIONS(7214), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141919] = 4, - ACTIONS(7246), 1, + ACTIONS(4351), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [141872] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2642), 1, + STATE(2620), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7089), 4, + ACTIONS(7173), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141936] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, + [141889] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6709), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5324), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141953] = 4, - ACTIONS(7246), 1, + ACTIONS(7071), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141906] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2637), 1, + STATE(2657), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7087), 4, + ACTIONS(7127), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141970] = 7, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7398), 1, - anon_sym_COMMA, - ACTIONS(7400), 1, - anon_sym_GT, - STATE(4568), 1, - aux_sym_implements_clause_repeat1, + [141923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141993] = 5, - ACTIONS(7402), 1, - anon_sym_default, - ACTIONS(7405), 1, - anon_sym_RBRACE, - ACTIONS(7407), 1, - anon_sym_case, + ACTIONS(7067), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [141936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3821), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142012] = 7, - ACTIONS(2540), 1, + ACTIONS(2366), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141949] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7410), 1, - anon_sym_QMARK, - STATE(3818), 1, + ACTIONS(7380), 1, + sym_identifier, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5221), 1, + STATE(5152), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142035] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2675), 1, - sym_statement_block, + [141972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7093), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3879), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [142052] = 7, - ACTIONS(2540), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [141985] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(7412), 1, - sym_identifier, - STATE(3818), 1, + ACTIONS(7382), 1, + anon_sym_QMARK, + STATE(3429), 1, sym_formal_parameters, - STATE(5145), 1, + STATE(3799), 1, sym__call_signature, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142075] = 7, - ACTIONS(2540), 1, + [142008] = 7, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7414), 1, + ACTIONS(7384), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3997), 1, + STATE(4682), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142098] = 5, - ACTIONS(7272), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7416), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6983), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3748), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142117] = 5, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(7294), 1, - anon_sym_LBRACK, - ACTIONS(7418), 1, - sym_identifier, + [142031] = 6, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(7141), 1, + anon_sym_EQ, + STATE(4442), 1, + sym_type_annotation, + STATE(5207), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5120), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142136] = 7, - ACTIONS(2540), 1, + ACTIONS(7386), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [142052] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7420), 1, + ACTIONS(7388), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3525), 1, + STATE(5316), 1, sym__call_signature, - STATE(5207), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142159] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7422), 1, - sym_identifier, - STATE(3818), 1, - sym_formal_parameters, - STATE(5145), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, + [142075] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142182] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2638), 1, - sym_statement_block, + ACTIONS(2374), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142088] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7390), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [142199] = 7, - ACTIONS(2540), 1, + anon_sym_GT, + [142107] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7424), 1, - sym_identifier, - STATE(3818), 1, + ACTIONS(7392), 1, + anon_sym_QMARK, + STATE(3276), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5253), 1, + STATE(3515), 1, sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142222] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2659), 1, - sym_statement_block, + [142130] = 5, + ACTIONS(7214), 1, + anon_sym_AMP, + ACTIONS(7216), 1, + anon_sym_PIPE, + ACTIONS(7218), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7091), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142239] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2639), 1, - sym_statement_block, + ACTIONS(4403), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142149] = 4, + STATE(3842), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 4, + ACTIONS(3719), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7302), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142256] = 6, - ACTIONS(6635), 1, - anon_sym_LT, - ACTIONS(7079), 1, - anon_sym_DOT, - ACTIONS(7426), 1, - anon_sym_LBRACE, - STATE(5057), 1, - sym_type_arguments, + [142166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7428), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [142277] = 2, + ACTIONS(2378), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 6, + ACTIONS(2370), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [142290] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_statement_block, + [142192] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7394), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(5135), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7057), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142307] = 7, - ACTIONS(2540), 1, + [142215] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7430), 1, + ACTIONS(7396), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(5212), 1, + STATE(3986), 1, sym__call_signature, - STATE(5213), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142330] = 7, - ACTIONS(2540), 1, + [142238] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7432), 1, - sym_identifier, - STATE(3818), 1, + ACTIONS(7398), 1, + anon_sym_QMARK, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5234), 1, + STATE(5203), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142353] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2676), 1, - sym_statement_block, + [142261] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7400), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(5217), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7095), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142370] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2670), 1, - sym_statement_block, + [142284] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(7402), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(4975), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142387] = 7, - ACTIONS(2540), 1, + [142307] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7434), 1, - anon_sym_QMARK, - STATE(3428), 1, + ACTIONS(7404), 1, + sym_identifier, + STATE(3796), 1, sym_formal_parameters, - STATE(3817), 1, + STATE(5152), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142410] = 4, - ACTIONS(7246), 1, + [142330] = 5, + ACTIONS(3244), 1, + anon_sym_LBRACE, + ACTIONS(7406), 1, + sym_identifier, + ACTIONS(7408), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5158), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [142349] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, STATE(2645), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 4, + ACTIONS(7121), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142427] = 7, - ACTIONS(2540), 1, + [142366] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7436), 1, + ACTIONS(7410), 1, sym_identifier, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5145), 1, + STATE(5323), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142450] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2366), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142463] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + [142389] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(7412), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(3590), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7057), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142480] = 7, - ACTIONS(2540), 1, + [142412] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(7438), 1, - sym_identifier, - STATE(3818), 1, + ACTIONS(7414), 1, + anon_sym_QMARK, + STATE(3429), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5253), 1, + STATE(3731), 1, sym__call_signature, + STATE(5368), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142435] = 7, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(6028), 1, + anon_sym_LT, + ACTIONS(6951), 1, + anon_sym_DOT, + ACTIONS(7416), 1, + anon_sym_RPAREN, + STATE(1225), 1, + sym_arguments, + STATE(5122), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142503] = 2, + [142458] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7127), 6, + ACTIONS(7418), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [142516] = 4, - STATE(3740), 1, + anon_sym_PIPE_RBRACE, + [142471] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, + ACTIONS(7423), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7420), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142488] = 4, + STATE(3733), 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(7440), 3, + ACTIONS(7294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142533] = 7, - ACTIONS(2540), 1, + [142505] = 7, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - ACTIONS(7442), 1, - anon_sym_QMARK, - STATE(3818), 1, + ACTIONS(7425), 1, + sym_identifier, + STATE(3796), 1, sym_formal_parameters, - STATE(5153), 1, + STATE(5152), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142556] = 4, - ACTIONS(7246), 1, + [142528] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(2650), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 4, + ACTIONS(7159), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142573] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - ACTIONS(7444), 1, - anon_sym_QMARK, - STATE(3428), 1, - sym_formal_parameters, - STATE(3836), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, + [142545] = 5, + ACTIONS(7228), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7427), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142596] = 5, - ACTIONS(6552), 1, + ACTIONS(7358), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3808), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142564] = 5, + ACTIONS(7429), 1, + anon_sym_AT, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [142583] = 7, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, + ACTIONS(7432), 1, + anon_sym_COMMA, + ACTIONS(7434), 1, + anon_sym_GT, + STATE(4983), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7446), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [142615] = 7, + [142606] = 7, ACTIONS(1621), 1, anon_sym_DQUOTE, ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(7198), 1, + ACTIONS(7075), 1, sym_identifier, - STATE(3458), 1, + STATE(3469), 1, sym_nested_identifier, - STATE(3608), 1, + STATE(3507), 1, sym_string, - STATE(4245), 1, + STATE(4121), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142638] = 2, + [142629] = 7, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7436), 1, + anon_sym_COMMA, + ACTIONS(7438), 1, + anon_sym_GT, + STATE(4525), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7448), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142651] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, + [142652] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7440), 1, + sym_identifier, + STATE(3796), 1, + sym_formal_parameters, + STATE(5211), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6743), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5177), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [142668] = 5, - ACTIONS(7272), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7450), 1, - anon_sym_BQUOTE, + [142675] = 7, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(7165), 1, + sym_identifier, + STATE(745), 1, + sym_nested_identifier, + STATE(778), 1, + sym_string, + STATE(890), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7029), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3806), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142687] = 7, - ACTIONS(2540), 1, + [142698] = 7, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(7165), 1, + sym_identifier, + STATE(745), 1, + sym_nested_identifier, + STATE(778), 1, + sym_string, + STATE(801), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142721] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + ACTIONS(7442), 1, + anon_sym_QMARK, + STATE(3796), 1, + sym_formal_parameters, + STATE(5134), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142744] = 7, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - ACTIONS(7452), 1, + ACTIONS(7444), 1, anon_sym_QMARK, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(4224), 1, + STATE(3553), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142710] = 4, - STATE(3859), 1, + [142767] = 4, + STATE(3871), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7456), 2, + ACTIONS(7448), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7454), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142727] = 4, - STATE(3765), 1, + [142784] = 4, + STATE(3842), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, + ACTIONS(3757), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7440), 3, + ACTIONS(7450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142744] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7458), 1, - sym_identifier, - STATE(3818), 1, - sym_formal_parameters, - STATE(5145), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142767] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_statement_block, + [142801] = 4, + STATE(3766), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 4, + ACTIONS(7454), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7452), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142784] = 7, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(7460), 1, - sym_identifier, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5248), 1, - sym__call_signature, + [142818] = 4, + STATE(3724), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142807] = 3, - ACTIONS(7462), 1, + ACTIONS(3731), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7456), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142835] = 5, + ACTIONS(3244), 1, + anon_sym_LBRACE, + ACTIONS(7408), 1, + anon_sym_LBRACK, + ACTIONS(7458), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6300), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [142822] = 4, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2624), 1, - sym_statement_block, + STATE(4974), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [142854] = 4, + STATE(3749), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 4, + ACTIONS(7462), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7460), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142839] = 2, + [142871] = 7, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + ACTIONS(7464), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_formal_parameters, + STATE(4073), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [142852] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7234), 1, - anon_sym_abstract, - ACTIONS(7464), 1, - anon_sym_export, + [142894] = 5, + ACTIONS(3244), 1, + anon_sym_LBRACE, + ACTIONS(7408), 1, + anon_sym_LBRACK, ACTIONS(7466), 1, - anon_sym_class, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142875] = 4, - ACTIONS(7246), 1, + STATE(4425), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [142913] = 4, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2635), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 4, + ACTIONS(7157), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142892] = 2, + [142930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 6, + ACTIONS(7115), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [142905] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4505), 1, - sym__initializer, + [142943] = 4, + STATE(3842), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(3731), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142921] = 2, + [142960] = 6, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(7133), 1, + anon_sym_DOT, + ACTIONS(7468), 1, + anon_sym_LBRACE, + STATE(5049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2842), 5, - sym__automatic_semicolon, + ACTIONS(7470), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142933] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5316), 1, - sym__call_signature, + anon_sym_LBRACE_PIPE, + [142981] = 4, + STATE(3736), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142953] = 6, - ACTIONS(1703), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_SEMI, - ACTIONS(7472), 1, + ACTIONS(3751), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7472), 3, sym__automatic_semicolon, - ACTIONS(7474), 1, - sym__function_signature_automatic_semicolon, - STATE(208), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [142998] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2651), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142973] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4529), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7476), 3, + ACTIONS(7161), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142989] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5304), 1, - sym__call_signature, + [143015] = 3, + ACTIONS(7474), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143009] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(5087), 1, - sym__initializer, + ACTIONS(6304), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [143030] = 4, + STATE(3842), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(3751), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143025] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(5093), 1, - sym__initializer, + [143047] = 4, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2674), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7069), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143041] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4543), 1, - sym__initializer, + [143064] = 3, + ACTIONS(5485), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, + ACTIONS(1929), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143057] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [143078] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5094), 1, + STATE(5025), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143073] = 2, + [143094] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7236), 1, + anon_sym_abstract, + ACTIONS(7354), 1, + anon_sym_class, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2834), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143085] = 4, - ACTIONS(6410), 1, + [143114] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4555), 1, + STATE(4529), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143101] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4559), 1, - sym__initializer, + [143130] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(2862), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143117] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4560), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [143142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2898), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143133] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4562), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [143154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2914), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143149] = 2, + anon_sym_PIPE_RBRACE, + [143166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7448), 5, + ACTIONS(2534), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143161] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4574), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [143178] = 5, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7480), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + STATE(4914), 2, + sym__module_export_name, + sym_string, + [143196] = 4, + ACTIONS(7484), 1, + anon_sym_in, + ACTIONS(7486), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143177] = 2, + [143212] = 4, + ACTIONS(7488), 1, + anon_sym_in, + ACTIONS(7490), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7216), 5, + ACTIONS(7482), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143189] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, + [143228] = 5, + ACTIONS(7492), 1, + sym_identifier, + ACTIONS(7494), 1, anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(4206), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, + STATE(1206), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143209] = 2, + STATE(1257), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [143246] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4698), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7274), 5, + ACTIONS(7476), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143221] = 2, + [143262] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2854), 5, + ACTIONS(2546), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143233] = 2, + [143274] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4716), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 5, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143245] = 2, + [143290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 5, + ACTIONS(5544), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143257] = 2, + [143302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 5, + ACTIONS(2558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143269] = 2, + [143314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2862), 5, + ACTIONS(2558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143281] = 2, + [143326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2866), 5, + ACTIONS(2562), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143293] = 2, + [143338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 5, + ACTIONS(1851), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143305] = 2, + [143350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 5, + ACTIONS(1861), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143317] = 2, + [143362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 5, - sym__automatic_semicolon, + ACTIONS(5548), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143329] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 5, + ACTIONS(1909), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143341] = 5, - ACTIONS(7482), 1, - anon_sym_BQUOTE, - ACTIONS(7484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7486), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3921), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143359] = 2, + [143386] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 5, + ACTIONS(5548), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143371] = 2, + [143398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 5, + ACTIONS(2582), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143383] = 4, - ACTIONS(6410), 1, + [143410] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5548), 5, anon_sym_EQ, - STATE(4586), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143422] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3789), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143442] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4536), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143399] = 4, - ACTIONS(6410), 1, + [143458] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4587), 1, + STATE(5099), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7498), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143415] = 2, + [143474] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4537), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 5, - anon_sym_EQ, + ACTIONS(7478), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143427] = 4, - ACTIONS(6410), 1, + anon_sym_SEMI, + [143490] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4588), 1, + STATE(4540), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143443] = 2, + [143506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 5, - anon_sym_EQ, + ACTIONS(2614), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143455] = 4, - ACTIONS(6410), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143518] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4589), 1, + STATE(4549), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143471] = 4, - ACTIONS(6410), 1, + [143534] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2678), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143546] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2678), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143558] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4590), 1, + STATE(4671), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143487] = 2, + [143574] = 5, + ACTIONS(7502), 1, + anon_sym_BQUOTE, + ACTIONS(7504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7506), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5013), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [143499] = 2, + STATE(3927), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [143592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2898), 5, + ACTIONS(2678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143511] = 2, + [143604] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4554), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2902), 5, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143523] = 2, + [143620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2906), 5, + ACTIONS(2690), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143535] = 6, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(4147), 1, + [143632] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - ACTIONS(5127), 1, + STATE(4555), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7478), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7488), 1, - anon_sym_RBRACE, - STATE(4796), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [143648] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4556), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143555] = 3, - ACTIONS(7490), 1, + ACTIONS(7478), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143664] = 4, + ACTIONS(6420), 1, anon_sym_EQ, + STATE(5044), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 4, + ACTIONS(5457), 5, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143569] = 6, - ACTIONS(4083), 1, + [143692] = 6, + ACTIONS(3879), 1, + anon_sym_COLON, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_RBRACE, + STATE(4940), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143712] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4686), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7510), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143728] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4561), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7496), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143744] = 6, + ACTIONS(4105), 1, anon_sym_LBRACE, - ACTIONS(7470), 1, + ACTIONS(7512), 1, anon_sym_SEMI, - ACTIONS(7472), 1, + ACTIONS(7514), 1, sym__automatic_semicolon, - ACTIONS(7474), 1, + ACTIONS(7516), 1, sym__function_signature_automatic_semicolon, - STATE(2232), 1, + STATE(2185), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143589] = 4, - ACTIONS(6410), 1, + [143764] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4595), 1, + STATE(4562), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143605] = 4, - ACTIONS(6410), 1, + [143780] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5461), 5, anon_sym_EQ, - STATE(4596), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143792] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4571), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143621] = 2, + [143808] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(4259), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6300), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [143633] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4598), 1, - sym__initializer, + [143828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, - sym__automatic_semicolon, + ACTIONS(5461), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [143649] = 4, - ACTIONS(7396), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7493), 1, + anon_sym_QMARK, + [143840] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7518), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5324), 3, + STATE(5302), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [143665] = 5, - ACTIONS(7484), 1, + [143856] = 5, + ACTIONS(7504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7496), 1, + ACTIONS(7521), 1, anon_sym_BQUOTE, - ACTIONS(7498), 1, + ACTIONS(7523), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 2, + STATE(4137), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [143683] = 2, + [143874] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4572), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, + ACTIONS(7478), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143890] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143695] = 2, + [143902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2546), 5, + ACTIONS(2746), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143707] = 2, + [143914] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2546), 5, + ACTIONS(2754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143719] = 2, + [143926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2546), 5, + ACTIONS(2758), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143731] = 6, - ACTIONS(1043), 1, + [143938] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2934), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143950] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5461), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143962] = 6, + ACTIONS(1033), 1, anon_sym_LBRACE_PIPE, ACTIONS(1613), 1, anon_sym_LBRACE, - ACTIONS(7131), 1, + ACTIONS(7081), 1, anon_sym_extends, - STATE(3955), 1, + STATE(3879), 1, sym_object_type, - STATE(4633), 1, + STATE(4709), 1, sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143751] = 4, - ACTIONS(6410), 1, + [143982] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4782), 1, + STATE(4573), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -254461,2202 +254689,2216 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143767] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4608), 1, - sym__initializer, + [143998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(2762), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143783] = 2, + anon_sym_PIPE_RBRACE, + [144010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7500), 5, + ACTIONS(2762), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143795] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4614), 1, - sym__initializer, + [144022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(2790), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143811] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4615), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144034] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(1919), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143827] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4620), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(1753), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143843] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4747), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(1763), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143859] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4637), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(2810), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143875] = 6, - ACTIONS(6991), 1, - anon_sym_LBRACE, - ACTIONS(7502), 1, - anon_sym_SEMI, - ACTIONS(7504), 1, - sym__automatic_semicolon, - ACTIONS(7506), 1, - sym__function_signature_automatic_semicolon, - STATE(3960), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143895] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6657), 1, - anon_sym_extends, - ACTIONS(7510), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7508), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143913] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [144082] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4788), 1, + STATE(4761), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143929] = 4, - ACTIONS(6410), 1, + [144098] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4650), 1, + STATE(4724), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(7527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143945] = 4, - ACTIONS(6410), 1, + [144114] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4859), 1, + STATE(4583), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143961] = 6, - ACTIONS(4083), 1, + [144130] = 6, + ACTIONS(7017), 1, anon_sym_LBRACE, - ACTIONS(7512), 1, + ACTIONS(7529), 1, anon_sym_SEMI, - ACTIONS(7514), 1, + ACTIONS(7531), 1, sym__automatic_semicolon, - ACTIONS(7516), 1, + ACTIONS(7533), 1, sym__function_signature_automatic_semicolon, - STATE(2435), 1, + STATE(3964), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143981] = 4, - ACTIONS(6410), 1, + [144150] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4867), 1, + STATE(4584), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143997] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4661), 1, - sym__initializer, + [144166] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6665), 1, + anon_sym_extends, + ACTIONS(7537), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(7535), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [144013] = 2, + [144184] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4585), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7518), 5, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144025] = 4, - ACTIONS(6410), 1, + [144200] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4668), 1, + STATE(4586), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144041] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4669), 1, - sym__initializer, + [144216] = 6, + ACTIONS(4105), 1, + anon_sym_LBRACE, + ACTIONS(7539), 1, + anon_sym_SEMI, + ACTIONS(7541), 1, + sym__automatic_semicolon, + ACTIONS(7543), 1, + sym__function_signature_automatic_semicolon, + STATE(2193), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2854), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144057] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4671), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2858), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144073] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [144260] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4873), 1, + STATE(4591), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144089] = 4, - ACTIONS(7396), 1, + [144276] = 4, + ACTIONS(7250), 1, anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(7545), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5324), 3, + STATE(5302), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144105] = 4, - ACTIONS(7396), 1, + [144292] = 4, + ACTIONS(7250), 1, anon_sym_COLON, - ACTIONS(7523), 1, + ACTIONS(7548), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5177), 3, + STATE(5257), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144121] = 4, - ACTIONS(6410), 1, + [144308] = 6, + ACTIONS(7551), 1, anon_sym_EQ, - STATE(4876), 1, + ACTIONS(7553), 1, + anon_sym_COMMA, + ACTIONS(7555), 1, + anon_sym_RBRACE, + STATE(4760), 1, + aux_sym_enum_body_repeat1, + STATE(5115), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144137] = 4, - ACTIONS(6410), 1, + [144328] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4680), 1, + STATE(4593), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144153] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2574), 5, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144165] = 6, - ACTIONS(7526), 1, - anon_sym_EQ, - ACTIONS(7528), 1, - anon_sym_COMMA, - ACTIONS(7530), 1, - anon_sym_RBRACE, - STATE(4703), 1, - aux_sym_enum_body_repeat1, - STATE(5259), 1, - sym__initializer, + [144344] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(4142), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144185] = 2, + [144364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2578), 5, + ACTIONS(7121), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144197] = 2, + [144376] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2582), 5, + ACTIONS(2870), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144209] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2586), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [144388] = 6, + ACTIONS(7017), 1, + anon_sym_LBRACE, + ACTIONS(7557), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144221] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4684), 1, - sym__initializer, + ACTIONS(7559), 1, + sym__automatic_semicolon, + ACTIONS(7561), 1, + sym__function_signature_automatic_semicolon, + STATE(3873), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + [144408] = 3, + ACTIONS(5479), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144237] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4687), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, - sym__automatic_semicolon, + ACTIONS(1871), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144253] = 6, - ACTIONS(6991), 1, - anon_sym_LBRACE, - ACTIONS(7532), 1, - anon_sym_SEMI, - ACTIONS(7534), 1, - sym__automatic_semicolon, - ACTIONS(7536), 1, - sym__function_signature_automatic_semicolon, - STATE(3975), 1, - sym_statement_block, + anon_sym_PIPE_RBRACE, + [144422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144273] = 3, - ACTIONS(5524), 1, + ACTIONS(2874), 5, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1751), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144287] = 5, - ACTIONS(6653), 1, + [144434] = 5, + ACTIONS(6661), 1, anon_sym_AMP, - ACTIONS(6657), 1, + ACTIONS(6665), 1, anon_sym_extends, - ACTIONS(7510), 1, + ACTIONS(7537), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 2, + ACTIONS(7563), 2, sym__automatic_semicolon, anon_sym_SEMI, - [144305] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4688), 1, - sym__initializer, + [144452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2878), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144321] = 6, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [144464] = 6, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3636), 1, + STATE(3585), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144341] = 2, + [144484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 5, + ACTIONS(2882), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144353] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4689), 1, - sym__initializer, + [144496] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2886), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144369] = 4, - ACTIONS(7396), 1, + anon_sym_PIPE_RBRACE, + [144508] = 4, + ACTIONS(7250), 1, anon_sym_COLON, - ACTIONS(7540), 1, + ACTIONS(7565), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5177), 3, + STATE(5257), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144385] = 2, + [144524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2598), 5, + ACTIONS(2902), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144397] = 2, + [144536] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2598), 5, + ACTIONS(2910), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144409] = 2, + [144548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 5, + ACTIONS(7568), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144421] = 2, + [144560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 5, + ACTIONS(1783), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144433] = 2, + [144572] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4598), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 5, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144445] = 2, + [144588] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4764), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 5, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144457] = 2, + [144604] = 3, + ACTIONS(5487), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 5, - sym__automatic_semicolon, + ACTIONS(1939), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144469] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__initializer, + [144618] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(3514), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144638] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6665), 1, + anon_sym_extends, + ACTIONS(7537), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7570), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [144485] = 3, - ACTIONS(5529), 1, + [144656] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2726), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 4, + ACTIONS(7157), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144499] = 3, - ACTIONS(5531), 1, + [144680] = 3, + ACTIONS(5489), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 4, + ACTIONS(1773), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144513] = 6, - ACTIONS(2540), 1, + [144694] = 6, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3524), 1, + STATE(3552), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144533] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6657), 1, - anon_sym_extends, - ACTIONS(7510), 1, - anon_sym_PIPE, + [144714] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(4057), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7543), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144551] = 3, - ACTIONS(5543), 1, - sym__automatic_semicolon, + [144734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 4, + ACTIONS(7159), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144565] = 6, - ACTIONS(2540), 1, + [144746] = 6, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3551), 1, + STATE(3663), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144585] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4834), 1, - sym__initializer, + [144766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7545), 3, + ACTIONS(7157), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144601] = 6, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [144778] = 6, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3558), 1, + STATE(3667), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144621] = 2, + [144798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2626), 5, + ACTIONS(7572), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144633] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4694), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144649] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(3563), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144669] = 6, - ACTIONS(2540), 1, + [144810] = 6, + ACTIONS(2708), 1, anon_sym_LT, ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(3271), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(3566), 1, + STATE(3679), 1, sym__call_signature, - STATE(5207), 1, + STATE(5245), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144689] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4695), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144705] = 4, - ACTIONS(6410), 1, + [144830] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4697), 1, + STATE(4768), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144721] = 2, + [144846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2666), 5, + ACTIONS(7121), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144733] = 2, + [144858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2666), 5, + ACTIONS(7574), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144745] = 2, + [144870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2666), 5, + ACTIONS(7423), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144757] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4698), 1, - sym__initializer, + [144882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7576), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144773] = 2, + anon_sym_PIPE_RBRACE, + [144894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2670), 5, + ACTIONS(7173), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144785] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4700), 1, - sym__initializer, + [144906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7578), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144801] = 2, + anon_sym_PIPE_RBRACE, + [144918] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(7580), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144813] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(4142), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144833] = 2, + [144930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 5, + ACTIONS(2566), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144845] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(5088), 1, - sym__initializer, + [144942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(2602), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144861] = 2, + anon_sym_PIPE_RBRACE, + [144954] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(2646), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144873] = 2, + [144966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7547), 5, + ACTIONS(2662), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144885] = 4, - ACTIONS(6410), 1, + [144978] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4536), 1, + STATE(4599), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7549), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144901] = 2, + [144994] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3806), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, 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, - [144913] = 2, + [145014] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4600), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7551), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144925] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, + [145030] = 5, + ACTIONS(7586), 1, + sym_identifier, + ACTIONS(7588), 1, anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5339), 1, - sym__call_signature, + STATE(2681), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144945] = 4, - ACTIONS(6410), 1, + STATE(2772), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [145048] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4526), 1, + STATE(4601), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144961] = 2, + [145064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2686), 5, - sym__automatic_semicolon, + ACTIONS(5218), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144973] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145076] = 3, + ACTIONS(4598), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2690), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144985] = 2, + ACTIONS(5573), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [145090] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5010), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2694), 5, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144997] = 2, + [145106] = 3, + ACTIONS(7592), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2698), 5, - sym__automatic_semicolon, + ACTIONS(3593), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145009] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145120] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7595), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2702), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145021] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3832), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, + STATE(5257), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145136] = 5, + ACTIONS(7504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7598), 1, + anon_sym_BQUOTE, + ACTIONS(7600), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145041] = 2, + STATE(4018), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145154] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4602), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2706), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145053] = 2, + [145170] = 6, + ACTIONS(4105), 1, + anon_sym_LBRACE, + ACTIONS(7529), 1, + anon_sym_SEMI, + ACTIONS(7531), 1, + sym__automatic_semicolon, + ACTIONS(7533), 1, + sym__function_signature_automatic_semicolon, + STATE(2227), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145190] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4603), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2706), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145065] = 2, + [145206] = 5, + ACTIONS(7504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7523), 1, + sym__template_chars, + ACTIONS(7602), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4137), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145224] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4770), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7553), 5, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145077] = 2, + [145240] = 6, + ACTIONS(4105), 1, + anon_sym_LBRACE, + ACTIONS(7557), 1, + anon_sym_SEMI, + ACTIONS(7559), 1, + sym__automatic_semicolon, + ACTIONS(7561), 1, + sym__function_signature_automatic_semicolon, + STATE(2233), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145260] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4606), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7555), 5, + ACTIONS(7604), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145089] = 2, + [145276] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4607), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2718), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145101] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5197), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, + [145292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145121] = 2, + ACTIONS(5594), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145304] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4608), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145133] = 6, - ACTIONS(1703), 1, - anon_sym_LBRACE, - ACTIONS(7512), 1, anon_sym_SEMI, - ACTIONS(7514), 1, - sym__automatic_semicolon, - ACTIONS(7516), 1, - sym__function_signature_automatic_semicolon, - STATE(221), 1, - sym_statement_block, + [145320] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5288), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145153] = 2, + ACTIONS(7606), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [145344] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4609), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1935), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145165] = 2, + [145360] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4610), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145177] = 5, - ACTIONS(7484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7557), 1, - anon_sym_BQUOTE, - ACTIONS(7559), 1, - sym__template_chars, + [145376] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4611), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4030), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145195] = 2, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145392] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4612), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2738), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145207] = 4, - ACTIONS(6410), 1, + [145408] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4711), 1, + STATE(4613), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7561), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145223] = 2, + [145424] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4614), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5196), 5, - anon_sym_EQ, + ACTIONS(7584), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145235] = 4, - ACTIONS(6410), 1, + anon_sym_SEMI, + [145440] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4715), 1, + STATE(4615), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7563), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145251] = 6, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(7502), 1, - anon_sym_SEMI, + [145456] = 5, ACTIONS(7504), 1, - sym__automatic_semicolon, - ACTIONS(7506), 1, - sym__function_signature_automatic_semicolon, - STATE(2280), 1, - sym_statement_block, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7608), 1, + anon_sym_BQUOTE, + ACTIONS(7610), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145271] = 2, + STATE(4037), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145474] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4616), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145283] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3830), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, + [145490] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4784), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145303] = 5, - ACTIONS(7484), 1, + ACTIONS(7476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145506] = 5, + ACTIONS(7504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7498), 1, + ACTIONS(7523), 1, sym__template_chars, - ACTIONS(7565), 1, + ACTIONS(7612), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 2, + STATE(4137), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145321] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4719), 1, - sym__initializer, + [145524] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(4244), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145337] = 2, + [145544] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5242), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2758), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145349] = 6, - ACTIONS(4083), 1, + [145564] = 6, + ACTIONS(1719), 1, anon_sym_LBRACE, - ACTIONS(7532), 1, + ACTIONS(7539), 1, anon_sym_SEMI, - ACTIONS(7534), 1, + ACTIONS(7541), 1, sym__automatic_semicolon, - ACTIONS(7536), 1, + ACTIONS(7543), 1, sym__function_signature_automatic_semicolon, - STATE(2311), 1, + STATE(234), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145369] = 2, + [145584] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4619), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2762), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145381] = 4, - ACTIONS(6410), 1, + [145600] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4720), 1, + STATE(4620), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145397] = 2, + [145616] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4560), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 5, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145409] = 4, - ACTIONS(6410), 1, + [145632] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4721), 1, + STATE(4632), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145425] = 4, - ACTIONS(6410), 1, + [145648] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4722), 1, + STATE(4633), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145441] = 2, + [145664] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4634), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2766), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145453] = 2, + [145680] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4637), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2770), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145465] = 2, + [145696] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4638), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2774), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145477] = 2, + [145712] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4639), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2778), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145489] = 2, + [145728] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4642), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2782), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145501] = 2, + [145744] = 5, + ACTIONS(7504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7614), 1, + anon_sym_BQUOTE, + ACTIONS(7616), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145513] = 2, + STATE(4055), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145762] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5125), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2798), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145525] = 2, + [145782] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7236), 1, + anon_sym_abstract, + ACTIONS(7618), 1, + anon_sym_class, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2802), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145537] = 2, + [145802] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4643), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1915), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145549] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4725), 1, - sym__initializer, + [145818] = 5, + ACTIONS(7504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7523), 1, + sym__template_chars, + ACTIONS(7620), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145565] = 4, - ACTIONS(6410), 1, + STATE(4137), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145836] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4726), 1, + STATE(4645), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145581] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4728), 1, - sym__initializer, + [145852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7161), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145597] = 2, + anon_sym_PIPE_RBRACE, + [145864] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(4065), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2810), 5, + [145884] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7163), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145609] = 4, - ACTIONS(6410), 1, + [145896] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4730), 1, + STATE(4649), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145625] = 4, - ACTIONS(6410), 1, + [145912] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4731), 1, + STATE(4651), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145641] = 4, - ACTIONS(6410), 1, + [145928] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4733), 1, + STATE(4653), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145657] = 4, - ACTIONS(6410), 1, + [145944] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4734), 1, + STATE(4655), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145673] = 2, + [145960] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 5, + ACTIONS(5604), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145972] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7169), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145685] = 5, - ACTIONS(7484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7573), 1, - anon_sym_BQUOTE, - ACTIONS(7575), 1, - sym__template_chars, + [145984] = 6, + ACTIONS(7214), 1, + anon_sym_AMP, + ACTIONS(7216), 1, + anon_sym_PIPE, + ACTIONS(7218), 1, + anon_sym_extends, + ACTIONS(7624), 1, + anon_sym_as, + ACTIONS(7626), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4063), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145703] = 2, + [146004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7577), 5, + ACTIONS(7628), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145715] = 2, + [146016] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3795), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2814), 5, + [146036] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7630), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145727] = 2, + [146048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2818), 5, + ACTIONS(7101), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145739] = 2, + [146060] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2822), 5, + ACTIONS(1843), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145751] = 2, + [146072] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(3982), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2830), 5, + [146092] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7103), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145763] = 5, - ACTIONS(7484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7498), 1, - sym__template_chars, - ACTIONS(7579), 1, - anon_sym_BQUOTE, + [146104] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145781] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4604), 1, - sym__initializer, + ACTIONS(7101), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7632), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145797] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4737), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(7127), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145813] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [146140] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4738), 1, + STATE(4807), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7634), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145829] = 4, - ACTIONS(6410), 1, + [146156] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4739), 1, + STATE(4808), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7636), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145845] = 4, - ACTIONS(6410), 1, + [146172] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4999), 1, + STATE(5076), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7581), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145861] = 2, + [146188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7583), 5, + ACTIONS(7638), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145873] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4748), 1, - sym__initializer, + [146200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145889] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4740), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7585), 3, + ACTIONS(2830), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145905] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4751), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(1843), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145921] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4753), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7103), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145937] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4755), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7640), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145953] = 6, - ACTIONS(2540), 1, + anon_sym_PIPE_RBRACE, + [146248] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(3872), 1, + STATE(3920), 1, sym__call_signature, - STATE(5103), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145973] = 4, - ACTIONS(6410), 1, + [146268] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4664), 1, + STATE(4788), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145989] = 4, - ACTIONS(6410), 1, + [146284] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4765), 1, + STATE(5046), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146005] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4766), 1, - sym__initializer, + [146300] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5172), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146021] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7587), 1, - anon_sym_EQ_GT, + [146320] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(4815), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5324), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146037] = 4, - ACTIONS(6410), 1, + [146340] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4767), 1, + STATE(4741), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146053] = 5, - ACTIONS(7484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7590), 1, - anon_sym_BQUOTE, - ACTIONS(7592), 1, - sym__template_chars, + [146356] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7234), 1, + anon_sym_class, + ACTIONS(7236), 1, + anon_sym_abstract, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4085), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146071] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4768), 1, - sym__initializer, + [146376] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3947), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146087] = 4, - ACTIONS(6410), 1, + [146396] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4769), 1, + STATE(4824), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7642), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146103] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4773), 1, - sym__initializer, + [146412] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3869), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146119] = 5, - ACTIONS(7484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7498), 1, - sym__template_chars, - ACTIONS(7594), 1, - anon_sym_BQUOTE, + [146432] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7644), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146137] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4776), 1, - sym__initializer, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [146448] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5160), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146153] = 4, - ACTIONS(6410), 1, + [146468] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4777), 1, + STATE(4839), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7642), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146169] = 4, - ACTIONS(3516), 1, - anon_sym_COLON, - STATE(5140), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3552), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [146185] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7596), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5324), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146201] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4781), 1, - sym__initializer, + [146484] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3952), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146217] = 4, - ACTIONS(6410), 1, + [146504] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4785), 1, + STATE(5030), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146233] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4786), 1, - sym__initializer, + [146520] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5208), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146249] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4789), 1, - sym__initializer, + [146540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7647), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146265] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [146552] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4709), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7642), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146281] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4713), 1, - sym__initializer, + [146568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7649), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146297] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [146580] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4799), 1, + STATE(4827), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(7651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146313] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__initializer, + [146596] = 5, + ACTIONS(7494), 1, + anon_sym_LPAREN, + ACTIONS(7653), 1, + sym_identifier, + STATE(3440), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146329] = 4, - ACTIONS(6410), 1, + STATE(1257), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [146614] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4802), 1, + STATE(4878), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7642), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146345] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7599), 1, - anon_sym_EQ_GT, + [146630] = 3, + ACTIONS(7655), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5177), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146361] = 4, - ACTIONS(6410), 1, + ACTIONS(3572), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [146644] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4803), 1, + STATE(4882), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7642), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146377] = 4, - ACTIONS(6410), 1, + [146660] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4804), 1, + STATE(4883), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146393] = 4, - ACTIONS(6410), 1, + [146676] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4732), 1, + STATE(4884), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146409] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7602), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [146427] = 4, - ACTIONS(6410), 1, + [146692] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4808), 1, + STATE(4757), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146443] = 5, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(7604), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5464), 2, - sym__module_export_name, - sym_string, - [146461] = 4, - ACTIONS(6350), 1, - anon_sym_LBRACK, - ACTIONS(7606), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4137), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [146477] = 5, - ACTIONS(7484), 1, + [146708] = 5, + ACTIONS(7504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7498), 1, + ACTIONS(7523), 1, sym__template_chars, - ACTIONS(7608), 1, + ACTIONS(7659), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 2, + STATE(4137), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146495] = 4, - ACTIONS(6410), 1, + [146726] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4809), 1, + STATE(4854), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7661), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146511] = 5, - ACTIONS(7610), 1, - anon_sym_BQUOTE, - ACTIONS(7612), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7615), 1, - sym__template_chars, + [146742] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3963), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146529] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, + [146762] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5356), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7618), 2, - anon_sym_COMMA, - anon_sym_GT, - [146547] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4810), 1, - sym__initializer, + [146782] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5367), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146563] = 2, + [146802] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5369), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146575] = 4, - ACTIONS(6410), 1, + [146822] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4821), 1, + STATE(4548), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146591] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4829), 1, - sym__initializer, + [146838] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5382), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(2806), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146607] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4830), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(2866), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146623] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4832), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146882] = 4, + ACTIONS(3534), 1, + anon_sym_COLON, + STATE(5393), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, + ACTIONS(3593), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [146639] = 4, - ACTIONS(6410), 1, + anon_sym_RBRACK, + [146898] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7663), 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, + [146914] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4791), 1, + STATE(4866), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -256665,1760 +256907,1686 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146655] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4838), 1, - sym__initializer, + [146930] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5107), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146671] = 6, - ACTIONS(2540), 1, + [146950] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3915), 1, + STATE(5109), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146691] = 2, + [146970] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7666), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [146703] = 4, - ACTIONS(6410), 1, + STATE(5257), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [146986] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4839), 1, + STATE(4867), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146719] = 4, - ACTIONS(6410), 1, + [147002] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4840), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7642), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146735] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4841), 1, - sym__initializer, + [147018] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, + ACTIONS(7669), 2, anon_sym_COMMA, - anon_sym_SEMI, - [146751] = 4, - ACTIONS(6410), 1, + anon_sym_RBRACK, + [147036] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4842), 1, + STATE(4524), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146767] = 6, - ACTIONS(7526), 1, - anon_sym_EQ, - ACTIONS(7624), 1, - anon_sym_COMMA, - ACTIONS(7626), 1, - anon_sym_RBRACE, - STATE(4934), 1, - aux_sym_enum_body_repeat1, - STATE(5259), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146787] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7234), 1, - anon_sym_abstract, - ACTIONS(7466), 1, - anon_sym_class, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146807] = 6, - ACTIONS(2540), 1, + [147052] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3935), 1, + STATE(5399), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146827] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6657), 1, - anon_sym_extends, - ACTIONS(7510), 1, - anon_sym_PIPE, + [147072] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5145), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [146845] = 4, - ACTIONS(6410), 1, + [147092] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4846), 1, + STATE(4564), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7571), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146861] = 6, - ACTIONS(2540), 1, + [147108] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5165), 1, + STATE(5154), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146881] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4847), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146897] = 2, + [147128] = 4, + ACTIONS(6338), 1, + anon_sym_LBRACK, + ACTIONS(7671), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2838), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146909] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4848), 1, - sym__initializer, + ACTIONS(4307), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147144] = 5, + ACTIONS(7673), 1, + anon_sym_BQUOTE, + ACTIONS(7675), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7678), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146925] = 6, - ACTIONS(2540), 1, + STATE(4137), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147162] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(3940), 1, + STATE(5164), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146945] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5267), 1, - sym__call_signature, + [147182] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146965] = 4, - ACTIONS(6410), 1, + ACTIONS(7681), 2, + anon_sym_COMMA, + anon_sym_GT, + [147200] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4849), 1, + STATE(4924), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7642), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146981] = 5, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(7630), 1, - sym_identifier, + [147216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4857), 2, - sym__module_export_name, - sym_string, - [146999] = 4, - ACTIONS(6410), 1, + ACTIONS(7683), 5, anon_sym_EQ, - STATE(4850), 1, - sym__initializer, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [147228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7111), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147015] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4851), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147240] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(4246), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7113), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147031] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4854), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 3, + ACTIONS(7685), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147047] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4812), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147284] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7356), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [147063] = 2, + [147296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7087), 5, + ACTIONS(7113), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147075] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(4222), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147095] = 2, + [147308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7089), 5, + ACTIONS(7687), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147107] = 2, + [147320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7087), 5, + ACTIONS(7111), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147119] = 2, + [147332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7632), 5, + ACTIONS(7689), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147131] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4813), 1, - sym__initializer, + [147344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7691), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147147] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3959), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147167] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5211), 1, - sym__call_signature, - STATE(5213), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [147356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147187] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5222), 1, - sym__call_signature, + ACTIONS(2682), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147368] = 4, + ACTIONS(4969), 1, + anon_sym_COMMA, + STATE(4157), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147207] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5223), 1, - sym__call_signature, + ACTIONS(7693), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [147384] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4868), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147227] = 2, + ACTIONS(7478), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7634), 5, + ACTIONS(2710), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147239] = 2, + [147412] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4870), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7636), 5, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147251] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5239), 1, - sym__call_signature, + [147428] = 4, + ACTIONS(7695), 1, + anon_sym_COMMA, + STATE(4157), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147271] = 5, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(7638), 1, - sym_identifier, + ACTIONS(4821), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [147444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5272), 2, - sym__module_export_name, - sym_string, - [147289] = 4, - ACTIONS(6410), 1, + ACTIONS(7698), 5, anon_sym_EQ, - STATE(4856), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [147456] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6665), 1, + anon_sym_extends, + ACTIONS(7537), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7700), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147474] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4566), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7640), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147305] = 6, - ACTIONS(2540), 1, + [147490] = 5, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3839), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, + ACTIONS(7702), 1, + anon_sym_LBRACE, + STATE(5050), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147325] = 6, - ACTIONS(2540), 1, + ACTIONS(7704), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [147508] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5368), 1, + STATE(4016), 1, sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147345] = 4, - ACTIONS(6410), 1, + [147528] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6304), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [147540] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4816), 1, + STATE(4895), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147361] = 6, - ACTIONS(2540), 1, + [147556] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5373), 1, + STATE(5309), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147381] = 4, - ACTIONS(6410), 1, + [147576] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4863), 1, + STATE(4897), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147397] = 4, - ACTIONS(6410), 1, + [147592] = 6, + ACTIONS(7551), 1, anon_sym_EQ, - STATE(4868), 1, + ACTIONS(7706), 1, + anon_sym_COMMA, + ACTIONS(7708), 1, + anon_sym_RBRACE, + STATE(4508), 1, + aux_sym_enum_body_repeat1, + STATE(5115), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147413] = 6, - ACTIONS(2540), 1, + [147612] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7710), 1, + anon_sym_class, + ACTIONS(7712), 1, + anon_sym_abstract, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147632] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5275), 1, + STATE(4020), 1, sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147433] = 6, - ACTIONS(6991), 1, - anon_sym_LBRACE, - ACTIONS(7512), 1, - anon_sym_SEMI, - ACTIONS(7514), 1, - sym__automatic_semicolon, - ACTIONS(7516), 1, - sym__function_signature_automatic_semicolon, - STATE(774), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147453] = 6, - ACTIONS(2540), 1, + [147652] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5416), 1, + STATE(5355), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147473] = 4, - ACTIONS(6410), 1, + [147672] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4871), 1, + STATE(4907), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147489] = 6, - ACTIONS(2540), 1, + [147688] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(5102), 1, + STATE(4040), 1, sym__call_signature, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147509] = 4, - ACTIONS(6410), 1, + [147708] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5390), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147728] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4872), 1, + STATE(4909), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147525] = 6, - ACTIONS(2540), 1, + [147744] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5114), 1, + STATE(5405), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147545] = 4, - ACTIONS(6410), 1, + [147764] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5014), 1, + STATE(4917), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7644), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147561] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4879), 1, - sym__initializer, + [147780] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147577] = 6, - ACTIONS(2540), 1, + ACTIONS(5028), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [147792] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5119), 1, + STATE(5142), 1, sym__call_signature, - STATE(5213), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147597] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6657), 1, - anon_sym_extends, - ACTIONS(7510), 1, - anon_sym_PIPE, + [147812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7648), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [147615] = 2, + ACTIONS(5017), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [147824] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(3750), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7650), 5, - anon_sym_EQ, + [147844] = 6, + ACTIONS(219), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1565), 1, anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(7081), 1, anon_sym_extends, - anon_sym_implements, - [147627] = 4, - ACTIONS(6410), 1, + STATE(902), 1, + sym_object_type, + STATE(4782), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147864] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4880), 1, + STATE(4953), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7714), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147643] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4881), 1, - sym__initializer, + [147880] = 4, + STATE(5409), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7716), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7718), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [147659] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5280), 1, - sym__call_signature, + [147896] = 5, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(7720), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147679] = 4, - ACTIONS(6410), 1, + STATE(5274), 2, + sym__module_export_name, + sym_string, + [147914] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2774), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147926] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4883), 1, + STATE(4958), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7722), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147695] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(4230), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, + [147942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147715] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4884), 1, - sym__initializer, + ACTIONS(7724), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147954] = 4, + STATE(5412), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7716), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7726), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [147731] = 6, - ACTIONS(2540), 1, + [147970] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3276), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5288), 1, + STATE(4968), 1, sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147751] = 4, - ACTIONS(5007), 1, - anon_sym_COMMA, - STATE(4183), 1, - aux_sym_sequence_expression_repeat1, + [147990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7652), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [147767] = 4, - ACTIONS(7654), 1, + ACTIONS(2798), 5, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4183), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148002] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5418), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4914), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [147783] = 6, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1553), 1, + [148022] = 6, + ACTIONS(7017), 1, anon_sym_LBRACE, - ACTIONS(7131), 1, - anon_sym_extends, - STATE(802), 1, - sym_object_type, - STATE(4665), 1, - sym_extends_type_clause, + ACTIONS(7539), 1, + anon_sym_SEMI, + ACTIONS(7541), 1, + sym__automatic_semicolon, + ACTIONS(7543), 1, + sym__function_signature_automatic_semicolon, + STATE(774), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147803] = 4, - ACTIONS(6410), 1, + [148042] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4885), 1, + STATE(4979), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147819] = 4, - ACTIONS(6410), 1, + [148058] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4886), 1, + STATE(4980), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147835] = 4, - ACTIONS(6410), 1, + [148074] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4887), 1, + STATE(4981), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147851] = 4, - ACTIONS(6410), 1, + [148090] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4888), 1, + STATE(4922), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147867] = 4, - ACTIONS(7659), 1, - anon_sym_in, - ACTIONS(7661), 1, - anon_sym_of, + [148106] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6665), 1, + anon_sym_extends, + ACTIONS(7537), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7657), 3, + ACTIONS(7732), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [147883] = 4, - ACTIONS(7663), 1, - anon_sym_in, - ACTIONS(7665), 1, - anon_sym_of, + [148124] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4991), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7657), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147899] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(4027), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147919] = 3, - ACTIONS(4564), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5536), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [147933] = 2, + [148140] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4928), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5577), 5, - anon_sym_EQ, + ACTIONS(7478), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147945] = 2, + anon_sym_SEMI, + [148156] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5013), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5581), 5, - anon_sym_EQ, + ACTIONS(7728), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147957] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7667), 1, - anon_sym_class, - ACTIONS(7669), 1, - anon_sym_abstract, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, + anon_sym_SEMI, + [148172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147977] = 6, - ACTIONS(2540), 1, + ACTIONS(1905), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148184] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4033), 1, + STATE(5188), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147997] = 2, + [148204] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5014), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5581), 5, - anon_sym_EQ, + ACTIONS(7730), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148009] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5357), 1, - sym__call_signature, + anon_sym_SEMI, + [148220] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5016), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148029] = 2, + ACTIONS(7730), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148236] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5024), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5581), 5, - anon_sym_EQ, + ACTIONS(7728), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148041] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3840), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, + anon_sym_SEMI, + [148252] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5034), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148061] = 4, - ACTIONS(6410), 1, + ACTIONS(7728), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148268] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4889), 1, + STATE(5040), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148077] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5390), 1, - sym__call_signature, + [148284] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5055), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148097] = 4, - ACTIONS(6410), 1, + ACTIONS(7728), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148300] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4890), 1, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148113] = 4, - ACTIONS(6410), 1, + [148316] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4891), 1, + STATE(5057), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148129] = 4, - ACTIONS(6410), 1, + [148332] = 2, + 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, + [148344] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4892), 1, + STATE(4964), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148145] = 2, + [148360] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4965), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7055), 5, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148157] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(3995), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148177] = 4, - ACTIONS(6410), 1, + [148376] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4983), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7671), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148193] = 5, - ACTIONS(7484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_BQUOTE, - ACTIONS(7675), 1, - sym__template_chars, + [148392] = 4, + STATE(5335), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4107), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [148211] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4896), 1, - sym__initializer, + ACTIONS(7716), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7734), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148408] = 4, + STATE(5414), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7646), 3, + ACTIONS(7716), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7736), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [148227] = 4, - ACTIONS(6410), 1, + [148424] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4897), 1, + STATE(5086), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148243] = 4, - ACTIONS(6410), 1, + [148440] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4898), 1, + STATE(4982), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148259] = 4, - ACTIONS(6410), 1, + [148456] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4899), 1, + STATE(5094), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148275] = 4, - ACTIONS(6410), 1, + [148472] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4900), 1, + STATE(5095), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148291] = 4, - ACTIONS(6410), 1, + [148488] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5015), 1, + STATE(5096), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7677), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148307] = 4, - ACTIONS(6410), 1, + [148504] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(5097), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148323] = 4, - ACTIONS(6410), 1, + [148520] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4902), 1, + STATE(5098), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148339] = 4, - ACTIONS(6410), 1, + [148536] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4903), 1, + STATE(4997), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148355] = 4, - ACTIONS(6410), 1, + [148552] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4904), 1, + STATE(4624), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148371] = 2, + [148568] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5011), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7057), 5, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148383] = 4, - ACTIONS(6410), 1, + [148584] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5092), 1, + STATE(4644), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148399] = 2, + [148600] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4935), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7091), 5, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148411] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(4243), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148431] = 2, + [148616] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5043), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7093), 5, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148443] = 5, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - ACTIONS(7681), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5363), 2, - sym__module_export_name, - sym_string, - [148461] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(4164), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148481] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(4322), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148501] = 2, + [148632] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5083), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148513] = 6, - ACTIONS(2540), 1, + [148648] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5381), 1, + STATE(5269), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148533] = 6, - ACTIONS(6991), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_SEMI, - ACTIONS(7472), 1, - sym__automatic_semicolon, - ACTIONS(7474), 1, - sym__function_signature_automatic_semicolon, - STATE(754), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148553] = 2, + [148668] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5085), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 5, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148565] = 5, - ACTIONS(6653), 1, - anon_sym_AMP, - ACTIONS(6657), 1, - anon_sym_extends, - ACTIONS(7510), 1, - anon_sym_PIPE, + [148684] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4851), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7685), 2, + ACTIONS(7728), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [148583] = 2, + [148700] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5051), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148595] = 2, + [148716] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4567), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 5, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148607] = 4, - ACTIONS(6410), 1, + [148732] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4905), 1, + STATE(4623), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7689), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148623] = 2, + [148748] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4654), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7311), 5, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148635] = 4, - ACTIONS(6410), 1, + [148764] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4906), 1, + STATE(4860), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7689), 3, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148651] = 2, + [148780] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4542), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7728), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148663] = 2, + [148796] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4595), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7691), 5, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148675] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5391), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148695] = 4, - ACTIONS(6410), 1, + [148812] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4907), 1, + STATE(5088), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7689), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148711] = 4, - ACTIONS(6410), 1, + [148828] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4908), 1, + STATE(4657), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7689), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148727] = 2, + [148844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7095), 5, + ACTIONS(2782), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148739] = 2, + [148856] = 6, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(7512), 1, + anon_sym_SEMI, + ACTIONS(7514), 1, + sym__automatic_semicolon, + ACTIONS(7516), 1, + sym__function_signature_automatic_semicolon, + STATE(228), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7055), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148751] = 2, + [148876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 5, + ACTIONS(2786), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148763] = 2, + [148888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7693), 5, + ACTIONS(7069), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148775] = 2, + [148900] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(4070), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148787] = 2, + [148920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7695), 5, + ACTIONS(7071), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148799] = 2, + [148932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7057), 5, + ACTIONS(7069), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148811] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7697), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5177), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [148827] = 2, + [148944] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7700), 5, + ACTIONS(7738), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148839] = 2, + [148956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7702), 5, + ACTIONS(2794), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148851] = 3, - ACTIONS(7704), 1, - anon_sym_EQ, + [148968] = 5, + ACTIONS(7740), 1, + anon_sym_SEMI, + ACTIONS(7742), 1, + sym__automatic_semicolon, + STATE(5422), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3571), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [148865] = 2, + ACTIONS(7716), 2, + anon_sym_with, + anon_sym_assert, + [148986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2790), 5, + ACTIONS(7071), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148877] = 2, + [148998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 5, + ACTIONS(7744), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148889] = 2, + [149010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 5, + ACTIONS(7746), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148901] = 2, + [149022] = 5, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(7748), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5262), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148913] = 2, + STATE(5171), 2, + sym__module_export_name, + sym_string, + [149040] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_formal_parameters, + STATE(4192), 1, + sym__call_signature, + STATE(5368), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7706), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [148925] = 6, - ACTIONS(2540), 1, + [149060] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3271), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5022), 1, + STATE(5178), 1, sym__call_signature, - STATE(5207), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148945] = 5, - ACTIONS(6635), 1, - anon_sym_LT, - ACTIONS(7708), 1, + [149080] = 6, + ACTIONS(7017), 1, anon_sym_LBRACE, - STATE(5058), 1, - sym_type_arguments, + ACTIONS(7512), 1, + anon_sym_SEMI, + ACTIONS(7514), 1, + sym__automatic_semicolon, + ACTIONS(7516), 1, + sym__function_signature_automatic_semicolon, + STATE(760), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149100] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5100), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7710), 2, + ACTIONS(7496), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [148963] = 6, - ACTIONS(2540), 1, + anon_sym_SEMI, + [149116] = 5, + ACTIONS(6661), 1, + anon_sym_AMP, + ACTIONS(6665), 1, + anon_sym_extends, + ACTIONS(7537), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7750), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [149134] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5243), 1, + STATE(5250), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148983] = 2, + [149154] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5102), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5706), 5, - anon_sym_EQ, + ACTIONS(7478), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148995] = 4, - ACTIONS(6410), 1, + anon_sym_SEMI, + [149170] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5034), 1, + STATE(4491), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -258427,398 +258595,395 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149011] = 6, - ACTIONS(2540), 1, + [149186] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5414), 1, + STATE(5194), 1, sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149031] = 4, - ACTIONS(6410), 1, + [149206] = 5, + ACTIONS(7504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7752), 1, + anon_sym_BQUOTE, + ACTIONS(7754), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4112), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149224] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5035), 1, + STATE(4492), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149047] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5413), 1, - sym__call_signature, + [149240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149067] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5415), 1, - sym__call_signature, + ACTIONS(7756), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149087] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5303), 1, - sym__call_signature, + ACTIONS(7758), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149107] = 6, - ACTIONS(2540), 1, + ACTIONS(7760), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149276] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(3429), 1, sym_formal_parameters, - STATE(5188), 1, + STATE(3773), 1, sym__call_signature, - STATE(5213), 1, + STATE(5368), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149127] = 4, - ACTIONS(6410), 1, + [149296] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5040), 1, + STATE(4493), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149143] = 2, + [149312] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4703), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5684), 5, - anon_sym_EQ, + ACTIONS(7762), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149155] = 6, - ACTIONS(7250), 1, - anon_sym_AMP, - ACTIONS(7254), 1, - anon_sym_PIPE, - ACTIONS(7256), 1, - anon_sym_extends, - ACTIONS(7712), 1, - anon_sym_as, - ACTIONS(7714), 1, - anon_sym_RBRACK, + anon_sym_SEMI, + [149328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149175] = 2, + ACTIONS(7342), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [149340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7716), 5, + ACTIONS(7418), 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, - [149187] = 6, + [149352] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4717), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7764), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149368] = 6, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7669), 1, + ACTIONS(7712), 1, anon_sym_abstract, - ACTIONS(7718), 1, + ACTIONS(7766), 1, anon_sym_class, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(3791), 1, + STATE(3847), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149207] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3815), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, + [149388] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4661), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7525), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149227] = 2, + ACTIONS(7324), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [149416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2674), 5, + ACTIONS(2822), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149239] = 2, + [149428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2682), 5, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149251] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7234), 1, - anon_sym_abstract, - ACTIONS(7720), 1, - anon_sym_class, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, + [149440] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_formal_parameters, + STATE(4733), 1, + sym__call_signature, + STATE(5245), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149271] = 2, + [149460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7722), 5, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149283] = 4, - ACTIONS(6410), 1, + [149472] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4539), 1, + STATE(4734), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7724), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149299] = 4, - ACTIONS(6410), 1, + [149488] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4563), 1, + STATE(4735), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7726), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149315] = 2, + [149504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 5, + ACTIONS(2834), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149327] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7730), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5324), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149343] = 2, + [149516] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7733), 5, + ACTIONS(2838), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149355] = 2, + [149528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 5, + ACTIONS(1793), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149367] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3428), 1, - sym_formal_parameters, - STATE(3774), 1, - sym__call_signature, - STATE(5103), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149387] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [149540] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5050), 1, + STATE(4743), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149403] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5366), 1, - sym__call_signature, + [149556] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4745), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149423] = 2, + ACTIONS(7476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2894), 5, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149435] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7735), 1, - anon_sym_EQ_GT, + [149584] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4758), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5324), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149451] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7738), 1, - anon_sym_EQ_GT, + ACTIONS(7476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5177), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149467] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3818), 1, - sym_formal_parameters, - STATE(5213), 1, - sym_type_parameters, - STATE(5377), 1, - sym__call_signature, + ACTIONS(2826), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149487] = 2, + ACTIONS(2826), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2922), 5, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149499] = 4, - ACTIONS(7396), 1, + [149636] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4496), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7496), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149652] = 4, + ACTIONS(7250), 1, anon_sym_COLON, - ACTIONS(7741), 1, + ACTIONS(7768), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5177), 3, + STATE(5302), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149515] = 4, - ACTIONS(6410), 1, + [149668] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4882), 1, + STATE(4497), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7744), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149531] = 4, - ACTIONS(6410), 1, + [149684] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5055), 1, + STATE(4498), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -258827,210 +258992,211 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149547] = 6, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3271), 1, - sym_formal_parameters, - STATE(4932), 1, - sym__call_signature, - STATE(5207), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149567] = 4, - ACTIONS(6410), 1, + [149700] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5056), 1, + STATE(4499), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149583] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4942), 1, - sym__initializer, + [149716] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5373), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7746), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149599] = 4, - ACTIONS(6410), 1, + [149736] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5059), 1, + STATE(4763), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149615] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4638), 1, - sym__initializer, + [149752] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7771), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149631] = 6, - ACTIONS(2540), 1, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149768] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7774), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5257), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149784] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3271), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4966), 1, + STATE(5392), 1, sym__call_signature, - STATE(5207), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149651] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4968), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149667] = 4, - ACTIONS(6410), 1, + [149804] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4986), 1, + STATE(4501), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149683] = 2, + [149820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5015), 5, + ACTIONS(5026), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [149695] = 2, + [149832] = 4, + ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(7777), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5011), 5, + STATE(5257), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149848] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [149707] = 2, + STATE(4765), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2562), 5, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149719] = 2, + [149864] = 5, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + ACTIONS(7780), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5760), 2, + sym__module_export_name, + sym_string, + [149882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2570), 5, + ACTIONS(2630), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149731] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(5010), 1, - sym__initializer, + [149894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(2634), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149747] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(5018), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2638), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149763] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [149918] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5023), 1, + STATE(4771), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149779] = 4, - ACTIONS(6410), 1, + [149934] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5025), 1, + STATE(4772), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149795] = 4, - ACTIONS(6410), 1, + [149950] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5029), 1, + STATE(4773), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149811] = 4, - ACTIONS(6410), 1, + [149966] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5065), 1, + STATE(4503), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -259039,118 +259205,94 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149827] = 6, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(7748), 1, - anon_sym_RBRACE, - STATE(4820), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149847] = 4, - ACTIONS(6410), 1, + [149982] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5060), 1, + STATE(4790), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149863] = 4, - ACTIONS(1925), 1, - anon_sym_DOT, - ACTIONS(4257), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4259), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149879] = 4, - ACTIONS(6410), 1, + [149998] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4962), 1, + STATE(4797), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149895] = 4, - ACTIONS(1929), 1, - anon_sym_DOT, - ACTIONS(4257), 1, - anon_sym_LBRACE, + [150014] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4799), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 3, + ACTIONS(7476), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149911] = 4, - ACTIONS(6410), 1, + anon_sym_SEMI, + [150030] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5068), 1, + STATE(4804), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149927] = 4, - ACTIONS(6410), 1, + [150046] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(4505), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149943] = 2, + [150062] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4843), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 5, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149955] = 4, - ACTIONS(6410), 1, + [150078] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5026), 1, + STATE(4844), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149971] = 4, - ACTIONS(6410), 1, + [150094] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4488), 1, + STATE(4845), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -259159,22 +259301,22 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149987] = 4, - ACTIONS(6410), 1, + [150110] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5076), 1, + STATE(4848), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150003] = 4, - ACTIONS(6410), 1, + [150126] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4494), 1, + STATE(4662), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -259183,46 +259325,40 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150019] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4495), 1, - sym__initializer, + [150142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2694), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150035] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4496), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [150154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(2694), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150051] = 4, - ACTIONS(6410), 1, - anon_sym_EQ, - STATE(4923), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [150166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 3, + ACTIONS(2694), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150067] = 4, - ACTIONS(6410), 1, + anon_sym_PIPE_RBRACE, + [150178] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4504), 1, + STATE(4697), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -259231,3771 +259367,3785 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150083] = 4, - ACTIONS(6410), 1, + [150194] = 4, + ACTIONS(1813), 1, + anon_sym_DOT, + ACTIONS(4453), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4455), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [150210] = 4, + ACTIONS(1839), 1, + anon_sym_DOT, + ACTIONS(4453), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4455), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [150226] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4506), 1, + STATE(4516), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150099] = 4, - ACTIONS(6410), 1, + [150242] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5262), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150262] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4514), 1, + STATE(4849), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150115] = 6, - ACTIONS(2540), 1, + [150278] = 6, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6440), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3428), 1, + STATE(3796), 1, sym_formal_parameters, - STATE(4019), 1, + STATE(5265), 1, sym__call_signature, - STATE(5103), 1, + STATE(5437), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150135] = 4, - ACTIONS(6410), 1, + [150298] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4582), 1, + STATE(4517), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150151] = 4, - ACTIONS(6410), 1, + [150314] = 5, + ACTIONS(7782), 1, + anon_sym_SEMI, + ACTIONS(7784), 1, + sym__automatic_semicolon, + STATE(5289), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7716), 2, + anon_sym_with, + anon_sym_assert, + [150332] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4515), 1, + STATE(4885), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150167] = 4, - ACTIONS(6410), 1, + [150348] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4623), 1, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150183] = 4, - ACTIONS(6410), 1, + [150364] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4625), 1, + STATE(4519), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7750), 3, + ACTIONS(7478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150199] = 4, - ACTIONS(6410), 1, + [150380] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(4727), 1, + STATE(4945), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7750), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150215] = 4, - ACTIONS(6410), 1, + [150396] = 4, + ACTIONS(6420), 1, anon_sym_EQ, - STATE(5081), 1, + STATE(4954), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(7525), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150231] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7232), 1, - anon_sym_class, - ACTIONS(7234), 1, - anon_sym_abstract, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, + [150412] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4956), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150251] = 5, - ACTIONS(7752), 1, - sym_identifier, - ACTIONS(7754), 1, - anon_sym_const, - ACTIONS(7756), 1, - anon_sym_GT, - STATE(5216), 1, - sym_type_parameter, + ACTIONS(7476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150428] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(4960), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150268] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7758), 1, + ACTIONS(7476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150444] = 6, + ACTIONS(3879), 1, anon_sym_COLON, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(7786), 1, + anon_sym_RBRACE, + STATE(4823), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150285] = 4, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(4147), 1, + [150464] = 4, + ACTIONS(6420), 1, anon_sym_EQ, + STATE(4998), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7760), 2, + ACTIONS(7525), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [150300] = 4, - ACTIONS(7762), 1, - anon_sym_with, - STATE(5382), 1, - sym_import_attribute, + anon_sym_SEMI, + [150480] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5015), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7764), 2, + ACTIONS(7525), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150315] = 3, - ACTIONS(7766), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [150328] = 5, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_LT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7768), 1, - anon_sym_SQUOTE, - STATE(4407), 1, - aux_sym_string_repeat2, - ACTIONS(7770), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150362] = 5, - ACTIONS(3475), 1, - anon_sym_LPAREN, - ACTIONS(6302), 1, - anon_sym_LT, - STATE(3077), 1, - sym_arguments, - STATE(3196), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150379] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7772), 1, - anon_sym_RBRACK, + [150496] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5017), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150396] = 5, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(7774), 1, - anon_sym_LT, - STATE(1520), 1, - sym_arguments, - STATE(1521), 1, - sym_type_arguments, + ACTIONS(7476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150512] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5018), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150413] = 4, - ACTIONS(7776), 1, + ACTIONS(7476), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4351), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_SEMI, + [150528] = 4, + ACTIONS(6420), 1, + anon_sym_EQ, + STATE(5019), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7779), 2, + ACTIONS(7476), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150428] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7781), 1, - anon_sym_RPAREN, + [150544] = 6, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3796), 1, + sym_formal_parameters, + STATE(5133), 1, + sym__call_signature, + STATE(5437), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150445] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7783), 1, - anon_sym_COLON, + [150564] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5191), 1, + sym_type_parameters, + STATE(5618), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150462] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7785), 1, - anon_sym_RPAREN, + [150581] = 5, + ACTIONS(7131), 1, + anon_sym_COMMA, + ACTIONS(7788), 1, + anon_sym_LBRACE, + ACTIONS(7790), 1, + anon_sym_LBRACE_PIPE, + STATE(4375), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150598] = 5, + ACTIONS(7131), 1, + anon_sym_COMMA, + ACTIONS(7788), 1, + anon_sym_LBRACE, + ACTIONS(7790), 1, + anon_sym_LBRACE_PIPE, + STATE(4375), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150479] = 5, + [150615] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7787), 1, + ACTIONS(7792), 1, anon_sym_DQUOTE, - STATE(4358), 1, + STATE(4360), 1, aux_sym_string_repeat1, - ACTIONS(7789), 2, + ACTIONS(7794), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150496] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7787), 1, - anon_sym_SQUOTE, - STATE(4359), 1, - aux_sym_string_repeat2, - ACTIONS(7791), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150513] = 5, + [150632] = 5, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7793), 1, + ACTIONS(7796), 1, anon_sym_export, - STATE(1270), 1, + STATE(1267), 1, sym_decorator, - STATE(3791), 1, + STATE(3847), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150530] = 5, + [150649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7792), 1, + anon_sym_SQUOTE, + STATE(4361), 1, + aux_sym_string_repeat2, + ACTIONS(7798), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150666] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7795), 1, + ACTIONS(7800), 1, anon_sym_DQUOTE, - STATE(4406), 1, + STATE(4456), 1, aux_sym_string_repeat1, - ACTIONS(7797), 2, + ACTIONS(7802), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150547] = 5, + [150683] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7795), 1, + ACTIONS(7800), 1, anon_sym_SQUOTE, - STATE(4407), 1, + STATE(4458), 1, aux_sym_string_repeat2, - ACTIONS(7770), 2, + ACTIONS(7804), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150564] = 5, - ACTIONS(7752), 1, - sym_identifier, - ACTIONS(7754), 1, - anon_sym_const, - ACTIONS(7799), 1, - anon_sym_GT, - STATE(5216), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150581] = 4, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(2330), 2, - sym_template_string, - sym_arguments, - [150596] = 5, - ACTIONS(7801), 1, - sym_identifier, - STATE(4260), 1, - sym_nested_type_identifier, - STATE(4938), 1, - sym_generic_type, - STATE(5570), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150613] = 5, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7803), 1, - anon_sym_LBRACE, - ACTIONS(7805), 1, - anon_sym_LBRACE_PIPE, - STATE(4369), 1, - aux_sym_extends_type_clause_repeat1, + [150700] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7806), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150630] = 5, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7807), 1, - anon_sym_LBRACE, - ACTIONS(7809), 1, - anon_sym_LBRACE_PIPE, - STATE(4369), 1, - aux_sym_extends_type_clause_repeat1, + [150717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150647] = 5, - ACTIONS(7077), 1, + ACTIONS(6037), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - ACTIONS(7807), 1, - anon_sym_LBRACE, - ACTIONS(7809), 1, - anon_sym_LBRACE_PIPE, - STATE(4369), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150664] = 5, - ACTIONS(6552), 1, + anon_sym_SEMI, + [150728] = 5, + ACTIONS(7059), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(7063), 1, anon_sym_extends, - ACTIONS(7811), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150681] = 4, - ACTIONS(7171), 1, - anon_sym_EQ, - STATE(5106), 1, - sym__initializer, + ACTIONS(7808), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7813), 2, + [150745] = 4, + ACTIONS(7810), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [150696] = 3, - ACTIONS(7606), 1, - anon_sym_RBRACE, + STATE(4365), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 3, + ACTIONS(7390), 2, + anon_sym_LBRACE, + anon_sym_GT, + [150760] = 5, + ACTIONS(6556), 1, anon_sym_AMP, + ACTIONS(6572), 1, anon_sym_PIPE, + ACTIONS(6574), 1, anon_sym_extends, - [150709] = 5, - ACTIONS(7815), 1, - anon_sym_LBRACE, - ACTIONS(7817), 1, - anon_sym_COMMA, - ACTIONS(7820), 1, - anon_sym_LBRACE_PIPE, - STATE(4369), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(7813), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150726] = 5, + [150777] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7822), 1, + ACTIONS(7815), 1, anon_sym_DQUOTE, - STATE(4436), 1, + STATE(4394), 1, aux_sym_string_repeat1, - ACTIONS(7824), 2, + ACTIONS(7817), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150743] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [150794] = 5, + ACTIONS(7819), 1, + sym_identifier, + ACTIONS(7821), 1, + anon_sym_const, + ACTIONS(7823), 1, + anon_sym_GT, + STATE(5110), 1, + sym_type_parameter, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7822), 1, - anon_sym_SQUOTE, - STATE(4440), 1, - aux_sym_string_repeat2, - ACTIONS(7826), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150760] = 4, - ACTIONS(7526), 1, - anon_sym_EQ, - STATE(5259), 1, - sym__initializer, + sym_comment, + [150811] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7825), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7828), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [150775] = 5, + [150828] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7830), 1, - anon_sym_DQUOTE, - STATE(4466), 1, - aux_sym_string_repeat1, - ACTIONS(7832), 2, - sym_unescaped_double_string_fragment, + ACTIONS(7815), 1, + anon_sym_SQUOTE, + STATE(4399), 1, + aux_sym_string_repeat2, + ACTIONS(7827), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [150792] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7834), 1, - anon_sym_RBRACK, + [150845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150809] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7836), 1, - anon_sym_COLON, + ACTIONS(7829), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [150856] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7831), 1, + anon_sym_class, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150826] = 4, - ACTIONS(7838), 1, + [150873] = 4, + ACTIONS(4783), 1, anon_sym_COMMA, - STATE(4351), 1, - aux_sym_variable_declaration_repeat1, + STATE(4457), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7840), 2, + ACTIONS(7693), 2, sym__automatic_semicolon, anon_sym_SEMI, - [150841] = 4, - ACTIONS(7842), 1, - anon_sym_from, - STATE(5098), 1, - sym__from_clause, + [150888] = 5, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(6028), 1, + anon_sym_LT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7844), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150856] = 5, - ACTIONS(7762), 1, - anon_sym_with, - ACTIONS(7846), 1, - anon_sym_SEMI, - ACTIONS(7848), 1, - sym__automatic_semicolon, - STATE(5399), 1, - sym_import_attribute, + [150905] = 5, + ACTIONS(7833), 1, + anon_sym_LBRACE, + ACTIONS(7835), 1, + anon_sym_COMMA, + ACTIONS(7838), 1, + anon_sym_LBRACE_PIPE, + STATE(4375), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150873] = 4, - ACTIONS(6558), 1, + [150922] = 4, + ACTIONS(7551), 1, anon_sym_EQ, - STATE(5236), 1, - sym_default_type, + STATE(5115), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7850), 2, - anon_sym_COMMA, - anon_sym_GT, - [150888] = 5, - ACTIONS(1769), 1, + ACTIONS(7840), 2, anon_sym_COMMA, - ACTIONS(7852), 1, - anon_sym_EQ, - ACTIONS(7854), 1, - anon_sym_RBRACK, - STATE(4981), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [150937] = 5, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(7842), 1, + anon_sym_LT, + STATE(1598), 1, + sym_arguments, + STATE(1599), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150905] = 4, - ACTIONS(7838), 1, - anon_sym_COMMA, - STATE(4376), 1, - aux_sym_variable_declaration_repeat1, + [150954] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5132), 1, + sym_type_parameters, + STATE(5565), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7856), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150920] = 5, - ACTIONS(7858), 1, - sym_identifier, - STATE(3784), 1, - sym_nested_type_identifier, - STATE(4424), 1, - sym_generic_type, - STATE(5570), 1, - sym_nested_identifier, + [150971] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5324), 1, + sym_type_parameters, + STATE(5523), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150937] = 5, - ACTIONS(7762), 1, - anon_sym_with, - ACTIONS(7860), 1, - anon_sym_SEMI, - ACTIONS(7862), 1, - sym__automatic_semicolon, - STATE(5424), 1, - sym_import_attribute, + [150988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7844), 1, + anon_sym_DQUOTE, + STATE(4403), 1, + aux_sym_string_repeat1, + ACTIONS(7846), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151005] = 4, + ACTIONS(7850), 1, + anon_sym_COMMA, + STATE(4482), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150954] = 5, - ACTIONS(6552), 1, + ACTIONS(7848), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151020] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7864), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150971] = 4, - ACTIONS(6558), 1, - anon_sym_EQ, - STATE(5158), 1, - sym_default_type, + ACTIONS(7852), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 2, + [151037] = 5, + ACTIONS(7131), 1, anon_sym_COMMA, - anon_sym_GT, - [150986] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7868), 1, - anon_sym_RBRACK, + ACTIONS(7260), 1, + anon_sym_LBRACE, + ACTIONS(7262), 1, + anon_sym_LBRACE_PIPE, + STATE(4356), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151003] = 4, - ACTIONS(7842), 1, - anon_sym_from, - STATE(5117), 1, - sym__from_clause, + [151054] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5315), 1, + sym_type_parameters, + STATE(5495), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4857), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151018] = 5, - ACTIONS(6552), 1, + [151071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7854), 1, + anon_sym_SQUOTE, + STATE(4458), 1, + aux_sym_string_repeat2, + ACTIONS(7804), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151088] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7870), 1, + ACTIONS(7856), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151035] = 4, - ACTIONS(7762), 1, - anon_sym_with, - STATE(5332), 1, - sym_import_attribute, + [151105] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7858), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7872), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151050] = 5, - ACTIONS(7752), 1, + [151122] = 5, + ACTIONS(7819), 1, sym_identifier, - ACTIONS(7754), 1, + ACTIONS(7821), 1, anon_sym_const, - ACTIONS(7874), 1, + ACTIONS(7860), 1, anon_sym_GT, - STATE(5216), 1, + STATE(5110), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151067] = 5, - ACTIONS(7151), 1, + [151139] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(7153), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(7155), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7876), 1, - anon_sym_QMARK, + ACTIONS(7862), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151084] = 5, - ACTIONS(6552), 1, + [151156] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7878), 1, + ACTIONS(7864), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151101] = 4, - ACTIONS(7880), 1, - anon_sym_COMMA, - STATE(4393), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7284), 2, - anon_sym_LBRACE, - anon_sym_GT, - [151116] = 4, - ACTIONS(7838), 1, + [151173] = 4, + ACTIONS(7866), 1, anon_sym_COMMA, - STATE(4430), 1, + STATE(4429), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7883), 2, + ACTIONS(7868), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151131] = 3, - ACTIONS(7885), 1, - anon_sym_EQ, + [151188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [151144] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7888), 1, - anon_sym_class, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(7870), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151199] = 5, + ACTIONS(3), 1, sym_comment, - [151161] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5134), 1, - sym_type_parameters, - STATE(5561), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(7872), 1, + anon_sym_DQUOTE, + STATE(4430), 1, + aux_sym_string_repeat1, + ACTIONS(7874), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151216] = 5, + ACTIONS(3), 1, sym_comment, - [151178] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7890), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [151195] = 5, - ACTIONS(2540), 1, + ACTIONS(7876), 1, + anon_sym_DQUOTE, + STATE(4456), 1, + aux_sym_string_repeat1, + ACTIONS(7802), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151233] = 5, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5350), 1, + STATE(5136), 1, sym_type_parameters, - STATE(5452), 1, + STATE(5668), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151212] = 4, - ACTIONS(7892), 1, - anon_sym_EQ, - STATE(5308), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6729), 2, - anon_sym_in, - anon_sym_of, - [151227] = 5, - ACTIONS(6552), 1, + [151250] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7894), 1, + ACTIONS(7878), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151244] = 5, - ACTIONS(6552), 1, + [151267] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7896), 1, + ACTIONS(7880), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151261] = 4, - ACTIONS(7762), 1, - anon_sym_with, - STATE(5351), 1, - sym_import_attribute, + [151284] = 5, + ACTIONS(7882), 1, + sym_identifier, + STATE(3748), 1, + sym_nested_type_identifier, + STATE(4383), 1, + sym_generic_type, + STATE(5585), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7898), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151276] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7900), 1, - anon_sym_RBRACK, + [151301] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7876), 1, + anon_sym_SQUOTE, + STATE(4458), 1, + aux_sym_string_repeat2, + ACTIONS(7804), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151318] = 5, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(7884), 1, + anon_sym_LT, + STATE(2059), 1, + sym_arguments, + STATE(2064), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151293] = 5, - ACTIONS(6552), 1, + [151335] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7902), 1, + ACTIONS(7886), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151352] = 5, + ACTIONS(1889), 1, + anon_sym_COMMA, + ACTIONS(7888), 1, + anon_sym_EQ, + ACTIONS(7890), 1, anon_sym_RBRACK, + STATE(4930), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151310] = 5, + [151369] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7904), 1, + ACTIONS(7892), 1, anon_sym_DQUOTE, - STATE(4406), 1, + STATE(4456), 1, aux_sym_string_repeat1, - ACTIONS(7906), 2, + ACTIONS(7802), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151327] = 5, + [151386] = 3, + ACTIONS(7894), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3593), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [151399] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7909), 1, + ACTIONS(7892), 1, anon_sym_SQUOTE, - STATE(4407), 1, + STATE(4458), 1, aux_sym_string_repeat2, - ACTIONS(7911), 2, + ACTIONS(7804), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151344] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5285), 1, - sym_type_parameters, - STATE(5749), 1, - sym_formal_parameters, + [151416] = 4, + ACTIONS(7141), 1, + anon_sym_EQ, + STATE(5259), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151361] = 5, - ACTIONS(3497), 1, + ACTIONS(7897), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [151431] = 4, + ACTIONS(7866), 1, + anon_sym_COMMA, + STATE(4429), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7899), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151446] = 4, + ACTIONS(821), 1, + anon_sym_BQUOTE, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(6008), 1, - anon_sym_LT, - STATE(2895), 1, - sym_arguments, - STATE(2984), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151378] = 5, - ACTIONS(2540), 1, + STATE(1647), 2, + sym_template_string, + sym_arguments, + [151461] = 5, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5360), 1, + STATE(5353), 1, sym_type_parameters, - STATE(5617), 1, + STATE(5519), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151395] = 4, - ACTIONS(7838), 1, - anon_sym_COMMA, - STATE(4351), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7914), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151410] = 4, - ACTIONS(7838), 1, - anon_sym_COMMA, - STATE(4435), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7916), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151425] = 5, - ACTIONS(2540), 1, + [151478] = 5, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5263), 1, + STATE(5365), 1, sym_type_parameters, - STATE(5604), 1, + STATE(5446), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151442] = 4, - ACTIONS(7171), 1, + [151495] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7901), 1, + anon_sym_DQUOTE, + STATE(4416), 1, + aux_sym_string_repeat1, + ACTIONS(7903), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151512] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7901), 1, + anon_sym_SQUOTE, + STATE(4417), 1, + aux_sym_string_repeat2, + ACTIONS(7905), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151529] = 4, + ACTIONS(6584), 1, anon_sym_EQ, - STATE(5124), 1, - sym__initializer, + STATE(5251), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7918), 2, + ACTIONS(7907), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [151457] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5159), 1, - sym_type_parameters, - STATE(5577), 1, - sym_formal_parameters, + anon_sym_GT, + [151544] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7909), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151561] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7911), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151474] = 5, + [151578] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7920), 1, + ACTIONS(7913), 1, anon_sym_DQUOTE, - STATE(4406), 1, + STATE(4456), 1, aux_sym_string_repeat1, - ACTIONS(7797), 2, + ACTIONS(7802), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151491] = 5, + [151595] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7920), 1, + ACTIONS(7913), 1, anon_sym_SQUOTE, - STATE(4407), 1, + STATE(4458), 1, aux_sym_string_repeat2, - ACTIONS(7770), 2, + ACTIONS(7804), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151508] = 4, - ACTIONS(6292), 1, - anon_sym_STAR, - ACTIONS(6296), 1, - anon_sym_LBRACE, + [151612] = 5, + ACTIONS(3481), 1, + anon_sym_LPAREN, + ACTIONS(6318), 1, + anon_sym_LT, + STATE(3056), 1, + sym_arguments, + STATE(3237), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5654), 2, - sym_namespace_import, - sym_named_imports, - [151523] = 5, - ACTIONS(7151), 1, + [151629] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(7153), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(7155), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7922), 1, - anon_sym_QMARK, + ACTIONS(7915), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151540] = 4, - ACTIONS(7926), 1, - anon_sym_COMMA, - STATE(4454), 1, - aux_sym_extends_clause_repeat1, + [151646] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7917), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151555] = 5, - ACTIONS(2540), 1, + [151663] = 5, + ACTIONS(6328), 1, + anon_sym_LPAREN, + ACTIONS(6334), 1, anon_sym_LT, - ACTIONS(6416), 1, + STATE(3196), 1, + sym_arguments, + STATE(3454), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151680] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5137), 1, + STATE(5363), 1, sym_type_parameters, - STATE(5685), 1, + STATE(5641), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151572] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7928), 1, - anon_sym_class, - STATE(1270), 1, - sym_decorator, - STATE(3791), 1, - aux_sym_export_statement_repeat1, + [151697] = 3, + ACTIONS(6065), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151589] = 5, - ACTIONS(3), 1, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [151710] = 4, + ACTIONS(6296), 1, + anon_sym_STAR, + ACTIONS(6300), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + STATE(5786), 2, + sym_namespace_import, + sym_named_imports, + [151725] = 4, + ACTIONS(7919), 1, + anon_sym_EQ, + STATE(5159), 1, + sym__initializer, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7930), 1, - anon_sym_DQUOTE, - STATE(4406), 1, - aux_sym_string_repeat1, - ACTIONS(7797), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151606] = 5, - ACTIONS(7077), 1, + sym_comment, + ACTIONS(6711), 2, + anon_sym_in, + anon_sym_of, + [151740] = 5, + ACTIONS(7131), 1, anon_sym_COMMA, - ACTIONS(7343), 1, + ACTIONS(7921), 1, anon_sym_LBRACE, - ACTIONS(7345), 1, + ACTIONS(7923), 1, anon_sym_LBRACE_PIPE, - STATE(4365), 1, + STATE(4375), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151623] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7932), 1, + [151757] = 4, + ACTIONS(3879), 1, anon_sym_COLON, + ACTIONS(4215), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(7925), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [151772] = 4, + ACTIONS(7866), 1, + anon_sym_COMMA, + STATE(4468), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7830), 1, - anon_sym_SQUOTE, - STATE(4347), 1, - aux_sym_string_repeat2, - ACTIONS(7934), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151657] = 4, - ACTIONS(7838), 1, + sym_comment, + ACTIONS(7927), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151787] = 4, + ACTIONS(7929), 1, anon_sym_COMMA, - STATE(4411), 1, + STATE(4429), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7936), 2, + ACTIONS(7932), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151672] = 5, + [151802] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7938), 1, + ACTIONS(7854), 1, anon_sym_DQUOTE, - STATE(4433), 1, + STATE(4456), 1, aux_sym_string_repeat1, - ACTIONS(7940), 2, + ACTIONS(7802), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151689] = 5, - ACTIONS(3), 1, + [151819] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, + ACTIONS(7934), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [151836] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5193), 1, + sym_type_parameters, + STATE(5449), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151853] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7936), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [151870] = 3, ACTIONS(7938), 1, - anon_sym_SQUOTE, - STATE(4434), 1, - aux_sym_string_repeat2, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [151883] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7940), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151900] = 4, + ACTIONS(6584), 1, + anon_sym_EQ, + STATE(5420), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(7942), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151706] = 4, - ACTIONS(7838), 1, anon_sym_COMMA, - STATE(4351), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_GT, + [151915] = 4, + ACTIONS(7944), 1, + anon_sym_from, + STATE(5424), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7944), 2, + ACTIONS(4955), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151721] = 4, - ACTIONS(4536), 1, - anon_sym_COMMA, - STATE(4438), 1, - aux_sym_sequence_expression_repeat1, + [151930] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5423), 1, + sym_type_parameters, + STATE(5774), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7652), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151736] = 5, - ACTIONS(6552), 1, + [151947] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(6588), 1, + ACTIONS(6574), 1, anon_sym_extends, ACTIONS(7946), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151753] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - STATE(4406), 1, - aux_sym_string_repeat1, - ACTIONS(7797), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7948), 1, - anon_sym_SQUOTE, - STATE(4407), 1, - aux_sym_string_repeat2, - ACTIONS(7770), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151787] = 4, - ACTIONS(7838), 1, + [151964] = 4, + ACTIONS(7866), 1, anon_sym_COMMA, - STATE(4351), 1, + STATE(4469), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7950), 2, + ACTIONS(7948), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7952), 1, - anon_sym_DQUOTE, - STATE(4406), 1, - aux_sym_string_repeat1, - ACTIONS(7797), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151819] = 4, - ACTIONS(7842), 1, + [151979] = 4, + ACTIONS(7944), 1, anon_sym_from, - STATE(5191), 1, + STATE(5385), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4853), 2, + ACTIONS(7950), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151834] = 4, - ACTIONS(7954), 1, + [151994] = 4, + ACTIONS(7141), 1, + anon_sym_EQ, + STATE(5440), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7952), 2, anon_sym_COMMA, - STATE(4438), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RPAREN, + [152009] = 5, + ACTIONS(7819), 1, + sym_identifier, + ACTIONS(7821), 1, + anon_sym_const, + ACTIONS(7954), 1, + anon_sym_GT, + STATE(5110), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4914), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151849] = 2, + [152026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7956), 1, + anon_sym_DQUOTE, + STATE(4447), 1, + aux_sym_string_repeat1, + ACTIONS(7958), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152043] = 3, + ACTIONS(7960), 1, + sym_escape_sequence, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5998), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [151860] = 5, + ACTIONS(7962), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152056] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7952), 1, + ACTIONS(7956), 1, anon_sym_SQUOTE, - STATE(4407), 1, + STATE(4448), 1, aux_sym_string_repeat2, - ACTIONS(7770), 2, + ACTIONS(7965), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151877] = 5, - ACTIONS(6324), 1, - anon_sym_LPAREN, - ACTIONS(6330), 1, - anon_sym_LT, - STATE(3240), 1, - sym_arguments, - STATE(3413), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, + [152073] = 5, + ACTIONS(3), 1, sym_comment, - [151894] = 4, - ACTIONS(7842), 1, - anon_sym_from, - STATE(5133), 1, - sym__from_clause, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(7957), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151909] = 5, + ACTIONS(7967), 1, + anon_sym_DQUOTE, + STATE(4456), 1, + aux_sym_string_repeat1, + ACTIONS(7802), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152090] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7930), 1, + ACTIONS(7967), 1, anon_sym_SQUOTE, - STATE(4407), 1, + STATE(4458), 1, aux_sym_string_repeat2, - ACTIONS(7770), 2, + ACTIONS(7804), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151926] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7959), 1, - anon_sym_RPAREN, + [152107] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5226), 1, + sym_type_parameters, + STATE(5708), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151943] = 4, - ACTIONS(825), 1, + [152124] = 4, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4027), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1670), 2, + STATE(2170), 2, sym_template_string, sym_arguments, - [151958] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5183), 1, - sym_type_parameters, - STATE(5461), 1, - sym_formal_parameters, + [152139] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7969), 1, + anon_sym_class, + STATE(1267), 1, + sym_decorator, + STATE(3847), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151975] = 5, - ACTIONS(2540), 1, + [152156] = 5, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5356), 1, + STATE(5227), 1, sym_type_parameters, - STATE(5713), 1, + STATE(5536), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151992] = 5, - ACTIONS(2540), 1, + [152173] = 5, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(6416), 1, + ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(5185), 1, - sym_type_parameters, - STATE(5526), 1, + STATE(3523), 1, sym_formal_parameters, + STATE(5176), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152009] = 4, - ACTIONS(7762), 1, - anon_sym_with, - STATE(5326), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7961), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152024] = 5, - ACTIONS(1769), 1, - anon_sym_COMMA, - ACTIONS(7852), 1, - anon_sym_EQ, - ACTIONS(7963), 1, - anon_sym_RBRACK, - STATE(4894), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152041] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7965), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152058] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7967), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152075] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7969), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152092] = 4, - ACTIONS(7973), 1, - anon_sym_COMMA, - STATE(4454), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7971), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152107] = 4, - ACTIONS(7926), 1, - anon_sym_COMMA, - STATE(4420), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7976), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152122] = 5, - ACTIONS(7752), 1, - sym_identifier, - ACTIONS(7754), 1, - anon_sym_const, - ACTIONS(7978), 1, - anon_sym_GT, - STATE(5216), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152139] = 5, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, - ACTIONS(7980), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152156] = 5, - ACTIONS(4521), 1, + [152190] = 5, + ACTIONS(6643), 1, anon_sym_LPAREN, - ACTIONS(7982), 1, - anon_sym_LT, - STATE(2023), 1, - sym_arguments, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152173] = 5, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, - ACTIONS(7984), 1, - anon_sym_COLON, + ACTIONS(6645), 1, + anon_sym_LT, + STATE(2894), 1, + sym_arguments, + STATE(2980), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152190] = 5, + [152207] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7986), 1, + ACTIONS(7844), 1, + anon_sym_SQUOTE, + STATE(4405), 1, + aux_sym_string_repeat2, + ACTIONS(7971), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7973), 1, anon_sym_DQUOTE, - STATE(4467), 1, + STATE(4456), 1, aux_sym_string_repeat1, - ACTIONS(7988), 2, + ACTIONS(7975), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152207] = 5, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, - ACTIONS(7990), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152224] = 3, - ACTIONS(6061), 1, - anon_sym_EQ_GT, + [152241] = 4, + ACTIONS(7978), 1, + anon_sym_COMMA, + STATE(4457), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [152237] = 5, + ACTIONS(4821), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152256] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7986), 1, + ACTIONS(7981), 1, anon_sym_SQUOTE, - STATE(4468), 1, + STATE(4458), 1, aux_sym_string_repeat2, - ACTIONS(7992), 2, + ACTIONS(7983), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152254] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3546), 1, - sym_formal_parameters, - STATE(5210), 1, - sym_type_parameters, + [152273] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(7986), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152271] = 5, - ACTIONS(7151), 1, + [152290] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(7153), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(7155), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(7994), 1, - anon_sym_QMARK, + ACTIONS(7988), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152288] = 5, + [152307] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7768), 1, - anon_sym_DQUOTE, - STATE(4406), 1, - aux_sym_string_repeat1, - ACTIONS(7797), 2, - sym_unescaped_double_string_fragment, + ACTIONS(7872), 1, + anon_sym_SQUOTE, + STATE(4385), 1, + aux_sym_string_repeat2, + ACTIONS(7990), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [152305] = 5, + [152324] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7996), 1, + ACTIONS(7992), 1, anon_sym_DQUOTE, - STATE(4406), 1, + STATE(4464), 1, aux_sym_string_repeat1, - ACTIONS(7797), 2, + ACTIONS(7994), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152322] = 5, + [152341] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7996), 1, + ACTIONS(7992), 1, anon_sym_SQUOTE, - STATE(4407), 1, + STATE(4467), 1, aux_sym_string_repeat2, - ACTIONS(7770), 2, + ACTIONS(7996), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152339] = 5, + [152358] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, ACTIONS(7998), 1, anon_sym_DQUOTE, - STATE(4423), 1, + STATE(4456), 1, aux_sym_string_repeat1, - ACTIONS(8000), 2, + ACTIONS(7802), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152356] = 3, - ACTIONS(8002), 1, - sym_escape_sequence, + [152375] = 3, + ACTIONS(7671), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8004), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152369] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8007), 1, - anon_sym_DQUOTE, - STATE(4416), 1, - aux_sym_string_repeat1, - ACTIONS(8009), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152386] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5423), 1, - sym_type_parameters, - STATE(5606), 1, - sym_formal_parameters, + ACTIONS(4307), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152388] = 5, + ACTIONS(7819), 1, + sym_identifier, + ACTIONS(7821), 1, + anon_sym_const, + ACTIONS(8000), 1, + anon_sym_GT, + STATE(5110), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152403] = 5, + [152405] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8007), 1, + ACTIONS(7998), 1, anon_sym_SQUOTE, - STATE(4417), 1, + STATE(4458), 1, aux_sym_string_repeat2, - ACTIONS(8011), 2, + ACTIONS(7804), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152420] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5427), 1, - sym_type_parameters, - STATE(5627), 1, - sym_formal_parameters, + [152422] = 4, + ACTIONS(7866), 1, + anon_sym_COMMA, + STATE(4429), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152437] = 5, - ACTIONS(7151), 1, + ACTIONS(8002), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152437] = 4, + ACTIONS(7866), 1, + anon_sym_COMMA, + STATE(4429), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8004), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152452] = 5, + ACTIONS(6556), 1, anon_sym_AMP, - ACTIONS(7153), 1, + ACTIONS(6572), 1, anon_sym_PIPE, - ACTIONS(7155), 1, + ACTIONS(6574), 1, anon_sym_extends, - ACTIONS(8013), 1, - anon_sym_QMARK, + ACTIONS(8006), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152454] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152469] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, + ACTIONS(8008), 1, + anon_sym_QMARK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7998), 1, - anon_sym_SQUOTE, - STATE(4443), 1, - aux_sym_string_repeat2, - ACTIONS(8015), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152471] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5218), 1, - sym_type_parameters, - STATE(5687), 1, - sym_formal_parameters, + sym_comment, + [152486] = 4, + ACTIONS(7866), 1, + anon_sym_COMMA, + STATE(4391), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152488] = 5, - ACTIONS(7151), 1, + ACTIONS(8010), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152501] = 5, + ACTIONS(7059), 1, anon_sym_AMP, - ACTIONS(7153), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7155), 1, + ACTIONS(7063), 1, anon_sym_extends, - ACTIONS(8017), 1, + ACTIONS(8012), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152505] = 5, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_type_parameters, - STATE(5574), 1, - sym_formal_parameters, + [152518] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(8014), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152522] = 2, + [152535] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(8016), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8019), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152533] = 2, + [152552] = 4, + ACTIONS(7944), 1, + anon_sym_from, + STATE(5170), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8021), 3, + ACTIONS(8018), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [152543] = 2, + [152567] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, + ACTIONS(8020), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152553] = 4, - ACTIONS(8025), 1, + [152584] = 5, + ACTIONS(1889), 1, anon_sym_COMMA, - ACTIONS(8028), 1, - anon_sym_RPAREN, - STATE(4483), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(7888), 1, + anon_sym_EQ, + ACTIONS(8022), 1, + anon_sym_RBRACK, + STATE(4596), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152567] = 2, + [152601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8030), 3, + ACTIONS(8024), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [152577] = 2, + [152612] = 4, + ACTIONS(8028), 1, + anon_sym_COMMA, + STATE(4480), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, - sym__automatic_semicolon, + ACTIONS(8026), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152627] = 4, + ACTIONS(7866), 1, anon_sym_COMMA, - anon_sym_SEMI, - [152587] = 2, + STATE(4407), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8031), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [152597] = 2, + [152642] = 4, + ACTIONS(7850), 1, + anon_sym_COMMA, + STATE(4480), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152607] = 2, + ACTIONS(8033), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152657] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5432), 1, + sym_type_parameters, + STATE(5614), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152617] = 2, + [152674] = 4, + ACTIONS(7944), 1, + anon_sym_from, + STATE(5277), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(4886), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [152627] = 4, - ACTIONS(1769), 1, - anon_sym_COMMA, - ACTIONS(7963), 1, - anon_sym_RBRACK, - STATE(4894), 1, - aux_sym_array_pattern_repeat1, + [152689] = 5, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5435), 1, + sym_type_parameters, + STATE(5635), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152641] = 4, - ACTIONS(1043), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1613), 1, - anon_sym_LBRACE, - STATE(3954), 1, - sym_object_type, + [152706] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, + ACTIONS(8035), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152723] = 5, + ACTIONS(8037), 1, + sym_identifier, + STATE(4161), 1, + sym_nested_type_identifier, + STATE(4779), 1, + sym_generic_type, + STATE(5585), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152740] = 5, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, + ACTIONS(8039), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152757] = 5, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(8041), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152655] = 2, + [152774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152665] = 4, - ACTIONS(5038), 1, - anon_sym_COMMA, - ACTIONS(5040), 1, - anon_sym_RBRACK, - STATE(4878), 1, - aux_sym_array_repeat1, + [152784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152679] = 2, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152689] = 2, + [152804] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152699] = 2, + [152814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152709] = 2, + [152824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152719] = 2, + [152834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152729] = 4, - ACTIONS(1974), 1, + [152844] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8045), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5044), 1, - anon_sym_RPAREN, - STATE(4636), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [152854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152743] = 2, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152753] = 4, - ACTIONS(1974), 1, + [152874] = 4, + ACTIONS(7268), 1, anon_sym_COMMA, - ACTIONS(5044), 1, - anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, + ACTIONS(8051), 1, + anon_sym_LBRACE, + STATE(4365), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152767] = 2, + [152888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152777] = 4, - ACTIONS(5038), 1, - anon_sym_COMMA, - ACTIONS(5040), 1, - anon_sym_RBRACK, - STATE(4984), 1, - aux_sym_array_repeat1, + [152898] = 4, + ACTIONS(5129), 1, + anon_sym_extends, + ACTIONS(8053), 1, + anon_sym_AMP, + ACTIONS(8055), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152791] = 2, + [152912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152801] = 2, + [152922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152811] = 2, + [152932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152821] = 4, - ACTIONS(1769), 1, - anon_sym_COMMA, - ACTIONS(7963), 1, - anon_sym_RBRACK, - STATE(4985), 1, - aux_sym_array_pattern_repeat1, + [152942] = 3, + ACTIONS(8059), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152835] = 4, - ACTIONS(4027), 1, - anon_sym_LPAREN, - ACTIONS(8042), 1, - anon_sym_DOT, - STATE(1623), 1, - sym_arguments, + ACTIONS(7606), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [152954] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8061), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152964] = 4, + ACTIONS(8063), 1, + anon_sym_COMMA, + ACTIONS(8065), 1, + anon_sym_RBRACE, + STATE(4780), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152849] = 2, + [152978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152859] = 5, - ACTIONS(3), 1, + [152988] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + ACTIONS(8067), 1, + anon_sym_LPAREN, + STATE(772), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [153002] = 4, + ACTIONS(3200), 1, + anon_sym_GT, + ACTIONS(8069), 1, + anon_sym_COMMA, + STATE(4365), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8044), 1, - sym__glimmer_template_content, - ACTIONS(8046), 1, - sym_glimmer_closing_tag, - STATE(4987), 1, - aux_sym_glimmer_template_repeat1, - [152875] = 2, + sym_comment, + [153016] = 4, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_DOT, + STATE(1587), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, - sym__automatic_semicolon, + [153030] = 4, + ACTIONS(8073), 1, anon_sym_COMMA, - anon_sym_SEMI, - [152885] = 4, - ACTIONS(8050), 1, - sym_identifier, - ACTIONS(8052), 1, - anon_sym_LBRACK, - ACTIONS(8054), 1, - sym_private_property_identifier, + ACTIONS(8075), 1, + anon_sym_RBRACE, + STATE(4780), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152899] = 4, - ACTIONS(8056), 1, - sym_identifier, - STATE(1206), 1, - sym_decorator_member_expression, - STATE(1255), 1, - sym_decorator_call_expression, + [153044] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8047), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153054] = 4, + ACTIONS(1889), 1, + anon_sym_COMMA, + ACTIONS(7890), 1, + anon_sym_RBRACK, + STATE(4930), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152913] = 2, + [153068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152923] = 2, + [153078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152933] = 2, + [153088] = 4, + ACTIONS(5022), 1, + anon_sym_COMMA, + ACTIONS(5055), 1, + anon_sym_RBRACK, + STATE(4927), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152943] = 4, - ACTIONS(8058), 1, + [153112] = 4, + ACTIONS(7954), 1, + anon_sym_GT, + ACTIONS(8077), 1, anon_sym_COMMA, - ACTIONS(8060), 1, + STATE(4777), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153126] = 4, + ACTIONS(8079), 1, + anon_sym_COMMA, + ACTIONS(8081), 1, anon_sym_RBRACK, - STATE(4530), 1, + STATE(4533), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152957] = 4, - ACTIONS(4284), 1, + [153140] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8057), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153150] = 4, + ACTIONS(4193), 1, anon_sym_extends, - ACTIONS(8062), 1, + ACTIONS(8083), 1, anon_sym_AMP, - ACTIONS(8064), 1, + ACTIONS(8085), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152971] = 4, - ACTIONS(8066), 1, - sym_identifier, - ACTIONS(8068), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - sym_private_property_identifier, + [153164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152985] = 4, - ACTIONS(3206), 1, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153174] = 4, + ACTIONS(3198), 1, anon_sym_GT, - ACTIONS(8072), 1, + ACTIONS(8087), 1, anon_sym_COMMA, - STATE(4393), 1, + STATE(4365), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152999] = 2, + [153188] = 4, + ACTIONS(5022), 1, + anon_sym_COMMA, + ACTIONS(5055), 1, + anon_sym_RBRACK, + STATE(4621), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153009] = 4, - ACTIONS(1974), 1, + [153202] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(5070), 1, + ACTIONS(5059), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4535), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153023] = 4, - ACTIONS(1974), 1, + [153216] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(5070), 1, + ACTIONS(5059), 1, anon_sym_RPAREN, - STATE(4679), 1, + STATE(4701), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153037] = 2, + [153230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153047] = 2, + [153240] = 4, + ACTIONS(1889), 1, + anon_sym_COMMA, + ACTIONS(7890), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153057] = 2, + [153264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153067] = 4, - ACTIONS(7874), 1, - anon_sym_GT, - ACTIONS(8076), 1, + [153274] = 4, + ACTIONS(2956), 1, + anon_sym_RBRACK, + ACTIONS(8089), 1, anon_sym_COMMA, - STATE(4660), 1, - aux_sym_type_parameters_repeat1, + STATE(4959), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153081] = 2, + [153288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8091), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [153091] = 2, + [153298] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(8093), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153101] = 4, - ACTIONS(2940), 1, - anon_sym_RBRACK, - ACTIONS(8078), 1, - anon_sym_COMMA, - STATE(4921), 1, - aux_sym_tuple_type_repeat1, + [153322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153115] = 2, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153125] = 2, + [153342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [153135] = 4, - ACTIONS(1974), 1, + ACTIONS(5265), 3, anon_sym_COMMA, - ACTIONS(8082), 1, anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, + anon_sym_RBRACK, + [153352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153149] = 4, - ACTIONS(8084), 1, - sym_identifier, - ACTIONS(8086), 1, - anon_sym_LBRACK, - ACTIONS(8088), 1, - sym_private_property_identifier, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153362] = 4, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1613), 1, + anon_sym_LBRACE, + STATE(3878), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153163] = 2, + [153376] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153173] = 2, + [153386] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8090), 3, + ACTIONS(8097), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153183] = 2, + [153396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8099), 1, + sym__glimmer_template_content, + ACTIONS(8101), 1, + sym_glimmer_closing_tag, + STATE(4626), 1, + aux_sym_glimmer_template_repeat1, + [153412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8030), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153193] = 2, + [153422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8103), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [153203] = 2, + [153432] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8092), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153213] = 2, + [153442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153223] = 2, + [153452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153233] = 2, + [153462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153243] = 2, + [153472] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5051), 1, + anon_sym_RPAREN, + STATE(4714), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153253] = 2, + [153486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153263] = 2, + [153496] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5051), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153273] = 2, + [153520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153283] = 2, + [153530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153293] = 2, + [153540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153303] = 4, - ACTIONS(8094), 1, - sym_identifier, - ACTIONS(8096), 1, - anon_sym_LBRACK, - ACTIONS(8098), 1, - sym_private_property_identifier, + [153550] = 3, + ACTIONS(8107), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153317] = 2, + ACTIONS(7698), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [153562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153327] = 2, + [153572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153337] = 3, - ACTIONS(6993), 1, - anon_sym_DOT, + [153582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8102), 2, + ACTIONS(8049), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [153349] = 3, - ACTIONS(7003), 1, - anon_sym_DOT, + [153592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8102), 2, + ACTIONS(8045), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [153361] = 2, + [153602] = 3, + ACTIONS(7888), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8109), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [153614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153371] = 2, + [153624] = 4, + ACTIONS(5022), 1, + anon_sym_COMMA, + ACTIONS(8113), 1, + anon_sym_RBRACK, + STATE(4621), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153638] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153381] = 2, + [153648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153391] = 4, - ACTIONS(6324), 1, + [153658] = 4, + ACTIONS(6328), 1, anon_sym_LPAREN, - ACTIONS(8104), 1, + ACTIONS(8115), 1, anon_sym_DOT, - STATE(3285), 1, + STATE(3278), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153405] = 2, + [153672] = 4, + ACTIONS(8117), 1, + anon_sym_COMMA, + ACTIONS(8119), 1, + anon_sym_RBRACE, + STATE(4933), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153415] = 2, + [153686] = 3, + ACTIONS(8121), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8123), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153425] = 2, + [153698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153435] = 2, + [153708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153445] = 2, + [153718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153455] = 2, + [153728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153465] = 4, - ACTIONS(8108), 1, - sym_identifier, - ACTIONS(8110), 1, - anon_sym_require, - STATE(5048), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153479] = 2, + [153738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153489] = 4, - ACTIONS(8112), 1, + [153748] = 4, + ACTIONS(8127), 1, anon_sym_COMMA, - ACTIONS(8114), 1, + ACTIONS(8129), 1, anon_sym_RBRACK, - STATE(4580), 1, + STATE(4592), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153503] = 4, - ACTIONS(6759), 1, + [153762] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8131), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153772] = 4, + ACTIONS(6781), 1, anon_sym_AMP, - ACTIONS(6761), 1, + ACTIONS(6783), 1, anon_sym_PIPE, - ACTIONS(6763), 1, + ACTIONS(6785), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153517] = 4, - ACTIONS(3208), 1, + [153786] = 4, + ACTIONS(3210), 1, anon_sym_GT, - ACTIONS(8116), 1, + ACTIONS(8133), 1, anon_sym_COMMA, - STATE(4393), 1, + STATE(4365), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153531] = 2, + [153800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153541] = 4, - ACTIONS(1974), 1, + [153810] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(5072), 1, + ACTIONS(5119), 1, anon_sym_RPAREN, - STATE(4581), 1, + STATE(4594), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153555] = 4, - ACTIONS(1974), 1, + [153824] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(5072), 1, + ACTIONS(5119), 1, anon_sym_RPAREN, - STATE(4679), 1, + STATE(4701), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153569] = 2, + [153838] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153848] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153579] = 2, + [153858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153589] = 2, + [153868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153599] = 4, - ACTIONS(8118), 1, + [153878] = 4, + ACTIONS(8135), 1, sym_identifier, - ACTIONS(8120), 1, + ACTIONS(8137), 1, anon_sym_LBRACK, - ACTIONS(8122), 1, + ACTIONS(8139), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153613] = 4, - ACTIONS(8124), 1, + [153892] = 4, + ACTIONS(8141), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(8143), 1, anon_sym_LBRACK, - ACTIONS(8128), 1, + ACTIONS(8145), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153627] = 4, - ACTIONS(8130), 1, + [153906] = 4, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8132), 1, + ACTIONS(8149), 1, anon_sym_LBRACK, - ACTIONS(8134), 1, + ACTIONS(8151), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153641] = 4, - ACTIONS(8136), 1, + [153920] = 4, + ACTIONS(8153), 1, sym_identifier, - ACTIONS(8138), 1, + ACTIONS(8155), 1, anon_sym_LBRACK, - ACTIONS(8140), 1, + ACTIONS(8157), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153655] = 2, + [153934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153665] = 4, - ACTIONS(2946), 1, + [153944] = 4, + ACTIONS(2944), 1, anon_sym_RBRACK, - ACTIONS(8142), 1, + ACTIONS(8159), 1, anon_sym_COMMA, - STATE(4921), 1, + STATE(4959), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153679] = 4, - ACTIONS(1974), 1, + [153958] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153968] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(8144), 1, + ACTIONS(8161), 1, anon_sym_RPAREN, - STATE(4679), 1, + STATE(4701), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153693] = 2, + [153982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153703] = 4, - ACTIONS(8148), 1, + [153992] = 4, + ACTIONS(1889), 1, anon_sym_COMMA, - ACTIONS(8150), 1, - anon_sym_RBRACE, - STATE(5024), 1, - aux_sym_named_imports_repeat1, + ACTIONS(8165), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153717] = 2, + [154006] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153727] = 2, + [154016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153737] = 2, + [154026] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153747] = 2, + [154036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153757] = 2, + [154046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153767] = 2, + [154056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153777] = 2, + [154066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153787] = 2, + [154076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8171), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153797] = 4, - ACTIONS(8152), 1, - anon_sym_COMMA, - ACTIONS(8154), 1, - anon_sym_RBRACK, - STATE(4627), 1, - aux_sym_tuple_type_repeat1, + [154086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153811] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8034), 3, + ACTIONS(8171), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153821] = 2, + [154096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8173), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153831] = 2, + [154106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153841] = 2, + [154116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153851] = 2, + [154126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153861] = 2, + [154136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153871] = 2, + [154146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153881] = 2, + [154156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153891] = 2, + [154166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153901] = 2, + [154176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153911] = 2, + [154186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153921] = 2, + [154196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153931] = 2, + [154206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153941] = 2, + [154216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153951] = 2, + ACTIONS(7115), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [154226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7779), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153961] = 2, + [154236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153971] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8040), 3, - sym__automatic_semicolon, + [154246] = 4, + ACTIONS(5265), 1, + anon_sym_RBRACK, + ACTIONS(8175), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153981] = 2, + STATE(4621), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153991] = 4, - ACTIONS(2944), 1, + [154260] = 4, + ACTIONS(8109), 1, anon_sym_RBRACK, - ACTIONS(8156), 1, + ACTIONS(8178), 1, anon_sym_COMMA, - STATE(4921), 1, - aux_sym_tuple_type_repeat1, + STATE(4622), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154005] = 2, + [154274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154015] = 2, + [154284] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154025] = 2, + [154294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8171), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154035] = 2, + [154304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8181), 1, + sym__glimmer_template_content, + ACTIONS(8184), 1, + sym_glimmer_closing_tag, + STATE(4626), 1, + aux_sym_glimmer_template_repeat1, + [154320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154045] = 4, - ACTIONS(3186), 1, - anon_sym_GT, - ACTIONS(8158), 1, - anon_sym_COMMA, - STATE(4393), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154059] = 2, + [154330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8171), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154069] = 4, - ACTIONS(1974), 1, + [154340] = 4, + ACTIONS(3192), 1, + anon_sym_GT, + ACTIONS(8186), 1, anon_sym_COMMA, - ACTIONS(5074), 1, - anon_sym_RPAREN, - STATE(4622), 1, - aux_sym_array_repeat1, + STATE(4365), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154083] = 4, - ACTIONS(1974), 1, + [154354] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(5074), 1, + ACTIONS(5053), 1, anon_sym_RPAREN, - STATE(4679), 1, + STATE(4635), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154097] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154107] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8032), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154117] = 4, - ACTIONS(1974), 1, + [154368] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(8160), 1, + ACTIONS(5053), 1, anon_sym_RPAREN, - STATE(4679), 1, + STATE(4701), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154131] = 2, + [154382] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8173), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154141] = 3, - ACTIONS(8162), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7622), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [154153] = 2, + [154392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8164), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154163] = 2, + [154402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154173] = 4, - ACTIONS(2948), 1, - anon_sym_RBRACK, - ACTIONS(8166), 1, + [154412] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - STATE(4921), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154187] = 4, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - STATE(4855), 1, - sym_string, + ACTIONS(8188), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154201] = 2, + [154426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154211] = 4, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(5076), 1, - anon_sym_RPAREN, - STATE(4632), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154225] = 4, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(5076), 1, - anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, + [154436] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154239] = 4, - ACTIONS(1974), 1, + ACTIONS(8169), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8168), 1, - anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154253] = 4, - ACTIONS(1043), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1613), 1, - anon_sym_LBRACE, - STATE(4008), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154267] = 2, + anon_sym_SEMI, + [154446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154277] = 4, - ACTIONS(8170), 1, - anon_sym_COMMA, - ACTIONS(8172), 1, - anon_sym_RBRACE, - STATE(4706), 1, - aux_sym_enum_body_repeat1, + [154456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154291] = 4, - ACTIONS(1974), 1, + ACTIONS(8169), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8174), 1, - anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [154466] = 3, + ACTIONS(7019), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154305] = 2, + ACTIONS(8190), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154478] = 3, + ACTIONS(7021), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8190), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154315] = 2, + [154490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154325] = 4, - ACTIONS(8176), 1, - anon_sym_LPAREN, - ACTIONS(8178), 1, - anon_sym_await, - STATE(58), 1, - sym__for_header, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154339] = 2, + [154500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154349] = 2, + [154510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154359] = 2, + [154520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154369] = 4, - ACTIONS(7842), 1, - anon_sym_from, - ACTIONS(8180), 1, - anon_sym_as, - STATE(5108), 1, - sym__from_clause, + [154530] = 4, + ACTIONS(1889), 1, + anon_sym_COMMA, + ACTIONS(8022), 1, + anon_sym_RBRACK, + STATE(4596), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154383] = 4, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(8182), 1, - sym_identifier, - STATE(4387), 1, - sym_export_clause, + [154544] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4973), 1, + anon_sym_RPAREN, + STATE(4650), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154397] = 4, - ACTIONS(6552), 1, - anon_sym_AMP, - ACTIONS(6586), 1, - anon_sym_PIPE, - ACTIONS(6588), 1, - anon_sym_extends, + [154558] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4973), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154411] = 2, + [154572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154421] = 4, - ACTIONS(5127), 1, + [154582] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(8184), 1, - anon_sym_RBRACE, - STATE(4933), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(8194), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154435] = 2, + [154596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154445] = 2, + [154606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154455] = 2, + [154616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154465] = 2, + [154626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154475] = 2, + [154636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154485] = 4, - ACTIONS(7842), 1, - anon_sym_from, - ACTIONS(8180), 1, - anon_sym_as, - STATE(5162), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154499] = 4, - ACTIONS(7752), 1, - sym_identifier, - ACTIONS(7754), 1, - anon_sym_const, - STATE(4666), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154513] = 2, + [154646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154523] = 2, + [154656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154533] = 4, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(8186), 1, - anon_sym_DOT, - STATE(2038), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154547] = 4, - ACTIONS(6004), 1, - anon_sym_LPAREN, - ACTIONS(8188), 1, - anon_sym_DOT, - STATE(2904), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154561] = 2, + [154666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154571] = 4, - ACTIONS(8190), 1, - anon_sym_COMMA, - ACTIONS(8193), 1, - anon_sym_GT, - STATE(4660), 1, - aux_sym_type_parameters_repeat1, + [154676] = 4, + ACTIONS(8196), 1, + anon_sym_LPAREN, + ACTIONS(8198), 1, + anon_sym_await, + STATE(43), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154585] = 2, + [154690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154595] = 2, + [154700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154605] = 2, + [154710] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154615] = 2, + [154720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8200), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154625] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1553), 1, - anon_sym_LBRACE, - STATE(835), 1, - sym_object_type, + [154730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154639] = 4, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8197), 1, - anon_sym_GT, - STATE(4527), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154653] = 4, - ACTIONS(8199), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, - anon_sym_RBRACE, - STATE(4936), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154667] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8036), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154677] = 2, + [154740] = 4, + ACTIONS(7944), 1, + anon_sym_from, + ACTIONS(8202), 1, + anon_sym_as, + STATE(5137), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154687] = 4, - ACTIONS(6749), 1, - anon_sym_implements, - ACTIONS(8203), 1, + [154754] = 4, + ACTIONS(2282), 1, anon_sym_LBRACE, - STATE(5751), 1, - sym_implements_clause, + ACTIONS(8204), 1, + sym_identifier, + STATE(4437), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154701] = 2, + [154768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154711] = 2, + [154778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154721] = 4, - ACTIONS(1974), 1, + [154788] = 4, + ACTIONS(5022), 1, anon_sym_COMMA, - ACTIONS(8205), 1, - anon_sym_RPAREN, - STATE(4679), 1, + ACTIONS(5024), 1, + anon_sym_RBRACK, + STATE(4565), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154735] = 2, + [154802] = 3, + ACTIONS(8208), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8207), 3, - sym__automatic_semicolon, + ACTIONS(8210), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154745] = 2, + anon_sym_RBRACE, + [154814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 3, + ACTIONS(8212), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154755] = 2, + [154824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154765] = 4, - ACTIONS(2504), 1, - anon_sym_while, - ACTIONS(8209), 1, - anon_sym_else, - STATE(902), 1, - sym_else_clause, + [154834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154779] = 2, + ACTIONS(8214), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [154844] = 4, + ACTIONS(7819), 1, + sym_identifier, + ACTIONS(7821), 1, + anon_sym_const, + STATE(4737), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, - sym__automatic_semicolon, + [154858] = 4, + ACTIONS(8216), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154789] = 4, - ACTIONS(5282), 1, + ACTIONS(8218), 1, anon_sym_RPAREN, - ACTIONS(8211), 1, - anon_sym_COMMA, - STATE(4679), 1, - aux_sym_array_repeat1, + STATE(4905), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154803] = 2, + [154872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154813] = 2, + [154882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8200), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154823] = 2, + [154892] = 4, + ACTIONS(6024), 1, + anon_sym_LPAREN, + ACTIONS(8220), 1, + anon_sym_DOT, + STATE(2903), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154833] = 2, + [154906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8222), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154843] = 2, + [154916] = 4, + ACTIONS(8224), 1, + sym_identifier, + STATE(3765), 1, + sym_decorator_member_expression, + STATE(5709), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, - sym__automatic_semicolon, + [154930] = 4, + ACTIONS(5022), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154853] = 4, - ACTIONS(7250), 1, - anon_sym_AMP, - ACTIONS(7254), 1, - anon_sym_PIPE, - ACTIONS(7256), 1, - anon_sym_extends, + ACTIONS(5024), 1, + anon_sym_RBRACK, + STATE(4621), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154867] = 2, + [154944] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8226), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154877] = 2, + [154954] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8228), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154887] = 2, + [154964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154897] = 2, + [154974] = 4, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(8230), 1, + anon_sym_RBRACE, + STATE(4774), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154907] = 2, + [154988] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154917] = 2, + [154998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8226), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154927] = 2, + [155008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8200), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154937] = 2, + [155018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154947] = 2, + [155028] = 4, + ACTIONS(2946), 1, + anon_sym_RBRACK, + ACTIONS(8234), 1, + anon_sym_COMMA, + STATE(4959), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154957] = 2, + [155042] = 4, + ACTIONS(2708), 1, + anon_sym_LT, + ACTIONS(8236), 1, + anon_sym_EQ, + STATE(5636), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, - sym__automatic_semicolon, + [155056] = 4, + ACTIONS(5186), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154967] = 2, + ACTIONS(8238), 1, + anon_sym_RBRACE, + STATE(4776), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154977] = 2, + [155080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154987] = 2, + [155090] = 4, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(8220), 1, + anon_sym_DOT, + STATE(2903), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, - sym__automatic_semicolon, + [155104] = 4, + ACTIONS(1889), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154997] = 2, + ACTIONS(8022), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + [155118] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155007] = 2, + [155128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155017] = 2, + [155138] = 4, + ACTIONS(2490), 1, + anon_sym_while, + ACTIONS(8242), 1, + anon_sym_else, + STATE(829), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8214), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [155027] = 2, + [155152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155037] = 4, - ACTIONS(8216), 1, + [155162] = 4, + ACTIONS(5265), 1, + anon_sym_RPAREN, + ACTIONS(8244), 1, anon_sym_COMMA, - ACTIONS(8218), 1, - anon_sym_RBRACE, - STATE(5000), 1, - aux_sym_enum_body_repeat1, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155051] = 2, - ACTIONS(5), 2, - sym_html_comment, + [155176] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7145), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [155061] = 4, - ACTIONS(8220), 1, - anon_sym_COMMA, - ACTIONS(8222), 1, - anon_sym_RBRACE, - STATE(4860), 1, - aux_sym_export_clause_repeat1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8099), 1, + sym__glimmer_template_content, + ACTIONS(8247), 1, + sym_glimmer_closing_tag, + STATE(4626), 1, + aux_sym_glimmer_template_repeat1, + [155192] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155075] = 4, - ACTIONS(8224), 1, + ACTIONS(8249), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8226), 1, - anon_sym_RBRACE, - STATE(5000), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [155202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155089] = 4, - ACTIONS(5349), 1, + ACTIONS(8057), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8228), 1, - anon_sym_RBRACE, - STATE(4941), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [155212] = 4, + ACTIONS(8251), 1, + sym_identifier, + ACTIONS(8253), 1, + anon_sym_LBRACK, + ACTIONS(8255), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155103] = 3, - ACTIONS(8230), 1, - anon_sym_as, + [155226] = 4, + ACTIONS(8257), 1, + sym_identifier, + ACTIONS(8259), 1, + anon_sym_LBRACK, + ACTIONS(8261), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8232), 2, + [155240] = 4, + ACTIONS(8263), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [155115] = 2, + ACTIONS(8265), 1, + anon_sym_RBRACK, + STATE(4748), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155125] = 4, - ACTIONS(3204), 1, - anon_sym_GT, - ACTIONS(8234), 1, - anon_sym_COMMA, - STATE(4393), 1, - aux_sym_implements_clause_repeat1, + [155254] = 4, + ACTIONS(7214), 1, + anon_sym_AMP, + ACTIONS(7216), 1, + anon_sym_PIPE, + ACTIONS(7218), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155139] = 2, + [155268] = 4, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1613), 1, + anon_sym_LBRACE, + STATE(3931), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8236), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155149] = 2, + [155282] = 4, + ACTIONS(8267), 1, + sym_identifier, + ACTIONS(8269), 1, + anon_sym_LBRACK, + ACTIONS(8271), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8238), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155159] = 2, + [155296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -263003,5349 +263153,5328 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155169] = 2, + [155306] = 4, + ACTIONS(8273), 1, + anon_sym_COMMA, + ACTIONS(8275), 1, + anon_sym_RBRACE, + STATE(4762), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8242), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [155179] = 2, + [155320] = 4, + ACTIONS(8277), 1, + sym_identifier, + ACTIONS(8279), 1, + anon_sym_LBRACK, + ACTIONS(8281), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8244), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155189] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8246), 1, - sym__glimmer_template_content, - ACTIONS(8248), 1, - sym_glimmer_closing_tag, - STATE(4982), 1, - aux_sym_glimmer_template_repeat1, - [155205] = 4, - ACTIONS(8250), 1, + [155334] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RBRACE, - STATE(4717), 1, - aux_sym_export_clause_repeat1, + ACTIONS(8283), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155219] = 2, + [155348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8285), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155229] = 2, + [155358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155239] = 2, + [155368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8287), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155249] = 2, + [155378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155259] = 2, + [155388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155269] = 2, + [155398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155279] = 2, + [155408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8289), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155289] = 2, + [155418] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8291), 1, + sym__glimmer_template_content, + ACTIONS(8293), 1, + sym_glimmer_closing_tag, + STATE(4544), 1, + aux_sym_glimmer_template_repeat1, + [155434] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8289), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155299] = 2, + [155444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8295), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155309] = 2, + [155454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8164), 3, + ACTIONS(8297), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155319] = 2, + [155464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(7482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155329] = 2, + [155474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155339] = 2, + [155484] = 4, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(8299), 1, + anon_sym_DOT, + STATE(2153), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155349] = 2, + [155498] = 4, + ACTIONS(6556), 1, + anon_sym_AMP, + ACTIONS(6572), 1, + anon_sym_PIPE, + ACTIONS(6574), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8285), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155359] = 2, + [155522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155369] = 2, + [155532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155379] = 2, + [155542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8301), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155389] = 2, + [155552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155399] = 2, + [155562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155409] = 2, + [155572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155419] = 2, + [155582] = 4, + ACTIONS(8303), 1, + anon_sym_COMMA, + ACTIONS(8305), 1, + anon_sym_GT, + STATE(4520), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155429] = 2, + [155606] = 4, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(8307), 1, + anon_sym_RBRACE, + STATE(4776), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155439] = 2, + [155630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155449] = 2, + [155640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8261), 3, + ACTIONS(8240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155459] = 2, + [155650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155469] = 4, - ACTIONS(7799), 1, - anon_sym_GT, - ACTIONS(8263), 1, - anon_sym_COMMA, - STATE(4660), 1, - aux_sym_type_parameters_repeat1, + [155660] = 3, + ACTIONS(8309), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155483] = 2, + ACTIONS(3647), 2, + anon_sym_in, + anon_sym_of, + [155672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8265), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155493] = 2, + [155682] = 4, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(8311), 1, + anon_sym_RBRACE, + STATE(4774), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, - sym__automatic_semicolon, + [155696] = 4, + ACTIONS(8313), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155503] = 4, - ACTIONS(8267), 1, - sym_identifier, - ACTIONS(8269), 1, - anon_sym_LBRACK, - ACTIONS(8271), 1, - sym_private_property_identifier, + ACTIONS(8315), 1, + anon_sym_GT, + STATE(4756), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155517] = 2, + [155710] = 4, + ACTIONS(2950), 1, + anon_sym_RBRACK, + ACTIONS(8317), 1, + anon_sym_COMMA, + STATE(4959), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, - sym__automatic_semicolon, + [155724] = 4, + ACTIONS(3202), 1, + anon_sym_GT, + ACTIONS(8319), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155527] = 2, + STATE(4365), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155537] = 2, + [155738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155547] = 2, + [155748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155557] = 2, + [155758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155567] = 2, + [155768] = 4, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(8238), 1, + anon_sym_RBRACE, + STATE(4739), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, - sym__automatic_semicolon, + [155782] = 4, + ACTIONS(4127), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155577] = 2, + ACTIONS(7693), 1, + anon_sym_RPAREN, + STATE(4948), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155587] = 4, - ACTIONS(8273), 1, + [155796] = 4, + ACTIONS(8321), 1, anon_sym_LPAREN, - ACTIONS(8275), 1, + ACTIONS(8323), 1, anon_sym_await, - STATE(46), 1, + STATE(37), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155601] = 2, + [155810] = 4, + ACTIONS(8000), 1, + anon_sym_GT, + ACTIONS(8325), 1, + anon_sym_COMMA, + STATE(4777), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155611] = 4, - ACTIONS(6424), 1, - anon_sym_type, - ACTIONS(8277), 1, - sym_identifier, - STATE(5295), 1, - sym__import_identifier, + [155824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155625] = 4, - ACTIONS(6424), 1, - anon_sym_type, - ACTIONS(8279), 1, - sym_identifier, - STATE(5296), 1, - sym__import_identifier, + ACTIONS(8111), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155639] = 2, + ACTIONS(8111), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155649] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1553), 1, - anon_sym_LBRACE, - STATE(801), 1, - sym_object_type, + [155854] = 4, + ACTIONS(8327), 1, + anon_sym_COMMA, + ACTIONS(8329), 1, + anon_sym_RBRACE, + STATE(4780), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155663] = 2, + [155868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155673] = 4, - ACTIONS(8281), 1, + [155878] = 4, + ACTIONS(8331), 1, anon_sym_COMMA, - ACTIONS(8284), 1, + ACTIONS(8333), 1, anon_sym_RBRACE, - STATE(4761), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155687] = 4, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1563), 1, - anon_sym_SQUOTE, - STATE(5509), 1, - sym_string, + STATE(4780), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155701] = 2, + [155892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155711] = 2, + [155902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155721] = 2, + [155912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155731] = 2, + [155922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(6037), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155741] = 2, + [155932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155751] = 2, + [155942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155761] = 2, + [155952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155771] = 2, + [155962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155781] = 2, + [155972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155791] = 2, + [155982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155801] = 2, + [155992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155811] = 4, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(8286), 1, - sym_identifier, - STATE(4437), 1, - sym_export_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155825] = 4, - ACTIONS(4914), 1, - anon_sym_RPAREN, - ACTIONS(8288), 1, + [156002] = 4, + ACTIONS(8335), 1, anon_sym_COMMA, - STATE(4775), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(8338), 1, + anon_sym_RBRACE, + STATE(4774), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155839] = 2, + [156016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155849] = 2, + [156026] = 4, + ACTIONS(8340), 1, + anon_sym_COMMA, + ACTIONS(8343), 1, + anon_sym_RBRACE, + STATE(4776), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, + [156040] = 4, + ACTIONS(8345), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155859] = 4, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(8188), 1, - anon_sym_DOT, - STATE(2904), 1, - sym_arguments, + ACTIONS(8348), 1, + anon_sym_GT, + STATE(4777), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155873] = 2, + [156054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155883] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7127), 3, + [156064] = 3, + ACTIONS(7702), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [155893] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, + ACTIONS(7704), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155903] = 2, + anon_sym_LBRACE_PIPE, + [156076] = 4, + ACTIONS(8350), 1, + anon_sym_COMMA, + ACTIONS(8353), 1, + anon_sym_RBRACE, + STATE(4780), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155913] = 4, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(5017), 1, - anon_sym_RPAREN, - STATE(4673), 1, - aux_sym_array_repeat1, + [156090] = 4, + ACTIONS(6643), 1, + anon_sym_LPAREN, + ACTIONS(8220), 1, + anon_sym_DOT, + STATE(2903), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155927] = 4, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(5017), 1, - anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, + [156104] = 4, + ACTIONS(219), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1565), 1, + anon_sym_LBRACE, + STATE(854), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155941] = 2, + [156118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155951] = 2, + [156128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155961] = 2, + [156138] = 4, + ACTIONS(8355), 1, + anon_sym_COMMA, + ACTIONS(8357), 1, + anon_sym_RBRACE, + STATE(4513), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155971] = 2, + [156152] = 4, + ACTIONS(8359), 1, + sym_identifier, + ACTIONS(8361), 1, + anon_sym_LBRACK, + ACTIONS(8363), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155981] = 2, + [156166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155991] = 2, + [156176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7657), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156001] = 2, + [156186] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(8365), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156011] = 2, + [156200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156021] = 4, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(8291), 1, - anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, + [156210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156035] = 4, - ACTIONS(3516), 1, + ACTIONS(7089), 3, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(8293), 1, - anon_sym_RPAREN, - STATE(5531), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156049] = 2, + anon_sym_EQ_GT, + [156220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156059] = 4, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_object_pattern_repeat1, + [156230] = 4, + ACTIONS(219), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1565), 1, + anon_sym_LBRACE, + STATE(898), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156073] = 4, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_RBRACE, - STATE(4824), 1, - aux_sym_object_pattern_repeat1, + [156244] = 4, + ACTIONS(8367), 1, + sym_identifier, + STATE(3840), 1, + sym_decorator_member_expression, + STATE(5757), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156087] = 2, + [156258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156097] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8259), 3, - sym__automatic_semicolon, + [156268] = 4, + ACTIONS(5431), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156107] = 2, + ACTIONS(8230), 1, + anon_sym_RBRACE, + STATE(4746), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156117] = 2, + [156282] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7657), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156127] = 2, + [156292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, + ACTIONS(6550), 3, anon_sym_COMMA, - anon_sym_SEMI, - [156137] = 2, + anon_sym_RBRACE, + anon_sym_from, + [156302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156147] = 2, + [156312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8222), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156157] = 2, + [156322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156167] = 2, + [156332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156177] = 2, + [156342] = 4, + ACTIONS(8371), 1, + anon_sym_COMMA, + ACTIONS(8374), 1, + anon_sym_RPAREN, + STATE(4803), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156187] = 2, + [156356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156197] = 2, + [156366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156207] = 2, + [156376] = 3, + ACTIONS(8376), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, + ACTIONS(8378), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156217] = 2, + anon_sym_from, + [156388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8299), 3, + ACTIONS(8380), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156227] = 2, + [156398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156237] = 2, + [156408] = 4, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(8384), 1, + anon_sym_RBRACE, + STATE(4829), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156247] = 2, + [156422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [156257] = 2, + [156432] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8261), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156267] = 2, + [156442] = 4, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(8390), 1, + anon_sym_RBRACE, + STATE(4834), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156277] = 2, + [156456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156287] = 4, - ACTIONS(5349), 1, + [156466] = 4, + ACTIONS(8392), 1, anon_sym_COMMA, - ACTIONS(8301), 1, + ACTIONS(8395), 1, anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, + STATE(4814), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156301] = 2, + [156480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156311] = 4, - ACTIONS(5127), 1, + [156490] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8399), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [156500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156325] = 2, + ACTIONS(8397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156335] = 2, + [156520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8299), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156345] = 2, + [156530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156355] = 4, - ACTIONS(5127), 1, + [156540] = 4, + ACTIONS(5431), 1, anon_sym_COMMA, - ACTIONS(8305), 1, + ACTIONS(8405), 1, anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_object_pattern_repeat1, + STATE(4774), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156369] = 2, + [156554] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156379] = 4, - ACTIONS(5349), 1, + [156564] = 4, + ACTIONS(5186), 1, anon_sym_COMMA, - ACTIONS(8307), 1, + ACTIONS(8407), 1, anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, + STATE(4776), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156393] = 2, + [156578] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8309), 3, + ACTIONS(8409), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156403] = 2, + [156588] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8299), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156413] = 2, + [156598] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156423] = 2, + [156608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156433] = 2, + [156618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156443] = 2, + [156628] = 4, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(8413), 1, + anon_sym_RBRACE, + STATE(4776), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156453] = 2, + [156642] = 3, + ACTIONS(8415), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, - sym__automatic_semicolon, + ACTIONS(8378), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156463] = 2, + anon_sym_RBRACE, + [156654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156473] = 2, + [156664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156483] = 4, - ACTIONS(5349), 1, + [156674] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(8228), 1, + ACTIONS(5123), 1, + anon_sym_RPAREN, + STATE(4789), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156688] = 4, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(8417), 1, anon_sym_RBRACE, - STATE(4945), 1, + STATE(4774), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156497] = 2, + [156702] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156507] = 2, + [156712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8419), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156517] = 2, + [156722] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156527] = 2, + [156732] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156537] = 2, + [156742] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8409), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156547] = 2, + [156752] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5123), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156557] = 2, + [156766] = 3, + ACTIONS(7151), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(3647), 2, + anon_sym_in, + anon_sym_of, + [156778] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156567] = 4, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(8315), 1, - anon_sym_RBRACE, - STATE(4826), 1, - aux_sym_object_repeat1, + [156788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156581] = 2, + ACTIONS(8105), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156591] = 2, + [156808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8259), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156601] = 2, + [156818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156611] = 2, + [156828] = 4, + ACTIONS(8423), 1, + anon_sym_COMMA, + ACTIONS(8425), 1, + anon_sym_RBRACE, + STATE(5065), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156621] = 2, + [156852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156631] = 2, + [156862] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156641] = 2, + [156872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156651] = 2, + [156882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156661] = 2, + [156892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156671] = 2, + [156902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8255), 3, + ACTIONS(8427), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156681] = 2, + [156912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8321), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [156691] = 2, + [156922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8323), 3, + ACTIONS(8409), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156701] = 3, - ACTIONS(8325), 1, + [156932] = 4, + ACTIONS(7944), 1, + anon_sym_from, + ACTIONS(8202), 1, anon_sym_as, + STATE(5401), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8327), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [156713] = 2, + [156946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8329), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [156723] = 2, + ACTIONS(7065), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [156956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156733] = 4, - ACTIONS(6867), 1, - anon_sym_RBRACE, - ACTIONS(8331), 1, - anon_sym_COMMA, - STATE(4717), 1, - aux_sym_export_clause_repeat1, + [156966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156747] = 2, + ACTIONS(8095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8333), 3, - anon_sym_LBRACE, + ACTIONS(8057), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [156757] = 2, + anon_sym_SEMI, + [156986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156767] = 2, + [156996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156777] = 4, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(8315), 1, - anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, + [157006] = 3, + ACTIONS(8429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156791] = 3, - ACTIONS(8337), 1, - anon_sym_LBRACE, + ACTIONS(8378), 2, + anon_sym_COMMA, + anon_sym_from, + [157018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7706), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [156803] = 4, - ACTIONS(5127), 1, + ACTIONS(8401), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [157028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156817] = 2, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156827] = 2, + [157048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156837] = 4, - ACTIONS(8339), 1, + [157058] = 4, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(8431), 1, sym_identifier, - STATE(2657), 1, - sym_decorator_member_expression, - STATE(2771), 1, - sym_decorator_call_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156851] = 4, - ACTIONS(3497), 1, - anon_sym_LPAREN, - ACTIONS(8188), 1, - anon_sym_DOT, - STATE(2904), 1, - sym_arguments, + STATE(4484), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156865] = 2, + [157072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156875] = 2, + [157082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156885] = 2, + [157092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156895] = 2, + [157102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8341), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156905] = 4, - ACTIONS(1681), 1, - anon_sym_RPAREN, - ACTIONS(8343), 1, + [157112] = 4, + ACTIONS(5431), 1, anon_sym_COMMA, - STATE(4483), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8390), 1, + anon_sym_RBRACE, + STATE(4774), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156919] = 2, + [157126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156929] = 2, + [157136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8341), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156939] = 4, - ACTIONS(5038), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_RBRACK, - STATE(4984), 1, - aux_sym_array_repeat1, + [157146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156953] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8347), 3, + ACTIONS(8222), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156963] = 2, + [157156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8409), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156973] = 2, + [157166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156983] = 2, + [157176] = 4, + ACTIONS(5186), 1, + anon_sym_COMMA, + ACTIONS(8384), 1, + anon_sym_RBRACE, + STATE(4776), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8349), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156993] = 2, + [157190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157003] = 2, + [157200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8409), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157013] = 2, + [157210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157023] = 2, + [157220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157033] = 2, + [157230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157043] = 2, + [157240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157053] = 2, + [157250] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157063] = 2, + [157260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157073] = 2, + [157270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157083] = 2, + [157280] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157093] = 2, + [157290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8341), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157103] = 4, - ACTIONS(1769), 1, - anon_sym_COMMA, - ACTIONS(8351), 1, - anon_sym_RBRACK, - STATE(4985), 1, - aux_sym_array_pattern_repeat1, + [157300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8435), 1, + sym__glimmer_template_content, + ACTIONS(8437), 1, + sym_glimmer_closing_tag, + STATE(4702), 1, + aux_sym_glimmer_template_repeat1, + [157316] = 4, + ACTIONS(7819), 1, + sym_identifier, + ACTIONS(7821), 1, + anon_sym_const, + STATE(4747), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157117] = 2, + [157330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8341), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157127] = 2, + [157340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8347), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157137] = 2, + [157350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157147] = 2, + [157360] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157157] = 2, + [157370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157167] = 2, + [157380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157177] = 2, + [157390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157187] = 2, + [157400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157197] = 2, + [157410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157207] = 2, + ACTIONS(7067), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157420] = 4, + ACTIONS(8439), 1, + sym_identifier, + ACTIONS(8441), 1, + anon_sym_LBRACK, + ACTIONS(8443), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8335), 3, + [157434] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157217] = 2, + [157444] = 4, + ACTIONS(1673), 1, + anon_sym_RPAREN, + ACTIONS(8445), 1, + anon_sym_COMMA, + STATE(4803), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8353), 3, + [157458] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157227] = 2, + [157468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8353), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157237] = 2, + [157478] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8353), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157247] = 2, + [157488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8353), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157257] = 4, - ACTIONS(7376), 1, - anon_sym_COMMA, - ACTIONS(8355), 1, + [157498] = 3, + ACTIONS(8447), 1, anon_sym_LBRACE, - STATE(4393), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157271] = 4, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_RBRACE, - STATE(4951), 1, - aux_sym_object_repeat1, + ACTIONS(7683), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [157510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157285] = 4, - ACTIONS(2540), 1, - anon_sym_LT, - ACTIONS(8359), 1, - anon_sym_EQ, - STATE(5491), 1, - sym_type_parameters, + ACTIONS(8409), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157299] = 2, + ACTIONS(8401), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157530] = 4, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_RBRACE, + STATE(4947), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157309] = 3, - ACTIONS(7852), 1, - anon_sym_EQ, + [157544] = 3, + ACTIONS(8451), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8361), 2, + ACTIONS(8453), 2, anon_sym_COMMA, anon_sym_RBRACE, - [157321] = 4, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, + [157556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157335] = 2, + ACTIONS(8455), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [157566] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8363), 3, + ACTIONS(8401), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157345] = 3, - ACTIONS(8365), 1, - anon_sym_EQ, + [157576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3641), 2, - anon_sym_in, - anon_sym_of, - [157357] = 2, + ACTIONS(8045), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8207), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157367] = 4, - ACTIONS(8367), 1, + [157596] = 4, + ACTIONS(5431), 1, anon_sym_COMMA, - ACTIONS(8369), 1, + ACTIONS(8449), 1, + anon_sym_RBRACE, + STATE(4774), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157610] = 4, + ACTIONS(1677), 1, anon_sym_RPAREN, - STATE(4956), 1, + ACTIONS(8457), 1, + anon_sym_COMMA, + STATE(4803), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157381] = 2, + [157624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8403), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157391] = 2, + [157634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157401] = 4, - ACTIONS(8371), 1, + [157644] = 4, + ACTIONS(8459), 1, anon_sym_COMMA, - ACTIONS(8374), 1, - anon_sym_RBRACK, - STATE(4921), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157415] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8376), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [157425] = 2, + ACTIONS(8461), 1, + anon_sym_RPAREN, + STATE(4949), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157435] = 2, + [157658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8409), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157445] = 3, - ACTIONS(8378), 1, + [157668] = 4, + ACTIONS(8463), 1, sym_identifier, + ACTIONS(8465), 1, + anon_sym_require, + STATE(5069), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8380), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [157457] = 2, + [157682] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8467), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157467] = 4, - ACTIONS(7752), 1, - sym_identifier, - ACTIONS(7754), 1, - anon_sym_const, - STATE(5216), 1, - sym_type_parameter, + [157692] = 4, + ACTIONS(5022), 1, + anon_sym_COMMA, + ACTIONS(8469), 1, + anon_sym_RBRACK, + STATE(4621), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157481] = 2, + [157706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7192), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157491] = 4, - ACTIONS(1683), 1, - anon_sym_RPAREN, - ACTIONS(8382), 1, + ACTIONS(8045), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4483), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [157716] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157505] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8384), 1, - sym__glimmer_template_content, - ACTIONS(8386), 1, - sym_glimmer_closing_tag, - STATE(4510), 1, - aux_sym_glimmer_template_repeat1, - [157521] = 4, - ACTIONS(5127), 1, + ACTIONS(8471), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8184), 1, - anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [157726] = 4, + ACTIONS(1889), 1, + anon_sym_COMMA, + ACTIONS(8473), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157535] = 2, + [157740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157545] = 4, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(8390), 1, - anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_object_pattern_repeat1, + [157750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157559] = 4, - ACTIONS(8392), 1, + ACTIONS(8043), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8394), 1, + anon_sym_SEMI, + [157760] = 4, + ACTIONS(6759), 1, anon_sym_RBRACE, - STATE(5000), 1, - aux_sym_enum_body_repeat1, + ACTIONS(8475), 1, + anon_sym_COMMA, + STATE(4814), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157573] = 2, + [157774] = 4, + ACTIONS(6548), 1, + anon_sym_type, + ACTIONS(8477), 1, + sym_identifier, + STATE(5354), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157583] = 4, - ACTIONS(8398), 1, - anon_sym_COMMA, - ACTIONS(8400), 1, - anon_sym_RBRACE, - STATE(5000), 1, - aux_sym_enum_body_repeat1, + [157788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157597] = 4, - ACTIONS(3475), 1, + ACTIONS(8095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157798] = 4, + ACTIONS(3481), 1, anon_sym_LPAREN, - ACTIONS(8402), 1, + ACTIONS(8479), 1, anon_sym_DOT, - STATE(3160), 1, + STATE(3154), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157611] = 3, - ACTIONS(7708), 1, - anon_sym_LBRACE, + [157812] = 4, + ACTIONS(5431), 1, + anon_sym_COMMA, + ACTIONS(8481), 1, + anon_sym_RBRACE, + STATE(4774), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7710), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157623] = 2, + [157826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157633] = 2, + [157836] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8030), 3, + ACTIONS(8043), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157643] = 4, - ACTIONS(5349), 1, + [157846] = 4, + ACTIONS(5186), 1, anon_sym_COMMA, - ACTIONS(8404), 1, + ACTIONS(8483), 1, anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, + STATE(4776), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157657] = 2, + [157860] = 4, + ACTIONS(6548), 1, + anon_sym_type, + ACTIONS(8485), 1, + sym_identifier, + STATE(5384), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157667] = 2, + [157874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157677] = 2, + [157884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [157687] = 4, - ACTIONS(8410), 1, + [157894] = 4, + ACTIONS(5431), 1, anon_sym_COMMA, - ACTIONS(8413), 1, + ACTIONS(8487), 1, anon_sym_RBRACE, - STATE(4945), 1, + STATE(4774), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157701] = 4, - ACTIONS(8415), 1, - anon_sym_COMMA, - ACTIONS(8418), 1, - anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_object_pattern_repeat1, + [157908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157715] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8023), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157725] = 4, - ACTIONS(8420), 1, - sym_identifier, - STATE(1255), 1, - sym_decorator_call_expression, - STATE(3353), 1, - sym_decorator_member_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157739] = 2, + [157918] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157749] = 4, - ACTIONS(5349), 1, + [157928] = 4, + ACTIONS(5431), 1, anon_sym_COMMA, - ACTIONS(8422), 1, + ACTIONS(8489), 1, anon_sym_RBRACE, - STATE(4945), 1, + STATE(4774), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157763] = 4, - ACTIONS(5349), 1, + [157942] = 4, + ACTIONS(4821), 1, + anon_sym_RPAREN, + ACTIONS(8491), 1, anon_sym_COMMA, - ACTIONS(8424), 1, - anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, + STATE(4948), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157777] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_LPAREN, - STATE(783), 1, - sym_statement_block, + [157956] = 4, + ACTIONS(1685), 1, + anon_sym_RPAREN, + ACTIONS(8494), 1, + anon_sym_COMMA, + STATE(4803), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157791] = 2, + [157970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157801] = 2, + [157980] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157811] = 4, - ACTIONS(1769), 1, - anon_sym_COMMA, - ACTIONS(7854), 1, - anon_sym_RBRACK, - STATE(4981), 1, - aux_sym_array_pattern_repeat1, + [157990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157825] = 4, - ACTIONS(1677), 1, - anon_sym_RPAREN, - ACTIONS(8430), 1, + ACTIONS(8061), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4483), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [158000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157839] = 4, - ACTIONS(5038), 1, + ACTIONS(8496), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5066), 1, - anon_sym_RBRACK, - STATE(4977), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157853] = 2, + anon_sym_SEMI, + [158010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157863] = 2, + [158020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6426), 3, + ACTIONS(8498), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [157873] = 2, + anon_sym_SEMI, + [158030] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157883] = 2, + [158040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8498), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157893] = 2, + [158050] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157903] = 2, + [158060] = 4, + ACTIONS(8502), 1, + anon_sym_COMMA, + ACTIONS(8505), 1, + anon_sym_RBRACK, + STATE(4959), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7143), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157913] = 2, + [158074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8363), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157923] = 3, - ACTIONS(8432), 1, - anon_sym_EQ, + [158084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 2, + ACTIONS(7482), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [157935] = 2, + anon_sym_SEMI, + [158094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8436), 3, + ACTIONS(8507), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157945] = 4, - ACTIONS(5038), 1, + [158104] = 4, + ACTIONS(8509), 1, anon_sym_COMMA, - ACTIONS(5066), 1, - anon_sym_RBRACK, - STATE(4984), 1, - aux_sym_array_repeat1, + ACTIONS(8512), 1, + anon_sym_RBRACE, + STATE(4963), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157959] = 2, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157969] = 4, - ACTIONS(2540), 1, + [158138] = 4, + ACTIONS(2708), 1, anon_sym_LT, - ACTIONS(8438), 1, + ACTIONS(8514), 1, anon_sym_EQ, - STATE(5594), 1, + STATE(5602), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157983] = 4, - ACTIONS(1769), 1, + [158152] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8061), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7854), 1, - anon_sym_RBRACK, - STATE(4985), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [158162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157997] = 3, - ACTIONS(8440), 1, - sym_identifier, + ACTIONS(8516), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8442), 2, + ACTIONS(8057), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158009] = 4, - ACTIONS(8444), 1, + [158182] = 4, + ACTIONS(8518), 1, anon_sym_COMMA, - ACTIONS(8446), 1, + ACTIONS(8520), 1, anon_sym_RBRACK, - STATE(5039), 1, + STATE(5022), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158023] = 4, - ACTIONS(8448), 1, - anon_sym_COMMA, - ACTIONS(8450), 1, - anon_sym_RBRACK, - STATE(4611), 1, - aux_sym_tuple_type_repeat1, + [158196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158037] = 2, + ACTIONS(8043), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5282), 3, + ACTIONS(8507), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [158216] = 4, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + anon_sym_SQUOTE, + STATE(5461), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158230] = 4, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(8522), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [158047] = 3, - ACTIONS(7852), 1, - anon_sym_EQ, + STATE(5694), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [158059] = 2, + [158244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8454), 3, + ACTIONS(8524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158069] = 4, - ACTIONS(5038), 1, - anon_sym_COMMA, - ACTIONS(8456), 1, - anon_sym_RBRACK, - STATE(4984), 1, - aux_sym_array_repeat1, + [158254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158083] = 4, - ACTIONS(6653), 1, + ACTIONS(8057), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158264] = 4, + ACTIONS(6661), 1, anon_sym_AMP, - ACTIONS(6657), 1, + ACTIONS(6665), 1, anon_sym_extends, - ACTIONS(7510), 1, + ACTIONS(7537), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158097] = 2, + [158278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158107] = 2, + [158288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158117] = 4, - ACTIONS(1769), 1, - anon_sym_COMMA, - ACTIONS(8460), 1, - anon_sym_RBRACK, - STATE(4985), 1, - aux_sym_array_pattern_repeat1, + [158298] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8044), 1, - sym__glimmer_template_content, - ACTIONS(8462), 1, - sym_glimmer_closing_tag, - STATE(4987), 1, - aux_sym_glimmer_template_repeat1, - [158147] = 2, + ACTIONS(8163), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8464), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158157] = 4, - ACTIONS(5282), 1, - anon_sym_RBRACK, - ACTIONS(8466), 1, - anon_sym_COMMA, - STATE(4984), 1, - aux_sym_array_repeat1, + [158318] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158171] = 4, - ACTIONS(8452), 1, - anon_sym_RBRACK, - ACTIONS(8469), 1, + ACTIONS(8045), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4985), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [158328] = 4, + ACTIONS(3190), 1, + anon_sym_GT, + ACTIONS(8526), 1, + anon_sym_COMMA, + STATE(4365), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158185] = 2, + [158342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8472), 1, - sym__glimmer_template_content, - ACTIONS(8475), 1, - sym_glimmer_closing_tag, - STATE(4987), 1, - aux_sym_glimmer_template_repeat1, - [158211] = 4, - ACTIONS(3200), 1, - anon_sym_GT, - ACTIONS(8477), 1, - anon_sym_COMMA, - STATE(4393), 1, - aux_sym_implements_clause_repeat1, + [158352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158225] = 2, + ACTIONS(8528), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [158362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158235] = 2, + [158372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8454), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158245] = 4, - ACTIONS(4199), 1, + [158382] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(7652), 1, + ACTIONS(5032), 1, anon_sym_RPAREN, - STATE(4775), 1, - aux_sym_sequence_expression_repeat1, + STATE(5032), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158259] = 4, - ACTIONS(1974), 1, + [158396] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(5068), 1, + ACTIONS(5032), 1, anon_sym_RPAREN, - STATE(5046), 1, + STATE(4701), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158273] = 4, - ACTIONS(1974), 1, - anon_sym_COMMA, - ACTIONS(5068), 1, - anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, + [158410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158287] = 4, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7153), 1, - anon_sym_PIPE, - ACTIONS(7155), 1, - anon_sym_extends, + ACTIONS(8097), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158420] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158301] = 3, - ACTIONS(8479), 1, - anon_sym_as, + ACTIONS(8095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158430] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6426), 2, + ACTIONS(8057), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [158313] = 4, - ACTIONS(6424), 1, - anon_sym_type, - ACTIONS(8481), 1, - sym_identifier, - STATE(5430), 1, - sym__import_identifier, + anon_sym_SEMI, + [158440] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158327] = 2, + ACTIONS(8061), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158337] = 4, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(8485), 1, - anon_sym_RPAREN, - STATE(4875), 1, - aux_sym_formal_parameters_repeat1, + [158460] = 4, + ACTIONS(7059), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158351] = 2, + [158474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158361] = 4, - ACTIONS(8489), 1, - anon_sym_COMMA, - ACTIONS(8492), 1, - anon_sym_RBRACE, - STATE(5000), 1, - aux_sym_enum_body_repeat1, + [158484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158375] = 4, - ACTIONS(5178), 1, - anon_sym_extends, - ACTIONS(8494), 1, - anon_sym_AMP, - ACTIONS(8496), 1, - anon_sym_PIPE, + ACTIONS(8111), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158389] = 2, + ACTIONS(8105), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158399] = 4, - ACTIONS(8498), 1, - sym_identifier, - ACTIONS(8500), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, - sym_private_property_identifier, + [158514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158413] = 2, + ACTIONS(8061), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8504), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158423] = 4, - ACTIONS(8506), 1, + [158534] = 4, + ACTIONS(8530), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8532), 1, anon_sym_LBRACK, - ACTIONS(8510), 1, + ACTIONS(8534), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158437] = 4, - ACTIONS(8512), 1, + [158548] = 4, + ACTIONS(8536), 1, sym_identifier, - ACTIONS(8514), 1, + ACTIONS(8538), 1, anon_sym_LBRACK, - ACTIONS(8516), 1, + ACTIONS(8540), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158451] = 2, + [158562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158461] = 2, + [158572] = 4, + ACTIONS(8542), 1, + sym_identifier, + ACTIONS(8544), 1, + anon_sym_LBRACK, + ACTIONS(8546), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8504), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158471] = 4, - ACTIONS(8518), 1, + [158586] = 4, + ACTIONS(8548), 1, sym_identifier, - ACTIONS(8520), 1, + ACTIONS(8550), 1, anon_sym_LBRACK, - ACTIONS(8522), 1, + ACTIONS(8552), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158485] = 2, + [158600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8467), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158495] = 2, + [158610] = 4, + ACTIONS(6757), 1, + anon_sym_implements, + ACTIONS(8554), 1, + anon_sym_LBRACE, + STATE(5650), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8524), 3, + [158624] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158505] = 2, + [158634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8526), 3, + ACTIONS(8556), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158515] = 2, + [158644] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158525] = 2, + [158654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8528), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158535] = 2, + [158664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8530), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158545] = 2, + [158674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158555] = 2, + [158684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8524), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158565] = 2, + [158694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158575] = 4, - ACTIONS(6424), 1, - anon_sym_type, - ACTIONS(8532), 1, - sym_identifier, - STATE(5432), 1, - sym__import_identifier, + [158704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158589] = 2, + ACTIONS(8111), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8534), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158599] = 2, + [158724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8100), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158609] = 2, + [158734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8536), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158619] = 2, + [158744] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158629] = 4, - ACTIONS(6739), 1, - anon_sym_RBRACE, - ACTIONS(8538), 1, + [158754] = 4, + ACTIONS(2954), 1, + anon_sym_RBRACK, + ACTIONS(8558), 1, anon_sym_COMMA, - STATE(4761), 1, - aux_sym_named_imports_repeat1, + STATE(4959), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158643] = 2, + [158768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158653] = 2, + [158778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158663] = 3, - ACTIONS(8540), 1, - anon_sym_as, + [158788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 2, + ACTIONS(8111), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [158675] = 2, + anon_sym_SEMI, + [158798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8534), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158685] = 2, + [158808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158695] = 2, + [158818] = 4, + ACTIONS(7819), 1, + sym_identifier, + ACTIONS(7821), 1, + anon_sym_const, + STATE(5110), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158832] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8542), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158705] = 2, + [158842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158715] = 2, + [158852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158725] = 2, + [158862] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(8560), 1, + anon_sym_RPAREN, + STATE(4701), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158735] = 2, + [158886] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158745] = 2, + [158896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158755] = 3, - ACTIONS(8544), 1, - anon_sym_EQ, + [158906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8434), 2, + ACTIONS(8125), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [158767] = 3, - ACTIONS(6993), 1, - anon_sym_DOT, + anon_sym_SEMI, + [158916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8546), 2, + ACTIONS(8061), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158779] = 2, + [158926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8454), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158789] = 4, - ACTIONS(2956), 1, - anon_sym_RBRACK, - ACTIONS(8548), 1, + [158936] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8057), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4921), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [158946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158803] = 2, + ACTIONS(8095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158813] = 4, - ACTIONS(8550), 1, + [158966] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8047), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8552), 1, - anon_sym_RPAREN, - STATE(4929), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [158976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158827] = 2, + ACTIONS(8105), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158837] = 2, + [158996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5998), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158847] = 2, + [159006] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158857] = 3, - ACTIONS(7157), 1, + [159016] = 4, + ACTIONS(1621), 1, + anon_sym_DQUOTE, + ACTIONS(1623), 1, + anon_sym_SQUOTE, + STATE(4479), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159030] = 3, + ACTIONS(7888), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3641), 2, - anon_sym_in, - anon_sym_of, - [158869] = 4, - ACTIONS(1974), 1, + ACTIONS(8562), 2, anon_sym_COMMA, - ACTIONS(8554), 1, - anon_sym_RPAREN, - STATE(4679), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [159042] = 3, + ACTIONS(4361), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4363), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [159054] = 3, + ACTIONS(4387), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158883] = 2, + ACTIONS(4389), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [159066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158893] = 3, - ACTIONS(7003), 1, - anon_sym_DOT, + [159076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8546), 2, + ACTIONS(8125), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158905] = 2, + [159086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158915] = 2, + [159096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158925] = 2, + [159106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158935] = 2, + [159116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158945] = 2, + [159126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158955] = 4, - ACTIONS(8556), 1, - anon_sym_COMMA, - ACTIONS(8558), 1, - anon_sym_GT, - STATE(4743), 1, - aux_sym_type_parameters_repeat1, + [159136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158969] = 2, + ACTIONS(8061), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158979] = 2, + [159156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158989] = 3, - ACTIONS(4395), 1, - anon_sym_LBRACE, + [159166] = 3, + ACTIONS(8564), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 2, + ACTIONS(6550), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159001] = 3, - ACTIONS(4495), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, + [159178] = 4, + ACTIONS(6548), 1, + anon_sym_type, + ACTIONS(8566), 1, + sym_identifier, + STATE(5303), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159013] = 2, + [159192] = 4, + ACTIONS(6548), 1, + anon_sym_type, + ACTIONS(8568), 1, + sym_identifier, + STATE(5308), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159023] = 2, + [159206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159033] = 2, + [159216] = 4, + ACTIONS(6721), 1, + anon_sym_RBRACE, + ACTIONS(8570), 1, + anon_sym_COMMA, + STATE(4963), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159043] = 2, + [159230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159053] = 2, + [159240] = 3, + ACTIONS(7019), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8572), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159063] = 2, + [159252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159073] = 2, + [159262] = 3, + ACTIONS(7021), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8572), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159083] = 2, + [159274] = 3, + ACTIONS(8574), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, - sym__automatic_semicolon, + ACTIONS(3593), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159093] = 2, + anon_sym_RBRACK, + [159286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159103] = 2, + [159296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159113] = 2, + ACTIONS(7179), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [159306] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159123] = 2, + [159316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159133] = 2, + [159326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159143] = 3, - ACTIONS(8560), 1, - anon_sym_EQ, + [159336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(8105), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [159155] = 2, + anon_sym_SEMI, + [159346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159165] = 4, - ACTIONS(7752), 1, - sym_identifier, - ACTIONS(7754), 1, - anon_sym_const, - STATE(5054), 1, - sym_type_parameter, + [159356] = 4, + ACTIONS(8577), 1, + anon_sym_COMMA, + ACTIONS(8579), 1, + anon_sym_RPAREN, + STATE(4920), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159179] = 2, + [159370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159189] = 2, + [159380] = 3, + ACTIONS(8581), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8583), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159199] = 2, + [159392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159209] = 2, + [159402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8040), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159219] = 2, + [159412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159229] = 2, + [159422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159239] = 2, + [159432] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159249] = 2, + [159442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159259] = 2, + [159452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8048), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159269] = 2, + [159462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8045), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159279] = 3, - ACTIONS(8563), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7650), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [159291] = 2, + [159472] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159301] = 2, + [159482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159311] = 2, + [159492] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 3, + ACTIONS(8057), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159321] = 2, + [159502] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8565), 3, + ACTIONS(8047), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159331] = 4, - ACTIONS(3198), 1, - anon_sym_GT, - ACTIONS(8567), 1, + [159512] = 4, + ACTIONS(8587), 1, anon_sym_COMMA, - STATE(4393), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(8589), 1, + anon_sym_RBRACK, + STATE(4690), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159345] = 2, + [159526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8565), 3, + ACTIONS(8095), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159355] = 2, + [159536] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159365] = 2, + [159546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159375] = 2, + [159556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159385] = 2, + [159566] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159395] = 4, - ACTIONS(8571), 1, - sym_identifier, - ACTIONS(8573), 1, - anon_sym_LBRACK, - ACTIONS(8575), 1, - sym_private_property_identifier, + [159576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159409] = 3, - ACTIONS(8577), 1, + ACTIONS(8591), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8579), 1, - anon_sym_from, + anon_sym_SEMI, + [159586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159420] = 3, - ACTIONS(8581), 1, - anon_sym_SEMI, - ACTIONS(8583), 1, + ACTIONS(8049), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159431] = 2, + ACTIONS(7932), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8585), 2, + ACTIONS(8045), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [159440] = 3, - ACTIONS(8094), 1, + anon_sym_SEMI, + [159616] = 3, + ACTIONS(8593), 1, sym_identifier, - ACTIONS(8098), 1, + ACTIONS(8595), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159451] = 2, + [159627] = 3, + ACTIONS(8597), 1, + anon_sym_LBRACE, + STATE(819), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1695), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159460] = 3, - ACTIONS(7246), 1, + [159638] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + STATE(3975), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159471] = 3, - ACTIONS(6440), 1, - anon_sym_LPAREN, - STATE(3335), 1, - sym_formal_parameters, + [159649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159482] = 3, - ACTIONS(7246), 1, + ACTIONS(4693), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159658] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2642), 1, + STATE(2640), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159493] = 3, - ACTIONS(7246), 1, + [159669] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2647), 1, + STATE(2641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159504] = 2, + [159680] = 3, + ACTIONS(4281), 1, + anon_sym_LBRACE, + STATE(1704), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159513] = 3, - ACTIONS(8589), 1, - sym_identifier, - ACTIONS(8591), 1, - sym_private_property_identifier, + [159691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159524] = 3, - ACTIONS(8593), 1, - anon_sym_SEMI, - ACTIONS(8595), 1, - sym__automatic_semicolon, + ACTIONS(8348), 2, + anon_sym_COMMA, + anon_sym_GT, + [159700] = 3, + ACTIONS(6699), 1, + anon_sym_LBRACE, + STATE(1706), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159535] = 2, + [159711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, + ACTIONS(5981), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159544] = 3, - ACTIONS(8597), 1, - sym_identifier, - ACTIONS(8599), 1, - sym_private_property_identifier, + [159720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159555] = 3, - ACTIONS(7246), 1, + ACTIONS(5977), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159729] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2661), 1, + STATE(2633), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159566] = 3, - ACTIONS(6691), 1, - anon_sym_LBRACE, - STATE(1692), 1, - sym_class_body, + [159740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159577] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2626), 1, - sym_statement_block, + ACTIONS(8599), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159749] = 3, + ACTIONS(8601), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159588] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2659), 1, - sym_statement_block, + [159760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159599] = 3, - ACTIONS(7246), 1, + ACTIONS(8603), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159769] = 3, + ACTIONS(6863), 1, anon_sym_LBRACE, - STATE(2675), 1, - sym_statement_block, + STATE(233), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159610] = 3, - ACTIONS(8601), 1, - sym_identifier, - ACTIONS(8603), 1, - sym_private_property_identifier, + [159780] = 3, + ACTIONS(6843), 1, + anon_sym_LBRACE, + STATE(850), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159621] = 3, - ACTIONS(8605), 1, - anon_sym_SEMI, - ACTIONS(8607), 1, - sym__automatic_semicolon, + [159791] = 3, + ACTIONS(6863), 1, + anon_sym_LBRACE, + STATE(226), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159632] = 3, - ACTIONS(6416), 1, + [159802] = 3, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5601), 1, + STATE(5599), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159643] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2676), 1, - sym_statement_block, + [159813] = 3, + ACTIONS(3520), 1, + anon_sym_LPAREN, + STATE(1242), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159654] = 2, + [159824] = 3, + ACTIONS(6843), 1, + anon_sym_LBRACE, + STATE(825), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6729), 2, - anon_sym_in, - anon_sym_of, - [159663] = 2, + [159835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(5969), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159672] = 3, - ACTIONS(8609), 1, + [159844] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(804), 1, - sym_switch_body, + STATE(5307), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159683] = 2, + [159855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8611), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159692] = 2, + ACTIONS(5973), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159864] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5310), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159701] = 3, - ACTIONS(6691), 1, + [159875] = 3, + ACTIONS(8605), 1, + sym_identifier, + ACTIONS(8607), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159886] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2560), 1, + STATE(4003), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159712] = 3, - ACTIONS(6691), 1, + [159897] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2563), 1, + STATE(2215), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159723] = 3, - ACTIONS(8615), 1, + [159908] = 3, + ACTIONS(8601), 1, anon_sym_LPAREN, - STATE(39), 1, + STATE(5299), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159734] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2635), 1, - sym_statement_block, + [159919] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5664), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159745] = 3, - ACTIONS(6751), 1, + [159930] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(3970), 1, - sym_class_body, + STATE(2646), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159756] = 3, - ACTIONS(2476), 1, + [159941] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(875), 1, + STATE(2648), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159767] = 3, - ACTIONS(8617), 1, - anon_sym_SEMI, - ACTIONS(8619), 1, - sym__automatic_semicolon, + [159952] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2678), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159778] = 3, - ACTIONS(8621), 1, - sym_identifier, - ACTIONS(8623), 1, - sym_private_property_identifier, + [159963] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5725), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159789] = 3, - ACTIONS(8625), 1, + [159974] = 3, + ACTIONS(8609), 1, anon_sym_SEMI, - ACTIONS(8627), 1, + ACTIONS(8611), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159800] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5684), 1, - sym_formal_parameters, + [159985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159811] = 3, - ACTIONS(7246), 1, + ACTIONS(8343), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159994] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2637), 1, + STATE(2620), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159822] = 3, - ACTIONS(8615), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159833] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5752), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159844] = 3, - ACTIONS(3516), 1, - anon_sym_COLON, - STATE(5249), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159855] = 3, - ACTIONS(7246), 1, + [160005] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(2636), 1, + STATE(2219), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159866] = 2, + [160016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 2, + ACTIONS(8374), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [159875] = 3, - ACTIONS(6691), 1, + anon_sym_RPAREN, + [160025] = 3, + ACTIONS(1719), 1, anon_sym_LBRACE, - STATE(1660), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159886] = 2, + STATE(235), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8631), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [159895] = 3, + [160036] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5305), 1, + STATE(767), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159906] = 3, - ACTIONS(6691), 1, + [160047] = 3, + ACTIONS(6699), 1, anon_sym_LBRACE, - STATE(2537), 1, + STATE(1684), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159917] = 3, - ACTIONS(4083), 1, + [160058] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2238), 1, + STATE(2649), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159928] = 3, - ACTIONS(8633), 1, - sym_identifier, - ACTIONS(8635), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159939] = 3, - ACTIONS(6751), 1, + [160069] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(4006), 1, - sym_class_body, + STATE(2650), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159950] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_statement_block, + [160080] = 3, + ACTIONS(8613), 1, + sym_identifier, + ACTIONS(8615), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159961] = 3, - ACTIONS(4083), 1, + [160091] = 3, + ACTIONS(6863), 1, anon_sym_LBRACE, - STATE(2198), 1, - sym_statement_block, + STATE(207), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159972] = 3, - ACTIONS(8637), 1, - anon_sym_LPAREN, - STATE(43), 1, - sym__for_header, + [160102] = 3, + ACTIONS(8617), 1, + sym_identifier, + ACTIONS(8619), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159983] = 3, - ACTIONS(8639), 1, + [160113] = 3, + ACTIONS(8621), 1, sym_identifier, - ACTIONS(8641), 1, + ACTIONS(8623), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159994] = 3, - ACTIONS(8615), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, + [160124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160005] = 3, - ACTIONS(7246), 1, + ACTIONS(4846), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160133] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(2624), 1, + STATE(2223), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160016] = 3, - ACTIONS(7246), 1, + [160144] = 3, + ACTIONS(8625), 1, + sym_identifier, + ACTIONS(8627), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160155] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2629), 1, + STATE(2651), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160027] = 3, - ACTIONS(6681), 1, + [160166] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2354), 1, + STATE(2310), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160038] = 3, - ACTIONS(8643), 1, - sym_identifier, - ACTIONS(8645), 1, - sym_private_property_identifier, + [160177] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2652), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160049] = 3, - ACTIONS(8647), 1, + [160188] = 3, + ACTIONS(8629), 1, sym_identifier, - ACTIONS(8649), 1, + ACTIONS(8631), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160060] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8651), 2, - anon_sym_COMMA, - anon_sym_GT, - [160069] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5784), 1, - sym_formal_parameters, + [160199] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160080] = 3, - ACTIONS(8615), 1, - anon_sym_LPAREN, - STATE(31), 1, - sym_parenthesized_expression, + ACTIONS(6711), 2, + anon_sym_in, + anon_sym_of, + [160208] = 3, + ACTIONS(7484), 1, + anon_sym_in, + ACTIONS(7486), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160091] = 3, - ACTIONS(6691), 1, + [160219] = 3, + ACTIONS(4281), 1, anon_sym_LBRACE, - STATE(1694), 1, - sym_class_body, + STATE(1686), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160102] = 3, - ACTIONS(8653), 1, - anon_sym_SEMI, - ACTIONS(8655), 1, - sym__automatic_semicolon, + [160230] = 3, + ACTIONS(6428), 1, + anon_sym_COLON, + STATE(5090), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160113] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_statement_block, + [160241] = 3, + ACTIONS(7944), 1, + anon_sym_from, + STATE(4339), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160124] = 3, - ACTIONS(8615), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, + [160252] = 3, + ACTIONS(6699), 1, + anon_sym_LBRACE, + STATE(2552), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160135] = 3, - ACTIONS(4119), 1, + [160263] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(1696), 1, + STATE(2653), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160146] = 3, - ACTIONS(8615), 1, - anon_sym_LPAREN, - STATE(59), 1, - sym_parenthesized_expression, + [160274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160157] = 3, - ACTIONS(2476), 1, + ACTIONS(8395), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160283] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(753), 1, + STATE(2632), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160168] = 3, - ACTIONS(4521), 1, - anon_sym_LPAREN, - STATE(2319), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160179] = 3, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3540), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160190] = 3, - ACTIONS(7246), 1, + [160294] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(2665), 1, + STATE(2404), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160201] = 2, + [160305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8657), 2, + ACTIONS(5999), 2, anon_sym_COMMA, - anon_sym_GT, - [160210] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4710), 2, - sym__automatic_semicolon, + anon_sym_RBRACE, + [160314] = 3, + ACTIONS(8633), 1, anon_sym_SEMI, - [160219] = 2, + ACTIONS(8635), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 2, - sym__automatic_semicolon, + [160325] = 3, + ACTIONS(8637), 1, anon_sym_SEMI, - [160228] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2622), 1, - sym_statement_block, + ACTIONS(8639), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160239] = 2, + [160336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7448), 2, + ACTIONS(8641), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160345] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [160248] = 2, + STATE(5395), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7216), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [160257] = 2, + [160356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7274), 2, + ACTIONS(6003), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160365] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [160266] = 2, + STATE(769), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4837), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160275] = 3, - ACTIONS(6681), 1, + [160376] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2324), 1, + STATE(773), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160286] = 3, - ACTIONS(6416), 1, + [160387] = 3, + ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(5811), 1, + STATE(3516), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160297] = 3, - ACTIONS(7246), 1, + [160398] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2668), 1, - sym_statement_block, + STATE(786), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160308] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(4099), 1, - sym_formal_parameters, + [160409] = 3, + ACTIONS(7017), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160319] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5520), 1, - sym_formal_parameters, + [160420] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2659), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160330] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2633), 1, - sym_statement_block, + [160431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160341] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5763), 1, - sym_formal_parameters, + ACTIONS(8338), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160440] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160352] = 2, + [160451] = 3, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160361] = 3, - ACTIONS(7842), 1, - anon_sym_from, - STATE(5131), 1, - sym__from_clause, + [160462] = 3, + ACTIONS(8643), 1, + sym_identifier, + ACTIONS(8645), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160372] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5331), 1, - sym_statement_block, + [160473] = 3, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(8649), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160383] = 2, + [160484] = 3, + ACTIONS(7944), 1, + anon_sym_from, + STATE(5243), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160392] = 2, + [160495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6033), 2, + ACTIONS(5977), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160401] = 3, - ACTIONS(8659), 1, - anon_sym_SEMI, - ACTIONS(8661), 1, - sym__automatic_semicolon, + [160504] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5589), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160412] = 2, + [160515] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5124), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8663), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160421] = 3, - ACTIONS(6681), 1, + [160526] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2203), 1, - sym_class_body, + STATE(2677), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160432] = 3, - ACTIONS(6691), 1, + [160537] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(1699), 1, + STATE(2192), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160443] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5340), 1, - sym_statement_block, + [160548] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5657), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160454] = 3, - ACTIONS(8665), 1, - sym_identifier, - STATE(5048), 1, - sym_nested_identifier, + [160559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160465] = 3, - ACTIONS(1703), 1, - anon_sym_LBRACE, - STATE(219), 1, - sym_statement_block, + ACTIONS(4716), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160568] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5744), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160476] = 3, - ACTIONS(6751), 1, + [160579] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(757), 1, - sym_class_body, + STATE(5186), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160487] = 2, + [160590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8418), 2, + ACTIONS(5991), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160496] = 2, + [160599] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8413), 2, + ACTIONS(5981), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160505] = 3, - ACTIONS(6751), 1, + [160608] = 3, + ACTIONS(4281), 1, anon_sym_LBRACE, - STATE(4018), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160516] = 3, - ACTIONS(8667), 1, - sym_identifier, - ACTIONS(8669), 1, - sym_private_property_identifier, + STATE(1688), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160527] = 3, - ACTIONS(8671), 1, + [160619] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(3912), 1, - sym_enum_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160538] = 3, - ACTIONS(8637), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym__for_header, + STATE(2657), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160549] = 3, - ACTIONS(6004), 1, + [160630] = 3, + ACTIONS(8601), 1, anon_sym_LPAREN, - STATE(2768), 1, - sym_arguments, + STATE(41), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160560] = 3, - ACTIONS(6751), 1, + [160641] = 3, + ACTIONS(6863), 1, anon_sym_LBRACE, - STATE(4020), 1, + STATE(210), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160571] = 3, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3283), 1, - sym_formal_parameters, + [160652] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160582] = 2, + [160663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 2, + ACTIONS(5991), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160591] = 3, - ACTIONS(6681), 1, + [160672] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2406), 1, - sym_class_body, + STATE(5196), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160602] = 3, - ACTIONS(3250), 1, + [160683] = 3, + ACTIONS(8601), 1, anon_sym_LPAREN, - STATE(3541), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160613] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2670), 1, - sym_statement_block, + STATE(42), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160624] = 3, - ACTIONS(7246), 1, + [160694] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(862), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160635] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3855), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160646] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5819), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160657] = 3, - ACTIONS(6416), 1, + [160705] = 3, + ACTIONS(8601), 1, anon_sym_LPAREN, - STATE(5448), 1, - sym_formal_parameters, + STATE(44), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160668] = 2, + [160716] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8193), 2, + ACTIONS(8651), 2, anon_sym_COMMA, - anon_sym_GT, - [160677] = 3, - ACTIONS(6691), 1, + anon_sym_RPAREN, + [160725] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(1700), 1, - sym_class_body, + STATE(2194), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160688] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5562), 1, - sym_formal_parameters, + [160736] = 3, + ACTIONS(8653), 1, + anon_sym_in, + ACTIONS(8655), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160699] = 3, - ACTIONS(6416), 1, + [160747] = 3, + ACTIONS(8601), 1, anon_sym_LPAREN, - STATE(5653), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160710] = 3, - ACTIONS(6789), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_class_body, + STATE(38), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160721] = 3, - ACTIONS(2476), 1, + [160758] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(5394), 1, + STATE(2298), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160732] = 3, - ACTIONS(4119), 1, + [160769] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(1701), 1, + STATE(2628), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160743] = 3, - ACTIONS(4119), 1, + [160780] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(1702), 1, + STATE(2631), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160754] = 2, + [160791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160763] = 3, - ACTIONS(6775), 1, + ACTIONS(4720), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160800] = 3, + ACTIONS(6699), 1, anon_sym_LBRACE, - STATE(833), 1, + STATE(1768), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160774] = 3, - ACTIONS(8673), 1, - sym_identifier, - ACTIONS(8675), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160785] = 3, - ACTIONS(4027), 1, - anon_sym_LPAREN, - STATE(1691), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160796] = 3, - ACTIONS(6691), 1, + [160811] = 3, + ACTIONS(8597), 1, anon_sym_LBRACE, - STATE(1703), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160807] = 3, - ACTIONS(8677), 1, - sym_identifier, - ACTIONS(8679), 1, - sym_private_property_identifier, + STATE(865), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160818] = 3, - ACTIONS(6681), 1, + [160822] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2226), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160829] = 3, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8683), 1, - sym_private_property_identifier, + STATE(5126), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160840] = 3, - ACTIONS(8685), 1, + [160833] = 3, + ACTIONS(8657), 1, sym_identifier, - ACTIONS(8687), 1, + ACTIONS(8659), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160851] = 3, - ACTIONS(8689), 1, + [160844] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5969), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160853] = 3, + ACTIONS(8661), 1, sym_identifier, - ACTIONS(8691), 1, + ACTIONS(8663), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160862] = 3, - ACTIONS(4119), 1, - anon_sym_LBRACE, - STATE(1698), 1, - sym_statement_block, + [160864] = 3, + ACTIONS(8439), 1, + sym_identifier, + ACTIONS(8443), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160873] = 3, - ACTIONS(4119), 1, - anon_sym_LBRACE, - STATE(1662), 1, - sym_statement_block, + [160875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(5953), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [160884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8693), 2, + ACTIONS(5973), 2, anon_sym_COMMA, - anon_sym_GT, + anon_sym_RBRACE, [160893] = 3, - ACTIONS(6418), 1, - anon_sym_COLON, - STATE(4481), 1, - sym_type_annotation, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5807), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [160904] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2677), 1, - sym_statement_block, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [160915] = 3, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(2210), 1, - sym_statement_block, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5531), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [160926] = 3, - ACTIONS(8695), 1, - sym_identifier, - ACTIONS(8697), 1, - sym_private_property_identifier, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5617), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160937] = 2, + [160937] = 3, + ACTIONS(7944), 1, + anon_sym_from, + STATE(5169), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8361), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160946] = 3, - ACTIONS(6691), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_class_body, + [160948] = 3, + ACTIONS(8669), 1, + sym_identifier, + ACTIONS(8671), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160957] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5408), 1, - sym_statement_block, + [160959] = 3, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160968] = 3, - ACTIONS(8699), 1, + [160970] = 3, + ACTIONS(8677), 1, sym_identifier, - ACTIONS(8701), 1, + ACTIONS(8679), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160981] = 3, + ACTIONS(8681), 1, + sym_identifier, + ACTIONS(8683), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160979] = 2, + [160992] = 3, + ACTIONS(7944), 1, + anon_sym_from, + STATE(4252), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6025), 2, + [161003] = 3, + ACTIONS(8685), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [160988] = 2, + ACTIONS(8687), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8703), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160997] = 3, - ACTIONS(4119), 1, - anon_sym_LBRACE, - STATE(1683), 1, - sym_statement_block, + [161014] = 3, + ACTIONS(8689), 1, + sym_identifier, + ACTIONS(8691), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161008] = 3, - ACTIONS(4119), 1, - anon_sym_LBRACE, - STATE(1686), 1, - sym_statement_block, + [161025] = 3, + ACTIONS(8693), 1, + sym_identifier, + ACTIONS(8695), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161019] = 2, + [161036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8705), 2, + ACTIONS(5961), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [161028] = 2, + anon_sym_RBRACE, + [161045] = 3, + ACTIONS(4515), 1, + anon_sym_LPAREN, + STATE(2255), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8374), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161037] = 3, - ACTIONS(8707), 1, - sym_identifier, - ACTIONS(8709), 1, - sym_private_property_identifier, + [161056] = 3, + ACTIONS(8697), 1, + anon_sym_LPAREN, + STATE(31), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161048] = 2, + [161067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8711), 2, + ACTIONS(5965), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161076] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4785), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161057] = 3, - ACTIONS(4083), 1, + [161085] = 3, + ACTIONS(1719), 1, anon_sym_LBRACE, - STATE(2360), 1, + STATE(209), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161068] = 3, - ACTIONS(8713), 1, - sym_identifier, - ACTIONS(8715), 1, - sym_private_property_identifier, + [161096] = 3, + ACTIONS(8699), 1, + anon_sym_SEMI, + ACTIONS(8701), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161079] = 3, - ACTIONS(6775), 1, + [161107] = 3, + ACTIONS(6843), 1, anon_sym_LBRACE, - STATE(855), 1, + STATE(899), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161090] = 3, - ACTIONS(7246), 1, + [161118] = 3, + ACTIONS(3250), 1, + anon_sym_LPAREN, + STATE(3266), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161129] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2623), 1, + STATE(2680), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161101] = 3, - ACTIONS(8717), 1, + [161140] = 3, + ACTIONS(8703), 1, sym_identifier, - ACTIONS(8719), 1, + ACTIONS(8705), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161112] = 2, + [161151] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5577), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4540), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161121] = 2, + [161162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8721), 2, + ACTIONS(5985), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161130] = 3, - ACTIONS(6681), 1, + [161171] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2337), 1, - sym_class_body, + STATE(5168), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161141] = 2, + [161182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 2, + ACTIONS(8707), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [161150] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(3949), 1, - sym_formal_parameters, + anon_sym_GT, + [161191] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161161] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5616), 1, - sym_formal_parameters, + ACTIONS(7342), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161200] = 3, + ACTIONS(8709), 1, + anon_sym_LBRACE, + STATE(4313), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161172] = 3, - ACTIONS(8725), 1, - sym_identifier, - ACTIONS(8727), 1, - sym_private_property_identifier, + [161211] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161183] = 3, - ACTIONS(7246), 1, + ACTIONS(7418), 2, anon_sym_LBRACE, - STATE(2621), 1, + anon_sym_EQ_GT, + [161220] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2655), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161194] = 3, - ACTIONS(8729), 1, - anon_sym_LBRACE, - STATE(5417), 1, - sym_object, + [161231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161205] = 3, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(2162), 1, - sym_statement_block, + ACTIONS(5995), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161216] = 3, - ACTIONS(6789), 1, + ACTIONS(7324), 2, anon_sym_LBRACE, - STATE(228), 1, + anon_sym_EQ_GT, + [161249] = 3, + ACTIONS(6689), 1, + anon_sym_LBRACE, + STATE(2338), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161227] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5245), 1, - sym_statement_block, + [161260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161238] = 3, - ACTIONS(6775), 1, + ACTIONS(8711), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161269] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(2256), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161249] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4574), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161258] = 2, + [161280] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161267] = 3, - ACTIONS(7246), 1, + [161291] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2339), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161278] = 3, - ACTIONS(8733), 1, + [161302] = 3, + ACTIONS(8713), 1, sym_identifier, - ACTIONS(8735), 1, - anon_sym_STAR, + ACTIONS(8715), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161289] = 3, - ACTIONS(6991), 1, - anon_sym_LBRACE, - STATE(781), 1, - sym_statement_block, + [161313] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161300] = 3, - ACTIONS(8615), 1, - anon_sym_LPAREN, - STATE(5122), 1, - sym_parenthesized_expression, + ACTIONS(5985), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161322] = 3, + ACTIONS(4105), 1, + anon_sym_LBRACE, + STATE(2340), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161311] = 3, - ACTIONS(6789), 1, + [161333] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(233), 1, + STATE(2341), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161322] = 3, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(784), 1, - sym_class_body, + [161344] = 3, + ACTIONS(8717), 1, + sym_identifier, + ACTIONS(8719), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161333] = 2, + [161355] = 3, + ACTIONS(8721), 1, + sym_identifier, + ACTIONS(8723), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161342] = 3, - ACTIONS(2476), 1, + [161366] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(5411), 1, + STATE(2386), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161353] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161362] = 3, + [161377] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5302), 1, + STATE(5173), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161373] = 3, - ACTIONS(8737), 1, + [161388] = 3, + ACTIONS(8725), 1, sym_identifier, - ACTIONS(8739), 1, + ACTIONS(8727), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161384] = 2, + [161399] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2642), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161393] = 3, - ACTIONS(6416), 1, + [161410] = 3, + ACTIONS(4031), 1, anon_sym_LPAREN, - STATE(5485), 1, - sym_formal_parameters, + STATE(1679), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161404] = 2, + [161421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 2, + ACTIONS(8729), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161413] = 3, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(900), 1, - sym_enum_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161424] = 3, - ACTIONS(4083), 1, + [161430] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2401), 1, + STATE(2645), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161435] = 3, - ACTIONS(8118), 1, + [161441] = 3, + ACTIONS(8731), 1, sym_identifier, - ACTIONS(8122), 1, + ACTIONS(8733), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161446] = 3, - ACTIONS(7246), 1, + [161452] = 3, + ACTIONS(8735), 1, + anon_sym_SEMI, + ACTIONS(8737), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161463] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8739), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161472] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2632), 1, + STATE(2644), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161457] = 3, - ACTIONS(2476), 1, + [161483] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(906), 1, + STATE(2661), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161468] = 3, - ACTIONS(6681), 1, + [161494] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2407), 1, - sym_class_body, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161479] = 3, - ACTIONS(7842), 1, - anon_sym_from, - STATE(5425), 1, - sym__from_clause, + [161505] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(799), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161490] = 2, + [161516] = 3, + ACTIONS(6024), 1, + anon_sym_LPAREN, + STATE(2759), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161499] = 2, + [161527] = 3, + ACTIONS(8135), 1, + sym_identifier, + ACTIONS(8139), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8743), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161508] = 2, + [161538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8745), 2, + ACTIONS(8741), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161517] = 3, - ACTIONS(7246), 1, + [161547] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2650), 1, - sym_statement_block, + STATE(2385), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161528] = 3, - ACTIONS(8747), 1, - sym_identifier, - ACTIONS(8749), 1, - sym_private_property_identifier, + [161558] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161539] = 3, - ACTIONS(6991), 1, + [161569] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(3879), 1, + STATE(2666), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161550] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4603), 2, - sym__automatic_semicolon, + [161580] = 3, + ACTIONS(8743), 1, anon_sym_SEMI, - [161559] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2631), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161570] = 2, + ACTIONS(8745), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161579] = 3, - ACTIONS(4083), 1, + [161591] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2339), 1, - sym_statement_block, + STATE(3892), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161590] = 3, - ACTIONS(2476), 1, + [161602] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(5186), 1, + STATE(2626), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161601] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161610] = 3, - ACTIONS(6681), 1, + [161613] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2278), 1, + STATE(2182), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161621] = 3, - ACTIONS(8751), 1, + [161624] = 3, + ACTIONS(8747), 1, sym_identifier, - ACTIONS(8753), 1, + ACTIONS(8749), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161632] = 3, - ACTIONS(7659), 1, - anon_sym_in, - ACTIONS(7661), 1, - anon_sym_of, + [161635] = 3, + ACTIONS(8751), 1, + sym_identifier, + STATE(5069), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161643] = 3, - ACTIONS(2476), 1, + [161646] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(5189), 1, - sym_statement_block, + STATE(766), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161654] = 3, - ACTIONS(6691), 1, + [161657] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2557), 1, + STATE(3929), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161665] = 3, - ACTIONS(8755), 1, + [161668] = 3, + ACTIONS(8251), 1, sym_identifier, - ACTIONS(8757), 1, + ACTIONS(8255), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161676] = 3, - ACTIONS(8050), 1, + [161679] = 3, + ACTIONS(8753), 1, sym_identifier, - ACTIONS(8054), 1, + ACTIONS(8755), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161687] = 3, - ACTIONS(6681), 1, + [161690] = 3, + ACTIONS(8757), 1, anon_sym_LBRACE, - STATE(2381), 1, - sym_class_body, + STATE(849), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161698] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_statement_block, + [161701] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161709] = 3, - ACTIONS(2476), 1, + ACTIONS(8759), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161710] = 3, + ACTIONS(6699), 1, anon_sym_LBRACE, - STATE(722), 1, - sym_statement_block, + STATE(2568), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161720] = 3, - ACTIONS(1703), 1, + [161721] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7356), 2, anon_sym_LBRACE, - STATE(223), 1, - sym_statement_block, + anon_sym_EQ_GT, + [161730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161731] = 3, - ACTIONS(8759), 1, - sym_identifier, - ACTIONS(8761), 1, - sym_private_property_identifier, + ACTIONS(8761), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161739] = 3, + ACTIONS(3534), 1, + anon_sym_COLON, + STATE(5393), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161742] = 3, - ACTIONS(7842), 1, - anon_sym_from, - STATE(4383), 1, - sym__from_clause, + [161750] = 3, + ACTIONS(8697), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161761] = 3, + ACTIONS(4925), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161753] = 2, + [161772] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8763), 2, + ACTIONS(5961), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161762] = 2, + [161781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8028), 2, + ACTIONS(8763), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [161771] = 2, + anon_sym_RBRACE, + [161790] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(5249), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8765), 2, + ACTIONS(5965), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161780] = 3, - ACTIONS(8671), 1, + [161810] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(3870), 1, - sym_enum_body, + STATE(5256), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161791] = 3, - ACTIONS(8767), 1, + [161821] = 3, + ACTIONS(8765), 1, sym_identifier, - ACTIONS(8769), 1, - anon_sym_STAR, + ACTIONS(8767), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161802] = 2, + [161832] = 3, + ACTIONS(8769), 1, + sym_identifier, + ACTIONS(8771), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [161811] = 3, - ACTIONS(7842), 1, - anon_sym_from, - STATE(4378), 1, - sym__from_clause, + [161843] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3957), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161822] = 2, + [161854] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5444), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161831] = 3, - ACTIONS(6751), 1, + [161865] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(4039), 1, - sym_class_body, + STATE(5195), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161842] = 3, - ACTIONS(8773), 1, - anon_sym_in, - ACTIONS(8775), 1, - anon_sym_COLON, + [161876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161853] = 3, - ACTIONS(8777), 1, + ACTIONS(8773), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161885] = 3, + ACTIONS(8775), 1, sym_identifier, - ACTIONS(8779), 1, + ACTIONS(8777), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161864] = 2, + [161896] = 3, + ACTIONS(6689), 1, + anon_sym_LBRACE, + STATE(2387), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161873] = 2, + [161907] = 3, + ACTIONS(6689), 1, + anon_sym_LBRACE, + STATE(2225), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6012), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161882] = 2, + [161918] = 3, + ACTIONS(6699), 1, + anon_sym_LBRACE, + STATE(1666), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161891] = 3, - ACTIONS(7246), 1, + [161929] = 3, + ACTIONS(4281), 1, anon_sym_LBRACE, - STATE(2666), 1, + STATE(1668), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161940] = 3, + ACTIONS(4281), 1, + anon_sym_LBRACE, + STATE(1671), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161902] = 3, - ACTIONS(6416), 1, + [161951] = 3, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5671), 1, + STATE(5707), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161913] = 3, - ACTIONS(8783), 1, - sym_identifier, - STATE(4553), 1, - sym_nested_identifier, + [161962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161924] = 3, - ACTIONS(3516), 1, - anon_sym_COLON, - STATE(5140), 1, - sym_type_annotation, + ACTIONS(8505), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161971] = 3, + ACTIONS(6699), 1, + anon_sym_LBRACE, + STATE(2555), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161935] = 3, - ACTIONS(8785), 1, + [161982] = 3, + ACTIONS(8779), 1, sym_identifier, - ACTIONS(8787), 1, + ACTIONS(8781), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161946] = 3, - ACTIONS(8789), 1, - sym_identifier, - ACTIONS(8791), 1, - sym_private_property_identifier, + [161993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161957] = 3, - ACTIONS(2476), 1, + ACTIONS(8512), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162002] = 3, + ACTIONS(4281), 1, anon_sym_LBRACE, - STATE(5190), 1, + STATE(1775), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161968] = 2, + [162013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6029), 2, + ACTIONS(8783), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [161977] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5476), 1, - sym_formal_parameters, + anon_sym_GT, + [162022] = 3, + ACTIONS(8785), 1, + anon_sym_LBRACE, + STATE(5425), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161988] = 3, - ACTIONS(8267), 1, + [162033] = 3, + ACTIONS(8787), 1, sym_identifier, - ACTIONS(8271), 1, - sym_private_property_identifier, + ACTIONS(8789), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161999] = 3, - ACTIONS(8793), 1, - sym_identifier, - ACTIONS(8795), 1, - anon_sym_STAR, + [162044] = 3, + ACTIONS(8601), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162010] = 3, - ACTIONS(8797), 1, - sym_identifier, - ACTIONS(8799), 1, - sym_private_property_identifier, + [162055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162021] = 3, - ACTIONS(8801), 1, + ACTIONS(8791), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162064] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8793), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162073] = 3, + ACTIONS(8795), 1, sym_identifier, - ACTIONS(8803), 1, + ACTIONS(8797), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162032] = 2, + [162084] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2674), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4635), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162041] = 3, - ACTIONS(6681), 1, + [162095] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2223), 1, + STATE(2201), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162052] = 3, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(4045), 1, - sym_class_body, + [162106] = 3, + ACTIONS(8799), 1, + sym_identifier, + ACTIONS(8801), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162063] = 3, - ACTIONS(7246), 1, + [162117] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2651), 1, + STATE(2639), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162074] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5615), 1, - sym_formal_parameters, + [162128] = 3, + ACTIONS(8803), 1, + sym_identifier, + ACTIONS(8805), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162085] = 2, + [162139] = 3, + ACTIONS(6699), 1, + anon_sym_LBRACE, + STATE(1698), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8805), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162094] = 3, - ACTIONS(6416), 1, + [162150] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162161] = 3, + ACTIONS(8807), 1, + sym_identifier, + STATE(4641), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162172] = 3, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(3966), 1, + STATE(5539), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162105] = 2, + [162183] = 3, + ACTIONS(8809), 1, + sym_identifier, + ACTIONS(8811), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162114] = 3, - ACTIONS(7246), 1, + [162194] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(2625), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162125] = 3, - ACTIONS(6681), 1, + [162205] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2310), 1, + STATE(3940), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162136] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5543), 1, - sym_formal_parameters, + [162216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162147] = 3, - ACTIONS(4083), 1, + ACTIONS(8813), 2, + anon_sym_COMMA, + anon_sym_GT, + [162225] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2312), 1, + STATE(2634), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162158] = 2, + [162236] = 3, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(3941), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8253), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162167] = 3, - ACTIONS(8807), 1, - sym_identifier, - ACTIONS(8809), 1, - sym_private_property_identifier, + [162247] = 3, + ACTIONS(6689), 1, + anon_sym_LBRACE, + STATE(2232), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162178] = 3, - ACTIONS(6416), 1, + [162258] = 3, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(5664), 1, + STATE(5637), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162189] = 3, - ACTIONS(8498), 1, - sym_identifier, - ACTIONS(8502), 1, - sym_private_property_identifier, + [162269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162200] = 3, - ACTIONS(8811), 1, + ACTIONS(8815), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162278] = 3, + ACTIONS(4105), 1, + anon_sym_LBRACE, + STATE(2234), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162289] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162300] = 3, + ACTIONS(8530), 1, sym_identifier, - ACTIONS(8813), 1, + ACTIONS(8534), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162211] = 2, + [162311] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3971), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162220] = 3, + [162322] = 3, ACTIONS(8817), 1, sym_identifier, ACTIONS(8819), 1, @@ -268353,7 +268482,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [162231] = 3, + [162333] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162344] = 3, ACTIONS(8821), 1, sym_identifier, ACTIONS(8823), 1, @@ -268361,2875 +268498,2959 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [162242] = 3, - ACTIONS(6991), 1, + [162355] = 3, + ACTIONS(6699), 1, anon_sym_LBRACE, - STATE(3976), 1, - sym_statement_block, + STATE(1635), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162253] = 3, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(4047), 1, - sym_class_body, + [162366] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5676), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162264] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2674), 1, - sym_statement_block, + [162377] = 3, + ACTIONS(8825), 1, + sym_identifier, + ACTIONS(8827), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162275] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_statement_block, + [162388] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5769), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162286] = 2, + [162399] = 3, + ACTIONS(8829), 1, + sym_identifier, + ACTIONS(8831), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8825), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162295] = 2, + [162410] = 3, + ACTIONS(4281), 1, + anon_sym_LBRACE, + STATE(1699), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162304] = 3, - ACTIONS(6416), 1, + [162421] = 3, + ACTIONS(6426), 1, anon_sym_LPAREN, - STATE(4250), 1, + STATE(3336), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162315] = 3, - ACTIONS(4119), 1, + [162432] = 3, + ACTIONS(4281), 1, anon_sym_LBRACE, - STATE(1705), 1, + STATE(1700), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162326] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2679), 1, - sym_statement_block, + [162443] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(4013), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162337] = 3, - ACTIONS(6691), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_class_body, + [162454] = 3, + ACTIONS(8833), 1, + sym_identifier, + ACTIONS(8835), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162348] = 3, - ACTIONS(6751), 1, + [162465] = 3, + ACTIONS(6699), 1, anon_sym_LBRACE, - STATE(772), 1, + STATE(1701), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162359] = 3, - ACTIONS(6991), 1, + [162476] = 3, + ACTIONS(7017), 1, anon_sym_LBRACE, - STATE(3979), 1, + STATE(3978), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162370] = 3, - ACTIONS(7246), 1, + [162487] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(2623), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162381] = 3, - ACTIONS(8827), 1, + [162498] = 3, + ACTIONS(6699), 1, + anon_sym_LBRACE, + STATE(2557), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162509] = 3, + ACTIONS(8837), 1, sym_identifier, - ACTIONS(8829), 1, + ACTIONS(8839), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162392] = 3, - ACTIONS(8831), 1, + [162520] = 3, + ACTIONS(8841), 1, sym_identifier, - ACTIONS(8833), 1, + ACTIONS(8843), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162403] = 3, - ACTIONS(6991), 1, - anon_sym_LBRACE, - STATE(780), 1, - sym_statement_block, + [162531] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8845), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162540] = 3, + ACTIONS(8847), 1, + sym_identifier, + ACTIONS(8849), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162414] = 2, + [162551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7898), 2, + ACTIONS(1705), 2, sym__automatic_semicolon, anon_sym_SEMI, - [162423] = 3, - ACTIONS(7246), 1, + [162560] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2660), 1, + STATE(2637), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162434] = 3, - ACTIONS(8835), 1, - sym_identifier, - ACTIONS(8837), 1, - sym_private_property_identifier, + [162571] = 3, + ACTIONS(4105), 1, + anon_sym_LBRACE, + STATE(2205), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162445] = 3, - ACTIONS(8839), 1, - sym_identifier, - ACTIONS(8841), 1, - sym_private_property_identifier, + [162582] = 3, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162456] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2673), 1, - sym_statement_block, + [162593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162467] = 3, - ACTIONS(6681), 1, + ACTIONS(8851), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162602] = 3, + ACTIONS(8853), 1, + anon_sym_SEMI, + ACTIONS(8855), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162613] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2314), 1, + STATE(2235), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162478] = 3, - ACTIONS(6751), 1, + [162624] = 3, + ACTIONS(6699), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(1682), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162489] = 3, - ACTIONS(8843), 1, - sym_identifier, - ACTIONS(8845), 1, - anon_sym_STAR, + [162635] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5715), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162500] = 3, - ACTIONS(4083), 1, + [162646] = 3, + ACTIONS(7017), 1, anon_sym_LBRACE, - STATE(2316), 1, + STATE(4243), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162511] = 3, - ACTIONS(2476), 1, + [162657] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(5279), 1, + STATE(2237), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162522] = 3, - ACTIONS(8847), 1, - sym_identifier, - ACTIONS(8849), 1, - sym_private_property_identifier, + [162668] = 3, + ACTIONS(3534), 1, + anon_sym_COLON, + STATE(5317), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162533] = 3, - ACTIONS(6789), 1, + [162679] = 3, + ACTIONS(7017), 1, anon_sym_LBRACE, - STATE(216), 1, - sym_class_body, + STATE(3983), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162544] = 2, + [162690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 2, + ACTIONS(8857), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162553] = 2, + anon_sym_RBRACK, + [162699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162562] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2628), 1, - sym_statement_block, + ACTIONS(8859), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162573] = 3, - ACTIONS(8853), 1, - sym_identifier, - ACTIONS(8855), 1, - sym_private_property_identifier, + ACTIONS(6007), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162584] = 3, - ACTIONS(7246), 1, + ACTIONS(8562), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162726] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2644), 1, + STATE(5400), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162595] = 3, - ACTIONS(8857), 1, - anon_sym_SEMI, - ACTIONS(8859), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162606] = 3, - ACTIONS(6775), 1, + [162737] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(873), 1, - sym_class_body, + STATE(2627), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162617] = 3, - ACTIONS(7246), 1, + [162748] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(5222), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162628] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5281), 1, - sym_statement_block, + [162759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162639] = 3, + ACTIONS(6020), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162768] = 3, ACTIONS(8861), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(8863), 1, - sym_private_property_identifier, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162650] = 3, - ACTIONS(6681), 1, + [162779] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2233), 1, - sym_class_body, + STATE(2624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162661] = 3, - ACTIONS(6681), 1, + [162790] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2317), 1, + STATE(2262), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162672] = 2, + [162801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162681] = 3, - ACTIONS(7246), 1, + ACTIONS(4953), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162810] = 3, + ACTIONS(4105), 1, anon_sym_LBRACE, - STATE(2618), 1, + STATE(2265), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162692] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162701] = 3, - ACTIONS(6751), 1, + [162821] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(4062), 1, - sym_class_body, + STATE(2638), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162712] = 3, - ACTIONS(6681), 1, + [162832] = 3, + ACTIONS(6689), 1, anon_sym_LBRACE, - STATE(2384), 1, + STATE(2238), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162723] = 2, + [162843] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162732] = 2, + [162854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(8865), 2, - anon_sym_COMMA, - anon_sym_GT, - [162741] = 3, - ACTIONS(4083), 1, + sym__automatic_semicolon, + anon_sym_SEMI, + [162863] = 3, + ACTIONS(6843), 1, anon_sym_LBRACE, - STATE(2385), 1, - sym_statement_block, + STATE(891), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162752] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5294), 1, - sym_statement_block, + [162874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162763] = 3, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(2386), 1, - sym_statement_block, + ACTIONS(8109), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162774] = 3, - ACTIONS(7246), 1, + ACTIONS(8867), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162892] = 3, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2638), 1, + STATE(2671), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162785] = 2, + [162903] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8867), 2, + ACTIONS(7726), 2, sym__automatic_semicolon, anon_sym_SEMI, - [162794] = 3, - ACTIONS(6681), 1, - anon_sym_LBRACE, - STATE(2387), 1, - sym_class_body, + [162912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162805] = 3, - ACTIONS(4083), 1, + ACTIONS(8869), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162921] = 3, + ACTIONS(8709), 1, anon_sym_LBRACE, - STATE(2235), 1, - sym_statement_block, + STATE(4251), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162816] = 3, - ACTIONS(3497), 1, + [162932] = 3, + ACTIONS(3250), 1, anon_sym_LPAREN, - STATE(1253), 1, - sym_arguments, + STATE(3710), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162827] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5613), 1, - sym_formal_parameters, + [162943] = 3, + ACTIONS(7017), 1, + anon_sym_LBRACE, + STATE(784), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162838] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(4291), 1, - sym_formal_parameters, + [162954] = 3, + ACTIONS(8871), 1, + sym_identifier, + ACTIONS(8873), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162849] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5626), 1, - sym_formal_parameters, + [162965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162860] = 3, - ACTIONS(8869), 1, - anon_sym_SEMI, - ACTIONS(8871), 1, - sym__automatic_semicolon, + ACTIONS(8875), 2, + anon_sym_COMMA, + anon_sym_GT, + [162974] = 3, + ACTIONS(8359), 1, + sym_identifier, + ACTIONS(8363), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162871] = 3, - ACTIONS(8873), 1, + [162985] = 3, + ACTIONS(8877), 1, anon_sym_SEMI, - ACTIONS(8875), 1, + ACTIONS(8879), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162882] = 3, - ACTIONS(6416), 1, + [162996] = 3, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(4294), 1, + STATE(5611), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162893] = 3, - ACTIONS(6416), 1, - anon_sym_LPAREN, - STATE(5636), 1, - sym_formal_parameters, + [163007] = 3, + ACTIONS(8881), 1, + anon_sym_SEMI, + ACTIONS(8883), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162904] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2639), 1, - sym_statement_block, + [163018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162915] = 3, - ACTIONS(4610), 1, + ACTIONS(8885), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163027] = 3, + ACTIONS(6761), 1, anon_sym_LBRACE, - STATE(2686), 1, - sym_statement_block, + STATE(3962), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162926] = 2, + [163038] = 3, + ACTIONS(8887), 1, + sym_identifier, + ACTIONS(8889), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8877), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162935] = 3, - ACTIONS(7246), 1, - anon_sym_LBRACE, - STATE(2648), 1, - sym_statement_block, + [163049] = 3, + ACTIONS(8891), 1, + anon_sym_LPAREN, + STATE(785), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162946] = 2, + [163060] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5621), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8879), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162955] = 3, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym_enum_body, + [163071] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162966] = 3, - ACTIONS(8881), 1, + ACTIONS(4789), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163080] = 3, + ACTIONS(6438), 1, anon_sym_LPAREN, - STATE(766), 1, - sym_parenthesized_expression, + STATE(4304), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162977] = 2, - ACTIONS(8883), 1, - anon_sym_from, + [163091] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5634), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8885), 1, - sym_regex_pattern, - [162995] = 2, - ACTIONS(6544), 1, - anon_sym_is, + [163102] = 3, + ACTIONS(6689), 1, + anon_sym_LBRACE, + STATE(2208), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163003] = 2, - ACTIONS(8887), 1, - anon_sym_RBRACK, + [163113] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(4308), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163011] = 2, - ACTIONS(8889), 1, - sym_identifier, + [163124] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(5644), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163019] = 2, - ACTIONS(8891), 1, - anon_sym_symbol, + [163135] = 3, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(3972), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [163146] = 3, + ACTIONS(6438), 1, + anon_sym_LPAREN, + STATE(3743), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8893), 1, - anon_sym_SLASH2, - [163037] = 2, - ACTIONS(5475), 1, - anon_sym_in, + sym_comment, + [163157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163045] = 2, - ACTIONS(8895), 1, - anon_sym_EQ_GT, + ACTIONS(8893), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163053] = 2, - ACTIONS(8897), 1, - anon_sym_RBRACK, + ACTIONS(8895), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163061] = 2, + ACTIONS(8897), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163184] = 2, ACTIONS(8899), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163069] = 2, + [163192] = 2, ACTIONS(8901), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163077] = 2, + [163200] = 2, ACTIONS(8903), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163085] = 2, + [163208] = 2, ACTIONS(8905), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163093] = 2, + [163216] = 2, ACTIONS(8907), 1, - anon_sym_DOT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163101] = 2, + [163224] = 2, ACTIONS(8909), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163109] = 2, + [163232] = 2, ACTIONS(8911), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163117] = 2, + [163240] = 2, ACTIONS(8913), 1, - anon_sym_EQ_GT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163125] = 2, + [163248] = 2, ACTIONS(8915), 1, - sym_identifier, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163256] = 2, + ACTIONS(5399), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163133] = 2, + [163264] = 2, ACTIONS(8917), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163141] = 2, + [163272] = 2, ACTIONS(8919), 1, - anon_sym_EQ, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163149] = 2, + [163280] = 2, ACTIONS(8921), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163157] = 2, - ACTIONS(8365), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163165] = 2, + [163288] = 2, ACTIONS(8923), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163173] = 2, + [163296] = 2, ACTIONS(8925), 1, - anon_sym_function, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163181] = 2, + [163304] = 2, ACTIONS(8927), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163189] = 2, + [163312] = 2, ACTIONS(8929), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163197] = 2, + [163320] = 2, ACTIONS(8931), 1, - sym_identifier, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163205] = 2, + [163328] = 2, ACTIONS(8933), 1, - sym_identifier, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163213] = 2, + [163336] = 2, ACTIONS(8935), 1, - anon_sym_from, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163221] = 2, - ACTIONS(5019), 1, - anon_sym_RBRACK, + [163344] = 2, + ACTIONS(8937), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163229] = 2, - ACTIONS(8937), 1, + [163352] = 2, + ACTIONS(4323), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163237] = 2, + [163360] = 2, ACTIONS(8939), 1, - anon_sym_DOT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163245] = 2, + [163368] = 2, ACTIONS(8941), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163253] = 2, + [163376] = 2, ACTIONS(8943), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163261] = 2, + [163384] = 2, ACTIONS(8945), 1, - anon_sym_new, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163269] = 2, + [163392] = 2, ACTIONS(8947), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163277] = 2, + [163400] = 2, ACTIONS(8949), 1, - anon_sym_RBRACK, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163285] = 2, - ACTIONS(8951), 1, - sym_identifier, + [163408] = 2, + ACTIONS(4131), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163293] = 2, - ACTIONS(8222), 1, - anon_sym_RBRACE, + [163416] = 2, + ACTIONS(8951), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163301] = 2, + [163424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(8953), 1, - anon_sym_RPAREN, + anon_sym_SLASH2, + [163434] = 2, + ACTIONS(5057), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163309] = 2, - ACTIONS(8955), 1, - anon_sym_EQ_GT, + [163442] = 2, + ACTIONS(8265), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163317] = 2, - ACTIONS(8957), 1, + [163450] = 2, + ACTIONS(6418), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163458] = 2, + ACTIONS(8955), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163325] = 2, - ACTIONS(8154), 1, - anon_sym_RBRACK, + [163466] = 2, + ACTIONS(8957), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163333] = 2, - ACTIONS(8959), 1, - sym_identifier, + [163474] = 2, + ACTIONS(4997), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163341] = 2, - ACTIONS(5046), 1, + [163482] = 2, + ACTIONS(8959), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163349] = 2, + [163490] = 2, ACTIONS(8961), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163357] = 2, + [163498] = 2, ACTIONS(8963), 1, - anon_sym_symbol, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163365] = 2, + [163506] = 2, ACTIONS(8965), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163373] = 2, + [163514] = 2, ACTIONS(8967), 1, - sym_number, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163381] = 2, + [163522] = 2, ACTIONS(8969), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163389] = 2, - ACTIONS(8971), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163397] = 2, - ACTIONS(5092), 1, - anon_sym_RPAREN, + [163530] = 2, + ACTIONS(8971), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163405] = 2, + [163538] = 2, ACTIONS(8973), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163413] = 2, + [163546] = 2, ACTIONS(8975), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163421] = 2, + [163554] = 2, ACTIONS(8977), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163429] = 2, + [163562] = 2, ACTIONS(8979), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163437] = 2, + [163570] = 2, ACTIONS(8981), 1, anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163445] = 2, + [163578] = 2, ACTIONS(8983), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163453] = 2, - ACTIONS(5664), 1, - anon_sym_in, + [163586] = 2, + ACTIONS(8985), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163461] = 2, - ACTIONS(8985), 1, - anon_sym_EQ_GT, + [163594] = 2, + ACTIONS(8987), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163469] = 2, - ACTIONS(8987), 1, - anon_sym_RPAREN, + [163602] = 2, + ACTIONS(7298), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163477] = 2, + [163610] = 2, ACTIONS(8989), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163485] = 2, + [163618] = 2, ACTIONS(8991), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163493] = 2, + [163626] = 2, ACTIONS(8993), 1, - anon_sym_EQ_GT, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163501] = 2, + [163634] = 2, ACTIONS(8995), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163509] = 2, + [163642] = 2, ACTIONS(8997), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163517] = 2, + [163650] = 2, ACTIONS(8999), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163525] = 2, + [163658] = 2, ACTIONS(9001), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163533] = 2, + [163666] = 2, ACTIONS(9003), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163674] = 2, + ACTIONS(5526), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163541] = 2, + [163682] = 2, ACTIONS(9005), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163549] = 2, + [163690] = 2, ACTIONS(9007), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163557] = 2, + [163698] = 2, ACTIONS(9009), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163565] = 2, + [163706] = 2, ACTIONS(9011), 1, - anon_sym_target, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163573] = 2, + [163714] = 2, ACTIONS(9013), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163581] = 2, - ACTIONS(9015), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [163722] = 3, + ACTIONS(3), 1, sym_comment, - [163589] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9015), 1, + sym_regex_pattern, + [163732] = 2, ACTIONS(9017), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163597] = 2, + [163740] = 2, ACTIONS(9019), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163605] = 2, + [163748] = 2, ACTIONS(9021), 1, - anon_sym_symbol, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163613] = 2, - ACTIONS(9023), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, + [163756] = 3, + ACTIONS(3), 1, sym_comment, - [163621] = 2, - ACTIONS(5108), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [163629] = 2, + ACTIONS(9023), 1, + anon_sym_SLASH2, + [163766] = 2, ACTIONS(9025), 1, - anon_sym_from, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163637] = 2, + [163774] = 2, ACTIONS(9027), 1, - anon_sym_require, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163645] = 2, + [163782] = 2, ACTIONS(9029), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163653] = 2, + [163790] = 2, ACTIONS(9031), 1, - anon_sym_symbol, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163661] = 2, + [163798] = 2, ACTIONS(9033), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163669] = 2, + [163806] = 2, ACTIONS(9035), 1, - sym_identifier, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163677] = 2, + [163814] = 2, ACTIONS(9037), 1, - anon_sym_DOT, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163685] = 2, + [163822] = 2, ACTIONS(9039), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163693] = 2, + [163830] = 2, ACTIONS(9041), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163701] = 2, + [163838] = 2, ACTIONS(9043), 1, - anon_sym_namespace, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163709] = 2, + [163846] = 2, ACTIONS(9045), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163717] = 2, + [163854] = 2, ACTIONS(9047), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163725] = 2, + [163862] = 2, ACTIONS(9049), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163733] = 2, - ACTIONS(4991), 1, - anon_sym_in, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163741] = 2, + [163870] = 2, ACTIONS(9051), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163749] = 2, + [163878] = 2, ACTIONS(9053), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163757] = 2, - ACTIONS(9055), 1, - anon_sym_RBRACK, + [163886] = 2, + ACTIONS(5087), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163765] = 2, - ACTIONS(9057), 1, + [163894] = 2, + ACTIONS(9055), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163773] = 2, - ACTIONS(4493), 1, - anon_sym_RPAREN, + [163902] = 2, + ACTIONS(9057), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163781] = 2, + [163910] = 2, ACTIONS(9059), 1, - anon_sym_as, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163789] = 2, + [163918] = 2, ACTIONS(9061), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163797] = 2, + [163926] = 2, ACTIONS(9063), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163805] = 2, - ACTIONS(5086), 1, - anon_sym_COLON, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163813] = 2, + [163934] = 2, ACTIONS(9065), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163821] = 2, - ACTIONS(5161), 1, - anon_sym_in, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163829] = 2, + [163942] = 2, ACTIONS(9067), 1, - anon_sym_DOT, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163837] = 2, + [163950] = 2, ACTIONS(9069), 1, - anon_sym_class, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163845] = 2, + [163958] = 2, ACTIONS(9071), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163853] = 2, + [163966] = 2, + ACTIONS(4199), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163974] = 2, ACTIONS(9073), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163861] = 2, + [163982] = 2, ACTIONS(9075), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163869] = 2, + [163990] = 2, ACTIONS(9077), 1, - anon_sym_EQ, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163877] = 2, + [163998] = 2, ACTIONS(9079), 1, - anon_sym_namespace, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163885] = 2, + [164006] = 2, ACTIONS(9081), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163893] = 2, + [164014] = 2, ACTIONS(9083), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163901] = 2, + [164022] = 2, ACTIONS(9085), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163909] = 2, + [164030] = 2, ACTIONS(9087), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163917] = 2, - ACTIONS(8450), 1, - anon_sym_RBRACK, + [164038] = 2, + ACTIONS(4598), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164046] = 2, + ACTIONS(5172), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164054] = 2, + ACTIONS(4079), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163925] = 2, + [164062] = 2, ACTIONS(9089), 1, - anon_sym_EQ, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163933] = 2, + [164070] = 2, ACTIONS(9091), 1, - anon_sym_RBRACK, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163941] = 2, + [164078] = 2, ACTIONS(9093), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [164086] = 2, ACTIONS(9095), 1, - anon_sym_SLASH2, - [163959] = 2, - ACTIONS(9097), 1, - anon_sym_RBRACK, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163967] = 2, - ACTIONS(9099), 1, - anon_sym_while, + [164094] = 2, + ACTIONS(9097), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163975] = 2, - ACTIONS(8446), 1, - anon_sym_RBRACK, + [164102] = 2, + ACTIONS(9099), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163983] = 2, + [164110] = 2, ACTIONS(9101), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163991] = 2, + [164118] = 2, ACTIONS(9103), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163999] = 2, - ACTIONS(9105), 1, - anon_sym_EQ_GT, + [164126] = 2, + ACTIONS(5111), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164007] = 3, - ACTIONS(3), 1, + [164134] = 2, + ACTIONS(5030), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164142] = 2, + ACTIONS(8520), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164150] = 2, + ACTIONS(9105), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [164158] = 2, ACTIONS(9107), 1, - sym_regex_pattern, - [164017] = 2, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164166] = 2, ACTIONS(9109), 1, - anon_sym_EQ_GT, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164174] = 2, + ACTIONS(8119), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164025] = 2, + [164182] = 2, ACTIONS(9111), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164033] = 2, + [164190] = 2, ACTIONS(9113), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164198] = 2, + ACTIONS(6723), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164041] = 2, + [164206] = 2, ACTIONS(9115), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164049] = 2, + [164214] = 2, ACTIONS(9117), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164057] = 2, + [164222] = 2, ACTIONS(9119), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164065] = 2, + [164230] = 2, ACTIONS(9121), 1, - anon_sym_DOT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164073] = 2, + [164238] = 2, ACTIONS(9123), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164081] = 2, - ACTIONS(4901), 1, - anon_sym_in, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164089] = 2, + [164246] = 2, ACTIONS(9125), 1, - anon_sym_RBRACK, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164097] = 2, + [164254] = 2, ACTIONS(9127), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164105] = 2, + [164262] = 2, ACTIONS(9129), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164113] = 2, + [164270] = 2, ACTIONS(9131), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164121] = 2, + [164278] = 2, ACTIONS(9133), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164129] = 2, + [164286] = 2, ACTIONS(9135), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164137] = 2, + [164294] = 2, ACTIONS(9137), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164145] = 2, + [164302] = 2, ACTIONS(9139), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164153] = 2, + [164310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9141), 1, - anon_sym_RBRACK, + sym_regex_pattern, + [164320] = 2, + ACTIONS(4391), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164161] = 2, + [164328] = 2, ACTIONS(9143), 1, - anon_sym_new, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164169] = 2, + [164336] = 2, ACTIONS(9145), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164177] = 2, + [164344] = 2, ACTIONS(9147), 1, - anon_sym_RBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164185] = 2, + [164352] = 2, ACTIONS(9149), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164193] = 2, + [164360] = 2, ACTIONS(9151), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164201] = 2, + [164368] = 2, ACTIONS(9153), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164209] = 2, - ACTIONS(8182), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164217] = 2, + [164376] = 2, ACTIONS(9155), 1, - anon_sym_class, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164225] = 2, - ACTIONS(5026), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164233] = 2, - ACTIONS(4101), 1, - anon_sym_is, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164241] = 2, + [164384] = 2, ACTIONS(9157), 1, - anon_sym_EQ, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [164392] = 2, ACTIONS(9159), 1, - sym_regex_pattern, - [164259] = 2, - ACTIONS(9161), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164267] = 2, - ACTIONS(9163), 1, - anon_sym_EQ, + [164400] = 2, + ACTIONS(9161), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164275] = 2, - ACTIONS(8060), 1, - anon_sym_RBRACK, + [164408] = 2, + ACTIONS(9163), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164283] = 2, + [164416] = 2, ACTIONS(9165), 1, - anon_sym_EQ_GT, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164291] = 2, + [164424] = 2, ACTIONS(9167), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164299] = 2, + [164432] = 2, + ACTIONS(8204), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164440] = 2, ACTIONS(9169), 1, - anon_sym_RBRACK, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164307] = 2, + [164448] = 2, ACTIONS(9171), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164315] = 2, + [164456] = 2, ACTIONS(9173), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164323] = 2, - ACTIONS(7766), 1, - anon_sym_EQ_GT, + [164464] = 2, + ACTIONS(9175), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164331] = 2, - ACTIONS(9175), 1, + [164472] = 2, + ACTIONS(9177), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164339] = 2, - ACTIONS(9177), 1, - anon_sym_EQ_GT, + [164480] = 2, + ACTIONS(9179), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9179), 1, - anon_sym_SLASH2, - [164357] = 2, + [164488] = 2, ACTIONS(9181), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164365] = 2, + [164496] = 2, ACTIONS(9183), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164504] = 2, + ACTIONS(8081), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164373] = 2, + [164512] = 2, ACTIONS(9185), 1, - anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164520] = 2, + ACTIONS(7938), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164381] = 2, + [164528] = 2, ACTIONS(9187), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164389] = 2, + [164536] = 2, ACTIONS(9189), 1, - anon_sym_class, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164397] = 2, + [164544] = 2, ACTIONS(9191), 1, - sym_number, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164405] = 2, + [164552] = 2, ACTIONS(9193), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164413] = 2, + [164560] = 2, ACTIONS(9195), 1, - anon_sym_EQ_GT, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164568] = 2, + ACTIONS(5109), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164421] = 2, + [164576] = 2, ACTIONS(9197), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164429] = 2, + [164584] = 2, ACTIONS(9199), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164437] = 2, + [164592] = 2, ACTIONS(9201), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164445] = 2, + [164600] = 2, ACTIONS(9203), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164453] = 2, - ACTIONS(5119), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164461] = 2, + [164608] = 2, ACTIONS(9205), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164469] = 2, - ACTIONS(8150), 1, - anon_sym_RBRACE, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164477] = 2, + [164616] = 2, ACTIONS(9207), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164485] = 2, + [164624] = 2, ACTIONS(9209), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164493] = 2, - ACTIONS(8286), 1, - sym_identifier, + [164632] = 2, + ACTIONS(9211), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164501] = 2, - ACTIONS(9211), 1, - anon_sym_RBRACK, + [164640] = 2, + ACTIONS(8687), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164509] = 2, + [164648] = 2, ACTIONS(9213), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164517] = 2, + [164656] = 2, ACTIONS(9215), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164525] = 2, + [164664] = 2, ACTIONS(9217), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164533] = 2, - ACTIONS(9219), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164541] = 2, - ACTIONS(9221), 1, + [164672] = 2, + ACTIONS(7151), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164549] = 2, - ACTIONS(9223), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164557] = 2, - ACTIONS(7021), 1, - anon_sym_is, + [164680] = 2, + ACTIONS(9219), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164565] = 2, - ACTIONS(9225), 1, + [164688] = 2, + ACTIONS(9221), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164573] = 2, - ACTIONS(9227), 1, + [164696] = 2, + ACTIONS(9223), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164581] = 2, - ACTIONS(9229), 1, - anon_sym_RBRACK, + [164704] = 2, + ACTIONS(8309), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164589] = 2, - ACTIONS(8579), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, + [164712] = 3, + ACTIONS(3), 1, sym_comment, - [164597] = 2, - ACTIONS(9231), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(9225), 1, + anon_sym_SLASH2, + [164722] = 3, + ACTIONS(3), 1, sym_comment, - [164605] = 2, - ACTIONS(5088), 1, - anon_sym_RPAREN, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9227), 1, + sym_regex_pattern, + [164732] = 2, + ACTIONS(9229), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164613] = 2, - ACTIONS(9233), 1, - anon_sym_RBRACK, + [164740] = 2, + ACTIONS(9231), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164621] = 2, - ACTIONS(7137), 1, - anon_sym_is, + [164748] = 2, + ACTIONS(9233), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164629] = 2, + [164756] = 2, ACTIONS(9235), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164637] = 2, + [164764] = 2, ACTIONS(9237), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164645] = 2, + [164772] = 2, ACTIONS(9239), 1, - anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164780] = 2, + ACTIONS(7031), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164653] = 2, + [164788] = 2, ACTIONS(9241), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164661] = 2, + [164796] = 2, ACTIONS(9243), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164669] = 2, + [164804] = 2, ACTIONS(9245), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164677] = 2, + [164812] = 2, ACTIONS(9247), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164685] = 2, - ACTIONS(5084), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164693] = 2, + [164820] = 2, ACTIONS(9249), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164701] = 2, + [164828] = 2, ACTIONS(9251), 1, - anon_sym_as, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164709] = 2, + [164836] = 2, ACTIONS(9253), 1, - anon_sym_RBRACK, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164717] = 2, + [164844] = 2, ACTIONS(9255), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164725] = 2, - ACTIONS(7704), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164733] = 2, + [164852] = 2, ACTIONS(9257), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164741] = 2, + [164860] = 2, ACTIONS(9259), 1, - anon_sym_from, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164749] = 2, + [164868] = 2, ACTIONS(9261), 1, - anon_sym_from, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [164876] = 2, ACTIONS(9263), 1, - sym_regex_pattern, - [164767] = 2, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164884] = 2, ACTIONS(9265), 1, - anon_sym_readonly, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164892] = 2, + ACTIONS(7155), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164775] = 2, + [164900] = 2, ACTIONS(9267), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164783] = 2, + [164908] = 2, + ACTIONS(4971), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164916] = 2, ACTIONS(9269), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164791] = 2, + [164924] = 2, ACTIONS(9271), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164799] = 2, + [164932] = 2, ACTIONS(9273), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164807] = 2, - ACTIONS(4231), 1, - anon_sym_in, + [164940] = 2, + ACTIONS(5036), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164948] = 2, + ACTIONS(7655), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164815] = 2, + [164956] = 2, ACTIONS(9275), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164964] = 2, + ACTIONS(5034), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164823] = 2, + [164972] = 2, ACTIONS(9277), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164831] = 2, + [164980] = 2, ACTIONS(9279), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164988] = 2, + ACTIONS(8129), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164839] = 2, + [164996] = 2, ACTIONS(9281), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164847] = 2, + [165004] = 2, ACTIONS(9283), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164855] = 2, + [165012] = 2, ACTIONS(9285), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164863] = 2, + [165020] = 2, ACTIONS(9287), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164871] = 2, + [165028] = 2, ACTIONS(9289), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164879] = 2, + [165036] = 2, ACTIONS(9291), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164887] = 2, - ACTIONS(5768), 1, - anon_sym_in, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164895] = 2, + [165044] = 2, ACTIONS(9293), 1, - sym_identifier, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164903] = 2, + [165052] = 2, ACTIONS(9295), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164911] = 2, - ACTIONS(8114), 1, - anon_sym_RBRACK, + [165060] = 2, + ACTIONS(4967), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164919] = 2, + [165068] = 2, ACTIONS(9297), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164927] = 2, + [165076] = 2, ACTIONS(9299), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164935] = 2, + [165084] = 2, ACTIONS(9301), 1, - ts_builtin_sym_end, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164943] = 2, - ACTIONS(4323), 1, - anon_sym_RPAREN, + [165092] = 2, + ACTIONS(6627), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164951] = 2, + [165100] = 2, ACTIONS(9303), 1, - sym_identifier, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164959] = 2, + [165108] = 2, ACTIONS(9305), 1, - anon_sym_RBRACK, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165116] = 2, + ACTIONS(5781), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164967] = 2, + [165124] = 2, ACTIONS(9307), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165132] = 2, + ACTIONS(8425), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164975] = 2, + [165140] = 2, ACTIONS(9309), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164983] = 2, + [165148] = 2, ACTIONS(9311), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164991] = 2, + [165156] = 2, ACTIONS(9313), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164999] = 2, + [165164] = 2, + ACTIONS(8554), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165172] = 2, ACTIONS(9315), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165007] = 2, + [165180] = 2, ACTIONS(9317), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165188] = 2, + ACTIONS(5361), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165015] = 2, + [165196] = 2, ACTIONS(9319), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165023] = 2, + [165204] = 2, ACTIONS(9321), 1, - anon_sym_target, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165031] = 2, + [165212] = 2, ACTIONS(9323), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165039] = 2, - ACTIONS(5417), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165047] = 2, + [165220] = 2, ACTIONS(9325), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165055] = 2, + [165228] = 2, ACTIONS(9327), 1, - anon_sym_LPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165063] = 2, + [165236] = 2, ACTIONS(9329), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165071] = 2, + [165244] = 2, ACTIONS(9331), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165079] = 2, + [165252] = 2, ACTIONS(9333), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165087] = 2, + [165260] = 2, ACTIONS(9335), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165095] = 2, + [165268] = 2, ACTIONS(9337), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165103] = 2, - ACTIONS(6645), 1, - anon_sym_is, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165111] = 2, + [165276] = 2, ACTIONS(9339), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165119] = 2, + [165284] = 2, ACTIONS(9341), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165127] = 2, + [165292] = 2, ACTIONS(9343), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165135] = 2, - ACTIONS(6707), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165143] = 2, + [165300] = 2, ACTIONS(9345), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165151] = 2, + [165308] = 2, ACTIONS(9347), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165159] = 2, + [165316] = 2, ACTIONS(9349), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165167] = 2, + [165324] = 2, ACTIONS(9351), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165175] = 2, + [165332] = 2, ACTIONS(9353), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165183] = 2, - ACTIONS(9355), 1, - anon_sym_RBRACK, + [165340] = 2, + ACTIONS(7292), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165191] = 2, - ACTIONS(9357), 1, - sym_identifier, + [165348] = 2, + ACTIONS(9355), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165199] = 2, - ACTIONS(9359), 1, + [165356] = 2, + ACTIONS(9357), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165207] = 2, - ACTIONS(7372), 1, - sym_identifier, + [165364] = 2, + ACTIONS(9359), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165215] = 2, + [165372] = 2, ACTIONS(9361), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165223] = 2, + [165380] = 2, ACTIONS(9363), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165231] = 2, + [165388] = 2, ACTIONS(9365), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165239] = 2, + [165396] = 2, ACTIONS(9367), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165247] = 2, + [165404] = 2, ACTIONS(9369), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165255] = 2, + [165412] = 2, ACTIONS(9371), 1, - anon_sym_class, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165263] = 2, + [165420] = 2, ACTIONS(9373), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165271] = 2, + [165428] = 2, ACTIONS(9375), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165279] = 2, + [165436] = 2, ACTIONS(9377), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165287] = 2, - ACTIONS(4821), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165295] = 2, + [165444] = 2, ACTIONS(9379), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165303] = 2, + [165452] = 2, ACTIONS(9381), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165311] = 2, + [165460] = 2, ACTIONS(9383), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165319] = 2, + [165468] = 2, ACTIONS(9385), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165327] = 2, + [165476] = 2, ACTIONS(9387), 1, - anon_sym_EQ, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165335] = 2, + [165484] = 2, ACTIONS(9389), 1, - anon_sym_RBRACK, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165343] = 2, + [165492] = 2, ACTIONS(9391), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165351] = 2, + [165500] = 2, ACTIONS(9393), 1, - anon_sym_EQ_GT, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165508] = 2, + ACTIONS(4545), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165359] = 2, + [165516] = 2, ACTIONS(9395), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165367] = 2, + [165524] = 2, ACTIONS(9397), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165375] = 2, + [165532] = 2, ACTIONS(9399), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165383] = 2, - ACTIONS(5009), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165391] = 2, + [165540] = 2, ACTIONS(9401), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165399] = 2, + [165548] = 2, ACTIONS(9403), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165407] = 2, + [165556] = 2, ACTIONS(9405), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165415] = 2, - ACTIONS(8203), 1, - anon_sym_LBRACE, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165423] = 2, + [165564] = 2, ACTIONS(9407), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165431] = 2, + [165572] = 2, ACTIONS(9409), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165439] = 2, + [165580] = 2, ACTIONS(9411), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165447] = 2, + [165588] = 2, ACTIONS(9413), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165455] = 2, + [165596] = 2, ACTIONS(9415), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165463] = 2, + [165604] = 2, ACTIONS(9417), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165471] = 2, + [165612] = 2, ACTIONS(9419), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165479] = 2, + [165620] = 2, ACTIONS(9421), 1, - anon_sym_DOT, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165487] = 2, + [165628] = 2, ACTIONS(9423), 1, - anon_sym_RBRACK, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165495] = 2, + [165636] = 2, ACTIONS(9425), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165503] = 2, + [165644] = 2, ACTIONS(9427), 1, - anon_sym_EQ_GT, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165511] = 2, + [165652] = 2, ACTIONS(9429), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165519] = 2, + [165660] = 2, ACTIONS(9431), 1, - anon_sym_LBRACE, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165527] = 2, + [165668] = 2, ACTIONS(9433), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165535] = 2, + [165676] = 2, ACTIONS(9435), 1, - sym_identifier, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165543] = 2, + [165684] = 2, ACTIONS(9437), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165551] = 2, - ACTIONS(4203), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165559] = 2, + [165692] = 2, ACTIONS(9439), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165567] = 2, + [165700] = 2, ACTIONS(9441), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165575] = 2, + [165708] = 2, ACTIONS(9443), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165583] = 2, + [165716] = 2, ACTIONS(9445), 1, - anon_sym_new, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165591] = 2, + [165724] = 2, + ACTIONS(7416), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165732] = 2, ACTIONS(9447), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165599] = 2, + [165740] = 2, ACTIONS(9449), 1, - anon_sym_RBRACK, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165607] = 2, + [165748] = 2, ACTIONS(9451), 1, - anon_sym_RBRACK, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165615] = 2, + [165756] = 2, ACTIONS(9453), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165623] = 2, + [165764] = 2, ACTIONS(9455), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [165772] = 2, + ACTIONS(4993), 1, + anon_sym_COLON, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [165780] = 2, ACTIONS(9457), 1, - anon_sym_SLASH2, - [165641] = 2, - ACTIONS(9459), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165649] = 2, - ACTIONS(9461), 1, - anon_sym_as, + [165788] = 2, + ACTIONS(9459), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165657] = 2, + [165796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9461), 1, + sym_regex_pattern, + [165806] = 2, ACTIONS(9463), 1, - anon_sym_RBRACK, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165665] = 2, + [165814] = 2, ACTIONS(9465), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165673] = 2, + [165822] = 2, ACTIONS(9467), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165681] = 2, + [165830] = 2, ACTIONS(9469), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165689] = 2, + [165838] = 2, ACTIONS(9471), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165697] = 2, + [165846] = 2, ACTIONS(9473), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165705] = 2, + [165854] = 2, ACTIONS(9475), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165713] = 2, + [165862] = 2, ACTIONS(9477), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165721] = 2, + [165870] = 2, ACTIONS(9479), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165729] = 2, + [165878] = 2, ACTIONS(9481), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165737] = 2, - ACTIONS(5090), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165745] = 2, + [165886] = 2, ACTIONS(9483), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165753] = 2, + [165894] = 2, ACTIONS(9485), 1, - anon_sym_RBRACK, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165761] = 2, + [165902] = 2, ACTIONS(9487), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165769] = 2, - ACTIONS(9489), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165777] = 2, + [165910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9489), 1, + anon_sym_SLASH2, + [165920] = 2, ACTIONS(9491), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165785] = 2, + [165928] = 2, ACTIONS(9493), 1, - anon_sym_EQ_GT, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [165936] = 2, ACTIONS(9495), 1, - anon_sym_SLASH2, - [165803] = 2, - ACTIONS(9497), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [165944] = 2, + ACTIONS(9497), 1, + anon_sym_function, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [165952] = 2, ACTIONS(9499), 1, - sym_regex_pattern, - [165821] = 2, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165960] = 2, ACTIONS(9501), 1, - anon_sym_RBRACK, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165829] = 2, + [165968] = 2, ACTIONS(9503), 1, - anon_sym_RBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165837] = 2, + [165976] = 2, ACTIONS(9505), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165845] = 2, + [165984] = 2, ACTIONS(9507), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165853] = 2, - ACTIONS(7462), 1, - sym_identifier, + [165992] = 2, + ACTIONS(9509), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165861] = 2, - ACTIONS(9509), 1, - anon_sym_function, + [166000] = 2, + ACTIONS(9511), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165869] = 2, - ACTIONS(9511), 1, + [166008] = 2, + ACTIONS(9513), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165877] = 2, - ACTIONS(4411), 1, - anon_sym_RPAREN, + [166016] = 2, + ACTIONS(9515), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165885] = 2, - ACTIONS(9513), 1, - anon_sym_new, + [166024] = 2, + ACTIONS(6065), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165893] = 2, - ACTIONS(9515), 1, - sym_identifier, + [166032] = 2, + ACTIONS(5015), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165901] = 2, + [166040] = 2, ACTIONS(9517), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165909] = 2, - ACTIONS(6061), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165917] = 2, + [166048] = 2, ACTIONS(9519), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165925] = 2, + [166056] = 2, ACTIONS(9521), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165933] = 2, + [166064] = 2, ACTIONS(9523), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165941] = 2, - ACTIONS(4564), 1, - anon_sym_in, + [166072] = 2, + ACTIONS(7474), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165949] = 2, + [166080] = 2, ACTIONS(9525), 1, - anon_sym_new, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165957] = 2, - ACTIONS(5078), 1, - anon_sym_RBRACK, + [166088] = 2, + ACTIONS(4159), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166096] = 2, + ACTIONS(4666), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165965] = 2, + [166104] = 2, ACTIONS(9527), 1, - sym_identifier, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165973] = 2, + [166112] = 2, ACTIONS(9529), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165981] = 2, + [166120] = 2, ACTIONS(9531), 1, - anon_sym_from, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165989] = 2, + [166128] = 2, ACTIONS(9533), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165997] = 2, + [166136] = 2, ACTIONS(9535), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166005] = 2, + [166144] = 2, ACTIONS(9537), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166013] = 2, - ACTIONS(7157), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166021] = 2, + [166152] = 2, ACTIONS(9539), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166029] = 2, + [166160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9541), 1, + sym_regex_pattern, + [166170] = 2, + ACTIONS(8589), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166178] = 2, + ACTIONS(5115), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166037] = 2, + [166186] = 2, ACTIONS(9543), 1, - sym_number, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166045] = 2, + [166194] = 2, ACTIONS(9545), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166053] = 2, + [166202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9547), 1, - anon_sym_new, + anon_sym_SLASH2, + [166212] = 2, + ACTIONS(9549), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166061] = 2, - ACTIONS(9549), 1, - anon_sym_from, + [166220] = 2, + ACTIONS(9551), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166069] = 2, - ACTIONS(9551), 1, - anon_sym_EQ_GT, + [166228] = 2, + ACTIONS(8431), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166077] = 2, + [166236] = 2, ACTIONS(9553), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166085] = 2, + [166244] = 2, ACTIONS(9555), 1, - sym_number, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166252] = 2, + ACTIONS(9557), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166260] = 2, + ACTIONS(9559), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166268] = 2, + ACTIONS(9561), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166276] = 2, + ACTIONS(9563), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166284] = 2, + ACTIONS(9565), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166292] = 2, + ACTIONS(9567), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166300] = 2, + ACTIONS(9569), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166308] = 2, + ACTIONS(9571), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -271237,4659 +271458,4667 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1168)] = 0, - [SMALL_STATE(1169)] = 91, - [SMALL_STATE(1170)] = 184, - [SMALL_STATE(1171)] = 277, - [SMALL_STATE(1172)] = 366, - [SMALL_STATE(1173)] = 455, - [SMALL_STATE(1174)] = 548, - [SMALL_STATE(1175)] = 637, - [SMALL_STATE(1176)] = 726, + [SMALL_STATE(1169)] = 93, + [SMALL_STATE(1170)] = 186, + [SMALL_STATE(1171)] = 279, + [SMALL_STATE(1172)] = 368, + [SMALL_STATE(1173)] = 457, + [SMALL_STATE(1174)] = 546, + [SMALL_STATE(1175)] = 641, + [SMALL_STATE(1176)] = 730, [SMALL_STATE(1177)] = 821, - [SMALL_STATE(1178)] = 913, - [SMALL_STATE(1179)] = 1003, - [SMALL_STATE(1180)] = 1091, - [SMALL_STATE(1181)] = 1161, - [SMALL_STATE(1182)] = 1251, - [SMALL_STATE(1183)] = 1321, - [SMALL_STATE(1184)] = 1393, - [SMALL_STATE(1185)] = 1481, - [SMALL_STATE(1186)] = 1569, - [SMALL_STATE(1187)] = 1659, - [SMALL_STATE(1188)] = 1749, - [SMALL_STATE(1189)] = 1819, - [SMALL_STATE(1190)] = 1891, - [SMALL_STATE(1191)] = 1981, - [SMALL_STATE(1192)] = 2071, - [SMALL_STATE(1193)] = 2159, - [SMALL_STATE(1194)] = 2229, - [SMALL_STATE(1195)] = 2299, - [SMALL_STATE(1196)] = 2389, - [SMALL_STATE(1197)] = 2477, - [SMALL_STATE(1198)] = 2569, - [SMALL_STATE(1199)] = 2639, - [SMALL_STATE(1200)] = 2709, - [SMALL_STATE(1201)] = 2795, - [SMALL_STATE(1202)] = 2881, + [SMALL_STATE(1178)] = 911, + [SMALL_STATE(1179)] = 999, + [SMALL_STATE(1180)] = 1089, + [SMALL_STATE(1181)] = 1177, + [SMALL_STATE(1182)] = 1263, + [SMALL_STATE(1183)] = 1333, + [SMALL_STATE(1184)] = 1403, + [SMALL_STATE(1185)] = 1473, + [SMALL_STATE(1186)] = 1543, + [SMALL_STATE(1187)] = 1631, + [SMALL_STATE(1188)] = 1721, + [SMALL_STATE(1189)] = 1811, + [SMALL_STATE(1190)] = 1881, + [SMALL_STATE(1191)] = 1971, + [SMALL_STATE(1192)] = 2041, + [SMALL_STATE(1193)] = 2131, + [SMALL_STATE(1194)] = 2219, + [SMALL_STATE(1195)] = 2311, + [SMALL_STATE(1196)] = 2401, + [SMALL_STATE(1197)] = 2473, + [SMALL_STATE(1198)] = 2545, + [SMALL_STATE(1199)] = 2635, + [SMALL_STATE(1200)] = 2705, + [SMALL_STATE(1201)] = 2791, + [SMALL_STATE(1202)] = 2883, [SMALL_STATE(1203)] = 2971, - [SMALL_STATE(1204)] = 3062, - [SMALL_STATE(1205)] = 3135, - [SMALL_STATE(1206)] = 3230, - [SMALL_STATE(1207)] = 3309, - [SMALL_STATE(1208)] = 3378, - [SMALL_STATE(1209)] = 3467, - [SMALL_STATE(1210)] = 3536, + [SMALL_STATE(1204)] = 3040, + [SMALL_STATE(1205)] = 3129, + [SMALL_STATE(1206)] = 3198, + [SMALL_STATE(1207)] = 3277, + [SMALL_STATE(1208)] = 3368, + [SMALL_STATE(1209)] = 3441, + [SMALL_STATE(1210)] = 3532, [SMALL_STATE(1211)] = 3623, [SMALL_STATE(1212)] = 3710, [SMALL_STATE(1213)] = 3797, [SMALL_STATE(1214)] = 3884, [SMALL_STATE(1215)] = 3971, - [SMALL_STATE(1216)] = 4062, - [SMALL_STATE(1217)] = 4149, + [SMALL_STATE(1216)] = 4058, + [SMALL_STATE(1217)] = 4145, [SMALL_STATE(1218)] = 4240, - [SMALL_STATE(1219)] = 4331, + [SMALL_STATE(1219)] = 4329, [SMALL_STATE(1220)] = 4420, - [SMALL_STATE(1221)] = 4506, - [SMALL_STATE(1222)] = 4584, - [SMALL_STATE(1223)] = 4658, - [SMALL_STATE(1224)] = 4744, - [SMALL_STATE(1225)] = 4830, - [SMALL_STATE(1226)] = 4916, - [SMALL_STATE(1227)] = 4996, - [SMALL_STATE(1228)] = 5082, - [SMALL_STATE(1229)] = 5160, - [SMALL_STATE(1230)] = 5246, - [SMALL_STATE(1231)] = 5332, - [SMALL_STATE(1232)] = 5418, - [SMALL_STATE(1233)] = 5496, - [SMALL_STATE(1234)] = 5582, - [SMALL_STATE(1235)] = 5668, - [SMALL_STATE(1236)] = 5744, - [SMALL_STATE(1237)] = 5836, - [SMALL_STATE(1238)] = 5922, - [SMALL_STATE(1239)] = 6012, - [SMALL_STATE(1240)] = 6098, - [SMALL_STATE(1241)] = 6188, - [SMALL_STATE(1242)] = 6278, - [SMALL_STATE(1243)] = 6368, - [SMALL_STATE(1244)] = 6460, - [SMALL_STATE(1245)] = 6546, - [SMALL_STATE(1246)] = 6636, - [SMALL_STATE(1247)] = 6722, - [SMALL_STATE(1248)] = 6808, - [SMALL_STATE(1249)] = 6886, - [SMALL_STATE(1250)] = 6975, - [SMALL_STATE(1251)] = 7058, - [SMALL_STATE(1252)] = 7143, - [SMALL_STATE(1253)] = 7220, - [SMALL_STATE(1254)] = 7287, - [SMALL_STATE(1255)] = 7366, - [SMALL_STATE(1256)] = 7433, - [SMALL_STATE(1257)] = 7502, - [SMALL_STATE(1258)] = 7571, - [SMALL_STATE(1259)] = 7660, - [SMALL_STATE(1260)] = 7727, - [SMALL_STATE(1261)] = 7796, - [SMALL_STATE(1262)] = 7865, - [SMALL_STATE(1263)] = 7950, - [SMALL_STATE(1264)] = 8029, - [SMALL_STATE(1265)] = 8112, - [SMALL_STATE(1266)] = 8199, - [SMALL_STATE(1267)] = 8278, - [SMALL_STATE(1268)] = 8353, - [SMALL_STATE(1269)] = 8428, - [SMALL_STATE(1270)] = 8505, - [SMALL_STATE(1271)] = 8572, - [SMALL_STATE(1272)] = 8661, - [SMALL_STATE(1273)] = 8750, - [SMALL_STATE(1274)] = 8839, - [SMALL_STATE(1275)] = 8928, - [SMALL_STATE(1276)] = 8995, - [SMALL_STATE(1277)] = 9080, - [SMALL_STATE(1278)] = 9156, - [SMALL_STATE(1279)] = 9228, - [SMALL_STATE(1280)] = 9302, - [SMALL_STATE(1281)] = 9386, - [SMALL_STATE(1282)] = 9464, - [SMALL_STATE(1283)] = 9552, - [SMALL_STATE(1284)] = 9624, - [SMALL_STATE(1285)] = 9712, - [SMALL_STATE(1286)] = 9780, - [SMALL_STATE(1287)] = 9854, - [SMALL_STATE(1288)] = 9934, - [SMALL_STATE(1289)] = 10000, - [SMALL_STATE(1290)] = 10068, - [SMALL_STATE(1291)] = 10148, - [SMALL_STATE(1292)] = 10220, - [SMALL_STATE(1293)] = 10292, - [SMALL_STATE(1294)] = 10358, - [SMALL_STATE(1295)] = 10430, - [SMALL_STATE(1296)] = 10504, - [SMALL_STATE(1297)] = 10576, - [SMALL_STATE(1298)] = 10642, - [SMALL_STATE(1299)] = 10718, - [SMALL_STATE(1300)] = 10790, - [SMALL_STATE(1301)] = 10864, - [SMALL_STATE(1302)] = 10940, - [SMALL_STATE(1303)] = 11006, - [SMALL_STATE(1304)] = 11090, - [SMALL_STATE(1305)] = 11156, - [SMALL_STATE(1306)] = 11232, - [SMALL_STATE(1307)] = 11304, - [SMALL_STATE(1308)] = 11376, - [SMALL_STATE(1309)] = 11442, - [SMALL_STATE(1310)] = 11508, - [SMALL_STATE(1311)] = 11580, - [SMALL_STATE(1312)] = 11664, - [SMALL_STATE(1313)] = 11736, - [SMALL_STATE(1314)] = 11820, - [SMALL_STATE(1315)] = 11902, - [SMALL_STATE(1316)] = 11978, - [SMALL_STATE(1317)] = 12044, - [SMALL_STATE(1318)] = 12116, - [SMALL_STATE(1319)] = 12194, - [SMALL_STATE(1320)] = 12260, - [SMALL_STATE(1321)] = 12338, - [SMALL_STATE(1322)] = 12408, - [SMALL_STATE(1323)] = 12475, - [SMALL_STATE(1324)] = 12544, - [SMALL_STATE(1325)] = 12621, - [SMALL_STATE(1326)] = 12688, - [SMALL_STATE(1327)] = 12767, - [SMALL_STATE(1328)] = 12840, - [SMALL_STATE(1329)] = 12909, - [SMALL_STATE(1330)] = 12980, - [SMALL_STATE(1331)] = 13051, - [SMALL_STATE(1332)] = 13124, - [SMALL_STATE(1333)] = 13195, - [SMALL_STATE(1334)] = 13266, - [SMALL_STATE(1335)] = 13349, - [SMALL_STATE(1336)] = 13422, - [SMALL_STATE(1337)] = 13495, - [SMALL_STATE(1338)] = 13566, - [SMALL_STATE(1339)] = 13639, - [SMALL_STATE(1340)] = 13712, - [SMALL_STATE(1341)] = 13785, - [SMALL_STATE(1342)] = 13858, - [SMALL_STATE(1343)] = 13927, - [SMALL_STATE(1344)] = 13998, - [SMALL_STATE(1345)] = 14075, - [SMALL_STATE(1346)] = 14152, - [SMALL_STATE(1347)] = 14221, - [SMALL_STATE(1348)] = 14298, - [SMALL_STATE(1349)] = 14375, - [SMALL_STATE(1350)] = 14446, - [SMALL_STATE(1351)] = 14517, - [SMALL_STATE(1352)] = 14586, - [SMALL_STATE(1353)] = 14706, - [SMALL_STATE(1354)] = 14826, - [SMALL_STATE(1355)] = 14894, - [SMALL_STATE(1356)] = 14960, - [SMALL_STATE(1357)] = 15030, - [SMALL_STATE(1358)] = 15150, - [SMALL_STATE(1359)] = 15220, - [SMALL_STATE(1360)] = 15286, - [SMALL_STATE(1361)] = 15406, - [SMALL_STATE(1362)] = 15480, - [SMALL_STATE(1363)] = 15556, - [SMALL_STATE(1364)] = 15630, - [SMALL_STATE(1365)] = 15700, - [SMALL_STATE(1366)] = 15820, - [SMALL_STATE(1367)] = 15940, - [SMALL_STATE(1368)] = 16008, - [SMALL_STATE(1369)] = 16078, - [SMALL_STATE(1370)] = 16150, - [SMALL_STATE(1371)] = 16222, - [SMALL_STATE(1372)] = 16296, - [SMALL_STATE(1373)] = 16370, - [SMALL_STATE(1374)] = 16440, + [SMALL_STATE(1221)] = 4510, + [SMALL_STATE(1222)] = 4596, + [SMALL_STATE(1223)] = 4682, + [SMALL_STATE(1224)] = 4768, + [SMALL_STATE(1225)] = 4844, + [SMALL_STATE(1226)] = 4912, + [SMALL_STATE(1227)] = 4990, + [SMALL_STATE(1228)] = 5076, + [SMALL_STATE(1229)] = 5168, + [SMALL_STATE(1230)] = 5254, + [SMALL_STATE(1231)] = 5340, + [SMALL_STATE(1232)] = 5426, + [SMALL_STATE(1233)] = 5516, + [SMALL_STATE(1234)] = 5594, + [SMALL_STATE(1235)] = 5680, + [SMALL_STATE(1236)] = 5766, + [SMALL_STATE(1237)] = 5852, + [SMALL_STATE(1238)] = 5930, + [SMALL_STATE(1239)] = 6004, + [SMALL_STATE(1240)] = 6096, + [SMALL_STATE(1241)] = 6182, + [SMALL_STATE(1242)] = 6268, + [SMALL_STATE(1243)] = 6336, + [SMALL_STATE(1244)] = 6416, + [SMALL_STATE(1245)] = 6506, + [SMALL_STATE(1246)] = 6584, + [SMALL_STATE(1247)] = 6670, + [SMALL_STATE(1248)] = 6756, + [SMALL_STATE(1249)] = 6846, + [SMALL_STATE(1250)] = 6936, + [SMALL_STATE(1251)] = 7022, + [SMALL_STATE(1252)] = 7111, + [SMALL_STATE(1253)] = 7188, + [SMALL_STATE(1254)] = 7257, + [SMALL_STATE(1255)] = 7346, + [SMALL_STATE(1256)] = 7423, + [SMALL_STATE(1257)] = 7492, + [SMALL_STATE(1258)] = 7559, + [SMALL_STATE(1259)] = 7648, + [SMALL_STATE(1260)] = 7733, + [SMALL_STATE(1261)] = 7800, + [SMALL_STATE(1262)] = 7883, + [SMALL_STATE(1263)] = 7968, + [SMALL_STATE(1264)] = 8043, + [SMALL_STATE(1265)] = 8122, + [SMALL_STATE(1266)] = 8201, + [SMALL_STATE(1267)] = 8280, + [SMALL_STATE(1268)] = 8347, + [SMALL_STATE(1269)] = 8430, + [SMALL_STATE(1270)] = 8517, + [SMALL_STATE(1271)] = 8584, + [SMALL_STATE(1272)] = 8669, + [SMALL_STATE(1273)] = 8758, + [SMALL_STATE(1274)] = 8833, + [SMALL_STATE(1275)] = 8922, + [SMALL_STATE(1276)] = 8991, + [SMALL_STATE(1277)] = 9060, + [SMALL_STATE(1278)] = 9149, + [SMALL_STATE(1279)] = 9221, + [SMALL_STATE(1280)] = 9295, + [SMALL_STATE(1281)] = 9369, + [SMALL_STATE(1282)] = 9441, + [SMALL_STATE(1283)] = 9511, + [SMALL_STATE(1284)] = 9577, + [SMALL_STATE(1285)] = 9665, + [SMALL_STATE(1286)] = 9731, + [SMALL_STATE(1287)] = 9797, + [SMALL_STATE(1288)] = 9863, + [SMALL_STATE(1289)] = 9929, + [SMALL_STATE(1290)] = 10007, + [SMALL_STATE(1291)] = 10073, + [SMALL_STATE(1292)] = 10145, + [SMALL_STATE(1293)] = 10219, + [SMALL_STATE(1294)] = 10291, + [SMALL_STATE(1295)] = 10373, + [SMALL_STATE(1296)] = 10445, + [SMALL_STATE(1297)] = 10521, + [SMALL_STATE(1298)] = 10599, + [SMALL_STATE(1299)] = 10665, + [SMALL_STATE(1300)] = 10753, + [SMALL_STATE(1301)] = 10825, + [SMALL_STATE(1302)] = 10897, + [SMALL_STATE(1303)] = 10977, + [SMALL_STATE(1304)] = 11051, + [SMALL_STATE(1305)] = 11123, + [SMALL_STATE(1306)] = 11199, + [SMALL_STATE(1307)] = 11279, + [SMALL_STATE(1308)] = 11347, + [SMALL_STATE(1309)] = 11415, + [SMALL_STATE(1310)] = 11491, + [SMALL_STATE(1311)] = 11557, + [SMALL_STATE(1312)] = 11629, + [SMALL_STATE(1313)] = 11705, + [SMALL_STATE(1314)] = 11783, + [SMALL_STATE(1315)] = 11867, + [SMALL_STATE(1316)] = 11951, + [SMALL_STATE(1317)] = 12023, + [SMALL_STATE(1318)] = 12095, + [SMALL_STATE(1319)] = 12179, + [SMALL_STATE(1320)] = 12245, + [SMALL_STATE(1321)] = 12321, + [SMALL_STATE(1322)] = 12405, + [SMALL_STATE(1323)] = 12477, + [SMALL_STATE(1324)] = 12550, + [SMALL_STATE(1325)] = 12617, + [SMALL_STATE(1326)] = 12684, + [SMALL_STATE(1327)] = 12761, + [SMALL_STATE(1328)] = 12834, + [SMALL_STATE(1329)] = 12905, + [SMALL_STATE(1330)] = 12976, + [SMALL_STATE(1331)] = 13049, + [SMALL_STATE(1332)] = 13120, + [SMALL_STATE(1333)] = 13203, + [SMALL_STATE(1334)] = 13280, + [SMALL_STATE(1335)] = 13359, + [SMALL_STATE(1336)] = 13432, + [SMALL_STATE(1337)] = 13503, + [SMALL_STATE(1338)] = 13572, + [SMALL_STATE(1339)] = 13645, + [SMALL_STATE(1340)] = 13718, + [SMALL_STATE(1341)] = 13787, + [SMALL_STATE(1342)] = 13860, + [SMALL_STATE(1343)] = 13929, + [SMALL_STATE(1344)] = 14000, + [SMALL_STATE(1345)] = 14077, + [SMALL_STATE(1346)] = 14146, + [SMALL_STATE(1347)] = 14215, + [SMALL_STATE(1348)] = 14292, + [SMALL_STATE(1349)] = 14365, + [SMALL_STATE(1350)] = 14436, + [SMALL_STATE(1351)] = 14513, + [SMALL_STATE(1352)] = 14584, + [SMALL_STATE(1353)] = 14655, + [SMALL_STATE(1354)] = 14725, + [SMALL_STATE(1355)] = 14799, + [SMALL_STATE(1356)] = 14871, + [SMALL_STATE(1357)] = 14947, + [SMALL_STATE(1358)] = 15021, + [SMALL_STATE(1359)] = 15141, + [SMALL_STATE(1360)] = 15261, + [SMALL_STATE(1361)] = 15381, + [SMALL_STATE(1362)] = 15451, + [SMALL_STATE(1363)] = 15571, + [SMALL_STATE(1364)] = 15637, + [SMALL_STATE(1365)] = 15703, + [SMALL_STATE(1366)] = 15773, + [SMALL_STATE(1367)] = 15843, + [SMALL_STATE(1368)] = 15915, + [SMALL_STATE(1369)] = 16035, + [SMALL_STATE(1370)] = 16103, + [SMALL_STATE(1371)] = 16171, + [SMALL_STATE(1372)] = 16291, + [SMALL_STATE(1373)] = 16365, + [SMALL_STATE(1374)] = 16439, [SMALL_STATE(1375)] = 16509, - [SMALL_STATE(1376)] = 16578, - [SMALL_STATE(1377)] = 16651, - [SMALL_STATE(1378)] = 16720, - [SMALL_STATE(1379)] = 16789, - [SMALL_STATE(1380)] = 16858, - [SMALL_STATE(1381)] = 16931, - [SMALL_STATE(1382)] = 17000, - [SMALL_STATE(1383)] = 17071, - [SMALL_STATE(1384)] = 17140, - [SMALL_STATE(1385)] = 17209, - [SMALL_STATE(1386)] = 17278, - [SMALL_STATE(1387)] = 17345, - [SMALL_STATE(1388)] = 17414, - [SMALL_STATE(1389)] = 17483, - [SMALL_STATE(1390)] = 17552, + [SMALL_STATE(1376)] = 16580, + [SMALL_STATE(1377)] = 16649, + [SMALL_STATE(1378)] = 16718, + [SMALL_STATE(1379)] = 16787, + [SMALL_STATE(1380)] = 16856, + [SMALL_STATE(1381)] = 16925, + [SMALL_STATE(1382)] = 16994, + [SMALL_STATE(1383)] = 17063, + [SMALL_STATE(1384)] = 17130, + [SMALL_STATE(1385)] = 17203, + [SMALL_STATE(1386)] = 17274, + [SMALL_STATE(1387)] = 17347, + [SMALL_STATE(1388)] = 17416, + [SMALL_STATE(1389)] = 17485, + [SMALL_STATE(1390)] = 17554, [SMALL_STATE(1391)] = 17623, - [SMALL_STATE(1392)] = 17689, - [SMALL_STATE(1393)] = 17757, - [SMALL_STATE(1394)] = 17825, - [SMALL_STATE(1395)] = 17895, - [SMALL_STATE(1396)] = 18011, - [SMALL_STATE(1397)] = 18127, - [SMALL_STATE(1398)] = 18195, - [SMALL_STATE(1399)] = 18263, - [SMALL_STATE(1400)] = 18331, - [SMALL_STATE(1401)] = 18399, - [SMALL_STATE(1402)] = 18467, - [SMALL_STATE(1403)] = 18535, - [SMALL_STATE(1404)] = 18603, - [SMALL_STATE(1405)] = 18719, - [SMALL_STATE(1406)] = 18835, - [SMALL_STATE(1407)] = 18951, - [SMALL_STATE(1408)] = 19019, - [SMALL_STATE(1409)] = 19087, - [SMALL_STATE(1410)] = 19203, - [SMALL_STATE(1411)] = 19271, - [SMALL_STATE(1412)] = 19339, - [SMALL_STATE(1413)] = 19407, - [SMALL_STATE(1414)] = 19523, - [SMALL_STATE(1415)] = 19639, - [SMALL_STATE(1416)] = 19707, - [SMALL_STATE(1417)] = 19823, - [SMALL_STATE(1418)] = 19939, - [SMALL_STATE(1419)] = 20055, - [SMALL_STATE(1420)] = 20123, - [SMALL_STATE(1421)] = 20189, - [SMALL_STATE(1422)] = 20305, - [SMALL_STATE(1423)] = 20371, - [SMALL_STATE(1424)] = 20439, - [SMALL_STATE(1425)] = 20507, - [SMALL_STATE(1426)] = 20623, - [SMALL_STATE(1427)] = 20739, - [SMALL_STATE(1428)] = 20807, - [SMALL_STATE(1429)] = 20875, - [SMALL_STATE(1430)] = 20943, - [SMALL_STATE(1431)] = 21059, - [SMALL_STATE(1432)] = 21127, - [SMALL_STATE(1433)] = 21243, - [SMALL_STATE(1434)] = 21359, - [SMALL_STATE(1435)] = 21427, - [SMALL_STATE(1436)] = 21543, - [SMALL_STATE(1437)] = 21608, - [SMALL_STATE(1438)] = 21673, - [SMALL_STATE(1439)] = 21738, - [SMALL_STATE(1440)] = 21803, - [SMALL_STATE(1441)] = 21868, - [SMALL_STATE(1442)] = 21933, - [SMALL_STATE(1443)] = 21998, - [SMALL_STATE(1444)] = 22063, - [SMALL_STATE(1445)] = 22128, - [SMALL_STATE(1446)] = 22193, - [SMALL_STATE(1447)] = 22305, - [SMALL_STATE(1448)] = 22417, - [SMALL_STATE(1449)] = 22529, - [SMALL_STATE(1450)] = 22641, - [SMALL_STATE(1451)] = 22753, - [SMALL_STATE(1452)] = 22865, - [SMALL_STATE(1453)] = 22977, - [SMALL_STATE(1454)] = 23088, - [SMALL_STATE(1455)] = 23207, - [SMALL_STATE(1456)] = 23318, - [SMALL_STATE(1457)] = 23437, - [SMALL_STATE(1458)] = 23548, - [SMALL_STATE(1459)] = 23659, - [SMALL_STATE(1460)] = 23778, - [SMALL_STATE(1461)] = 23889, - [SMALL_STATE(1462)] = 24000, - [SMALL_STATE(1463)] = 24119, - [SMALL_STATE(1464)] = 24230, - [SMALL_STATE(1465)] = 24341, - [SMALL_STATE(1466)] = 24452, - [SMALL_STATE(1467)] = 24563, - [SMALL_STATE(1468)] = 24682, - [SMALL_STATE(1469)] = 24793, - [SMALL_STATE(1470)] = 24895, - [SMALL_STATE(1471)] = 24997, - [SMALL_STATE(1472)] = 25099, - [SMALL_STATE(1473)] = 25201, - [SMALL_STATE(1474)] = 25303, - [SMALL_STATE(1475)] = 25405, - [SMALL_STATE(1476)] = 25507, - [SMALL_STATE(1477)] = 25616, - [SMALL_STATE(1478)] = 25673, - [SMALL_STATE(1479)] = 25784, - [SMALL_STATE(1480)] = 25841, - [SMALL_STATE(1481)] = 25907, - [SMALL_STATE(1482)] = 26001, - [SMALL_STATE(1483)] = 26065, - [SMALL_STATE(1484)] = 26131, - [SMALL_STATE(1485)] = 26197, - [SMALL_STATE(1486)] = 26269, - [SMALL_STATE(1487)] = 26328, - [SMALL_STATE(1488)] = 26389, + [SMALL_STATE(1392)] = 17692, + [SMALL_STATE(1393)] = 17808, + [SMALL_STATE(1394)] = 17876, + [SMALL_STATE(1395)] = 17992, + [SMALL_STATE(1396)] = 18060, + [SMALL_STATE(1397)] = 18128, + [SMALL_STATE(1398)] = 18196, + [SMALL_STATE(1399)] = 18312, + [SMALL_STATE(1400)] = 18380, + [SMALL_STATE(1401)] = 18496, + [SMALL_STATE(1402)] = 18564, + [SMALL_STATE(1403)] = 18680, + [SMALL_STATE(1404)] = 18748, + [SMALL_STATE(1405)] = 18816, + [SMALL_STATE(1406)] = 18884, + [SMALL_STATE(1407)] = 18952, + [SMALL_STATE(1408)] = 19068, + [SMALL_STATE(1409)] = 19136, + [SMALL_STATE(1410)] = 19252, + [SMALL_STATE(1411)] = 19320, + [SMALL_STATE(1412)] = 19436, + [SMALL_STATE(1413)] = 19552, + [SMALL_STATE(1414)] = 19620, + [SMALL_STATE(1415)] = 19690, + [SMALL_STATE(1416)] = 19806, + [SMALL_STATE(1417)] = 19922, + [SMALL_STATE(1418)] = 20038, + [SMALL_STATE(1419)] = 20106, + [SMALL_STATE(1420)] = 20174, + [SMALL_STATE(1421)] = 20242, + [SMALL_STATE(1422)] = 20310, + [SMALL_STATE(1423)] = 20378, + [SMALL_STATE(1424)] = 20446, + [SMALL_STATE(1425)] = 20562, + [SMALL_STATE(1426)] = 20630, + [SMALL_STATE(1427)] = 20698, + [SMALL_STATE(1428)] = 20764, + [SMALL_STATE(1429)] = 20880, + [SMALL_STATE(1430)] = 20946, + [SMALL_STATE(1431)] = 21014, + [SMALL_STATE(1432)] = 21080, + [SMALL_STATE(1433)] = 21196, + [SMALL_STATE(1434)] = 21312, + [SMALL_STATE(1435)] = 21428, + [SMALL_STATE(1436)] = 21496, + [SMALL_STATE(1437)] = 21612, + [SMALL_STATE(1438)] = 21677, + [SMALL_STATE(1439)] = 21742, + [SMALL_STATE(1440)] = 21807, + [SMALL_STATE(1441)] = 21872, + [SMALL_STATE(1442)] = 21937, + [SMALL_STATE(1443)] = 22002, + [SMALL_STATE(1444)] = 22067, + [SMALL_STATE(1445)] = 22132, + [SMALL_STATE(1446)] = 22197, + [SMALL_STATE(1447)] = 22262, + [SMALL_STATE(1448)] = 22374, + [SMALL_STATE(1449)] = 22486, + [SMALL_STATE(1450)] = 22598, + [SMALL_STATE(1451)] = 22710, + [SMALL_STATE(1452)] = 22822, + [SMALL_STATE(1453)] = 22934, + [SMALL_STATE(1454)] = 23046, + [SMALL_STATE(1455)] = 23157, + [SMALL_STATE(1456)] = 23268, + [SMALL_STATE(1457)] = 23379, + [SMALL_STATE(1458)] = 23490, + [SMALL_STATE(1459)] = 23601, + [SMALL_STATE(1460)] = 23712, + [SMALL_STATE(1461)] = 23823, + [SMALL_STATE(1462)] = 23934, + [SMALL_STATE(1463)] = 24053, + [SMALL_STATE(1464)] = 24164, + [SMALL_STATE(1465)] = 24283, + [SMALL_STATE(1466)] = 24402, + [SMALL_STATE(1467)] = 24521, + [SMALL_STATE(1468)] = 24632, + [SMALL_STATE(1469)] = 24751, + [SMALL_STATE(1470)] = 24862, + [SMALL_STATE(1471)] = 24964, + [SMALL_STATE(1472)] = 25066, + [SMALL_STATE(1473)] = 25168, + [SMALL_STATE(1474)] = 25270, + [SMALL_STATE(1475)] = 25372, + [SMALL_STATE(1476)] = 25474, + [SMALL_STATE(1477)] = 25576, + [SMALL_STATE(1478)] = 25685, + [SMALL_STATE(1479)] = 25742, + [SMALL_STATE(1480)] = 25853, + [SMALL_STATE(1481)] = 25910, + [SMALL_STATE(1482)] = 25982, + [SMALL_STATE(1483)] = 26076, + [SMALL_STATE(1484)] = 26142, + [SMALL_STATE(1485)] = 26208, + [SMALL_STATE(1486)] = 26274, + [SMALL_STATE(1487)] = 26338, + [SMALL_STATE(1488)] = 26395, [SMALL_STATE(1489)] = 26450, - [SMALL_STATE(1490)] = 26511, - [SMALL_STATE(1491)] = 26566, - [SMALL_STATE(1492)] = 26623, - [SMALL_STATE(1493)] = 26678, - [SMALL_STATE(1494)] = 26733, - [SMALL_STATE(1495)] = 26788, + [SMALL_STATE(1490)] = 26505, + [SMALL_STATE(1491)] = 26560, + [SMALL_STATE(1492)] = 26615, + [SMALL_STATE(1493)] = 26670, + [SMALL_STATE(1494)] = 26731, + [SMALL_STATE(1495)] = 26786, [SMALL_STATE(1496)] = 26843, - [SMALL_STATE(1497)] = 26902, - [SMALL_STATE(1498)] = 26963, + [SMALL_STATE(1497)] = 26898, + [SMALL_STATE(1498)] = 26957, [SMALL_STATE(1499)] = 27018, - [SMALL_STATE(1500)] = 27075, - [SMALL_STATE(1501)] = 27132, - [SMALL_STATE(1502)] = 27187, - [SMALL_STATE(1503)] = 27246, - [SMALL_STATE(1504)] = 27307, - [SMALL_STATE(1505)] = 27361, - [SMALL_STATE(1506)] = 27415, - [SMALL_STATE(1507)] = 27469, - [SMALL_STATE(1508)] = 27529, - [SMALL_STATE(1509)] = 27583, - [SMALL_STATE(1510)] = 27643, - [SMALL_STATE(1511)] = 27699, - [SMALL_STATE(1512)] = 27753, - [SMALL_STATE(1513)] = 27809, - [SMALL_STATE(1514)] = 27863, - [SMALL_STATE(1515)] = 27917, - [SMALL_STATE(1516)] = 27971, - [SMALL_STATE(1517)] = 28057, - [SMALL_STATE(1518)] = 28111, - [SMALL_STATE(1519)] = 28165, - [SMALL_STATE(1520)] = 28219, - [SMALL_STATE(1521)] = 28273, - [SMALL_STATE(1522)] = 28327, - [SMALL_STATE(1523)] = 28385, - [SMALL_STATE(1524)] = 28439, - [SMALL_STATE(1525)] = 28493, - [SMALL_STATE(1526)] = 28547, - [SMALL_STATE(1527)] = 28603, - [SMALL_STATE(1528)] = 28657, - [SMALL_STATE(1529)] = 28711, - [SMALL_STATE(1530)] = 28765, - [SMALL_STATE(1531)] = 28885, - [SMALL_STATE(1532)] = 28939, - [SMALL_STATE(1533)] = 28993, - [SMALL_STATE(1534)] = 29047, - [SMALL_STATE(1535)] = 29101, - [SMALL_STATE(1536)] = 29155, - [SMALL_STATE(1537)] = 29209, - [SMALL_STATE(1538)] = 29263, - [SMALL_STATE(1539)] = 29319, - [SMALL_STATE(1540)] = 29373, - [SMALL_STATE(1541)] = 29429, - [SMALL_STATE(1542)] = 29485, - [SMALL_STATE(1543)] = 29539, - [SMALL_STATE(1544)] = 29593, - [SMALL_STATE(1545)] = 29647, - [SMALL_STATE(1546)] = 29733, - [SMALL_STATE(1547)] = 29793, - [SMALL_STATE(1548)] = 29853, - [SMALL_STATE(1549)] = 29907, - [SMALL_STATE(1550)] = 29961, - [SMALL_STATE(1551)] = 30017, - [SMALL_STATE(1552)] = 30075, - [SMALL_STATE(1553)] = 30131, - [SMALL_STATE(1554)] = 30185, - [SMALL_STATE(1555)] = 30239, - [SMALL_STATE(1556)] = 30293, - [SMALL_STATE(1557)] = 30347, - [SMALL_STATE(1558)] = 30401, - [SMALL_STATE(1559)] = 30455, - [SMALL_STATE(1560)] = 30509, - [SMALL_STATE(1561)] = 30563, - [SMALL_STATE(1562)] = 30621, - [SMALL_STATE(1563)] = 30681, - [SMALL_STATE(1564)] = 30801, - [SMALL_STATE(1565)] = 30855, - [SMALL_STATE(1566)] = 30909, - [SMALL_STATE(1567)] = 30963, - [SMALL_STATE(1568)] = 31017, - [SMALL_STATE(1569)] = 31071, - [SMALL_STATE(1570)] = 31125, - [SMALL_STATE(1571)] = 31179, - [SMALL_STATE(1572)] = 31235, - [SMALL_STATE(1573)] = 31321, - [SMALL_STATE(1574)] = 31377, - [SMALL_STATE(1575)] = 31431, - [SMALL_STATE(1576)] = 31485, - [SMALL_STATE(1577)] = 31545, - [SMALL_STATE(1578)] = 31601, - [SMALL_STATE(1579)] = 31655, - [SMALL_STATE(1580)] = 31741, - [SMALL_STATE(1581)] = 31795, - [SMALL_STATE(1582)] = 31849, - [SMALL_STATE(1583)] = 31903, - [SMALL_STATE(1584)] = 31957, - [SMALL_STATE(1585)] = 32011, - [SMALL_STATE(1586)] = 32065, - [SMALL_STATE(1587)] = 32121, - [SMALL_STATE(1588)] = 32175, - [SMALL_STATE(1589)] = 32229, - [SMALL_STATE(1590)] = 32283, - [SMALL_STATE(1591)] = 32337, - [SMALL_STATE(1592)] = 32391, - [SMALL_STATE(1593)] = 32445, - [SMALL_STATE(1594)] = 32499, - [SMALL_STATE(1595)] = 32559, - [SMALL_STATE(1596)] = 32613, - [SMALL_STATE(1597)] = 32667, - [SMALL_STATE(1598)] = 32725, - [SMALL_STATE(1599)] = 32779, - [SMALL_STATE(1600)] = 32899, - [SMALL_STATE(1601)] = 32959, - [SMALL_STATE(1602)] = 33013, - [SMALL_STATE(1603)] = 33067, - [SMALL_STATE(1604)] = 33121, - [SMALL_STATE(1605)] = 33175, - [SMALL_STATE(1606)] = 33231, - [SMALL_STATE(1607)] = 33293, - [SMALL_STATE(1608)] = 33347, - [SMALL_STATE(1609)] = 33401, - [SMALL_STATE(1610)] = 33463, - [SMALL_STATE(1611)] = 33519, - [SMALL_STATE(1612)] = 33579, - [SMALL_STATE(1613)] = 33641, - [SMALL_STATE(1614)] = 33703, - [SMALL_STATE(1615)] = 33757, - [SMALL_STATE(1616)] = 33815, - [SMALL_STATE(1617)] = 33869, - [SMALL_STATE(1618)] = 33923, - [SMALL_STATE(1619)] = 33983, - [SMALL_STATE(1620)] = 34037, - [SMALL_STATE(1621)] = 34097, - [SMALL_STATE(1622)] = 34151, - [SMALL_STATE(1623)] = 34205, - [SMALL_STATE(1624)] = 34259, - [SMALL_STATE(1625)] = 34313, - [SMALL_STATE(1626)] = 34367, - [SMALL_STATE(1627)] = 34421, - [SMALL_STATE(1628)] = 34475, - [SMALL_STATE(1629)] = 34595, - [SMALL_STATE(1630)] = 34681, - [SMALL_STATE(1631)] = 34735, - [SMALL_STATE(1632)] = 34789, - [SMALL_STATE(1633)] = 34849, - [SMALL_STATE(1634)] = 34903, - [SMALL_STATE(1635)] = 34962, - [SMALL_STATE(1636)] = 35041, - [SMALL_STATE(1637)] = 35094, - [SMALL_STATE(1638)] = 35147, - [SMALL_STATE(1639)] = 35262, - [SMALL_STATE(1640)] = 35377, - [SMALL_STATE(1641)] = 35488, - [SMALL_STATE(1642)] = 35545, - [SMALL_STATE(1643)] = 35598, - [SMALL_STATE(1644)] = 35651, - [SMALL_STATE(1645)] = 35704, - [SMALL_STATE(1646)] = 35815, - [SMALL_STATE(1647)] = 35868, - [SMALL_STATE(1648)] = 35921, - [SMALL_STATE(1649)] = 35974, - [SMALL_STATE(1650)] = 36027, - [SMALL_STATE(1651)] = 36084, - [SMALL_STATE(1652)] = 36137, - [SMALL_STATE(1653)] = 36218, - [SMALL_STATE(1654)] = 36297, - [SMALL_STATE(1655)] = 36350, - [SMALL_STATE(1656)] = 36405, - [SMALL_STATE(1657)] = 36462, - [SMALL_STATE(1658)] = 36515, - [SMALL_STATE(1659)] = 36568, - [SMALL_STATE(1660)] = 36621, - [SMALL_STATE(1661)] = 36674, - [SMALL_STATE(1662)] = 36727, - [SMALL_STATE(1663)] = 36780, - [SMALL_STATE(1664)] = 36833, - [SMALL_STATE(1665)] = 36886, - [SMALL_STATE(1666)] = 36949, - [SMALL_STATE(1667)] = 37012, - [SMALL_STATE(1668)] = 37075, - [SMALL_STATE(1669)] = 37128, - [SMALL_STATE(1670)] = 37181, - [SMALL_STATE(1671)] = 37234, - [SMALL_STATE(1672)] = 37293, - [SMALL_STATE(1673)] = 37346, - [SMALL_STATE(1674)] = 37399, - [SMALL_STATE(1675)] = 37452, - [SMALL_STATE(1676)] = 37505, - [SMALL_STATE(1677)] = 37558, - [SMALL_STATE(1678)] = 37611, - [SMALL_STATE(1679)] = 37664, - [SMALL_STATE(1680)] = 37717, - [SMALL_STATE(1681)] = 37770, - [SMALL_STATE(1682)] = 37823, - [SMALL_STATE(1683)] = 37876, - [SMALL_STATE(1684)] = 37929, - [SMALL_STATE(1685)] = 37982, - [SMALL_STATE(1686)] = 38035, - [SMALL_STATE(1687)] = 38088, - [SMALL_STATE(1688)] = 38141, - [SMALL_STATE(1689)] = 38194, - [SMALL_STATE(1690)] = 38271, - [SMALL_STATE(1691)] = 38350, - [SMALL_STATE(1692)] = 38403, - [SMALL_STATE(1693)] = 38456, - [SMALL_STATE(1694)] = 38509, - [SMALL_STATE(1695)] = 38562, - [SMALL_STATE(1696)] = 38615, - [SMALL_STATE(1697)] = 38668, - [SMALL_STATE(1698)] = 38721, - [SMALL_STATE(1699)] = 38774, - [SMALL_STATE(1700)] = 38827, - [SMALL_STATE(1701)] = 38880, - [SMALL_STATE(1702)] = 38933, - [SMALL_STATE(1703)] = 38986, - [SMALL_STATE(1704)] = 39039, - [SMALL_STATE(1705)] = 39092, - [SMALL_STATE(1706)] = 39145, - [SMALL_STATE(1707)] = 39198, - [SMALL_STATE(1708)] = 39251, - [SMALL_STATE(1709)] = 39306, - [SMALL_STATE(1710)] = 39359, - [SMALL_STATE(1711)] = 39414, - [SMALL_STATE(1712)] = 39469, - [SMALL_STATE(1713)] = 39524, - [SMALL_STATE(1714)] = 39583, - [SMALL_STATE(1715)] = 39652, - [SMALL_STATE(1716)] = 39765, - [SMALL_STATE(1717)] = 39818, - [SMALL_STATE(1718)] = 39929, - [SMALL_STATE(1719)] = 40040, - [SMALL_STATE(1720)] = 40125, - [SMALL_STATE(1721)] = 40178, - [SMALL_STATE(1722)] = 40231, - [SMALL_STATE(1723)] = 40346, - [SMALL_STATE(1724)] = 40421, - [SMALL_STATE(1725)] = 40520, - [SMALL_STATE(1726)] = 40621, - [SMALL_STATE(1727)] = 40702, - [SMALL_STATE(1728)] = 40795, - [SMALL_STATE(1729)] = 40890, - [SMALL_STATE(1730)] = 40987, - [SMALL_STATE(1731)] = 41066, - [SMALL_STATE(1732)] = 41147, - [SMALL_STATE(1733)] = 41236, - [SMALL_STATE(1734)] = 41297, - [SMALL_STATE(1735)] = 41350, - [SMALL_STATE(1736)] = 41403, - [SMALL_STATE(1737)] = 41456, - [SMALL_STATE(1738)] = 41559, - [SMALL_STATE(1739)] = 41670, - [SMALL_STATE(1740)] = 41781, - [SMALL_STATE(1741)] = 41896, - [SMALL_STATE(1742)] = 42011, - [SMALL_STATE(1743)] = 42124, - [SMALL_STATE(1744)] = 42239, - [SMALL_STATE(1745)] = 42310, - [SMALL_STATE(1746)] = 42387, - [SMALL_STATE(1747)] = 42466, - [SMALL_STATE(1748)] = 42531, - [SMALL_STATE(1749)] = 42642, - [SMALL_STATE(1750)] = 42753, - [SMALL_STATE(1751)] = 42864, - [SMALL_STATE(1752)] = 42975, - [SMALL_STATE(1753)] = 43086, - [SMALL_STATE(1754)] = 43171, - [SMALL_STATE(1755)] = 43246, - [SMALL_STATE(1756)] = 43357, - [SMALL_STATE(1757)] = 43456, - [SMALL_STATE(1758)] = 43557, - [SMALL_STATE(1759)] = 43638, - [SMALL_STATE(1760)] = 43731, - [SMALL_STATE(1761)] = 43826, - [SMALL_STATE(1762)] = 43923, - [SMALL_STATE(1763)] = 44002, - [SMALL_STATE(1764)] = 44083, - [SMALL_STATE(1765)] = 44172, - [SMALL_STATE(1766)] = 44275, - [SMALL_STATE(1767)] = 44386, - [SMALL_STATE(1768)] = 44497, - [SMALL_STATE(1769)] = 44608, - [SMALL_STATE(1770)] = 44719, - [SMALL_STATE(1771)] = 44830, - [SMALL_STATE(1772)] = 44941, - [SMALL_STATE(1773)] = 45052, - [SMALL_STATE(1774)] = 45163, - [SMALL_STATE(1775)] = 45242, - [SMALL_STATE(1776)] = 45295, - [SMALL_STATE(1777)] = 45368, - [SMALL_STATE(1778)] = 45479, - [SMALL_STATE(1779)] = 45590, - [SMALL_STATE(1780)] = 45701, - [SMALL_STATE(1781)] = 45812, - [SMALL_STATE(1782)] = 45923, - [SMALL_STATE(1783)] = 46000, - [SMALL_STATE(1784)] = 46079, - [SMALL_STATE(1785)] = 46156, - [SMALL_STATE(1786)] = 46235, - [SMALL_STATE(1787)] = 46312, - [SMALL_STATE(1788)] = 46391, - [SMALL_STATE(1789)] = 46456, - [SMALL_STATE(1790)] = 46521, - [SMALL_STATE(1791)] = 46632, - [SMALL_STATE(1792)] = 46743, - [SMALL_STATE(1793)] = 46854, - [SMALL_STATE(1794)] = 46965, - [SMALL_STATE(1795)] = 47076, - [SMALL_STATE(1796)] = 47161, - [SMALL_STATE(1797)] = 47236, - [SMALL_STATE(1798)] = 47335, - [SMALL_STATE(1799)] = 47436, - [SMALL_STATE(1800)] = 47517, - [SMALL_STATE(1801)] = 47610, - [SMALL_STATE(1802)] = 47705, - [SMALL_STATE(1803)] = 47802, - [SMALL_STATE(1804)] = 47881, - [SMALL_STATE(1805)] = 47962, - [SMALL_STATE(1806)] = 48051, - [SMALL_STATE(1807)] = 48154, - [SMALL_STATE(1808)] = 48265, - [SMALL_STATE(1809)] = 48376, - [SMALL_STATE(1810)] = 48487, - [SMALL_STATE(1811)] = 48598, - [SMALL_STATE(1812)] = 48709, - [SMALL_STATE(1813)] = 48820, - [SMALL_STATE(1814)] = 48931, - [SMALL_STATE(1815)] = 49042, - [SMALL_STATE(1816)] = 49115, - [SMALL_STATE(1817)] = 49194, - [SMALL_STATE(1818)] = 49305, - [SMALL_STATE(1819)] = 49376, - [SMALL_STATE(1820)] = 49487, - [SMALL_STATE(1821)] = 49598, - [SMALL_STATE(1822)] = 49709, - [SMALL_STATE(1823)] = 49782, - [SMALL_STATE(1824)] = 49861, - [SMALL_STATE(1825)] = 49972, - [SMALL_STATE(1826)] = 50043, - [SMALL_STATE(1827)] = 50158, - [SMALL_STATE(1828)] = 50272, - [SMALL_STATE(1829)] = 50382, - [SMALL_STATE(1830)] = 50492, - [SMALL_STATE(1831)] = 50562, - [SMALL_STATE(1832)] = 50634, - [SMALL_STATE(1833)] = 50748, - [SMALL_STATE(1834)] = 50804, - [SMALL_STATE(1835)] = 50856, - [SMALL_STATE(1836)] = 50912, - [SMALL_STATE(1837)] = 50968, - [SMALL_STATE(1838)] = 51020, - [SMALL_STATE(1839)] = 51134, - [SMALL_STATE(1840)] = 51194, - [SMALL_STATE(1841)] = 51304, - [SMALL_STATE(1842)] = 51418, - [SMALL_STATE(1843)] = 51532, - [SMALL_STATE(1844)] = 51642, - [SMALL_STATE(1845)] = 51752, - [SMALL_STATE(1846)] = 51836, - [SMALL_STATE(1847)] = 51894, - [SMALL_STATE(1848)] = 51968, - [SMALL_STATE(1849)] = 52066, - [SMALL_STATE(1850)] = 52120, - [SMALL_STATE(1851)] = 52174, - [SMALL_STATE(1852)] = 52274, - [SMALL_STATE(1853)] = 52354, - [SMALL_STATE(1854)] = 52446, - [SMALL_STATE(1855)] = 52540, - [SMALL_STATE(1856)] = 52636, - [SMALL_STATE(1857)] = 52714, - [SMALL_STATE(1858)] = 52768, - [SMALL_STATE(1859)] = 52848, - [SMALL_STATE(1860)] = 52962, - [SMALL_STATE(1861)] = 53050, - [SMALL_STATE(1862)] = 53152, - [SMALL_STATE(1863)] = 53214, - [SMALL_STATE(1864)] = 53276, - [SMALL_STATE(1865)] = 53386, - [SMALL_STATE(1866)] = 53500, - [SMALL_STATE(1867)] = 53610, - [SMALL_STATE(1868)] = 53724, - [SMALL_STATE(1869)] = 53838, - [SMALL_STATE(1870)] = 53916, - [SMALL_STATE(1871)] = 53980, - [SMALL_STATE(1872)] = 54052, - [SMALL_STATE(1873)] = 54162, - [SMALL_STATE(1874)] = 54272, - [SMALL_STATE(1875)] = 54382, - [SMALL_STATE(1876)] = 54456, - [SMALL_STATE(1877)] = 54566, - [SMALL_STATE(1878)] = 54676, - [SMALL_STATE(1879)] = 54746, - [SMALL_STATE(1880)] = 54860, - [SMALL_STATE(1881)] = 54918, - [SMALL_STATE(1882)] = 55028, - [SMALL_STATE(1883)] = 55142, - [SMALL_STATE(1884)] = 55252, - [SMALL_STATE(1885)] = 55304, - [SMALL_STATE(1886)] = 55414, - [SMALL_STATE(1887)] = 55524, - [SMALL_STATE(1888)] = 55634, - [SMALL_STATE(1889)] = 55744, - [SMALL_STATE(1890)] = 55804, - [SMALL_STATE(1891)] = 55918, - [SMALL_STATE(1892)] = 55990, - [SMALL_STATE(1893)] = 56050, - [SMALL_STATE(1894)] = 56122, - [SMALL_STATE(1895)] = 56236, - [SMALL_STATE(1896)] = 56308, - [SMALL_STATE(1897)] = 56366, - [SMALL_STATE(1898)] = 56438, - [SMALL_STATE(1899)] = 56552, - [SMALL_STATE(1900)] = 56666, - [SMALL_STATE(1901)] = 56780, - [SMALL_STATE(1902)] = 56832, - [SMALL_STATE(1903)] = 56946, - [SMALL_STATE(1904)] = 57058, - [SMALL_STATE(1905)] = 57114, - [SMALL_STATE(1906)] = 57172, - [SMALL_STATE(1907)] = 57230, - [SMALL_STATE(1908)] = 57340, - [SMALL_STATE(1909)] = 57454, - [SMALL_STATE(1910)] = 57568, - [SMALL_STATE(1911)] = 57682, - [SMALL_STATE(1912)] = 57796, - [SMALL_STATE(1913)] = 57910, - [SMALL_STATE(1914)] = 57984, - [SMALL_STATE(1915)] = 58098, - [SMALL_STATE(1916)] = 58176, - [SMALL_STATE(1917)] = 58286, - [SMALL_STATE(1918)] = 58338, - [SMALL_STATE(1919)] = 58452, - [SMALL_STATE(1920)] = 58516, - [SMALL_STATE(1921)] = 58626, - [SMALL_STATE(1922)] = 58736, - [SMALL_STATE(1923)] = 58846, - [SMALL_STATE(1924)] = 58956, - [SMALL_STATE(1925)] = 59066, - [SMALL_STATE(1926)] = 59150, - [SMALL_STATE(1927)] = 59224, - [SMALL_STATE(1928)] = 59322, - [SMALL_STATE(1929)] = 59422, - [SMALL_STATE(1930)] = 59502, - [SMALL_STATE(1931)] = 59594, - [SMALL_STATE(1932)] = 59688, - [SMALL_STATE(1933)] = 59784, - [SMALL_STATE(1934)] = 59862, - [SMALL_STATE(1935)] = 59942, - [SMALL_STATE(1936)] = 60030, - [SMALL_STATE(1937)] = 60132, - [SMALL_STATE(1938)] = 60242, - [SMALL_STATE(1939)] = 60352, - [SMALL_STATE(1940)] = 60462, - [SMALL_STATE(1941)] = 60572, - [SMALL_STATE(1942)] = 60682, - [SMALL_STATE(1943)] = 60792, - [SMALL_STATE(1944)] = 60902, - [SMALL_STATE(1945)] = 61012, - [SMALL_STATE(1946)] = 61084, - [SMALL_STATE(1947)] = 61162, - [SMALL_STATE(1948)] = 61276, - [SMALL_STATE(1949)] = 61327, - [SMALL_STATE(1950)] = 61410, - [SMALL_STATE(1951)] = 61467, - [SMALL_STATE(1952)] = 61524, - [SMALL_STATE(1953)] = 61581, - [SMALL_STATE(1954)] = 61632, - [SMALL_STATE(1955)] = 61683, - [SMALL_STATE(1956)] = 61734, - [SMALL_STATE(1957)] = 61787, - [SMALL_STATE(1958)] = 61860, - [SMALL_STATE(1959)] = 61911, - [SMALL_STATE(1960)] = 61974, - [SMALL_STATE(1961)] = 62083, - [SMALL_STATE(1962)] = 62192, - [SMALL_STATE(1963)] = 62301, - [SMALL_STATE(1964)] = 62352, - [SMALL_STATE(1965)] = 62461, - [SMALL_STATE(1966)] = 62570, - [SMALL_STATE(1967)] = 62679, - [SMALL_STATE(1968)] = 62762, - [SMALL_STATE(1969)] = 62813, - [SMALL_STATE(1970)] = 62886, - [SMALL_STATE(1971)] = 62937, - [SMALL_STATE(1972)] = 63034, - [SMALL_STATE(1973)] = 63133, - [SMALL_STATE(1974)] = 63212, - [SMALL_STATE(1975)] = 63303, - [SMALL_STATE(1976)] = 63396, - [SMALL_STATE(1977)] = 63491, - [SMALL_STATE(1978)] = 63568, - [SMALL_STATE(1979)] = 63647, - [SMALL_STATE(1980)] = 63734, - [SMALL_STATE(1981)] = 63835, - [SMALL_STATE(1982)] = 63944, - [SMALL_STATE(1983)] = 64053, - [SMALL_STATE(1984)] = 64162, - [SMALL_STATE(1985)] = 64271, - [SMALL_STATE(1986)] = 64380, - [SMALL_STATE(1987)] = 64489, - [SMALL_STATE(1988)] = 64598, - [SMALL_STATE(1989)] = 64649, - [SMALL_STATE(1990)] = 64700, - [SMALL_STATE(1991)] = 64757, - [SMALL_STATE(1992)] = 64808, - [SMALL_STATE(1993)] = 64919, - [SMALL_STATE(1994)] = 65028, - [SMALL_STATE(1995)] = 65101, - [SMALL_STATE(1996)] = 65170, - [SMALL_STATE(1997)] = 65227, - [SMALL_STATE(1998)] = 65282, - [SMALL_STATE(1999)] = 65345, - [SMALL_STATE(2000)] = 65408, - [SMALL_STATE(2001)] = 65471, - [SMALL_STATE(2002)] = 65534, - [SMALL_STATE(2003)] = 65585, - [SMALL_STATE(2004)] = 65642, - [SMALL_STATE(2005)] = 65751, - [SMALL_STATE(2006)] = 65802, - [SMALL_STATE(2007)] = 65871, - [SMALL_STATE(2008)] = 65954, - [SMALL_STATE(2009)] = 66007, - [SMALL_STATE(2010)] = 66060, - [SMALL_STATE(2011)] = 66111, - [SMALL_STATE(2012)] = 66162, - [SMALL_STATE(2013)] = 66213, - [SMALL_STATE(2014)] = 66264, - [SMALL_STATE(2015)] = 66315, - [SMALL_STATE(2016)] = 66398, - [SMALL_STATE(2017)] = 66451, - [SMALL_STATE(2018)] = 66508, - [SMALL_STATE(2019)] = 66581, - [SMALL_STATE(2020)] = 66690, - [SMALL_STATE(2021)] = 66741, - [SMALL_STATE(2022)] = 66798, - [SMALL_STATE(2023)] = 66849, - [SMALL_STATE(2024)] = 66900, - [SMALL_STATE(2025)] = 66951, - [SMALL_STATE(2026)] = 67020, - [SMALL_STATE(2027)] = 67071, - [SMALL_STATE(2028)] = 67122, - [SMALL_STATE(2029)] = 67173, - [SMALL_STATE(2030)] = 67224, - [SMALL_STATE(2031)] = 67277, - [SMALL_STATE(2032)] = 67328, - [SMALL_STATE(2033)] = 67379, - [SMALL_STATE(2034)] = 67432, - [SMALL_STATE(2035)] = 67483, - [SMALL_STATE(2036)] = 67556, - [SMALL_STATE(2037)] = 67615, - [SMALL_STATE(2038)] = 67672, - [SMALL_STATE(2039)] = 67723, - [SMALL_STATE(2040)] = 67796, - [SMALL_STATE(2041)] = 67847, - [SMALL_STATE(2042)] = 67902, - [SMALL_STATE(2043)] = 67959, - [SMALL_STATE(2044)] = 68042, - [SMALL_STATE(2045)] = 68095, - [SMALL_STATE(2046)] = 68158, - [SMALL_STATE(2047)] = 68211, - [SMALL_STATE(2048)] = 68262, - [SMALL_STATE(2049)] = 68313, - [SMALL_STATE(2050)] = 68376, - [SMALL_STATE(2051)] = 68427, - [SMALL_STATE(2052)] = 68478, - [SMALL_STATE(2053)] = 68541, - [SMALL_STATE(2054)] = 68600, - [SMALL_STATE(2055)] = 68651, - [SMALL_STATE(2056)] = 68722, - [SMALL_STATE(2057)] = 68799, - [SMALL_STATE(2058)] = 68908, - [SMALL_STATE(2059)] = 68977, - [SMALL_STATE(2060)] = 69050, - [SMALL_STATE(2061)] = 69159, - [SMALL_STATE(2062)] = 69210, - [SMALL_STATE(2063)] = 69263, - [SMALL_STATE(2064)] = 69316, - [SMALL_STATE(2065)] = 69381, - [SMALL_STATE(2066)] = 69490, - [SMALL_STATE(2067)] = 69541, - [SMALL_STATE(2068)] = 69650, - [SMALL_STATE(2069)] = 69703, - [SMALL_STATE(2070)] = 69760, - [SMALL_STATE(2071)] = 69871, - [SMALL_STATE(2072)] = 69924, - [SMALL_STATE(2073)] = 69975, - [SMALL_STATE(2074)] = 70032, - [SMALL_STATE(2075)] = 70083, - [SMALL_STATE(2076)] = 70134, - [SMALL_STATE(2077)] = 70185, - [SMALL_STATE(2078)] = 70236, - [SMALL_STATE(2079)] = 70287, - [SMALL_STATE(2080)] = 70338, - [SMALL_STATE(2081)] = 70391, - [SMALL_STATE(2082)] = 70442, - [SMALL_STATE(2083)] = 70495, - [SMALL_STATE(2084)] = 70554, - [SMALL_STATE(2085)] = 70605, - [SMALL_STATE(2086)] = 70656, - [SMALL_STATE(2087)] = 70709, - [SMALL_STATE(2088)] = 70760, - [SMALL_STATE(2089)] = 70813, - [SMALL_STATE(2090)] = 70864, - [SMALL_STATE(2091)] = 70921, - [SMALL_STATE(2092)] = 70972, - [SMALL_STATE(2093)] = 71023, - [SMALL_STATE(2094)] = 71074, - [SMALL_STATE(2095)] = 71125, - [SMALL_STATE(2096)] = 71234, - [SMALL_STATE(2097)] = 71285, - [SMALL_STATE(2098)] = 71336, - [SMALL_STATE(2099)] = 71445, - [SMALL_STATE(2100)] = 71496, - [SMALL_STATE(2101)] = 71547, - [SMALL_STATE(2102)] = 71598, - [SMALL_STATE(2103)] = 71657, - [SMALL_STATE(2104)] = 71708, - [SMALL_STATE(2105)] = 71817, - [SMALL_STATE(2106)] = 71868, - [SMALL_STATE(2107)] = 71919, - [SMALL_STATE(2108)] = 71970, - [SMALL_STATE(2109)] = 72023, - [SMALL_STATE(2110)] = 72096, - [SMALL_STATE(2111)] = 72165, - [SMALL_STATE(2112)] = 72216, - [SMALL_STATE(2113)] = 72325, - [SMALL_STATE(2114)] = 72382, - [SMALL_STATE(2115)] = 72451, - [SMALL_STATE(2116)] = 72510, - [SMALL_STATE(2117)] = 72581, - [SMALL_STATE(2118)] = 72654, - [SMALL_STATE(2119)] = 72763, - [SMALL_STATE(2120)] = 72814, - [SMALL_STATE(2121)] = 72865, - [SMALL_STATE(2122)] = 72918, - [SMALL_STATE(2123)] = 73001, - [SMALL_STATE(2124)] = 73052, - [SMALL_STATE(2125)] = 73103, - [SMALL_STATE(2126)] = 73154, - [SMALL_STATE(2127)] = 73205, - [SMALL_STATE(2128)] = 73256, - [SMALL_STATE(2129)] = 73307, - [SMALL_STATE(2130)] = 73358, - [SMALL_STATE(2131)] = 73409, - [SMALL_STATE(2132)] = 73460, - [SMALL_STATE(2133)] = 73511, - [SMALL_STATE(2134)] = 73568, - [SMALL_STATE(2135)] = 73619, - [SMALL_STATE(2136)] = 73670, - [SMALL_STATE(2137)] = 73729, - [SMALL_STATE(2138)] = 73788, - [SMALL_STATE(2139)] = 73847, - [SMALL_STATE(2140)] = 73902, - [SMALL_STATE(2141)] = 73955, - [SMALL_STATE(2142)] = 74006, - [SMALL_STATE(2143)] = 74063, - [SMALL_STATE(2144)] = 74120, - [SMALL_STATE(2145)] = 74171, - [SMALL_STATE(2146)] = 74226, - [SMALL_STATE(2147)] = 74277, - [SMALL_STATE(2148)] = 74328, - [SMALL_STATE(2149)] = 74437, - [SMALL_STATE(2150)] = 74520, - [SMALL_STATE(2151)] = 74583, - [SMALL_STATE(2152)] = 74646, - [SMALL_STATE(2153)] = 74699, - [SMALL_STATE(2154)] = 74752, - [SMALL_STATE(2155)] = 74835, - [SMALL_STATE(2156)] = 74886, - [SMALL_STATE(2157)] = 74951, - [SMALL_STATE(2158)] = 75002, - [SMALL_STATE(2159)] = 75054, - [SMALL_STATE(2160)] = 75120, - [SMALL_STATE(2161)] = 75176, - [SMALL_STATE(2162)] = 75250, - [SMALL_STATE(2163)] = 75304, - [SMALL_STATE(2164)] = 75380, - [SMALL_STATE(2165)] = 75430, - [SMALL_STATE(2166)] = 75486, - [SMALL_STATE(2167)] = 75538, - [SMALL_STATE(2168)] = 75594, - [SMALL_STATE(2169)] = 75658, - [SMALL_STATE(2170)] = 75732, - [SMALL_STATE(2171)] = 75798, - [SMALL_STATE(2172)] = 75874, - [SMALL_STATE(2173)] = 75936, - [SMALL_STATE(2174)] = 75998, - [SMALL_STATE(2175)] = 76064, - [SMALL_STATE(2176)] = 76116, - [SMALL_STATE(2177)] = 76168, - [SMALL_STATE(2178)] = 76254, - [SMALL_STATE(2179)] = 76328, - [SMALL_STATE(2180)] = 76404, - [SMALL_STATE(2181)] = 76466, - [SMALL_STATE(2182)] = 76528, - [SMALL_STATE(2183)] = 76588, - [SMALL_STATE(2184)] = 76648, - [SMALL_STATE(2185)] = 76698, - [SMALL_STATE(2186)] = 76762, - [SMALL_STATE(2187)] = 76820, - [SMALL_STATE(2188)] = 76878, - [SMALL_STATE(2189)] = 76940, - [SMALL_STATE(2190)] = 77002, - [SMALL_STATE(2191)] = 77064, - [SMALL_STATE(2192)] = 77126, - [SMALL_STATE(2193)] = 77188, - [SMALL_STATE(2194)] = 77250, - [SMALL_STATE(2195)] = 77304, - [SMALL_STATE(2196)] = 77358, - [SMALL_STATE(2197)] = 77412, - [SMALL_STATE(2198)] = 77466, - [SMALL_STATE(2199)] = 77516, - [SMALL_STATE(2200)] = 77566, - [SMALL_STATE(2201)] = 77616, - [SMALL_STATE(2202)] = 77682, - [SMALL_STATE(2203)] = 77732, - [SMALL_STATE(2204)] = 77786, - [SMALL_STATE(2205)] = 77840, - [SMALL_STATE(2206)] = 77948, - [SMALL_STATE(2207)] = 78012, - [SMALL_STATE(2208)] = 78076, - [SMALL_STATE(2209)] = 78126, - [SMALL_STATE(2210)] = 78192, - [SMALL_STATE(2211)] = 78246, - [SMALL_STATE(2212)] = 78296, - [SMALL_STATE(2213)] = 78354, - [SMALL_STATE(2214)] = 78462, - [SMALL_STATE(2215)] = 78526, - [SMALL_STATE(2216)] = 78592, - [SMALL_STATE(2217)] = 78642, - [SMALL_STATE(2218)] = 78692, - [SMALL_STATE(2219)] = 78744, - [SMALL_STATE(2220)] = 78810, - [SMALL_STATE(2221)] = 78866, - [SMALL_STATE(2222)] = 78916, - [SMALL_STATE(2223)] = 78980, - [SMALL_STATE(2224)] = 79034, - [SMALL_STATE(2225)] = 79098, - [SMALL_STATE(2226)] = 79162, - [SMALL_STATE(2227)] = 79216, - [SMALL_STATE(2228)] = 79270, - [SMALL_STATE(2229)] = 79322, - [SMALL_STATE(2230)] = 79386, - [SMALL_STATE(2231)] = 79444, - [SMALL_STATE(2232)] = 79502, - [SMALL_STATE(2233)] = 79556, - [SMALL_STATE(2234)] = 79606, - [SMALL_STATE(2235)] = 79656, - [SMALL_STATE(2236)] = 79706, - [SMALL_STATE(2237)] = 79756, - [SMALL_STATE(2238)] = 79806, - [SMALL_STATE(2239)] = 79856, - [SMALL_STATE(2240)] = 79930, - [SMALL_STATE(2241)] = 79980, - [SMALL_STATE(2242)] = 80054, - [SMALL_STATE(2243)] = 80130, - [SMALL_STATE(2244)] = 80180, - [SMALL_STATE(2245)] = 80244, - [SMALL_STATE(2246)] = 80310, - [SMALL_STATE(2247)] = 80360, - [SMALL_STATE(2248)] = 80412, - [SMALL_STATE(2249)] = 80488, - [SMALL_STATE(2250)] = 80550, - [SMALL_STATE(2251)] = 80658, - [SMALL_STATE(2252)] = 80766, - [SMALL_STATE(2253)] = 80874, - [SMALL_STATE(2254)] = 80982, - [SMALL_STATE(2255)] = 81090, - [SMALL_STATE(2256)] = 81172, - [SMALL_STATE(2257)] = 81244, - [SMALL_STATE(2258)] = 81340, - [SMALL_STATE(2259)] = 81438, - [SMALL_STATE(2260)] = 81516, - [SMALL_STATE(2261)] = 81606, - [SMALL_STATE(2262)] = 81698, - [SMALL_STATE(2263)] = 81792, - [SMALL_STATE(2264)] = 81868, - [SMALL_STATE(2265)] = 81946, - [SMALL_STATE(2266)] = 82032, - [SMALL_STATE(2267)] = 82132, - [SMALL_STATE(2268)] = 82240, - [SMALL_STATE(2269)] = 82348, - [SMALL_STATE(2270)] = 82456, - [SMALL_STATE(2271)] = 82564, - [SMALL_STATE(2272)] = 82672, - [SMALL_STATE(2273)] = 82780, - [SMALL_STATE(2274)] = 82888, - [SMALL_STATE(2275)] = 82996, - [SMALL_STATE(2276)] = 83056, - [SMALL_STATE(2277)] = 83112, - [SMALL_STATE(2278)] = 83170, - [SMALL_STATE(2279)] = 83222, - [SMALL_STATE(2280)] = 83274, - [SMALL_STATE(2281)] = 83328, - [SMALL_STATE(2282)] = 83382, - [SMALL_STATE(2283)] = 83444, - [SMALL_STATE(2284)] = 83552, - [SMALL_STATE(2285)] = 83660, - [SMALL_STATE(2286)] = 83768, - [SMALL_STATE(2287)] = 83876, - [SMALL_STATE(2288)] = 83984, - [SMALL_STATE(2289)] = 84066, - [SMALL_STATE(2290)] = 84138, - [SMALL_STATE(2291)] = 84234, - [SMALL_STATE(2292)] = 84332, - [SMALL_STATE(2293)] = 84410, - [SMALL_STATE(2294)] = 84500, - [SMALL_STATE(2295)] = 84592, - [SMALL_STATE(2296)] = 84686, - [SMALL_STATE(2297)] = 84762, - [SMALL_STATE(2298)] = 84848, - [SMALL_STATE(2299)] = 84948, - [SMALL_STATE(2300)] = 85056, - [SMALL_STATE(2301)] = 85164, - [SMALL_STATE(2302)] = 85272, - [SMALL_STATE(2303)] = 85380, - [SMALL_STATE(2304)] = 85488, - [SMALL_STATE(2305)] = 85596, - [SMALL_STATE(2306)] = 85704, - [SMALL_STATE(2307)] = 85812, - [SMALL_STATE(2308)] = 85870, - [SMALL_STATE(2309)] = 85930, - [SMALL_STATE(2310)] = 85982, - [SMALL_STATE(2311)] = 86034, - [SMALL_STATE(2312)] = 86088, - [SMALL_STATE(2313)] = 86142, - [SMALL_STATE(2314)] = 86200, - [SMALL_STATE(2315)] = 86252, - [SMALL_STATE(2316)] = 86304, - [SMALL_STATE(2317)] = 86358, - [SMALL_STATE(2318)] = 86410, - [SMALL_STATE(2319)] = 86460, - [SMALL_STATE(2320)] = 86510, - [SMALL_STATE(2321)] = 86560, - [SMALL_STATE(2322)] = 86624, - [SMALL_STATE(2323)] = 86698, - [SMALL_STATE(2324)] = 86774, - [SMALL_STATE(2325)] = 86824, - [SMALL_STATE(2326)] = 86874, - [SMALL_STATE(2327)] = 86940, - [SMALL_STATE(2328)] = 86992, - [SMALL_STATE(2329)] = 87056, - [SMALL_STATE(2330)] = 87110, - [SMALL_STATE(2331)] = 87160, - [SMALL_STATE(2332)] = 87268, - [SMALL_STATE(2333)] = 87324, - [SMALL_STATE(2334)] = 87388, - [SMALL_STATE(2335)] = 87452, - [SMALL_STATE(2336)] = 87516, - [SMALL_STATE(2337)] = 87578, - [SMALL_STATE(2338)] = 87628, - [SMALL_STATE(2339)] = 87678, - [SMALL_STATE(2340)] = 87728, - [SMALL_STATE(2341)] = 87778, - [SMALL_STATE(2342)] = 87828, - [SMALL_STATE(2343)] = 87936, - [SMALL_STATE(2344)] = 87990, - [SMALL_STATE(2345)] = 88044, - [SMALL_STATE(2346)] = 88098, - [SMALL_STATE(2347)] = 88152, - [SMALL_STATE(2348)] = 88216, - [SMALL_STATE(2349)] = 88282, - [SMALL_STATE(2350)] = 88340, - [SMALL_STATE(2351)] = 88406, - [SMALL_STATE(2352)] = 88514, - [SMALL_STATE(2353)] = 88572, - [SMALL_STATE(2354)] = 88624, - [SMALL_STATE(2355)] = 88674, - [SMALL_STATE(2356)] = 88744, - [SMALL_STATE(2357)] = 88820, - [SMALL_STATE(2358)] = 88928, - [SMALL_STATE(2359)] = 88996, - [SMALL_STATE(2360)] = 89062, - [SMALL_STATE(2361)] = 89112, - [SMALL_STATE(2362)] = 89162, - [SMALL_STATE(2363)] = 89216, - [SMALL_STATE(2364)] = 89280, - [SMALL_STATE(2365)] = 89346, - [SMALL_STATE(2366)] = 89454, - [SMALL_STATE(2367)] = 89524, - [SMALL_STATE(2368)] = 89600, - [SMALL_STATE(2369)] = 89708, - [SMALL_STATE(2370)] = 89776, - [SMALL_STATE(2371)] = 89840, - [SMALL_STATE(2372)] = 89906, - [SMALL_STATE(2373)] = 90014, - [SMALL_STATE(2374)] = 90124, - [SMALL_STATE(2375)] = 90178, - [SMALL_STATE(2376)] = 90246, - [SMALL_STATE(2377)] = 90302, - [SMALL_STATE(2378)] = 90356, - [SMALL_STATE(2379)] = 90406, - [SMALL_STATE(2380)] = 90514, - [SMALL_STATE(2381)] = 90564, - [SMALL_STATE(2382)] = 90614, - [SMALL_STATE(2383)] = 90664, - [SMALL_STATE(2384)] = 90738, - [SMALL_STATE(2385)] = 90788, - [SMALL_STATE(2386)] = 90838, - [SMALL_STATE(2387)] = 90888, - [SMALL_STATE(2388)] = 90938, - [SMALL_STATE(2389)] = 90988, - [SMALL_STATE(2390)] = 91038, - [SMALL_STATE(2391)] = 91114, - [SMALL_STATE(2392)] = 91222, - [SMALL_STATE(2393)] = 91276, - [SMALL_STATE(2394)] = 91340, - [SMALL_STATE(2395)] = 91404, - [SMALL_STATE(2396)] = 91512, - [SMALL_STATE(2397)] = 91578, - [SMALL_STATE(2398)] = 91634, - [SMALL_STATE(2399)] = 91684, - [SMALL_STATE(2400)] = 91734, - [SMALL_STATE(2401)] = 91788, - [SMALL_STATE(2402)] = 91838, - [SMALL_STATE(2403)] = 91892, - [SMALL_STATE(2404)] = 91942, - [SMALL_STATE(2405)] = 92050, - [SMALL_STATE(2406)] = 92108, - [SMALL_STATE(2407)] = 92162, - [SMALL_STATE(2408)] = 92212, - [SMALL_STATE(2409)] = 92262, - [SMALL_STATE(2410)] = 92324, - [SMALL_STATE(2411)] = 92432, - [SMALL_STATE(2412)] = 92540, - [SMALL_STATE(2413)] = 92648, - [SMALL_STATE(2414)] = 92756, - [SMALL_STATE(2415)] = 92864, - [SMALL_STATE(2416)] = 92946, - [SMALL_STATE(2417)] = 93018, - [SMALL_STATE(2418)] = 93114, - [SMALL_STATE(2419)] = 93212, - [SMALL_STATE(2420)] = 93290, - [SMALL_STATE(2421)] = 93380, - [SMALL_STATE(2422)] = 93472, - [SMALL_STATE(2423)] = 93566, - [SMALL_STATE(2424)] = 93642, - [SMALL_STATE(2425)] = 93720, - [SMALL_STATE(2426)] = 93806, - [SMALL_STATE(2427)] = 93906, - [SMALL_STATE(2428)] = 94014, - [SMALL_STATE(2429)] = 94122, - [SMALL_STATE(2430)] = 94230, - [SMALL_STATE(2431)] = 94338, - [SMALL_STATE(2432)] = 94446, - [SMALL_STATE(2433)] = 94554, - [SMALL_STATE(2434)] = 94662, - [SMALL_STATE(2435)] = 94770, - [SMALL_STATE(2436)] = 94824, - [SMALL_STATE(2437)] = 94880, - [SMALL_STATE(2438)] = 94936, - [SMALL_STATE(2439)] = 95006, - [SMALL_STATE(2440)] = 95082, - [SMALL_STATE(2441)] = 95190, - [SMALL_STATE(2442)] = 95258, - [SMALL_STATE(2443)] = 95324, - [SMALL_STATE(2444)] = 95432, - [SMALL_STATE(2445)] = 95484, - [SMALL_STATE(2446)] = 95562, - [SMALL_STATE(2447)] = 95667, - [SMALL_STATE(2448)] = 95736, - [SMALL_STATE(2449)] = 95795, - [SMALL_STATE(2450)] = 95854, - [SMALL_STATE(2451)] = 95913, - [SMALL_STATE(2452)] = 95964, - [SMALL_STATE(2453)] = 96023, - [SMALL_STATE(2454)] = 96074, - [SMALL_STATE(2455)] = 96129, - [SMALL_STATE(2456)] = 96218, - [SMALL_STATE(2457)] = 96277, - [SMALL_STATE(2458)] = 96346, - [SMALL_STATE(2459)] = 96405, - [SMALL_STATE(2460)] = 96464, - [SMALL_STATE(2461)] = 96523, - [SMALL_STATE(2462)] = 96582, - [SMALL_STATE(2463)] = 96659, - [SMALL_STATE(2464)] = 96710, - [SMALL_STATE(2465)] = 96769, - [SMALL_STATE(2466)] = 96826, - [SMALL_STATE(2467)] = 96895, - [SMALL_STATE(2468)] = 96964, - [SMALL_STATE(2469)] = 97039, - [SMALL_STATE(2470)] = 97144, - [SMALL_STATE(2471)] = 97211, - [SMALL_STATE(2472)] = 97270, - [SMALL_STATE(2473)] = 97329, - [SMALL_STATE(2474)] = 97388, - [SMALL_STATE(2475)] = 97447, - [SMALL_STATE(2476)] = 97498, - [SMALL_STATE(2477)] = 97557, - [SMALL_STATE(2478)] = 97616, - [SMALL_STATE(2479)] = 97691, - [SMALL_STATE(2480)] = 97748, - [SMALL_STATE(2481)] = 97805, - [SMALL_STATE(2482)] = 97862, - [SMALL_STATE(2483)] = 97967, - [SMALL_STATE(2484)] = 98022, - [SMALL_STATE(2485)] = 98075, - [SMALL_STATE(2486)] = 98130, - [SMALL_STATE(2487)] = 98211, - [SMALL_STATE(2488)] = 98280, - [SMALL_STATE(2489)] = 98341, - [SMALL_STATE(2490)] = 98446, - [SMALL_STATE(2491)] = 98551, - [SMALL_STATE(2492)] = 98656, - [SMALL_STATE(2493)] = 98761, - [SMALL_STATE(2494)] = 98830, - [SMALL_STATE(2495)] = 98889, - [SMALL_STATE(2496)] = 98960, - [SMALL_STATE(2497)] = 99055, - [SMALL_STATE(2498)] = 99152, - [SMALL_STATE(2499)] = 99221, - [SMALL_STATE(2500)] = 99298, - [SMALL_STATE(2501)] = 99351, - [SMALL_STATE(2502)] = 99410, - [SMALL_STATE(2503)] = 99499, - [SMALL_STATE(2504)] = 99590, - [SMALL_STATE(2505)] = 99683, - [SMALL_STATE(2506)] = 99740, - [SMALL_STATE(2507)] = 99815, - [SMALL_STATE(2508)] = 99892, - [SMALL_STATE(2509)] = 99943, - [SMALL_STATE(2510)] = 100028, - [SMALL_STATE(2511)] = 100127, - [SMALL_STATE(2512)] = 100232, - [SMALL_STATE(2513)] = 100283, - [SMALL_STATE(2514)] = 100388, - [SMALL_STATE(2515)] = 100493, - [SMALL_STATE(2516)] = 100552, - [SMALL_STATE(2517)] = 100657, - [SMALL_STATE(2518)] = 100762, - [SMALL_STATE(2519)] = 100821, - [SMALL_STATE(2520)] = 100926, - [SMALL_STATE(2521)] = 101031, - [SMALL_STATE(2522)] = 101136, - [SMALL_STATE(2523)] = 101195, - [SMALL_STATE(2524)] = 101246, - [SMALL_STATE(2525)] = 101351, - [SMALL_STATE(2526)] = 101406, - [SMALL_STATE(2527)] = 101463, - [SMALL_STATE(2528)] = 101522, - [SMALL_STATE(2529)] = 101575, - [SMALL_STATE(2530)] = 101634, - [SMALL_STATE(2531)] = 101703, - [SMALL_STATE(2532)] = 101760, - [SMALL_STATE(2533)] = 101811, - [SMALL_STATE(2534)] = 101868, - [SMALL_STATE(2535)] = 101949, - [SMALL_STATE(2536)] = 101997, - [SMALL_STATE(2537)] = 102061, - [SMALL_STATE(2538)] = 102111, - [SMALL_STATE(2539)] = 102161, - [SMALL_STATE(2540)] = 102215, - [SMALL_STATE(2541)] = 102269, - [SMALL_STATE(2542)] = 102317, - [SMALL_STATE(2543)] = 102371, - [SMALL_STATE(2544)] = 102425, - [SMALL_STATE(2545)] = 102479, - [SMALL_STATE(2546)] = 102533, - [SMALL_STATE(2547)] = 102587, - [SMALL_STATE(2548)] = 102641, - [SMALL_STATE(2549)] = 102707, - [SMALL_STATE(2550)] = 102761, - [SMALL_STATE(2551)] = 102825, - [SMALL_STATE(2552)] = 102875, - [SMALL_STATE(2553)] = 102925, - [SMALL_STATE(2554)] = 102997, - [SMALL_STATE(2555)] = 103061, - [SMALL_STATE(2556)] = 103121, - [SMALL_STATE(2557)] = 103189, - [SMALL_STATE(2558)] = 103239, - [SMALL_STATE(2559)] = 103289, - [SMALL_STATE(2560)] = 103339, - [SMALL_STATE(2561)] = 103389, - [SMALL_STATE(2562)] = 103439, - [SMALL_STATE(2563)] = 103487, - [SMALL_STATE(2564)] = 103537, - [SMALL_STATE(2565)] = 103607, - [SMALL_STATE(2566)] = 103663, - [SMALL_STATE(2567)] = 103723, - [SMALL_STATE(2568)] = 103773, - [SMALL_STATE(2569)] = 103837, - [SMALL_STATE(2570)] = 103897, - [SMALL_STATE(2571)] = 103965, - [SMALL_STATE(2572)] = 104019, - [SMALL_STATE(2573)] = 104083, - [SMALL_STATE(2574)] = 104143, - [SMALL_STATE(2575)] = 104203, - [SMALL_STATE(2576)] = 104260, - [SMALL_STATE(2577)] = 104319, - [SMALL_STATE(2578)] = 104372, - [SMALL_STATE(2579)] = 104431, - [SMALL_STATE(2580)] = 104490, - [SMALL_STATE(2581)] = 104549, - [SMALL_STATE(2582)] = 104606, - [SMALL_STATE(2583)] = 104667, - [SMALL_STATE(2584)] = 104720, - [SMALL_STATE(2585)] = 104779, - [SMALL_STATE(2586)] = 104836, - [SMALL_STATE(2587)] = 104895, - [SMALL_STATE(2588)] = 104952, - [SMALL_STATE(2589)] = 105011, - [SMALL_STATE(2590)] = 105070, - [SMALL_STATE(2591)] = 105129, - [SMALL_STATE(2592)] = 105188, - [SMALL_STATE(2593)] = 105245, - [SMALL_STATE(2594)] = 105304, - [SMALL_STATE(2595)] = 105363, - [SMALL_STATE(2596)] = 105420, - [SMALL_STATE(2597)] = 105469, - [SMALL_STATE(2598)] = 105526, - [SMALL_STATE(2599)] = 105583, - [SMALL_STATE(2600)] = 105640, - [SMALL_STATE(2601)] = 105703, - [SMALL_STATE(2602)] = 105768, - [SMALL_STATE(2603)] = 105825, - [SMALL_STATE(2604)] = 105884, - [SMALL_STATE(2605)] = 105941, - [SMALL_STATE(2606)] = 106004, - [SMALL_STATE(2607)] = 106061, - [SMALL_STATE(2608)] = 106114, - [SMALL_STATE(2609)] = 106171, - [SMALL_STATE(2610)] = 106228, - [SMALL_STATE(2611)] = 106281, - [SMALL_STATE(2612)] = 106334, - [SMALL_STATE(2613)] = 106391, - [SMALL_STATE(2614)] = 106448, - [SMALL_STATE(2615)] = 106497, - [SMALL_STATE(2616)] = 106546, - [SMALL_STATE(2617)] = 106595, - [SMALL_STATE(2618)] = 106654, - [SMALL_STATE(2619)] = 106700, - [SMALL_STATE(2620)] = 106748, - [SMALL_STATE(2621)] = 106794, - [SMALL_STATE(2622)] = 106840, - [SMALL_STATE(2623)] = 106886, - [SMALL_STATE(2624)] = 106932, - [SMALL_STATE(2625)] = 106978, - [SMALL_STATE(2626)] = 107024, - [SMALL_STATE(2627)] = 107070, - [SMALL_STATE(2628)] = 107118, - [SMALL_STATE(2629)] = 107164, - [SMALL_STATE(2630)] = 107210, - [SMALL_STATE(2631)] = 107256, - [SMALL_STATE(2632)] = 107302, - [SMALL_STATE(2633)] = 107348, - [SMALL_STATE(2634)] = 107394, - [SMALL_STATE(2635)] = 107442, - [SMALL_STATE(2636)] = 107488, - [SMALL_STATE(2637)] = 107534, - [SMALL_STATE(2638)] = 107580, - [SMALL_STATE(2639)] = 107626, - [SMALL_STATE(2640)] = 107672, - [SMALL_STATE(2641)] = 107720, - [SMALL_STATE(2642)] = 107766, - [SMALL_STATE(2643)] = 107812, - [SMALL_STATE(2644)] = 107860, - [SMALL_STATE(2645)] = 107906, - [SMALL_STATE(2646)] = 107952, - [SMALL_STATE(2647)] = 107998, - [SMALL_STATE(2648)] = 108044, - [SMALL_STATE(2649)] = 108090, - [SMALL_STATE(2650)] = 108140, - [SMALL_STATE(2651)] = 108186, - [SMALL_STATE(2652)] = 108232, - [SMALL_STATE(2653)] = 108278, - [SMALL_STATE(2654)] = 108326, - [SMALL_STATE(2655)] = 108374, - [SMALL_STATE(2656)] = 108422, - [SMALL_STATE(2657)] = 108468, - [SMALL_STATE(2658)] = 108524, - [SMALL_STATE(2659)] = 108572, - [SMALL_STATE(2660)] = 108618, - [SMALL_STATE(2661)] = 108664, - [SMALL_STATE(2662)] = 108710, - [SMALL_STATE(2663)] = 108758, - [SMALL_STATE(2664)] = 108808, - [SMALL_STATE(2665)] = 108854, - [SMALL_STATE(2666)] = 108900, - [SMALL_STATE(2667)] = 108946, - [SMALL_STATE(2668)] = 108992, - [SMALL_STATE(2669)] = 109038, - [SMALL_STATE(2670)] = 109086, - [SMALL_STATE(2671)] = 109132, - [SMALL_STATE(2672)] = 109178, - [SMALL_STATE(2673)] = 109226, - [SMALL_STATE(2674)] = 109272, - [SMALL_STATE(2675)] = 109318, - [SMALL_STATE(2676)] = 109364, - [SMALL_STATE(2677)] = 109410, - [SMALL_STATE(2678)] = 109456, - [SMALL_STATE(2679)] = 109504, - [SMALL_STATE(2680)] = 109550, - [SMALL_STATE(2681)] = 109598, - [SMALL_STATE(2682)] = 109656, - [SMALL_STATE(2683)] = 109701, - [SMALL_STATE(2684)] = 109746, - [SMALL_STATE(2685)] = 109791, - [SMALL_STATE(2686)] = 109836, - [SMALL_STATE(2687)] = 109881, - [SMALL_STATE(2688)] = 109934, - [SMALL_STATE(2689)] = 109985, - [SMALL_STATE(2690)] = 110038, - [SMALL_STATE(2691)] = 110089, - [SMALL_STATE(2692)] = 110156, - [SMALL_STATE(2693)] = 110201, - [SMALL_STATE(2694)] = 110246, - [SMALL_STATE(2695)] = 110291, - [SMALL_STATE(2696)] = 110347, - [SMALL_STATE(2697)] = 110405, + [SMALL_STATE(1500)] = 27079, + [SMALL_STATE(1501)] = 27136, + [SMALL_STATE(1502)] = 27195, + [SMALL_STATE(1503)] = 27256, + [SMALL_STATE(1504)] = 27317, + [SMALL_STATE(1505)] = 27376, + [SMALL_STATE(1506)] = 27430, + [SMALL_STATE(1507)] = 27484, + [SMALL_STATE(1508)] = 27538, + [SMALL_STATE(1509)] = 27592, + [SMALL_STATE(1510)] = 27712, + [SMALL_STATE(1511)] = 27766, + [SMALL_STATE(1512)] = 27820, + [SMALL_STATE(1513)] = 27874, + [SMALL_STATE(1514)] = 27928, + [SMALL_STATE(1515)] = 27982, + [SMALL_STATE(1516)] = 28036, + [SMALL_STATE(1517)] = 28090, + [SMALL_STATE(1518)] = 28144, + [SMALL_STATE(1519)] = 28204, + [SMALL_STATE(1520)] = 28262, + [SMALL_STATE(1521)] = 28382, + [SMALL_STATE(1522)] = 28436, + [SMALL_STATE(1523)] = 28492, + [SMALL_STATE(1524)] = 28552, + [SMALL_STATE(1525)] = 28612, + [SMALL_STATE(1526)] = 28698, + [SMALL_STATE(1527)] = 28752, + [SMALL_STATE(1528)] = 28838, + [SMALL_STATE(1529)] = 28892, + [SMALL_STATE(1530)] = 28954, + [SMALL_STATE(1531)] = 29008, + [SMALL_STATE(1532)] = 29062, + [SMALL_STATE(1533)] = 29116, + [SMALL_STATE(1534)] = 29170, + [SMALL_STATE(1535)] = 29224, + [SMALL_STATE(1536)] = 29278, + [SMALL_STATE(1537)] = 29364, + [SMALL_STATE(1538)] = 29420, + [SMALL_STATE(1539)] = 29474, + [SMALL_STATE(1540)] = 29528, + [SMALL_STATE(1541)] = 29582, + [SMALL_STATE(1542)] = 29636, + [SMALL_STATE(1543)] = 29698, + [SMALL_STATE(1544)] = 29760, + [SMALL_STATE(1545)] = 29822, + [SMALL_STATE(1546)] = 29880, + [SMALL_STATE(1547)] = 29934, + [SMALL_STATE(1548)] = 29992, + [SMALL_STATE(1549)] = 30046, + [SMALL_STATE(1550)] = 30100, + [SMALL_STATE(1551)] = 30154, + [SMALL_STATE(1552)] = 30214, + [SMALL_STATE(1553)] = 30274, + [SMALL_STATE(1554)] = 30332, + [SMALL_STATE(1555)] = 30386, + [SMALL_STATE(1556)] = 30440, + [SMALL_STATE(1557)] = 30494, + [SMALL_STATE(1558)] = 30548, + [SMALL_STATE(1559)] = 30608, + [SMALL_STATE(1560)] = 30664, + [SMALL_STATE(1561)] = 30718, + [SMALL_STATE(1562)] = 30774, + [SMALL_STATE(1563)] = 30828, + [SMALL_STATE(1564)] = 30882, + [SMALL_STATE(1565)] = 30942, + [SMALL_STATE(1566)] = 30996, + [SMALL_STATE(1567)] = 31052, + [SMALL_STATE(1568)] = 31172, + [SMALL_STATE(1569)] = 31226, + [SMALL_STATE(1570)] = 31280, + [SMALL_STATE(1571)] = 31336, + [SMALL_STATE(1572)] = 31394, + [SMALL_STATE(1573)] = 31450, + [SMALL_STATE(1574)] = 31504, + [SMALL_STATE(1575)] = 31558, + [SMALL_STATE(1576)] = 31612, + [SMALL_STATE(1577)] = 31666, + [SMALL_STATE(1578)] = 31722, + [SMALL_STATE(1579)] = 31808, + [SMALL_STATE(1580)] = 31864, + [SMALL_STATE(1581)] = 31918, + [SMALL_STATE(1582)] = 31972, + [SMALL_STATE(1583)] = 32026, + [SMALL_STATE(1584)] = 32086, + [SMALL_STATE(1585)] = 32146, + [SMALL_STATE(1586)] = 32202, + [SMALL_STATE(1587)] = 32258, + [SMALL_STATE(1588)] = 32312, + [SMALL_STATE(1589)] = 32372, + [SMALL_STATE(1590)] = 32426, + [SMALL_STATE(1591)] = 32546, + [SMALL_STATE(1592)] = 32600, + [SMALL_STATE(1593)] = 32654, + [SMALL_STATE(1594)] = 32708, + [SMALL_STATE(1595)] = 32768, + [SMALL_STATE(1596)] = 32824, + [SMALL_STATE(1597)] = 32878, + [SMALL_STATE(1598)] = 32932, + [SMALL_STATE(1599)] = 32986, + [SMALL_STATE(1600)] = 33040, + [SMALL_STATE(1601)] = 33094, + [SMALL_STATE(1602)] = 33148, + [SMALL_STATE(1603)] = 33202, + [SMALL_STATE(1604)] = 33256, + [SMALL_STATE(1605)] = 33342, + [SMALL_STATE(1606)] = 33396, + [SMALL_STATE(1607)] = 33450, + [SMALL_STATE(1608)] = 33504, + [SMALL_STATE(1609)] = 33558, + [SMALL_STATE(1610)] = 33612, + [SMALL_STATE(1611)] = 33666, + [SMALL_STATE(1612)] = 33720, + [SMALL_STATE(1613)] = 33774, + [SMALL_STATE(1614)] = 33828, + [SMALL_STATE(1615)] = 33882, + [SMALL_STATE(1616)] = 33936, + [SMALL_STATE(1617)] = 33990, + [SMALL_STATE(1618)] = 34046, + [SMALL_STATE(1619)] = 34100, + [SMALL_STATE(1620)] = 34154, + [SMALL_STATE(1621)] = 34208, + [SMALL_STATE(1622)] = 34262, + [SMALL_STATE(1623)] = 34316, + [SMALL_STATE(1624)] = 34370, + [SMALL_STATE(1625)] = 34424, + [SMALL_STATE(1626)] = 34478, + [SMALL_STATE(1627)] = 34534, + [SMALL_STATE(1628)] = 34588, + [SMALL_STATE(1629)] = 34648, + [SMALL_STATE(1630)] = 34702, + [SMALL_STATE(1631)] = 34756, + [SMALL_STATE(1632)] = 34810, + [SMALL_STATE(1633)] = 34864, + [SMALL_STATE(1634)] = 34918, + [SMALL_STATE(1635)] = 34972, + [SMALL_STATE(1636)] = 35025, + [SMALL_STATE(1637)] = 35136, + [SMALL_STATE(1638)] = 35247, + [SMALL_STATE(1639)] = 35358, + [SMALL_STATE(1640)] = 35469, + [SMALL_STATE(1641)] = 35584, + [SMALL_STATE(1642)] = 35695, + [SMALL_STATE(1643)] = 35748, + [SMALL_STATE(1644)] = 35801, + [SMALL_STATE(1645)] = 35912, + [SMALL_STATE(1646)] = 36023, + [SMALL_STATE(1647)] = 36134, + [SMALL_STATE(1648)] = 36187, + [SMALL_STATE(1649)] = 36298, + [SMALL_STATE(1650)] = 36371, + [SMALL_STATE(1651)] = 36450, + [SMALL_STATE(1652)] = 36561, + [SMALL_STATE(1653)] = 36632, + [SMALL_STATE(1654)] = 36691, + [SMALL_STATE(1655)] = 36748, + [SMALL_STATE(1656)] = 36801, + [SMALL_STATE(1657)] = 36854, + [SMALL_STATE(1658)] = 36907, + [SMALL_STATE(1659)] = 36960, + [SMALL_STATE(1660)] = 37013, + [SMALL_STATE(1661)] = 37066, + [SMALL_STATE(1662)] = 37119, + [SMALL_STATE(1663)] = 37172, + [SMALL_STATE(1664)] = 37247, + [SMALL_STATE(1665)] = 37300, + [SMALL_STATE(1666)] = 37353, + [SMALL_STATE(1667)] = 37406, + [SMALL_STATE(1668)] = 37459, + [SMALL_STATE(1669)] = 37512, + [SMALL_STATE(1670)] = 37565, + [SMALL_STATE(1671)] = 37618, + [SMALL_STATE(1672)] = 37671, + [SMALL_STATE(1673)] = 37724, + [SMALL_STATE(1674)] = 37777, + [SMALL_STATE(1675)] = 37854, + [SMALL_STATE(1676)] = 37933, + [SMALL_STATE(1677)] = 38044, + [SMALL_STATE(1678)] = 38155, + [SMALL_STATE(1679)] = 38208, + [SMALL_STATE(1680)] = 38261, + [SMALL_STATE(1681)] = 38360, + [SMALL_STATE(1682)] = 38461, + [SMALL_STATE(1683)] = 38514, + [SMALL_STATE(1684)] = 38567, + [SMALL_STATE(1685)] = 38620, + [SMALL_STATE(1686)] = 38673, + [SMALL_STATE(1687)] = 38726, + [SMALL_STATE(1688)] = 38779, + [SMALL_STATE(1689)] = 38832, + [SMALL_STATE(1690)] = 38947, + [SMALL_STATE(1691)] = 39024, + [SMALL_STATE(1692)] = 39077, + [SMALL_STATE(1693)] = 39156, + [SMALL_STATE(1694)] = 39209, + [SMALL_STATE(1695)] = 39320, + [SMALL_STATE(1696)] = 39375, + [SMALL_STATE(1697)] = 39428, + [SMALL_STATE(1698)] = 39485, + [SMALL_STATE(1699)] = 39538, + [SMALL_STATE(1700)] = 39591, + [SMALL_STATE(1701)] = 39644, + [SMALL_STATE(1702)] = 39697, + [SMALL_STATE(1703)] = 39750, + [SMALL_STATE(1704)] = 39831, + [SMALL_STATE(1705)] = 39884, + [SMALL_STATE(1706)] = 39937, + [SMALL_STATE(1707)] = 39990, + [SMALL_STATE(1708)] = 40067, + [SMALL_STATE(1709)] = 40160, + [SMALL_STATE(1710)] = 40239, + [SMALL_STATE(1711)] = 40304, + [SMALL_STATE(1712)] = 40415, + [SMALL_STATE(1713)] = 40468, + [SMALL_STATE(1714)] = 40579, + [SMALL_STATE(1715)] = 40658, + [SMALL_STATE(1716)] = 40769, + [SMALL_STATE(1717)] = 40880, + [SMALL_STATE(1718)] = 40991, + [SMALL_STATE(1719)] = 41046, + [SMALL_STATE(1720)] = 41141, + [SMALL_STATE(1721)] = 41238, + [SMALL_STATE(1722)] = 41317, + [SMALL_STATE(1723)] = 41398, + [SMALL_STATE(1724)] = 41483, + [SMALL_STATE(1725)] = 41536, + [SMALL_STATE(1726)] = 41591, + [SMALL_STATE(1727)] = 41666, + [SMALL_STATE(1728)] = 41721, + [SMALL_STATE(1729)] = 41832, + [SMALL_STATE(1730)] = 41931, + [SMALL_STATE(1731)] = 42032, + [SMALL_STATE(1732)] = 42113, + [SMALL_STATE(1733)] = 42206, + [SMALL_STATE(1734)] = 42261, + [SMALL_STATE(1735)] = 42356, + [SMALL_STATE(1736)] = 42453, + [SMALL_STATE(1737)] = 42512, + [SMALL_STATE(1738)] = 42591, + [SMALL_STATE(1739)] = 42672, + [SMALL_STATE(1740)] = 42761, + [SMALL_STATE(1741)] = 42864, + [SMALL_STATE(1742)] = 42975, + [SMALL_STATE(1743)] = 43064, + [SMALL_STATE(1744)] = 43175, + [SMALL_STATE(1745)] = 43288, + [SMALL_STATE(1746)] = 43399, + [SMALL_STATE(1747)] = 43510, + [SMALL_STATE(1748)] = 43569, + [SMALL_STATE(1749)] = 43680, + [SMALL_STATE(1750)] = 43791, + [SMALL_STATE(1751)] = 43894, + [SMALL_STATE(1752)] = 44005, + [SMALL_STATE(1753)] = 44116, + [SMALL_STATE(1754)] = 44231, + [SMALL_STATE(1755)] = 44310, + [SMALL_STATE(1756)] = 44421, + [SMALL_STATE(1757)] = 44494, + [SMALL_STATE(1758)] = 44547, + [SMALL_STATE(1759)] = 44600, + [SMALL_STATE(1760)] = 44653, + [SMALL_STATE(1761)] = 44764, + [SMALL_STATE(1762)] = 44875, + [SMALL_STATE(1763)] = 44928, + [SMALL_STATE(1764)] = 44985, + [SMALL_STATE(1765)] = 45038, + [SMALL_STATE(1766)] = 45117, + [SMALL_STATE(1767)] = 45170, + [SMALL_STATE(1768)] = 45285, + [SMALL_STATE(1769)] = 45338, + [SMALL_STATE(1770)] = 45391, + [SMALL_STATE(1771)] = 45444, + [SMALL_STATE(1772)] = 45497, + [SMALL_STATE(1773)] = 45608, + [SMALL_STATE(1774)] = 45661, + [SMALL_STATE(1775)] = 45772, + [SMALL_STATE(1776)] = 45825, + [SMALL_STATE(1777)] = 45878, + [SMALL_STATE(1778)] = 45931, + [SMALL_STATE(1779)] = 46002, + [SMALL_STATE(1780)] = 46087, + [SMALL_STATE(1781)] = 46164, + [SMALL_STATE(1782)] = 46227, + [SMALL_STATE(1783)] = 46306, + [SMALL_STATE(1784)] = 46369, + [SMALL_STATE(1785)] = 46432, + [SMALL_STATE(1786)] = 46513, + [SMALL_STATE(1787)] = 46586, + [SMALL_STATE(1788)] = 46701, + [SMALL_STATE(1789)] = 46780, + [SMALL_STATE(1790)] = 46891, + [SMALL_STATE(1791)] = 46956, + [SMALL_STATE(1792)] = 47067, + [SMALL_STATE(1793)] = 47178, + [SMALL_STATE(1794)] = 47231, + [SMALL_STATE(1795)] = 47302, + [SMALL_STATE(1796)] = 47363, + [SMALL_STATE(1797)] = 47474, + [SMALL_STATE(1798)] = 47543, + [SMALL_STATE(1799)] = 47596, + [SMALL_STATE(1800)] = 47649, + [SMALL_STATE(1801)] = 47702, + [SMALL_STATE(1802)] = 47755, + [SMALL_STATE(1803)] = 47866, + [SMALL_STATE(1804)] = 47981, + [SMALL_STATE(1805)] = 48046, + [SMALL_STATE(1806)] = 48123, + [SMALL_STATE(1807)] = 48202, + [SMALL_STATE(1808)] = 48313, + [SMALL_STATE(1809)] = 48424, + [SMALL_STATE(1810)] = 48509, + [SMALL_STATE(1811)] = 48622, + [SMALL_STATE(1812)] = 48697, + [SMALL_STATE(1813)] = 48796, + [SMALL_STATE(1814)] = 48897, + [SMALL_STATE(1815)] = 48978, + [SMALL_STATE(1816)] = 49089, + [SMALL_STATE(1817)] = 49182, + [SMALL_STATE(1818)] = 49277, + [SMALL_STATE(1819)] = 49374, + [SMALL_STATE(1820)] = 49427, + [SMALL_STATE(1821)] = 49506, + [SMALL_STATE(1822)] = 49587, + [SMALL_STATE(1823)] = 49702, + [SMALL_STATE(1824)] = 49791, + [SMALL_STATE(1825)] = 49894, + [SMALL_STATE(1826)] = 50005, + [SMALL_STATE(1827)] = 50116, + [SMALL_STATE(1828)] = 50227, + [SMALL_STATE(1829)] = 50341, + [SMALL_STATE(1830)] = 50425, + [SMALL_STATE(1831)] = 50539, + [SMALL_STATE(1832)] = 50639, + [SMALL_STATE(1833)] = 50749, + [SMALL_STATE(1834)] = 50863, + [SMALL_STATE(1835)] = 50973, + [SMALL_STATE(1836)] = 51083, + [SMALL_STATE(1837)] = 51163, + [SMALL_STATE(1838)] = 51273, + [SMALL_STATE(1839)] = 51387, + [SMALL_STATE(1840)] = 51459, + [SMALL_STATE(1841)] = 51533, + [SMALL_STATE(1842)] = 51625, + [SMALL_STATE(1843)] = 51735, + [SMALL_STATE(1844)] = 51829, + [SMALL_STATE(1845)] = 51925, + [SMALL_STATE(1846)] = 52035, + [SMALL_STATE(1847)] = 52145, + [SMALL_STATE(1848)] = 52223, + [SMALL_STATE(1849)] = 52283, + [SMALL_STATE(1850)] = 52363, + [SMALL_STATE(1851)] = 52473, + [SMALL_STATE(1852)] = 52587, + [SMALL_STATE(1853)] = 52659, + [SMALL_STATE(1854)] = 52773, + [SMALL_STATE(1855)] = 52833, + [SMALL_STATE(1856)] = 52947, + [SMALL_STATE(1857)] = 53061, + [SMALL_STATE(1858)] = 53175, + [SMALL_STATE(1859)] = 53253, + [SMALL_STATE(1860)] = 53327, + [SMALL_STATE(1861)] = 53437, + [SMALL_STATE(1862)] = 53509, + [SMALL_STATE(1863)] = 53567, + [SMALL_STATE(1864)] = 53677, + [SMALL_STATE(1865)] = 53791, + [SMALL_STATE(1866)] = 53901, + [SMALL_STATE(1867)] = 53955, + [SMALL_STATE(1868)] = 54011, + [SMALL_STATE(1869)] = 54089, + [SMALL_STATE(1870)] = 54203, + [SMALL_STATE(1871)] = 54313, + [SMALL_STATE(1872)] = 54371, + [SMALL_STATE(1873)] = 54481, + [SMALL_STATE(1874)] = 54537, + [SMALL_STATE(1875)] = 54593, + [SMALL_STATE(1876)] = 54707, + [SMALL_STATE(1877)] = 54765, + [SMALL_STATE(1878)] = 54853, + [SMALL_STATE(1879)] = 54905, + [SMALL_STATE(1880)] = 55007, + [SMALL_STATE(1881)] = 55119, + [SMALL_STATE(1882)] = 55233, + [SMALL_STATE(1883)] = 55293, + [SMALL_STATE(1884)] = 55407, + [SMALL_STATE(1885)] = 55517, + [SMALL_STATE(1886)] = 55627, + [SMALL_STATE(1887)] = 55741, + [SMALL_STATE(1888)] = 55813, + [SMALL_STATE(1889)] = 55887, + [SMALL_STATE(1890)] = 55943, + [SMALL_STATE(1891)] = 56001, + [SMALL_STATE(1892)] = 56071, + [SMALL_STATE(1893)] = 56135, + [SMALL_STATE(1894)] = 56197, + [SMALL_STATE(1895)] = 56259, + [SMALL_STATE(1896)] = 56373, + [SMALL_STATE(1897)] = 56487, + [SMALL_STATE(1898)] = 56541, + [SMALL_STATE(1899)] = 56655, + [SMALL_STATE(1900)] = 56709, + [SMALL_STATE(1901)] = 56761, + [SMALL_STATE(1902)] = 56833, + [SMALL_STATE(1903)] = 56947, + [SMALL_STATE(1904)] = 57011, + [SMALL_STATE(1905)] = 57121, + [SMALL_STATE(1906)] = 57231, + [SMALL_STATE(1907)] = 57341, + [SMALL_STATE(1908)] = 57451, + [SMALL_STATE(1909)] = 57561, + [SMALL_STATE(1910)] = 57645, + [SMALL_STATE(1911)] = 57719, + [SMALL_STATE(1912)] = 57817, + [SMALL_STATE(1913)] = 57917, + [SMALL_STATE(1914)] = 57997, + [SMALL_STATE(1915)] = 58089, + [SMALL_STATE(1916)] = 58183, + [SMALL_STATE(1917)] = 58279, + [SMALL_STATE(1918)] = 58357, + [SMALL_STATE(1919)] = 58437, + [SMALL_STATE(1920)] = 58525, + [SMALL_STATE(1921)] = 58627, + [SMALL_STATE(1922)] = 58737, + [SMALL_STATE(1923)] = 58847, + [SMALL_STATE(1924)] = 58957, + [SMALL_STATE(1925)] = 59067, + [SMALL_STATE(1926)] = 59177, + [SMALL_STATE(1927)] = 59287, + [SMALL_STATE(1928)] = 59397, + [SMALL_STATE(1929)] = 59507, + [SMALL_STATE(1930)] = 59565, + [SMALL_STATE(1931)] = 59637, + [SMALL_STATE(1932)] = 59715, + [SMALL_STATE(1933)] = 59825, + [SMALL_STATE(1934)] = 59895, + [SMALL_STATE(1935)] = 60005, + [SMALL_STATE(1936)] = 60077, + [SMALL_STATE(1937)] = 60175, + [SMALL_STATE(1938)] = 60289, + [SMALL_STATE(1939)] = 60403, + [SMALL_STATE(1940)] = 60455, + [SMALL_STATE(1941)] = 60565, + [SMALL_STATE(1942)] = 60679, + [SMALL_STATE(1943)] = 60793, + [SMALL_STATE(1944)] = 60907, + [SMALL_STATE(1945)] = 60959, + [SMALL_STATE(1946)] = 61069, + [SMALL_STATE(1947)] = 61179, + [SMALL_STATE(1948)] = 61293, + [SMALL_STATE(1949)] = 61345, + [SMALL_STATE(1950)] = 61400, + [SMALL_STATE(1951)] = 61457, + [SMALL_STATE(1952)] = 61508, + [SMALL_STATE(1953)] = 61559, + [SMALL_STATE(1954)] = 61622, + [SMALL_STATE(1955)] = 61675, + [SMALL_STATE(1956)] = 61738, + [SMALL_STATE(1957)] = 61811, + [SMALL_STATE(1958)] = 61862, + [SMALL_STATE(1959)] = 61913, + [SMALL_STATE(1960)] = 61964, + [SMALL_STATE(1961)] = 62075, + [SMALL_STATE(1962)] = 62128, + [SMALL_STATE(1963)] = 62179, + [SMALL_STATE(1964)] = 62252, + [SMALL_STATE(1965)] = 62303, + [SMALL_STATE(1966)] = 62354, + [SMALL_STATE(1967)] = 62411, + [SMALL_STATE(1968)] = 62462, + [SMALL_STATE(1969)] = 62513, + [SMALL_STATE(1970)] = 62564, + [SMALL_STATE(1971)] = 62615, + [SMALL_STATE(1972)] = 62666, + [SMALL_STATE(1973)] = 62717, + [SMALL_STATE(1974)] = 62826, + [SMALL_STATE(1975)] = 62935, + [SMALL_STATE(1976)] = 62986, + [SMALL_STATE(1977)] = 63037, + [SMALL_STATE(1978)] = 63088, + [SMALL_STATE(1979)] = 63145, + [SMALL_STATE(1980)] = 63198, + [SMALL_STATE(1981)] = 63269, + [SMALL_STATE(1982)] = 63320, + [SMALL_STATE(1983)] = 63371, + [SMALL_STATE(1984)] = 63464, + [SMALL_STATE(1985)] = 63573, + [SMALL_STATE(1986)] = 63668, + [SMALL_STATE(1987)] = 63751, + [SMALL_STATE(1988)] = 63828, + [SMALL_STATE(1989)] = 63911, + [SMALL_STATE(1990)] = 64020, + [SMALL_STATE(1991)] = 64129, + [SMALL_STATE(1992)] = 64206, + [SMALL_STATE(1993)] = 64279, + [SMALL_STATE(1994)] = 64348, + [SMALL_STATE(1995)] = 64457, + [SMALL_STATE(1996)] = 64540, + [SMALL_STATE(1997)] = 64591, + [SMALL_STATE(1998)] = 64700, + [SMALL_STATE(1999)] = 64763, + [SMALL_STATE(2000)] = 64822, + [SMALL_STATE(2001)] = 64877, + [SMALL_STATE(2002)] = 64960, + [SMALL_STATE(2003)] = 65011, + [SMALL_STATE(2004)] = 65062, + [SMALL_STATE(2005)] = 65113, + [SMALL_STATE(2006)] = 65164, + [SMALL_STATE(2007)] = 65229, + [SMALL_STATE(2008)] = 65280, + [SMALL_STATE(2009)] = 65353, + [SMALL_STATE(2010)] = 65432, + [SMALL_STATE(2011)] = 65497, + [SMALL_STATE(2012)] = 65548, + [SMALL_STATE(2013)] = 65607, + [SMALL_STATE(2014)] = 65716, + [SMALL_STATE(2015)] = 65785, + [SMALL_STATE(2016)] = 65838, + [SMALL_STATE(2017)] = 65889, + [SMALL_STATE(2018)] = 65940, + [SMALL_STATE(2019)] = 66027, + [SMALL_STATE(2020)] = 66080, + [SMALL_STATE(2021)] = 66131, + [SMALL_STATE(2022)] = 66182, + [SMALL_STATE(2023)] = 66265, + [SMALL_STATE(2024)] = 66316, + [SMALL_STATE(2025)] = 66369, + [SMALL_STATE(2026)] = 66420, + [SMALL_STATE(2027)] = 66471, + [SMALL_STATE(2028)] = 66580, + [SMALL_STATE(2029)] = 66689, + [SMALL_STATE(2030)] = 66740, + [SMALL_STATE(2031)] = 66797, + [SMALL_STATE(2032)] = 66848, + [SMALL_STATE(2033)] = 66899, + [SMALL_STATE(2034)] = 66956, + [SMALL_STATE(2035)] = 67009, + [SMALL_STATE(2036)] = 67060, + [SMALL_STATE(2037)] = 67111, + [SMALL_STATE(2038)] = 67164, + [SMALL_STATE(2039)] = 67215, + [SMALL_STATE(2040)] = 67266, + [SMALL_STATE(2041)] = 67317, + [SMALL_STATE(2042)] = 67368, + [SMALL_STATE(2043)] = 67419, + [SMALL_STATE(2044)] = 67470, + [SMALL_STATE(2045)] = 67521, + [SMALL_STATE(2046)] = 67572, + [SMALL_STATE(2047)] = 67623, + [SMALL_STATE(2048)] = 67676, + [SMALL_STATE(2049)] = 67733, + [SMALL_STATE(2050)] = 67790, + [SMALL_STATE(2051)] = 67891, + [SMALL_STATE(2052)] = 68000, + [SMALL_STATE(2053)] = 68099, + [SMALL_STATE(2054)] = 68152, + [SMALL_STATE(2055)] = 68203, + [SMALL_STATE(2056)] = 68312, + [SMALL_STATE(2057)] = 68369, + [SMALL_STATE(2058)] = 68420, + [SMALL_STATE(2059)] = 68479, + [SMALL_STATE(2060)] = 68530, + [SMALL_STATE(2061)] = 68581, + [SMALL_STATE(2062)] = 68690, + [SMALL_STATE(2063)] = 68741, + [SMALL_STATE(2064)] = 68792, + [SMALL_STATE(2065)] = 68843, + [SMALL_STATE(2066)] = 68912, + [SMALL_STATE(2067)] = 69021, + [SMALL_STATE(2068)] = 69078, + [SMALL_STATE(2069)] = 69135, + [SMALL_STATE(2070)] = 69188, + [SMALL_STATE(2071)] = 69271, + [SMALL_STATE(2072)] = 69324, + [SMALL_STATE(2073)] = 69387, + [SMALL_STATE(2074)] = 69438, + [SMALL_STATE(2075)] = 69489, + [SMALL_STATE(2076)] = 69540, + [SMALL_STATE(2077)] = 69649, + [SMALL_STATE(2078)] = 69732, + [SMALL_STATE(2079)] = 69829, + [SMALL_STATE(2080)] = 69880, + [SMALL_STATE(2081)] = 69989, + [SMALL_STATE(2082)] = 70068, + [SMALL_STATE(2083)] = 70119, + [SMALL_STATE(2084)] = 70210, + [SMALL_STATE(2085)] = 70319, + [SMALL_STATE(2086)] = 70378, + [SMALL_STATE(2087)] = 70487, + [SMALL_STATE(2088)] = 70538, + [SMALL_STATE(2089)] = 70589, + [SMALL_STATE(2090)] = 70644, + [SMALL_STATE(2091)] = 70707, + [SMALL_STATE(2092)] = 70816, + [SMALL_STATE(2093)] = 70873, + [SMALL_STATE(2094)] = 70924, + [SMALL_STATE(2095)] = 70993, + [SMALL_STATE(2096)] = 71050, + [SMALL_STATE(2097)] = 71103, + [SMALL_STATE(2098)] = 71154, + [SMALL_STATE(2099)] = 71227, + [SMALL_STATE(2100)] = 71290, + [SMALL_STATE(2101)] = 71341, + [SMALL_STATE(2102)] = 71410, + [SMALL_STATE(2103)] = 71461, + [SMALL_STATE(2104)] = 71530, + [SMALL_STATE(2105)] = 71581, + [SMALL_STATE(2106)] = 71652, + [SMALL_STATE(2107)] = 71703, + [SMALL_STATE(2108)] = 71812, + [SMALL_STATE(2109)] = 71863, + [SMALL_STATE(2110)] = 71922, + [SMALL_STATE(2111)] = 71973, + [SMALL_STATE(2112)] = 72024, + [SMALL_STATE(2113)] = 72077, + [SMALL_STATE(2114)] = 72128, + [SMALL_STATE(2115)] = 72237, + [SMALL_STATE(2116)] = 72296, + [SMALL_STATE(2117)] = 72347, + [SMALL_STATE(2118)] = 72410, + [SMALL_STATE(2119)] = 72469, + [SMALL_STATE(2120)] = 72520, + [SMALL_STATE(2121)] = 72575, + [SMALL_STATE(2122)] = 72626, + [SMALL_STATE(2123)] = 72683, + [SMALL_STATE(2124)] = 72740, + [SMALL_STATE(2125)] = 72849, + [SMALL_STATE(2126)] = 72912, + [SMALL_STATE(2127)] = 73021, + [SMALL_STATE(2128)] = 73074, + [SMALL_STATE(2129)] = 73183, + [SMALL_STATE(2130)] = 73236, + [SMALL_STATE(2131)] = 73309, + [SMALL_STATE(2132)] = 73362, + [SMALL_STATE(2133)] = 73435, + [SMALL_STATE(2134)] = 73486, + [SMALL_STATE(2135)] = 73537, + [SMALL_STATE(2136)] = 73594, + [SMALL_STATE(2137)] = 73703, + [SMALL_STATE(2138)] = 73776, + [SMALL_STATE(2139)] = 73887, + [SMALL_STATE(2140)] = 73996, + [SMALL_STATE(2141)] = 74053, + [SMALL_STATE(2142)] = 74104, + [SMALL_STATE(2143)] = 74157, + [SMALL_STATE(2144)] = 74220, + [SMALL_STATE(2145)] = 74271, + [SMALL_STATE(2146)] = 74322, + [SMALL_STATE(2147)] = 74375, + [SMALL_STATE(2148)] = 74426, + [SMALL_STATE(2149)] = 74485, + [SMALL_STATE(2150)] = 74538, + [SMALL_STATE(2151)] = 74611, + [SMALL_STATE(2152)] = 74668, + [SMALL_STATE(2153)] = 74751, + [SMALL_STATE(2154)] = 74802, + [SMALL_STATE(2155)] = 74855, + [SMALL_STATE(2156)] = 74918, + [SMALL_STATE(2157)] = 74969, + [SMALL_STATE(2158)] = 75020, + [SMALL_STATE(2159)] = 75071, + [SMALL_STATE(2160)] = 75127, + [SMALL_STATE(2161)] = 75179, + [SMALL_STATE(2162)] = 75231, + [SMALL_STATE(2163)] = 75289, + [SMALL_STATE(2164)] = 75343, + [SMALL_STATE(2165)] = 75393, + [SMALL_STATE(2166)] = 75443, + [SMALL_STATE(2167)] = 75493, + [SMALL_STATE(2168)] = 75557, + [SMALL_STATE(2169)] = 75631, + [SMALL_STATE(2170)] = 75707, + [SMALL_STATE(2171)] = 75757, + [SMALL_STATE(2172)] = 75865, + [SMALL_STATE(2173)] = 75919, + [SMALL_STATE(2174)] = 75969, + [SMALL_STATE(2175)] = 76019, + [SMALL_STATE(2176)] = 76069, + [SMALL_STATE(2177)] = 76119, + [SMALL_STATE(2178)] = 76169, + [SMALL_STATE(2179)] = 76219, + [SMALL_STATE(2180)] = 76327, + [SMALL_STATE(2181)] = 76385, + [SMALL_STATE(2182)] = 76449, + [SMALL_STATE(2183)] = 76503, + [SMALL_STATE(2184)] = 76557, + [SMALL_STATE(2185)] = 76607, + [SMALL_STATE(2186)] = 76661, + [SMALL_STATE(2187)] = 76711, + [SMALL_STATE(2188)] = 76773, + [SMALL_STATE(2189)] = 76859, + [SMALL_STATE(2190)] = 76913, + [SMALL_STATE(2191)] = 76967, + [SMALL_STATE(2192)] = 77031, + [SMALL_STATE(2193)] = 77085, + [SMALL_STATE(2194)] = 77139, + [SMALL_STATE(2195)] = 77193, + [SMALL_STATE(2196)] = 77249, + [SMALL_STATE(2197)] = 77303, + [SMALL_STATE(2198)] = 77357, + [SMALL_STATE(2199)] = 77411, + [SMALL_STATE(2200)] = 77461, + [SMALL_STATE(2201)] = 77515, + [SMALL_STATE(2202)] = 77569, + [SMALL_STATE(2203)] = 77623, + [SMALL_STATE(2204)] = 77687, + [SMALL_STATE(2205)] = 77737, + [SMALL_STATE(2206)] = 77791, + [SMALL_STATE(2207)] = 77855, + [SMALL_STATE(2208)] = 77921, + [SMALL_STATE(2209)] = 77975, + [SMALL_STATE(2210)] = 78025, + [SMALL_STATE(2211)] = 78077, + [SMALL_STATE(2212)] = 78141, + [SMALL_STATE(2213)] = 78199, + [SMALL_STATE(2214)] = 78273, + [SMALL_STATE(2215)] = 78349, + [SMALL_STATE(2216)] = 78399, + [SMALL_STATE(2217)] = 78449, + [SMALL_STATE(2218)] = 78501, + [SMALL_STATE(2219)] = 78561, + [SMALL_STATE(2220)] = 78611, + [SMALL_STATE(2221)] = 78661, + [SMALL_STATE(2222)] = 78711, + [SMALL_STATE(2223)] = 78767, + [SMALL_STATE(2224)] = 78817, + [SMALL_STATE(2225)] = 78867, + [SMALL_STATE(2226)] = 78919, + [SMALL_STATE(2227)] = 78971, + [SMALL_STATE(2228)] = 79025, + [SMALL_STATE(2229)] = 79075, + [SMALL_STATE(2230)] = 79139, + [SMALL_STATE(2231)] = 79205, + [SMALL_STATE(2232)] = 79257, + [SMALL_STATE(2233)] = 79309, + [SMALL_STATE(2234)] = 79363, + [SMALL_STATE(2235)] = 79417, + [SMALL_STATE(2236)] = 79469, + [SMALL_STATE(2237)] = 79521, + [SMALL_STATE(2238)] = 79575, + [SMALL_STATE(2239)] = 79627, + [SMALL_STATE(2240)] = 79679, + [SMALL_STATE(2241)] = 79753, + [SMALL_STATE(2242)] = 79811, + [SMALL_STATE(2243)] = 79887, + [SMALL_STATE(2244)] = 79939, + [SMALL_STATE(2245)] = 80007, + [SMALL_STATE(2246)] = 80061, + [SMALL_STATE(2247)] = 80119, + [SMALL_STATE(2248)] = 80175, + [SMALL_STATE(2249)] = 80225, + [SMALL_STATE(2250)] = 80285, + [SMALL_STATE(2251)] = 80343, + [SMALL_STATE(2252)] = 80453, + [SMALL_STATE(2253)] = 80509, + [SMALL_STATE(2254)] = 80583, + [SMALL_STATE(2255)] = 80659, + [SMALL_STATE(2256)] = 80709, + [SMALL_STATE(2257)] = 80759, + [SMALL_STATE(2258)] = 80809, + [SMALL_STATE(2259)] = 80865, + [SMALL_STATE(2260)] = 80921, + [SMALL_STATE(2261)] = 80995, + [SMALL_STATE(2262)] = 81071, + [SMALL_STATE(2263)] = 81121, + [SMALL_STATE(2264)] = 81177, + [SMALL_STATE(2265)] = 81227, + [SMALL_STATE(2266)] = 81277, + [SMALL_STATE(2267)] = 81327, + [SMALL_STATE(2268)] = 81383, + [SMALL_STATE(2269)] = 81457, + [SMALL_STATE(2270)] = 81533, + [SMALL_STATE(2271)] = 81595, + [SMALL_STATE(2272)] = 81657, + [SMALL_STATE(2273)] = 81709, + [SMALL_STATE(2274)] = 81761, + [SMALL_STATE(2275)] = 81835, + [SMALL_STATE(2276)] = 81911, + [SMALL_STATE(2277)] = 81973, + [SMALL_STATE(2278)] = 82035, + [SMALL_STATE(2279)] = 82095, + [SMALL_STATE(2280)] = 82155, + [SMALL_STATE(2281)] = 82213, + [SMALL_STATE(2282)] = 82271, + [SMALL_STATE(2283)] = 82333, + [SMALL_STATE(2284)] = 82395, + [SMALL_STATE(2285)] = 82457, + [SMALL_STATE(2286)] = 82519, + [SMALL_STATE(2287)] = 82581, + [SMALL_STATE(2288)] = 82643, + [SMALL_STATE(2289)] = 82697, + [SMALL_STATE(2290)] = 82751, + [SMALL_STATE(2291)] = 82805, + [SMALL_STATE(2292)] = 82859, + [SMALL_STATE(2293)] = 82923, + [SMALL_STATE(2294)] = 82989, + [SMALL_STATE(2295)] = 83055, + [SMALL_STATE(2296)] = 83163, + [SMALL_STATE(2297)] = 83271, + [SMALL_STATE(2298)] = 83337, + [SMALL_STATE(2299)] = 83387, + [SMALL_STATE(2300)] = 83437, + [SMALL_STATE(2301)] = 83493, + [SMALL_STATE(2302)] = 83551, + [SMALL_STATE(2303)] = 83615, + [SMALL_STATE(2304)] = 83681, + [SMALL_STATE(2305)] = 83735, + [SMALL_STATE(2306)] = 83799, + [SMALL_STATE(2307)] = 83865, + [SMALL_STATE(2308)] = 83919, + [SMALL_STATE(2309)] = 83969, + [SMALL_STATE(2310)] = 84019, + [SMALL_STATE(2311)] = 84069, + [SMALL_STATE(2312)] = 84131, + [SMALL_STATE(2313)] = 84239, + [SMALL_STATE(2314)] = 84347, + [SMALL_STATE(2315)] = 84455, + [SMALL_STATE(2316)] = 84563, + [SMALL_STATE(2317)] = 84671, + [SMALL_STATE(2318)] = 84753, + [SMALL_STATE(2319)] = 84825, + [SMALL_STATE(2320)] = 84921, + [SMALL_STATE(2321)] = 85019, + [SMALL_STATE(2322)] = 85097, + [SMALL_STATE(2323)] = 85187, + [SMALL_STATE(2324)] = 85279, + [SMALL_STATE(2325)] = 85373, + [SMALL_STATE(2326)] = 85449, + [SMALL_STATE(2327)] = 85527, + [SMALL_STATE(2328)] = 85613, + [SMALL_STATE(2329)] = 85713, + [SMALL_STATE(2330)] = 85821, + [SMALL_STATE(2331)] = 85929, + [SMALL_STATE(2332)] = 86037, + [SMALL_STATE(2333)] = 86145, + [SMALL_STATE(2334)] = 86253, + [SMALL_STATE(2335)] = 86361, + [SMALL_STATE(2336)] = 86469, + [SMALL_STATE(2337)] = 86577, + [SMALL_STATE(2338)] = 86627, + [SMALL_STATE(2339)] = 86677, + [SMALL_STATE(2340)] = 86727, + [SMALL_STATE(2341)] = 86777, + [SMALL_STATE(2342)] = 86827, + [SMALL_STATE(2343)] = 86877, + [SMALL_STATE(2344)] = 86939, + [SMALL_STATE(2345)] = 87047, + [SMALL_STATE(2346)] = 87155, + [SMALL_STATE(2347)] = 87263, + [SMALL_STATE(2348)] = 87371, + [SMALL_STATE(2349)] = 87479, + [SMALL_STATE(2350)] = 87561, + [SMALL_STATE(2351)] = 87633, + [SMALL_STATE(2352)] = 87729, + [SMALL_STATE(2353)] = 87827, + [SMALL_STATE(2354)] = 87905, + [SMALL_STATE(2355)] = 87995, + [SMALL_STATE(2356)] = 88087, + [SMALL_STATE(2357)] = 88181, + [SMALL_STATE(2358)] = 88257, + [SMALL_STATE(2359)] = 88335, + [SMALL_STATE(2360)] = 88421, + [SMALL_STATE(2361)] = 88521, + [SMALL_STATE(2362)] = 88629, + [SMALL_STATE(2363)] = 88737, + [SMALL_STATE(2364)] = 88845, + [SMALL_STATE(2365)] = 88953, + [SMALL_STATE(2366)] = 89061, + [SMALL_STATE(2367)] = 89169, + [SMALL_STATE(2368)] = 89277, + [SMALL_STATE(2369)] = 89385, + [SMALL_STATE(2370)] = 89435, + [SMALL_STATE(2371)] = 89489, + [SMALL_STATE(2372)] = 89553, + [SMALL_STATE(2373)] = 89617, + [SMALL_STATE(2374)] = 89683, + [SMALL_STATE(2375)] = 89749, + [SMALL_STATE(2376)] = 89815, + [SMALL_STATE(2377)] = 89879, + [SMALL_STATE(2378)] = 89943, + [SMALL_STATE(2379)] = 90009, + [SMALL_STATE(2380)] = 90073, + [SMALL_STATE(2381)] = 90137, + [SMALL_STATE(2382)] = 90201, + [SMALL_STATE(2383)] = 90267, + [SMALL_STATE(2384)] = 90333, + [SMALL_STATE(2385)] = 90441, + [SMALL_STATE(2386)] = 90491, + [SMALL_STATE(2387)] = 90541, + [SMALL_STATE(2388)] = 90591, + [SMALL_STATE(2389)] = 90641, + [SMALL_STATE(2390)] = 90699, + [SMALL_STATE(2391)] = 90763, + [SMALL_STATE(2392)] = 90871, + [SMALL_STATE(2393)] = 90941, + [SMALL_STATE(2394)] = 91017, + [SMALL_STATE(2395)] = 91125, + [SMALL_STATE(2396)] = 91193, + [SMALL_STATE(2397)] = 91301, + [SMALL_STATE(2398)] = 91371, + [SMALL_STATE(2399)] = 91447, + [SMALL_STATE(2400)] = 91555, + [SMALL_STATE(2401)] = 91623, + [SMALL_STATE(2402)] = 91689, + [SMALL_STATE(2403)] = 91797, + [SMALL_STATE(2404)] = 91905, + [SMALL_STATE(2405)] = 91955, + [SMALL_STATE(2406)] = 92019, + [SMALL_STATE(2407)] = 92085, + [SMALL_STATE(2408)] = 92135, + [SMALL_STATE(2409)] = 92185, + [SMALL_STATE(2410)] = 92237, + [SMALL_STATE(2411)] = 92345, + [SMALL_STATE(2412)] = 92409, + [SMALL_STATE(2413)] = 92475, + [SMALL_STATE(2414)] = 92583, + [SMALL_STATE(2415)] = 92645, + [SMALL_STATE(2416)] = 92753, + [SMALL_STATE(2417)] = 92861, + [SMALL_STATE(2418)] = 92969, + [SMALL_STATE(2419)] = 93077, + [SMALL_STATE(2420)] = 93185, + [SMALL_STATE(2421)] = 93267, + [SMALL_STATE(2422)] = 93339, + [SMALL_STATE(2423)] = 93435, + [SMALL_STATE(2424)] = 93533, + [SMALL_STATE(2425)] = 93611, + [SMALL_STATE(2426)] = 93701, + [SMALL_STATE(2427)] = 93793, + [SMALL_STATE(2428)] = 93887, + [SMALL_STATE(2429)] = 93963, + [SMALL_STATE(2430)] = 94041, + [SMALL_STATE(2431)] = 94127, + [SMALL_STATE(2432)] = 94227, + [SMALL_STATE(2433)] = 94335, + [SMALL_STATE(2434)] = 94443, + [SMALL_STATE(2435)] = 94551, + [SMALL_STATE(2436)] = 94659, + [SMALL_STATE(2437)] = 94767, + [SMALL_STATE(2438)] = 94875, + [SMALL_STATE(2439)] = 94983, + [SMALL_STATE(2440)] = 95091, + [SMALL_STATE(2441)] = 95161, + [SMALL_STATE(2442)] = 95237, + [SMALL_STATE(2443)] = 95345, + [SMALL_STATE(2444)] = 95413, + [SMALL_STATE(2445)] = 95465, + [SMALL_STATE(2446)] = 95573, + [SMALL_STATE(2447)] = 95631, + [SMALL_STATE(2448)] = 95700, + [SMALL_STATE(2449)] = 95769, + [SMALL_STATE(2450)] = 95838, + [SMALL_STATE(2451)] = 95897, + [SMALL_STATE(2452)] = 95954, + [SMALL_STATE(2453)] = 96013, + [SMALL_STATE(2454)] = 96070, + [SMALL_STATE(2455)] = 96123, + [SMALL_STATE(2456)] = 96182, + [SMALL_STATE(2457)] = 96233, + [SMALL_STATE(2458)] = 96302, + [SMALL_STATE(2459)] = 96353, + [SMALL_STATE(2460)] = 96412, + [SMALL_STATE(2461)] = 96489, + [SMALL_STATE(2462)] = 96544, + [SMALL_STATE(2463)] = 96599, + [SMALL_STATE(2464)] = 96654, + [SMALL_STATE(2465)] = 96713, + [SMALL_STATE(2466)] = 96772, + [SMALL_STATE(2467)] = 96831, + [SMALL_STATE(2468)] = 96890, + [SMALL_STATE(2469)] = 96959, + [SMALL_STATE(2470)] = 97018, + [SMALL_STATE(2471)] = 97069, + [SMALL_STATE(2472)] = 97128, + [SMALL_STATE(2473)] = 97183, + [SMALL_STATE(2474)] = 97242, + [SMALL_STATE(2475)] = 97299, + [SMALL_STATE(2476)] = 97358, + [SMALL_STATE(2477)] = 97415, + [SMALL_STATE(2478)] = 97474, + [SMALL_STATE(2479)] = 97527, + [SMALL_STATE(2480)] = 97586, + [SMALL_STATE(2481)] = 97637, + [SMALL_STATE(2482)] = 97696, + [SMALL_STATE(2483)] = 97765, + [SMALL_STATE(2484)] = 97870, + [SMALL_STATE(2485)] = 97945, + [SMALL_STATE(2486)] = 98020, + [SMALL_STATE(2487)] = 98125, + [SMALL_STATE(2488)] = 98192, + [SMALL_STATE(2489)] = 98251, + [SMALL_STATE(2490)] = 98332, + [SMALL_STATE(2491)] = 98391, + [SMALL_STATE(2492)] = 98448, + [SMALL_STATE(2493)] = 98507, + [SMALL_STATE(2494)] = 98576, + [SMALL_STATE(2495)] = 98627, + [SMALL_STATE(2496)] = 98686, + [SMALL_STATE(2497)] = 98745, + [SMALL_STATE(2498)] = 98804, + [SMALL_STATE(2499)] = 98863, + [SMALL_STATE(2500)] = 98932, + [SMALL_STATE(2501)] = 98991, + [SMALL_STATE(2502)] = 99044, + [SMALL_STATE(2503)] = 99101, + [SMALL_STATE(2504)] = 99152, + [SMALL_STATE(2505)] = 99213, + [SMALL_STATE(2506)] = 99318, + [SMALL_STATE(2507)] = 99423, + [SMALL_STATE(2508)] = 99528, + [SMALL_STATE(2509)] = 99633, + [SMALL_STATE(2510)] = 99738, + [SMALL_STATE(2511)] = 99819, + [SMALL_STATE(2512)] = 99890, + [SMALL_STATE(2513)] = 99985, + [SMALL_STATE(2514)] = 100082, + [SMALL_STATE(2515)] = 100159, + [SMALL_STATE(2516)] = 100248, + [SMALL_STATE(2517)] = 100339, + [SMALL_STATE(2518)] = 100432, + [SMALL_STATE(2519)] = 100507, + [SMALL_STATE(2520)] = 100584, + [SMALL_STATE(2521)] = 100669, + [SMALL_STATE(2522)] = 100768, + [SMALL_STATE(2523)] = 100873, + [SMALL_STATE(2524)] = 100978, + [SMALL_STATE(2525)] = 101083, + [SMALL_STATE(2526)] = 101188, + [SMALL_STATE(2527)] = 101293, + [SMALL_STATE(2528)] = 101398, + [SMALL_STATE(2529)] = 101503, + [SMALL_STATE(2530)] = 101608, + [SMALL_STATE(2531)] = 101713, + [SMALL_STATE(2532)] = 101764, + [SMALL_STATE(2533)] = 101821, + [SMALL_STATE(2534)] = 101872, + [SMALL_STATE(2535)] = 101929, + [SMALL_STATE(2536)] = 102018, + [SMALL_STATE(2537)] = 102068, + [SMALL_STATE(2538)] = 102122, + [SMALL_STATE(2539)] = 102178, + [SMALL_STATE(2540)] = 102242, + [SMALL_STATE(2541)] = 102302, + [SMALL_STATE(2542)] = 102370, + [SMALL_STATE(2543)] = 102434, + [SMALL_STATE(2544)] = 102494, + [SMALL_STATE(2545)] = 102562, + [SMALL_STATE(2546)] = 102616, + [SMALL_STATE(2547)] = 102670, + [SMALL_STATE(2548)] = 102734, + [SMALL_STATE(2549)] = 102784, + [SMALL_STATE(2550)] = 102834, + [SMALL_STATE(2551)] = 102906, + [SMALL_STATE(2552)] = 102960, + [SMALL_STATE(2553)] = 103010, + [SMALL_STATE(2554)] = 103070, + [SMALL_STATE(2555)] = 103124, + [SMALL_STATE(2556)] = 103174, + [SMALL_STATE(2557)] = 103224, + [SMALL_STATE(2558)] = 103274, + [SMALL_STATE(2559)] = 103322, + [SMALL_STATE(2560)] = 103392, + [SMALL_STATE(2561)] = 103456, + [SMALL_STATE(2562)] = 103516, + [SMALL_STATE(2563)] = 103580, + [SMALL_STATE(2564)] = 103640, + [SMALL_STATE(2565)] = 103694, + [SMALL_STATE(2566)] = 103742, + [SMALL_STATE(2567)] = 103796, + [SMALL_STATE(2568)] = 103846, + [SMALL_STATE(2569)] = 103896, + [SMALL_STATE(2570)] = 103950, + [SMALL_STATE(2571)] = 104000, + [SMALL_STATE(2572)] = 104050, + [SMALL_STATE(2573)] = 104104, + [SMALL_STATE(2574)] = 104158, + [SMALL_STATE(2575)] = 104224, + [SMALL_STATE(2576)] = 104272, + [SMALL_STATE(2577)] = 104331, + [SMALL_STATE(2578)] = 104390, + [SMALL_STATE(2579)] = 104439, + [SMALL_STATE(2580)] = 104498, + [SMALL_STATE(2581)] = 104555, + [SMALL_STATE(2582)] = 104614, + [SMALL_STATE(2583)] = 104675, + [SMALL_STATE(2584)] = 104732, + [SMALL_STATE(2585)] = 104791, + [SMALL_STATE(2586)] = 104850, + [SMALL_STATE(2587)] = 104909, + [SMALL_STATE(2588)] = 104972, + [SMALL_STATE(2589)] = 105029, + [SMALL_STATE(2590)] = 105078, + [SMALL_STATE(2591)] = 105135, + [SMALL_STATE(2592)] = 105192, + [SMALL_STATE(2593)] = 105249, + [SMALL_STATE(2594)] = 105308, + [SMALL_STATE(2595)] = 105365, + [SMALL_STATE(2596)] = 105422, + [SMALL_STATE(2597)] = 105479, + [SMALL_STATE(2598)] = 105532, + [SMALL_STATE(2599)] = 105589, + [SMALL_STATE(2600)] = 105648, + [SMALL_STATE(2601)] = 105705, + [SMALL_STATE(2602)] = 105762, + [SMALL_STATE(2603)] = 105815, + [SMALL_STATE(2604)] = 105874, + [SMALL_STATE(2605)] = 105933, + [SMALL_STATE(2606)] = 105986, + [SMALL_STATE(2607)] = 106043, + [SMALL_STATE(2608)] = 106102, + [SMALL_STATE(2609)] = 106161, + [SMALL_STATE(2610)] = 106218, + [SMALL_STATE(2611)] = 106275, + [SMALL_STATE(2612)] = 106340, + [SMALL_STATE(2613)] = 106399, + [SMALL_STATE(2614)] = 106452, + [SMALL_STATE(2615)] = 106505, + [SMALL_STATE(2616)] = 106562, + [SMALL_STATE(2617)] = 106611, + [SMALL_STATE(2618)] = 106660, + [SMALL_STATE(2619)] = 106723, + [SMALL_STATE(2620)] = 106771, + [SMALL_STATE(2621)] = 106817, + [SMALL_STATE(2622)] = 106865, + [SMALL_STATE(2623)] = 106913, + [SMALL_STATE(2624)] = 106959, + [SMALL_STATE(2625)] = 107005, + [SMALL_STATE(2626)] = 107051, + [SMALL_STATE(2627)] = 107097, + [SMALL_STATE(2628)] = 107143, + [SMALL_STATE(2629)] = 107189, + [SMALL_STATE(2630)] = 107235, + [SMALL_STATE(2631)] = 107281, + [SMALL_STATE(2632)] = 107327, + [SMALL_STATE(2633)] = 107373, + [SMALL_STATE(2634)] = 107419, + [SMALL_STATE(2635)] = 107465, + [SMALL_STATE(2636)] = 107511, + [SMALL_STATE(2637)] = 107557, + [SMALL_STATE(2638)] = 107603, + [SMALL_STATE(2639)] = 107649, + [SMALL_STATE(2640)] = 107695, + [SMALL_STATE(2641)] = 107741, + [SMALL_STATE(2642)] = 107787, + [SMALL_STATE(2643)] = 107833, + [SMALL_STATE(2644)] = 107881, + [SMALL_STATE(2645)] = 107927, + [SMALL_STATE(2646)] = 107973, + [SMALL_STATE(2647)] = 108019, + [SMALL_STATE(2648)] = 108067, + [SMALL_STATE(2649)] = 108113, + [SMALL_STATE(2650)] = 108159, + [SMALL_STATE(2651)] = 108205, + [SMALL_STATE(2652)] = 108251, + [SMALL_STATE(2653)] = 108297, + [SMALL_STATE(2654)] = 108343, + [SMALL_STATE(2655)] = 108393, + [SMALL_STATE(2656)] = 108439, + [SMALL_STATE(2657)] = 108487, + [SMALL_STATE(2658)] = 108533, + [SMALL_STATE(2659)] = 108579, + [SMALL_STATE(2660)] = 108625, + [SMALL_STATE(2661)] = 108671, + [SMALL_STATE(2662)] = 108717, + [SMALL_STATE(2663)] = 108763, + [SMALL_STATE(2664)] = 108811, + [SMALL_STATE(2665)] = 108859, + [SMALL_STATE(2666)] = 108905, + [SMALL_STATE(2667)] = 108951, + [SMALL_STATE(2668)] = 108999, + [SMALL_STATE(2669)] = 109057, + [SMALL_STATE(2670)] = 109105, + [SMALL_STATE(2671)] = 109151, + [SMALL_STATE(2672)] = 109197, + [SMALL_STATE(2673)] = 109245, + [SMALL_STATE(2674)] = 109293, + [SMALL_STATE(2675)] = 109339, + [SMALL_STATE(2676)] = 109385, + [SMALL_STATE(2677)] = 109433, + [SMALL_STATE(2678)] = 109479, + [SMALL_STATE(2679)] = 109525, + [SMALL_STATE(2680)] = 109571, + [SMALL_STATE(2681)] = 109617, + [SMALL_STATE(2682)] = 109673, + [SMALL_STATE(2683)] = 109721, + [SMALL_STATE(2684)] = 109771, + [SMALL_STATE(2685)] = 109824, + [SMALL_STATE(2686)] = 109875, + [SMALL_STATE(2687)] = 109926, + [SMALL_STATE(2688)] = 109993, + [SMALL_STATE(2689)] = 110046, + [SMALL_STATE(2690)] = 110091, + [SMALL_STATE(2691)] = 110136, + [SMALL_STATE(2692)] = 110181, + [SMALL_STATE(2693)] = 110226, + [SMALL_STATE(2694)] = 110271, + [SMALL_STATE(2695)] = 110316, + [SMALL_STATE(2696)] = 110361, + [SMALL_STATE(2697)] = 110417, [SMALL_STATE(2698)] = 110465, - [SMALL_STATE(2699)] = 110523, - [SMALL_STATE(2700)] = 110581, - [SMALL_STATE(2701)] = 110641, + [SMALL_STATE(2699)] = 110513, + [SMALL_STATE(2700)] = 110571, + [SMALL_STATE(2701)] = 110643, [SMALL_STATE(2702)] = 110701, - [SMALL_STATE(2703)] = 110749, - [SMALL_STATE(2704)] = 110807, - [SMALL_STATE(2705)] = 110879, - [SMALL_STATE(2706)] = 110927, - [SMALL_STATE(2707)] = 110999, - [SMALL_STATE(2708)] = 111052, - [SMALL_STATE(2709)] = 111105, - [SMALL_STATE(2710)] = 111158, - [SMALL_STATE(2711)] = 111211, - [SMALL_STATE(2712)] = 111274, - [SMALL_STATE(2713)] = 111327, - [SMALL_STATE(2714)] = 111380, - [SMALL_STATE(2715)] = 111433, - [SMALL_STATE(2716)] = 111486, - [SMALL_STATE(2717)] = 111549, - [SMALL_STATE(2718)] = 111602, - [SMALL_STATE(2719)] = 111655, - [SMALL_STATE(2720)] = 111708, - [SMALL_STATE(2721)] = 111761, - [SMALL_STATE(2722)] = 111814, - [SMALL_STATE(2723)] = 111867, - [SMALL_STATE(2724)] = 111920, - [SMALL_STATE(2725)] = 111973, - [SMALL_STATE(2726)] = 112026, - [SMALL_STATE(2727)] = 112079, - [SMALL_STATE(2728)] = 112132, - [SMALL_STATE(2729)] = 112185, - [SMALL_STATE(2730)] = 112238, - [SMALL_STATE(2731)] = 112291, - [SMALL_STATE(2732)] = 112344, - [SMALL_STATE(2733)] = 112397, - [SMALL_STATE(2734)] = 112446, - [SMALL_STATE(2735)] = 112499, - [SMALL_STATE(2736)] = 112552, - [SMALL_STATE(2737)] = 112605, - [SMALL_STATE(2738)] = 112659, - [SMALL_STATE(2739)] = 112713, - [SMALL_STATE(2740)] = 112777, - [SMALL_STATE(2741)] = 112857, - [SMALL_STATE(2742)] = 112911, - [SMALL_STATE(2743)] = 112991, - [SMALL_STATE(2744)] = 113071, - [SMALL_STATE(2745)] = 113131, - [SMALL_STATE(2746)] = 113191, + [SMALL_STATE(2703)] = 110761, + [SMALL_STATE(2704)] = 110819, + [SMALL_STATE(2705)] = 110877, + [SMALL_STATE(2706)] = 110937, + [SMALL_STATE(2707)] = 110997, + [SMALL_STATE(2708)] = 111069, + [SMALL_STATE(2709)] = 111122, + [SMALL_STATE(2710)] = 111185, + [SMALL_STATE(2711)] = 111238, + [SMALL_STATE(2712)] = 111291, + [SMALL_STATE(2713)] = 111354, + [SMALL_STATE(2714)] = 111407, + [SMALL_STATE(2715)] = 111460, + [SMALL_STATE(2716)] = 111513, + [SMALL_STATE(2717)] = 111566, + [SMALL_STATE(2718)] = 111619, + [SMALL_STATE(2719)] = 111672, + [SMALL_STATE(2720)] = 111725, + [SMALL_STATE(2721)] = 111778, + [SMALL_STATE(2722)] = 111831, + [SMALL_STATE(2723)] = 111884, + [SMALL_STATE(2724)] = 111933, + [SMALL_STATE(2725)] = 111986, + [SMALL_STATE(2726)] = 112039, + [SMALL_STATE(2727)] = 112092, + [SMALL_STATE(2728)] = 112145, + [SMALL_STATE(2729)] = 112198, + [SMALL_STATE(2730)] = 112251, + [SMALL_STATE(2731)] = 112304, + [SMALL_STATE(2732)] = 112357, + [SMALL_STATE(2733)] = 112410, + [SMALL_STATE(2734)] = 112463, + [SMALL_STATE(2735)] = 112516, + [SMALL_STATE(2736)] = 112569, + [SMALL_STATE(2737)] = 112622, + [SMALL_STATE(2738)] = 112675, + [SMALL_STATE(2739)] = 112729, + [SMALL_STATE(2740)] = 112783, + [SMALL_STATE(2741)] = 112847, + [SMALL_STATE(2742)] = 112901, + [SMALL_STATE(2743)] = 112981, + [SMALL_STATE(2744)] = 113041, + [SMALL_STATE(2745)] = 113121, + [SMALL_STATE(2746)] = 113181, [SMALL_STATE(2747)] = 113245, [SMALL_STATE(2748)] = 113299, - [SMALL_STATE(2749)] = 113363, + [SMALL_STATE(2749)] = 113353, [SMALL_STATE(2750)] = 113417, - [SMALL_STATE(2751)] = 113471, - [SMALL_STATE(2752)] = 113525, - [SMALL_STATE(2753)] = 113579, - [SMALL_STATE(2754)] = 113633, - [SMALL_STATE(2755)] = 113713, + [SMALL_STATE(2751)] = 113497, + [SMALL_STATE(2752)] = 113551, + [SMALL_STATE(2753)] = 113605, + [SMALL_STATE(2754)] = 113659, + [SMALL_STATE(2755)] = 113739, [SMALL_STATE(2756)] = 113793, - [SMALL_STATE(2757)] = 113857, - [SMALL_STATE(2758)] = 113914, - [SMALL_STATE(2759)] = 113971, - [SMALL_STATE(2760)] = 114028, - [SMALL_STATE(2761)] = 114085, - [SMALL_STATE(2762)] = 114138, - [SMALL_STATE(2763)] = 114195, - [SMALL_STATE(2764)] = 114238, - [SMALL_STATE(2765)] = 114295, - [SMALL_STATE(2766)] = 114352, - [SMALL_STATE(2767)] = 114393, - [SMALL_STATE(2768)] = 114450, - [SMALL_STATE(2769)] = 114491, - [SMALL_STATE(2770)] = 114544, - [SMALL_STATE(2771)] = 114601, - [SMALL_STATE(2772)] = 114642, - [SMALL_STATE(2773)] = 114693, - [SMALL_STATE(2774)] = 114750, - [SMALL_STATE(2775)] = 114807, - [SMALL_STATE(2776)] = 114864, - [SMALL_STATE(2777)] = 114921, - [SMALL_STATE(2778)] = 114962, - [SMALL_STATE(2779)] = 115019, - [SMALL_STATE(2780)] = 115076, - [SMALL_STATE(2781)] = 115133, - [SMALL_STATE(2782)] = 115181, - [SMALL_STATE(2783)] = 115231, - [SMALL_STATE(2784)] = 115281, - [SMALL_STATE(2785)] = 115329, - [SMALL_STATE(2786)] = 115377, - [SMALL_STATE(2787)] = 115427, - [SMALL_STATE(2788)] = 115475, - [SMALL_STATE(2789)] = 115525, - [SMALL_STATE(2790)] = 115573, - [SMALL_STATE(2791)] = 115623, - [SMALL_STATE(2792)] = 115671, - [SMALL_STATE(2793)] = 115719, - [SMALL_STATE(2794)] = 115767, - [SMALL_STATE(2795)] = 115817, - [SMALL_STATE(2796)] = 115865, - [SMALL_STATE(2797)] = 115915, - [SMALL_STATE(2798)] = 115963, - [SMALL_STATE(2799)] = 116011, - [SMALL_STATE(2800)] = 116059, - [SMALL_STATE(2801)] = 116107, - [SMALL_STATE(2802)] = 116155, - [SMALL_STATE(2803)] = 116203, - [SMALL_STATE(2804)] = 116251, - [SMALL_STATE(2805)] = 116299, - [SMALL_STATE(2806)] = 116347, - [SMALL_STATE(2807)] = 116395, - [SMALL_STATE(2808)] = 116443, - [SMALL_STATE(2809)] = 116491, - [SMALL_STATE(2810)] = 116539, - [SMALL_STATE(2811)] = 116587, - [SMALL_STATE(2812)] = 116637, - [SMALL_STATE(2813)] = 116685, - [SMALL_STATE(2814)] = 116733, - [SMALL_STATE(2815)] = 116781, - [SMALL_STATE(2816)] = 116831, - [SMALL_STATE(2817)] = 116879, - [SMALL_STATE(2818)] = 116929, - [SMALL_STATE(2819)] = 116979, - [SMALL_STATE(2820)] = 117027, - [SMALL_STATE(2821)] = 117075, - [SMALL_STATE(2822)] = 117123, - [SMALL_STATE(2823)] = 117171, - [SMALL_STATE(2824)] = 117219, - [SMALL_STATE(2825)] = 117267, - [SMALL_STATE(2826)] = 117315, - [SMALL_STATE(2827)] = 117363, - [SMALL_STATE(2828)] = 117411, - [SMALL_STATE(2829)] = 117459, - [SMALL_STATE(2830)] = 117509, - [SMALL_STATE(2831)] = 117557, - [SMALL_STATE(2832)] = 117605, - [SMALL_STATE(2833)] = 117653, - [SMALL_STATE(2834)] = 117701, - [SMALL_STATE(2835)] = 117749, - [SMALL_STATE(2836)] = 117797, - [SMALL_STATE(2837)] = 117847, - [SMALL_STATE(2838)] = 117895, - [SMALL_STATE(2839)] = 117943, - [SMALL_STATE(2840)] = 117993, - [SMALL_STATE(2841)] = 118041, - [SMALL_STATE(2842)] = 118089, - [SMALL_STATE(2843)] = 118124, - [SMALL_STATE(2844)] = 118165, - [SMALL_STATE(2845)] = 118206, - [SMALL_STATE(2846)] = 118247, - [SMALL_STATE(2847)] = 118275, - [SMALL_STATE(2848)] = 118303, - [SMALL_STATE(2849)] = 118331, - [SMALL_STATE(2850)] = 118359, - [SMALL_STATE(2851)] = 118387, - [SMALL_STATE(2852)] = 118415, - [SMALL_STATE(2853)] = 118443, - [SMALL_STATE(2854)] = 118471, - [SMALL_STATE(2855)] = 118499, - [SMALL_STATE(2856)] = 118527, - [SMALL_STATE(2857)] = 118555, - [SMALL_STATE(2858)] = 118583, - [SMALL_STATE(2859)] = 118611, - [SMALL_STATE(2860)] = 118639, - [SMALL_STATE(2861)] = 118667, - [SMALL_STATE(2862)] = 118695, - [SMALL_STATE(2863)] = 118723, - [SMALL_STATE(2864)] = 118751, - [SMALL_STATE(2865)] = 118779, - [SMALL_STATE(2866)] = 118807, - [SMALL_STATE(2867)] = 118835, - [SMALL_STATE(2868)] = 118863, - [SMALL_STATE(2869)] = 118891, - [SMALL_STATE(2870)] = 118919, - [SMALL_STATE(2871)] = 118947, - [SMALL_STATE(2872)] = 118975, - [SMALL_STATE(2873)] = 119003, - [SMALL_STATE(2874)] = 119031, - [SMALL_STATE(2875)] = 119059, - [SMALL_STATE(2876)] = 119087, - [SMALL_STATE(2877)] = 119115, - [SMALL_STATE(2878)] = 119143, - [SMALL_STATE(2879)] = 119171, - [SMALL_STATE(2880)] = 119199, - [SMALL_STATE(2881)] = 119248, - [SMALL_STATE(2882)] = 119276, - [SMALL_STATE(2883)] = 119302, - [SMALL_STATE(2884)] = 119340, - [SMALL_STATE(2885)] = 119366, - [SMALL_STATE(2886)] = 119404, - [SMALL_STATE(2887)] = 119430, - [SMALL_STATE(2888)] = 119456, - [SMALL_STATE(2889)] = 119484, - [SMALL_STATE(2890)] = 119510, - [SMALL_STATE(2891)] = 119536, - [SMALL_STATE(2892)] = 119562, - [SMALL_STATE(2893)] = 119588, - [SMALL_STATE(2894)] = 119626, - [SMALL_STATE(2895)] = 119658, - [SMALL_STATE(2896)] = 119684, - [SMALL_STATE(2897)] = 119718, - [SMALL_STATE(2898)] = 119744, - [SMALL_STATE(2899)] = 119770, - [SMALL_STATE(2900)] = 119800, - [SMALL_STATE(2901)] = 119830, - [SMALL_STATE(2902)] = 119857, - [SMALL_STATE(2903)] = 119886, - [SMALL_STATE(2904)] = 119911, - [SMALL_STATE(2905)] = 119936, - [SMALL_STATE(2906)] = 119961, - [SMALL_STATE(2907)] = 119992, - [SMALL_STATE(2908)] = 120017, - [SMALL_STATE(2909)] = 120051, - [SMALL_STATE(2910)] = 120075, - [SMALL_STATE(2911)] = 120099, - [SMALL_STATE(2912)] = 120123, - [SMALL_STATE(2913)] = 120147, - [SMALL_STATE(2914)] = 120171, - [SMALL_STATE(2915)] = 120193, - [SMALL_STATE(2916)] = 120217, - [SMALL_STATE(2917)] = 120241, - [SMALL_STATE(2918)] = 120265, - [SMALL_STATE(2919)] = 120297, - [SMALL_STATE(2920)] = 120331, - [SMALL_STATE(2921)] = 120365, - [SMALL_STATE(2922)] = 120399, - [SMALL_STATE(2923)] = 120423, - [SMALL_STATE(2924)] = 120447, - [SMALL_STATE(2925)] = 120471, - [SMALL_STATE(2926)] = 120503, - [SMALL_STATE(2927)] = 120527, - [SMALL_STATE(2928)] = 120555, - [SMALL_STATE(2929)] = 120579, - [SMALL_STATE(2930)] = 120603, - [SMALL_STATE(2931)] = 120627, - [SMALL_STATE(2932)] = 120651, - [SMALL_STATE(2933)] = 120675, - [SMALL_STATE(2934)] = 120697, - [SMALL_STATE(2935)] = 120721, - [SMALL_STATE(2936)] = 120745, - [SMALL_STATE(2937)] = 120777, - [SMALL_STATE(2938)] = 120811, - [SMALL_STATE(2939)] = 120845, - [SMALL_STATE(2940)] = 120879, - [SMALL_STATE(2941)] = 120903, - [SMALL_STATE(2942)] = 120927, - [SMALL_STATE(2943)] = 120951, - [SMALL_STATE(2944)] = 120975, - [SMALL_STATE(2945)] = 120999, - [SMALL_STATE(2946)] = 121021, - [SMALL_STATE(2947)] = 121047, - [SMALL_STATE(2948)] = 121071, - [SMALL_STATE(2949)] = 121103, - [SMALL_STATE(2950)] = 121137, - [SMALL_STATE(2951)] = 121171, - [SMALL_STATE(2952)] = 121205, - [SMALL_STATE(2953)] = 121237, - [SMALL_STATE(2954)] = 121261, - [SMALL_STATE(2955)] = 121283, - [SMALL_STATE(2956)] = 121307, - [SMALL_STATE(2957)] = 121341, - [SMALL_STATE(2958)] = 121365, - [SMALL_STATE(2959)] = 121389, - [SMALL_STATE(2960)] = 121413, - [SMALL_STATE(2961)] = 121437, - [SMALL_STATE(2962)] = 121471, - [SMALL_STATE(2963)] = 121495, - [SMALL_STATE(2964)] = 121519, - [SMALL_STATE(2965)] = 121543, - [SMALL_STATE(2966)] = 121567, - [SMALL_STATE(2967)] = 121601, - [SMALL_STATE(2968)] = 121625, - [SMALL_STATE(2969)] = 121649, - [SMALL_STATE(2970)] = 121673, - [SMALL_STATE(2971)] = 121697, - [SMALL_STATE(2972)] = 121719, - [SMALL_STATE(2973)] = 121743, - [SMALL_STATE(2974)] = 121767, - [SMALL_STATE(2975)] = 121791, - [SMALL_STATE(2976)] = 121815, - [SMALL_STATE(2977)] = 121839, - [SMALL_STATE(2978)] = 121863, - [SMALL_STATE(2979)] = 121887, - [SMALL_STATE(2980)] = 121911, - [SMALL_STATE(2981)] = 121935, - [SMALL_STATE(2982)] = 121961, - [SMALL_STATE(2983)] = 121983, - [SMALL_STATE(2984)] = 122007, - [SMALL_STATE(2985)] = 122031, - [SMALL_STATE(2986)] = 122053, - [SMALL_STATE(2987)] = 122077, - [SMALL_STATE(2988)] = 122099, - [SMALL_STATE(2989)] = 122123, - [SMALL_STATE(2990)] = 122147, - [SMALL_STATE(2991)] = 122179, - [SMALL_STATE(2992)] = 122213, - [SMALL_STATE(2993)] = 122247, - [SMALL_STATE(2994)] = 122281, - [SMALL_STATE(2995)] = 122305, - [SMALL_STATE(2996)] = 122327, - [SMALL_STATE(2997)] = 122351, - [SMALL_STATE(2998)] = 122385, - [SMALL_STATE(2999)] = 122409, - [SMALL_STATE(3000)] = 122443, - [SMALL_STATE(3001)] = 122467, - [SMALL_STATE(3002)] = 122491, - [SMALL_STATE(3003)] = 122513, - [SMALL_STATE(3004)] = 122537, - [SMALL_STATE(3005)] = 122561, - [SMALL_STATE(3006)] = 122585, - [SMALL_STATE(3007)] = 122609, - [SMALL_STATE(3008)] = 122633, - [SMALL_STATE(3009)] = 122657, - [SMALL_STATE(3010)] = 122681, - [SMALL_STATE(3011)] = 122724, - [SMALL_STATE(3012)] = 122769, - [SMALL_STATE(3013)] = 122798, - [SMALL_STATE(3014)] = 122827, - [SMALL_STATE(3015)] = 122856, - [SMALL_STATE(3016)] = 122899, - [SMALL_STATE(3017)] = 122928, - [SMALL_STATE(3018)] = 122967, - [SMALL_STATE(3019)] = 123006, - [SMALL_STATE(3020)] = 123049, - [SMALL_STATE(3021)] = 123092, - [SMALL_STATE(3022)] = 123121, - [SMALL_STATE(3023)] = 123164, - [SMALL_STATE(3024)] = 123207, - [SMALL_STATE(3025)] = 123250, - [SMALL_STATE(3026)] = 123293, - [SMALL_STATE(3027)] = 123336, - [SMALL_STATE(3028)] = 123379, - [SMALL_STATE(3029)] = 123422, - [SMALL_STATE(3030)] = 123451, - [SMALL_STATE(3031)] = 123478, - [SMALL_STATE(3032)] = 123521, - [SMALL_STATE(3033)] = 123546, - [SMALL_STATE(3034)] = 123575, - [SMALL_STATE(3035)] = 123618, - [SMALL_STATE(3036)] = 123661, - [SMALL_STATE(3037)] = 123700, - [SMALL_STATE(3038)] = 123743, - [SMALL_STATE(3039)] = 123782, - [SMALL_STATE(3040)] = 123825, - [SMALL_STATE(3041)] = 123868, - [SMALL_STATE(3042)] = 123911, - [SMALL_STATE(3043)] = 123940, - [SMALL_STATE(3044)] = 123983, - [SMALL_STATE(3045)] = 124026, - [SMALL_STATE(3046)] = 124069, - [SMALL_STATE(3047)] = 124112, - [SMALL_STATE(3048)] = 124137, - [SMALL_STATE(3049)] = 124166, - [SMALL_STATE(3050)] = 124191, - [SMALL_STATE(3051)] = 124230, - [SMALL_STATE(3052)] = 124273, - [SMALL_STATE(3053)] = 124293, - [SMALL_STATE(3054)] = 124317, - [SMALL_STATE(3055)] = 124337, - [SMALL_STATE(3056)] = 124357, - [SMALL_STATE(3057)] = 124383, - [SMALL_STATE(3058)] = 124403, - [SMALL_STATE(3059)] = 124423, - [SMALL_STATE(3060)] = 124449, - [SMALL_STATE(3061)] = 124487, - [SMALL_STATE(3062)] = 124507, - [SMALL_STATE(3063)] = 124531, - [SMALL_STATE(3064)] = 124559, - [SMALL_STATE(3065)] = 124595, - [SMALL_STATE(3066)] = 124631, - [SMALL_STATE(3067)] = 124651, - [SMALL_STATE(3068)] = 124687, - [SMALL_STATE(3069)] = 124707, - [SMALL_STATE(3070)] = 124729, - [SMALL_STATE(3071)] = 124749, - [SMALL_STATE(3072)] = 124769, - [SMALL_STATE(3073)] = 124791, - [SMALL_STATE(3074)] = 124827, - [SMALL_STATE(3075)] = 124855, - [SMALL_STATE(3076)] = 124875, - [SMALL_STATE(3077)] = 124903, - [SMALL_STATE(3078)] = 124925, - [SMALL_STATE(3079)] = 124947, - [SMALL_STATE(3080)] = 124969, - [SMALL_STATE(3081)] = 125005, - [SMALL_STATE(3082)] = 125041, - [SMALL_STATE(3083)] = 125065, - [SMALL_STATE(3084)] = 125087, - [SMALL_STATE(3085)] = 125123, - [SMALL_STATE(3086)] = 125143, - [SMALL_STATE(3087)] = 125163, - [SMALL_STATE(3088)] = 125185, - [SMALL_STATE(3089)] = 125209, - [SMALL_STATE(3090)] = 125231, - [SMALL_STATE(3091)] = 125253, - [SMALL_STATE(3092)] = 125281, - [SMALL_STATE(3093)] = 125305, - [SMALL_STATE(3094)] = 125327, - [SMALL_STATE(3095)] = 125355, - [SMALL_STATE(3096)] = 125377, - [SMALL_STATE(3097)] = 125399, - [SMALL_STATE(3098)] = 125419, - [SMALL_STATE(3099)] = 125447, - [SMALL_STATE(3100)] = 125475, - [SMALL_STATE(3101)] = 125511, - [SMALL_STATE(3102)] = 125547, - [SMALL_STATE(3103)] = 125567, - [SMALL_STATE(3104)] = 125587, - [SMALL_STATE(3105)] = 125615, - [SMALL_STATE(3106)] = 125635, - [SMALL_STATE(3107)] = 125655, - [SMALL_STATE(3108)] = 125681, - [SMALL_STATE(3109)] = 125717, - [SMALL_STATE(3110)] = 125739, - [SMALL_STATE(3111)] = 125759, - [SMALL_STATE(3112)] = 125779, - [SMALL_STATE(3113)] = 125799, - [SMALL_STATE(3114)] = 125819, - [SMALL_STATE(3115)] = 125839, - [SMALL_STATE(3116)] = 125867, - [SMALL_STATE(3117)] = 125887, - [SMALL_STATE(3118)] = 125907, - [SMALL_STATE(3119)] = 125927, - [SMALL_STATE(3120)] = 125947, - [SMALL_STATE(3121)] = 125969, - [SMALL_STATE(3122)] = 125989, - [SMALL_STATE(3123)] = 126009, - [SMALL_STATE(3124)] = 126029, - [SMALL_STATE(3125)] = 126049, - [SMALL_STATE(3126)] = 126069, - [SMALL_STATE(3127)] = 126089, - [SMALL_STATE(3128)] = 126109, - [SMALL_STATE(3129)] = 126131, - [SMALL_STATE(3130)] = 126168, - [SMALL_STATE(3131)] = 126197, - [SMALL_STATE(3132)] = 126234, - [SMALL_STATE(3133)] = 126263, - [SMALL_STATE(3134)] = 126286, - [SMALL_STATE(3135)] = 126311, - [SMALL_STATE(3136)] = 126348, - [SMALL_STATE(3137)] = 126385, - [SMALL_STATE(3138)] = 126414, - [SMALL_STATE(3139)] = 126451, - [SMALL_STATE(3140)] = 126488, - [SMALL_STATE(3141)] = 126517, - [SMALL_STATE(3142)] = 126546, - [SMALL_STATE(3143)] = 126579, - [SMALL_STATE(3144)] = 126612, - [SMALL_STATE(3145)] = 126643, - [SMALL_STATE(3146)] = 126676, - [SMALL_STATE(3147)] = 126697, - [SMALL_STATE(3148)] = 126722, - [SMALL_STATE(3149)] = 126741, - [SMALL_STATE(3150)] = 126778, - [SMALL_STATE(3151)] = 126815, - [SMALL_STATE(3152)] = 126846, - [SMALL_STATE(3153)] = 126883, - [SMALL_STATE(3154)] = 126920, - [SMALL_STATE(3155)] = 126941, - [SMALL_STATE(3156)] = 126980, - [SMALL_STATE(3157)] = 127011, - [SMALL_STATE(3158)] = 127048, - [SMALL_STATE(3159)] = 127085, - [SMALL_STATE(3160)] = 127122, - [SMALL_STATE(3161)] = 127143, - [SMALL_STATE(3162)] = 127180, - [SMALL_STATE(3163)] = 127217, - [SMALL_STATE(3164)] = 127250, - [SMALL_STATE(3165)] = 127287, - [SMALL_STATE(3166)] = 127320, - [SMALL_STATE(3167)] = 127353, - [SMALL_STATE(3168)] = 127390, - [SMALL_STATE(3169)] = 127411, - [SMALL_STATE(3170)] = 127448, - [SMALL_STATE(3171)] = 127485, - [SMALL_STATE(3172)] = 127518, - [SMALL_STATE(3173)] = 127537, - [SMALL_STATE(3174)] = 127560, - [SMALL_STATE(3175)] = 127583, - [SMALL_STATE(3176)] = 127620, - [SMALL_STATE(3177)] = 127653, - [SMALL_STATE(3178)] = 127676, - [SMALL_STATE(3179)] = 127713, - [SMALL_STATE(3180)] = 127746, - [SMALL_STATE(3181)] = 127783, - [SMALL_STATE(3182)] = 127820, - [SMALL_STATE(3183)] = 127851, - [SMALL_STATE(3184)] = 127882, - [SMALL_STATE(3185)] = 127915, - [SMALL_STATE(3186)] = 127935, - [SMALL_STATE(3187)] = 127957, - [SMALL_STATE(3188)] = 127977, - [SMALL_STATE(3189)] = 127997, - [SMALL_STATE(3190)] = 128017, - [SMALL_STATE(3191)] = 128041, - [SMALL_STATE(3192)] = 128065, - [SMALL_STATE(3193)] = 128087, - [SMALL_STATE(3194)] = 128109, - [SMALL_STATE(3195)] = 128129, - [SMALL_STATE(3196)] = 128149, - [SMALL_STATE(3197)] = 128169, - [SMALL_STATE(3198)] = 128189, - [SMALL_STATE(3199)] = 128209, - [SMALL_STATE(3200)] = 128229, - [SMALL_STATE(3201)] = 128249, - [SMALL_STATE(3202)] = 128269, - [SMALL_STATE(3203)] = 128289, - [SMALL_STATE(3204)] = 128313, - [SMALL_STATE(3205)] = 128333, - [SMALL_STATE(3206)] = 128355, - [SMALL_STATE(3207)] = 128375, - [SMALL_STATE(3208)] = 128395, - [SMALL_STATE(3209)] = 128415, - [SMALL_STATE(3210)] = 128433, - [SMALL_STATE(3211)] = 128453, - [SMALL_STATE(3212)] = 128473, - [SMALL_STATE(3213)] = 128497, - [SMALL_STATE(3214)] = 128517, - [SMALL_STATE(3215)] = 128537, - [SMALL_STATE(3216)] = 128561, - [SMALL_STATE(3217)] = 128585, - [SMALL_STATE(3218)] = 128609, - [SMALL_STATE(3219)] = 128629, - [SMALL_STATE(3220)] = 128649, - [SMALL_STATE(3221)] = 128669, - [SMALL_STATE(3222)] = 128689, - [SMALL_STATE(3223)] = 128709, - [SMALL_STATE(3224)] = 128733, - [SMALL_STATE(3225)] = 128751, - [SMALL_STATE(3226)] = 128777, - [SMALL_STATE(3227)] = 128797, - [SMALL_STATE(3228)] = 128817, - [SMALL_STATE(3229)] = 128837, - [SMALL_STATE(3230)] = 128873, - [SMALL_STATE(3231)] = 128895, - [SMALL_STATE(3232)] = 128913, - [SMALL_STATE(3233)] = 128933, - [SMALL_STATE(3234)] = 128959, - [SMALL_STATE(3235)] = 128981, - [SMALL_STATE(3236)] = 129001, - [SMALL_STATE(3237)] = 129021, - [SMALL_STATE(3238)] = 129043, - [SMALL_STATE(3239)] = 129065, - [SMALL_STATE(3240)] = 129083, - [SMALL_STATE(3241)] = 129101, - [SMALL_STATE(3242)] = 129119, - [SMALL_STATE(3243)] = 129137, - [SMALL_STATE(3244)] = 129157, - [SMALL_STATE(3245)] = 129175, - [SMALL_STATE(3246)] = 129193, - [SMALL_STATE(3247)] = 129213, - [SMALL_STATE(3248)] = 129231, - [SMALL_STATE(3249)] = 129249, - [SMALL_STATE(3250)] = 129267, - [SMALL_STATE(3251)] = 129285, - [SMALL_STATE(3252)] = 129303, - [SMALL_STATE(3253)] = 129323, - [SMALL_STATE(3254)] = 129343, - [SMALL_STATE(3255)] = 129363, - [SMALL_STATE(3256)] = 129383, - [SMALL_STATE(3257)] = 129418, - [SMALL_STATE(3258)] = 129441, - [SMALL_STATE(3259)] = 129476, - [SMALL_STATE(3260)] = 129511, - [SMALL_STATE(3261)] = 129546, - [SMALL_STATE(3262)] = 129571, - [SMALL_STATE(3263)] = 129606, - [SMALL_STATE(3264)] = 129639, - [SMALL_STATE(3265)] = 129674, - [SMALL_STATE(3266)] = 129709, - [SMALL_STATE(3267)] = 129732, - [SMALL_STATE(3268)] = 129751, - [SMALL_STATE(3269)] = 129774, - [SMALL_STATE(3270)] = 129795, - [SMALL_STATE(3271)] = 129814, - [SMALL_STATE(3272)] = 129835, - [SMALL_STATE(3273)] = 129866, - [SMALL_STATE(3274)] = 129885, - [SMALL_STATE(3275)] = 129920, - [SMALL_STATE(3276)] = 129949, - [SMALL_STATE(3277)] = 129966, - [SMALL_STATE(3278)] = 130001, - [SMALL_STATE(3279)] = 130030, - [SMALL_STATE(3280)] = 130049, - [SMALL_STATE(3281)] = 130080, - [SMALL_STATE(3282)] = 130113, - [SMALL_STATE(3283)] = 130148, - [SMALL_STATE(3284)] = 130169, - [SMALL_STATE(3285)] = 130186, - [SMALL_STATE(3286)] = 130203, - [SMALL_STATE(3287)] = 130220, - [SMALL_STATE(3288)] = 130255, - [SMALL_STATE(3289)] = 130281, - [SMALL_STATE(3290)] = 130313, - [SMALL_STATE(3291)] = 130345, - [SMALL_STATE(3292)] = 130373, - [SMALL_STATE(3293)] = 130401, - [SMALL_STATE(3294)] = 130433, - [SMALL_STATE(3295)] = 130449, - [SMALL_STATE(3296)] = 130471, - [SMALL_STATE(3297)] = 130499, - [SMALL_STATE(3298)] = 130531, - [SMALL_STATE(3299)] = 130563, - [SMALL_STATE(3300)] = 130579, - [SMALL_STATE(3301)] = 130607, - [SMALL_STATE(3302)] = 130639, - [SMALL_STATE(3303)] = 130671, - [SMALL_STATE(3304)] = 130699, - [SMALL_STATE(3305)] = 130715, - [SMALL_STATE(3306)] = 130741, - [SMALL_STATE(3307)] = 130767, - [SMALL_STATE(3308)] = 130795, - [SMALL_STATE(3309)] = 130817, - [SMALL_STATE(3310)] = 130833, - [SMALL_STATE(3311)] = 130865, - [SMALL_STATE(3312)] = 130897, - [SMALL_STATE(3313)] = 130923, - [SMALL_STATE(3314)] = 130955, - [SMALL_STATE(3315)] = 130981, - [SMALL_STATE(3316)] = 131011, - [SMALL_STATE(3317)] = 131039, - [SMALL_STATE(3318)] = 131055, - [SMALL_STATE(3319)] = 131083, - [SMALL_STATE(3320)] = 131111, - [SMALL_STATE(3321)] = 131139, - [SMALL_STATE(3322)] = 131167, - [SMALL_STATE(3323)] = 131195, - [SMALL_STATE(3324)] = 131223, - [SMALL_STATE(3325)] = 131251, - [SMALL_STATE(3326)] = 131279, - [SMALL_STATE(3327)] = 131307, - [SMALL_STATE(3328)] = 131335, - [SMALL_STATE(3329)] = 131363, - [SMALL_STATE(3330)] = 131379, - [SMALL_STATE(3331)] = 131407, - [SMALL_STATE(3332)] = 131429, - [SMALL_STATE(3333)] = 131453, - [SMALL_STATE(3334)] = 131481, - [SMALL_STATE(3335)] = 131509, - [SMALL_STATE(3336)] = 131529, - [SMALL_STATE(3337)] = 131561, - [SMALL_STATE(3338)] = 131593, - [SMALL_STATE(3339)] = 131609, - [SMALL_STATE(3340)] = 131641, - [SMALL_STATE(3341)] = 131669, - [SMALL_STATE(3342)] = 131685, - [SMALL_STATE(3343)] = 131715, - [SMALL_STATE(3344)] = 131743, - [SMALL_STATE(3345)] = 131771, - [SMALL_STATE(3346)] = 131793, - [SMALL_STATE(3347)] = 131825, - [SMALL_STATE(3348)] = 131853, - [SMALL_STATE(3349)] = 131879, - [SMALL_STATE(3350)] = 131911, - [SMALL_STATE(3351)] = 131943, - [SMALL_STATE(3352)] = 131959, - [SMALL_STATE(3353)] = 131987, - [SMALL_STATE(3354)] = 132013, - [SMALL_STATE(3355)] = 132041, - [SMALL_STATE(3356)] = 132073, - [SMALL_STATE(3357)] = 132089, - [SMALL_STATE(3358)] = 132117, - [SMALL_STATE(3359)] = 132149, - [SMALL_STATE(3360)] = 132165, - [SMALL_STATE(3361)] = 132181, - [SMALL_STATE(3362)] = 132207, - [SMALL_STATE(3363)] = 132223, - [SMALL_STATE(3364)] = 132255, - [SMALL_STATE(3365)] = 132285, - [SMALL_STATE(3366)] = 132301, - [SMALL_STATE(3367)] = 132317, - [SMALL_STATE(3368)] = 132333, - [SMALL_STATE(3369)] = 132361, - [SMALL_STATE(3370)] = 132393, - [SMALL_STATE(3371)] = 132425, - [SMALL_STATE(3372)] = 132451, - [SMALL_STATE(3373)] = 132473, - [SMALL_STATE(3374)] = 132495, - [SMALL_STATE(3375)] = 132513, - [SMALL_STATE(3376)] = 132529, - [SMALL_STATE(3377)] = 132561, - [SMALL_STATE(3378)] = 132577, - [SMALL_STATE(3379)] = 132603, - [SMALL_STATE(3380)] = 132631, - [SMALL_STATE(3381)] = 132659, - [SMALL_STATE(3382)] = 132685, - [SMALL_STATE(3383)] = 132711, - [SMALL_STATE(3384)] = 132743, - [SMALL_STATE(3385)] = 132771, - [SMALL_STATE(3386)] = 132787, - [SMALL_STATE(3387)] = 132819, - [SMALL_STATE(3388)] = 132851, - [SMALL_STATE(3389)] = 132867, - [SMALL_STATE(3390)] = 132899, - [SMALL_STATE(3391)] = 132915, - [SMALL_STATE(3392)] = 132931, - [SMALL_STATE(3393)] = 132959, - [SMALL_STATE(3394)] = 132975, - [SMALL_STATE(3395)] = 132991, - [SMALL_STATE(3396)] = 133009, - [SMALL_STATE(3397)] = 133025, - [SMALL_STATE(3398)] = 133041, - [SMALL_STATE(3399)] = 133057, - [SMALL_STATE(3400)] = 133079, - [SMALL_STATE(3401)] = 133099, - [SMALL_STATE(3402)] = 133117, - [SMALL_STATE(3403)] = 133135, - [SMALL_STATE(3404)] = 133167, - [SMALL_STATE(3405)] = 133183, - [SMALL_STATE(3406)] = 133199, - [SMALL_STATE(3407)] = 133231, - [SMALL_STATE(3408)] = 133249, - [SMALL_STATE(3409)] = 133281, - [SMALL_STATE(3410)] = 133309, - [SMALL_STATE(3411)] = 133341, - [SMALL_STATE(3412)] = 133357, - [SMALL_STATE(3413)] = 133389, - [SMALL_STATE(3414)] = 133405, - [SMALL_STATE(3415)] = 133421, - [SMALL_STATE(3416)] = 133453, - [SMALL_STATE(3417)] = 133469, - [SMALL_STATE(3418)] = 133497, - [SMALL_STATE(3419)] = 133513, - [SMALL_STATE(3420)] = 133529, - [SMALL_STATE(3421)] = 133545, - [SMALL_STATE(3422)] = 133563, - [SMALL_STATE(3423)] = 133595, - [SMALL_STATE(3424)] = 133611, - [SMALL_STATE(3425)] = 133627, - [SMALL_STATE(3426)] = 133649, - [SMALL_STATE(3427)] = 133675, - [SMALL_STATE(3428)] = 133707, - [SMALL_STATE(3429)] = 133727, - [SMALL_STATE(3430)] = 133745, - [SMALL_STATE(3431)] = 133761, - [SMALL_STATE(3432)] = 133779, - [SMALL_STATE(3433)] = 133795, - [SMALL_STATE(3434)] = 133821, - [SMALL_STATE(3435)] = 133837, - [SMALL_STATE(3436)] = 133865, - [SMALL_STATE(3437)] = 133881, - [SMALL_STATE(3438)] = 133909, - [SMALL_STATE(3439)] = 133935, - [SMALL_STATE(3440)] = 133963, - [SMALL_STATE(3441)] = 133991, - [SMALL_STATE(3442)] = 134019, - [SMALL_STATE(3443)] = 134047, - [SMALL_STATE(3444)] = 134075, - [SMALL_STATE(3445)] = 134103, - [SMALL_STATE(3446)] = 134119, - [SMALL_STATE(3447)] = 134147, - [SMALL_STATE(3448)] = 134175, - [SMALL_STATE(3449)] = 134203, - [SMALL_STATE(3450)] = 134219, - [SMALL_STATE(3451)] = 134241, - [SMALL_STATE(3452)] = 134257, - [SMALL_STATE(3453)] = 134273, - [SMALL_STATE(3454)] = 134298, - [SMALL_STATE(3455)] = 134323, - [SMALL_STATE(3456)] = 134344, - [SMALL_STATE(3457)] = 134369, - [SMALL_STATE(3458)] = 134392, - [SMALL_STATE(3459)] = 134413, - [SMALL_STATE(3460)] = 134436, - [SMALL_STATE(3461)] = 134461, - [SMALL_STATE(3462)] = 134490, - [SMALL_STATE(3463)] = 134515, - [SMALL_STATE(3464)] = 134538, - [SMALL_STATE(3465)] = 134555, - [SMALL_STATE(3466)] = 134580, - [SMALL_STATE(3467)] = 134595, - [SMALL_STATE(3468)] = 134620, - [SMALL_STATE(3469)] = 134649, - [SMALL_STATE(3470)] = 134666, - [SMALL_STATE(3471)] = 134687, - [SMALL_STATE(3472)] = 134712, - [SMALL_STATE(3473)] = 134735, - [SMALL_STATE(3474)] = 134764, - [SMALL_STATE(3475)] = 134789, - [SMALL_STATE(3476)] = 134810, - [SMALL_STATE(3477)] = 134831, - [SMALL_STATE(3478)] = 134854, - [SMALL_STATE(3479)] = 134879, - [SMALL_STATE(3480)] = 134902, - [SMALL_STATE(3481)] = 134921, - [SMALL_STATE(3482)] = 134936, - [SMALL_STATE(3483)] = 134965, - [SMALL_STATE(3484)] = 134990, - [SMALL_STATE(3485)] = 135013, - [SMALL_STATE(3486)] = 135042, - [SMALL_STATE(3487)] = 135065, - [SMALL_STATE(3488)] = 135088, - [SMALL_STATE(3489)] = 135117, - [SMALL_STATE(3490)] = 135142, - [SMALL_STATE(3491)] = 135163, - [SMALL_STATE(3492)] = 135180, - [SMALL_STATE(3493)] = 135195, - [SMALL_STATE(3494)] = 135217, - [SMALL_STATE(3495)] = 135239, - [SMALL_STATE(3496)] = 135261, - [SMALL_STATE(3497)] = 135287, - [SMALL_STATE(3498)] = 135309, - [SMALL_STATE(3499)] = 135335, - [SMALL_STATE(3500)] = 135361, - [SMALL_STATE(3501)] = 135383, - [SMALL_STATE(3502)] = 135405, - [SMALL_STATE(3503)] = 135427, - [SMALL_STATE(3504)] = 135445, - [SMALL_STATE(3505)] = 135467, - [SMALL_STATE(3506)] = 135489, - [SMALL_STATE(3507)] = 135511, - [SMALL_STATE(3508)] = 135533, - [SMALL_STATE(3509)] = 135559, - [SMALL_STATE(3510)] = 135573, - [SMALL_STATE(3511)] = 135595, - [SMALL_STATE(3512)] = 135621, - [SMALL_STATE(3513)] = 135643, - [SMALL_STATE(3514)] = 135665, - [SMALL_STATE(3515)] = 135687, - [SMALL_STATE(3516)] = 135709, - [SMALL_STATE(3517)] = 135731, - [SMALL_STATE(3518)] = 135753, - [SMALL_STATE(3519)] = 135775, - [SMALL_STATE(3520)] = 135797, - [SMALL_STATE(3521)] = 135819, - [SMALL_STATE(3522)] = 135841, - [SMALL_STATE(3523)] = 135863, - [SMALL_STATE(3524)] = 135885, - [SMALL_STATE(3525)] = 135903, - [SMALL_STATE(3526)] = 135921, - [SMALL_STATE(3527)] = 135939, - [SMALL_STATE(3528)] = 135961, - [SMALL_STATE(3529)] = 135979, - [SMALL_STATE(3530)] = 136005, - [SMALL_STATE(3531)] = 136027, - [SMALL_STATE(3532)] = 136049, - [SMALL_STATE(3533)] = 136075, - [SMALL_STATE(3534)] = 136097, - [SMALL_STATE(3535)] = 136119, - [SMALL_STATE(3536)] = 136141, - [SMALL_STATE(3537)] = 136163, - [SMALL_STATE(3538)] = 136185, - [SMALL_STATE(3539)] = 136207, - [SMALL_STATE(3540)] = 136229, - [SMALL_STATE(3541)] = 136247, - [SMALL_STATE(3542)] = 136265, - [SMALL_STATE(3543)] = 136287, - [SMALL_STATE(3544)] = 136309, - [SMALL_STATE(3545)] = 136331, - [SMALL_STATE(3546)] = 136357, - [SMALL_STATE(3547)] = 136375, - [SMALL_STATE(3548)] = 136401, - [SMALL_STATE(3549)] = 136427, - [SMALL_STATE(3550)] = 136449, - [SMALL_STATE(3551)] = 136475, - [SMALL_STATE(3552)] = 136493, - [SMALL_STATE(3553)] = 136511, - [SMALL_STATE(3554)] = 136529, - [SMALL_STATE(3555)] = 136547, - [SMALL_STATE(3556)] = 136569, - [SMALL_STATE(3557)] = 136591, - [SMALL_STATE(3558)] = 136613, - [SMALL_STATE(3559)] = 136631, - [SMALL_STATE(3560)] = 136653, - [SMALL_STATE(3561)] = 136671, - [SMALL_STATE(3562)] = 136689, - [SMALL_STATE(3563)] = 136711, - [SMALL_STATE(3564)] = 136729, - [SMALL_STATE(3565)] = 136747, - [SMALL_STATE(3566)] = 136769, - [SMALL_STATE(3567)] = 136787, - [SMALL_STATE(3568)] = 136813, - [SMALL_STATE(3569)] = 136839, - [SMALL_STATE(3570)] = 136861, - [SMALL_STATE(3571)] = 136883, - [SMALL_STATE(3572)] = 136909, - [SMALL_STATE(3573)] = 136931, - [SMALL_STATE(3574)] = 136957, - [SMALL_STATE(3575)] = 136979, - [SMALL_STATE(3576)] = 137001, - [SMALL_STATE(3577)] = 137023, - [SMALL_STATE(3578)] = 137037, - [SMALL_STATE(3579)] = 137063, - [SMALL_STATE(3580)] = 137089, - [SMALL_STATE(3581)] = 137111, - [SMALL_STATE(3582)] = 137137, - [SMALL_STATE(3583)] = 137159, - [SMALL_STATE(3584)] = 137181, - [SMALL_STATE(3585)] = 137195, - [SMALL_STATE(3586)] = 137217, - [SMALL_STATE(3587)] = 137231, - [SMALL_STATE(3588)] = 137253, - [SMALL_STATE(3589)] = 137279, - [SMALL_STATE(3590)] = 137301, - [SMALL_STATE(3591)] = 137323, - [SMALL_STATE(3592)] = 137345, - [SMALL_STATE(3593)] = 137359, - [SMALL_STATE(3594)] = 137381, - [SMALL_STATE(3595)] = 137403, - [SMALL_STATE(3596)] = 137425, - [SMALL_STATE(3597)] = 137451, - [SMALL_STATE(3598)] = 137465, - [SMALL_STATE(3599)] = 137491, - [SMALL_STATE(3600)] = 137505, - [SMALL_STATE(3601)] = 137527, - [SMALL_STATE(3602)] = 137545, - [SMALL_STATE(3603)] = 137567, - [SMALL_STATE(3604)] = 137583, - [SMALL_STATE(3605)] = 137609, - [SMALL_STATE(3606)] = 137631, - [SMALL_STATE(3607)] = 137653, - [SMALL_STATE(3608)] = 137675, - [SMALL_STATE(3609)] = 137693, - [SMALL_STATE(3610)] = 137715, - [SMALL_STATE(3611)] = 137729, - [SMALL_STATE(3612)] = 137743, - [SMALL_STATE(3613)] = 137769, - [SMALL_STATE(3614)] = 137785, - [SMALL_STATE(3615)] = 137811, - [SMALL_STATE(3616)] = 137833, - [SMALL_STATE(3617)] = 137849, - [SMALL_STATE(3618)] = 137875, - [SMALL_STATE(3619)] = 137889, - [SMALL_STATE(3620)] = 137911, - [SMALL_STATE(3621)] = 137937, - [SMALL_STATE(3622)] = 137963, - [SMALL_STATE(3623)] = 137985, - [SMALL_STATE(3624)] = 138011, - [SMALL_STATE(3625)] = 138033, - [SMALL_STATE(3626)] = 138055, - [SMALL_STATE(3627)] = 138077, - [SMALL_STATE(3628)] = 138097, - [SMALL_STATE(3629)] = 138113, - [SMALL_STATE(3630)] = 138139, - [SMALL_STATE(3631)] = 138155, - [SMALL_STATE(3632)] = 138177, - [SMALL_STATE(3633)] = 138193, - [SMALL_STATE(3634)] = 138213, - [SMALL_STATE(3635)] = 138229, - [SMALL_STATE(3636)] = 138251, - [SMALL_STATE(3637)] = 138269, - [SMALL_STATE(3638)] = 138287, - [SMALL_STATE(3639)] = 138309, - [SMALL_STATE(3640)] = 138327, - [SMALL_STATE(3641)] = 138349, - [SMALL_STATE(3642)] = 138371, - [SMALL_STATE(3643)] = 138389, - [SMALL_STATE(3644)] = 138411, - [SMALL_STATE(3645)] = 138433, - [SMALL_STATE(3646)] = 138455, - [SMALL_STATE(3647)] = 138475, - [SMALL_STATE(3648)] = 138495, - [SMALL_STATE(3649)] = 138517, - [SMALL_STATE(3650)] = 138539, - [SMALL_STATE(3651)] = 138565, - [SMALL_STATE(3652)] = 138585, - [SMALL_STATE(3653)] = 138605, - [SMALL_STATE(3654)] = 138631, - [SMALL_STATE(3655)] = 138653, - [SMALL_STATE(3656)] = 138675, - [SMALL_STATE(3657)] = 138701, - [SMALL_STATE(3658)] = 138721, - [SMALL_STATE(3659)] = 138747, - [SMALL_STATE(3660)] = 138773, - [SMALL_STATE(3661)] = 138787, - [SMALL_STATE(3662)] = 138809, - [SMALL_STATE(3663)] = 138831, - [SMALL_STATE(3664)] = 138853, - [SMALL_STATE(3665)] = 138875, - [SMALL_STATE(3666)] = 138897, - [SMALL_STATE(3667)] = 138911, - [SMALL_STATE(3668)] = 138925, - [SMALL_STATE(3669)] = 138947, - [SMALL_STATE(3670)] = 138969, - [SMALL_STATE(3671)] = 138991, - [SMALL_STATE(3672)] = 139009, - [SMALL_STATE(3673)] = 139031, - [SMALL_STATE(3674)] = 139053, - [SMALL_STATE(3675)] = 139071, - [SMALL_STATE(3676)] = 139093, - [SMALL_STATE(3677)] = 139119, - [SMALL_STATE(3678)] = 139141, - [SMALL_STATE(3679)] = 139163, - [SMALL_STATE(3680)] = 139177, - [SMALL_STATE(3681)] = 139197, - [SMALL_STATE(3682)] = 139219, - [SMALL_STATE(3683)] = 139233, - [SMALL_STATE(3684)] = 139255, - [SMALL_STATE(3685)] = 139279, - [SMALL_STATE(3686)] = 139301, - [SMALL_STATE(3687)] = 139323, - [SMALL_STATE(3688)] = 139349, - [SMALL_STATE(3689)] = 139375, - [SMALL_STATE(3690)] = 139391, - [SMALL_STATE(3691)] = 139417, - [SMALL_STATE(3692)] = 139439, - [SMALL_STATE(3693)] = 139461, - [SMALL_STATE(3694)] = 139483, - [SMALL_STATE(3695)] = 139505, - [SMALL_STATE(3696)] = 139519, - [SMALL_STATE(3697)] = 139541, - [SMALL_STATE(3698)] = 139563, - [SMALL_STATE(3699)] = 139589, - [SMALL_STATE(3700)] = 139611, - [SMALL_STATE(3701)] = 139633, - [SMALL_STATE(3702)] = 139655, - [SMALL_STATE(3703)] = 139677, - [SMALL_STATE(3704)] = 139699, - [SMALL_STATE(3705)] = 139717, - [SMALL_STATE(3706)] = 139741, - [SMALL_STATE(3707)] = 139763, - [SMALL_STATE(3708)] = 139781, - [SMALL_STATE(3709)] = 139803, - [SMALL_STATE(3710)] = 139821, - [SMALL_STATE(3711)] = 139843, - [SMALL_STATE(3712)] = 139865, - [SMALL_STATE(3713)] = 139887, - [SMALL_STATE(3714)] = 139909, - [SMALL_STATE(3715)] = 139931, - [SMALL_STATE(3716)] = 139953, - [SMALL_STATE(3717)] = 139979, - [SMALL_STATE(3718)] = 140001, - [SMALL_STATE(3719)] = 140027, - [SMALL_STATE(3720)] = 140048, - [SMALL_STATE(3721)] = 140065, - [SMALL_STATE(3722)] = 140088, - [SMALL_STATE(3723)] = 140111, - [SMALL_STATE(3724)] = 140124, - [SMALL_STATE(3725)] = 140141, - [SMALL_STATE(3726)] = 140164, - [SMALL_STATE(3727)] = 140187, - [SMALL_STATE(3728)] = 140200, - [SMALL_STATE(3729)] = 140223, - [SMALL_STATE(3730)] = 140246, - [SMALL_STATE(3731)] = 140263, - [SMALL_STATE(3732)] = 140280, - [SMALL_STATE(3733)] = 140297, - [SMALL_STATE(3734)] = 140320, - [SMALL_STATE(3735)] = 140343, - [SMALL_STATE(3736)] = 140366, - [SMALL_STATE(3737)] = 140389, - [SMALL_STATE(3738)] = 140412, - [SMALL_STATE(3739)] = 140425, - [SMALL_STATE(3740)] = 140442, - [SMALL_STATE(3741)] = 140459, - [SMALL_STATE(3742)] = 140474, - [SMALL_STATE(3743)] = 140497, - [SMALL_STATE(3744)] = 140516, - [SMALL_STATE(3745)] = 140531, - [SMALL_STATE(3746)] = 140554, - [SMALL_STATE(3747)] = 140567, - [SMALL_STATE(3748)] = 140590, - [SMALL_STATE(3749)] = 140609, - [SMALL_STATE(3750)] = 140622, - [SMALL_STATE(3751)] = 140645, - [SMALL_STATE(3752)] = 140668, - [SMALL_STATE(3753)] = 140691, - [SMALL_STATE(3754)] = 140710, - [SMALL_STATE(3755)] = 140729, - [SMALL_STATE(3756)] = 140746, - [SMALL_STATE(3757)] = 140763, - [SMALL_STATE(3758)] = 140780, - [SMALL_STATE(3759)] = 140803, - [SMALL_STATE(3760)] = 140822, - [SMALL_STATE(3761)] = 140839, - [SMALL_STATE(3762)] = 140862, - [SMALL_STATE(3763)] = 140885, - [SMALL_STATE(3764)] = 140908, - [SMALL_STATE(3765)] = 140931, - [SMALL_STATE(3766)] = 140948, - [SMALL_STATE(3767)] = 140967, - [SMALL_STATE(3768)] = 140990, - [SMALL_STATE(3769)] = 141007, - [SMALL_STATE(3770)] = 141024, - [SMALL_STATE(3771)] = 141043, - [SMALL_STATE(3772)] = 141066, - [SMALL_STATE(3773)] = 141083, - [SMALL_STATE(3774)] = 141102, - [SMALL_STATE(3775)] = 141119, - [SMALL_STATE(3776)] = 141142, - [SMALL_STATE(3777)] = 141165, - [SMALL_STATE(3778)] = 141184, - [SMALL_STATE(3779)] = 141201, - [SMALL_STATE(3780)] = 141218, - [SMALL_STATE(3781)] = 141231, - [SMALL_STATE(3782)] = 141248, - [SMALL_STATE(3783)] = 141263, - [SMALL_STATE(3784)] = 141286, - [SMALL_STATE(3785)] = 141309, - [SMALL_STATE(3786)] = 141322, - [SMALL_STATE(3787)] = 141345, - [SMALL_STATE(3788)] = 141362, - [SMALL_STATE(3789)] = 141379, - [SMALL_STATE(3790)] = 141392, - [SMALL_STATE(3791)] = 141415, - [SMALL_STATE(3792)] = 141434, - [SMALL_STATE(3793)] = 141451, - [SMALL_STATE(3794)] = 141472, - [SMALL_STATE(3795)] = 141489, - [SMALL_STATE(3796)] = 141506, - [SMALL_STATE(3797)] = 141523, - [SMALL_STATE(3798)] = 141546, - [SMALL_STATE(3799)] = 141569, - [SMALL_STATE(3800)] = 141586, - [SMALL_STATE(3801)] = 141601, - [SMALL_STATE(3802)] = 141620, - [SMALL_STATE(3803)] = 141639, - [SMALL_STATE(3804)] = 141662, - [SMALL_STATE(3805)] = 141681, - [SMALL_STATE(3806)] = 141698, - [SMALL_STATE(3807)] = 141717, - [SMALL_STATE(3808)] = 141740, - [SMALL_STATE(3809)] = 141763, - [SMALL_STATE(3810)] = 141778, - [SMALL_STATE(3811)] = 141795, - [SMALL_STATE(3812)] = 141818, - [SMALL_STATE(3813)] = 141837, - [SMALL_STATE(3814)] = 141856, - [SMALL_STATE(3815)] = 141879, - [SMALL_STATE(3816)] = 141896, - [SMALL_STATE(3817)] = 141919, - [SMALL_STATE(3818)] = 141936, - [SMALL_STATE(3819)] = 141953, - [SMALL_STATE(3820)] = 141970, - [SMALL_STATE(3821)] = 141993, - [SMALL_STATE(3822)] = 142012, - [SMALL_STATE(3823)] = 142035, - [SMALL_STATE(3824)] = 142052, - [SMALL_STATE(3825)] = 142075, - [SMALL_STATE(3826)] = 142098, - [SMALL_STATE(3827)] = 142117, - [SMALL_STATE(3828)] = 142136, - [SMALL_STATE(3829)] = 142159, - [SMALL_STATE(3830)] = 142182, - [SMALL_STATE(3831)] = 142199, - [SMALL_STATE(3832)] = 142222, - [SMALL_STATE(3833)] = 142239, - [SMALL_STATE(3834)] = 142256, - [SMALL_STATE(3835)] = 142277, - [SMALL_STATE(3836)] = 142290, - [SMALL_STATE(3837)] = 142307, - [SMALL_STATE(3838)] = 142330, - [SMALL_STATE(3839)] = 142353, - [SMALL_STATE(3840)] = 142370, - [SMALL_STATE(3841)] = 142387, - [SMALL_STATE(3842)] = 142410, - [SMALL_STATE(3843)] = 142427, - [SMALL_STATE(3844)] = 142450, - [SMALL_STATE(3845)] = 142463, - [SMALL_STATE(3846)] = 142480, - [SMALL_STATE(3847)] = 142503, - [SMALL_STATE(3848)] = 142516, - [SMALL_STATE(3849)] = 142533, - [SMALL_STATE(3850)] = 142556, - [SMALL_STATE(3851)] = 142573, - [SMALL_STATE(3852)] = 142596, - [SMALL_STATE(3853)] = 142615, - [SMALL_STATE(3854)] = 142638, - [SMALL_STATE(3855)] = 142651, - [SMALL_STATE(3856)] = 142668, - [SMALL_STATE(3857)] = 142687, - [SMALL_STATE(3858)] = 142710, - [SMALL_STATE(3859)] = 142727, - [SMALL_STATE(3860)] = 142744, - [SMALL_STATE(3861)] = 142767, - [SMALL_STATE(3862)] = 142784, - [SMALL_STATE(3863)] = 142807, - [SMALL_STATE(3864)] = 142822, - [SMALL_STATE(3865)] = 142839, - [SMALL_STATE(3866)] = 142852, - [SMALL_STATE(3867)] = 142875, - [SMALL_STATE(3868)] = 142892, - [SMALL_STATE(3869)] = 142905, - [SMALL_STATE(3870)] = 142921, - [SMALL_STATE(3871)] = 142933, - [SMALL_STATE(3872)] = 142953, - [SMALL_STATE(3873)] = 142973, - [SMALL_STATE(3874)] = 142989, - [SMALL_STATE(3875)] = 143009, - [SMALL_STATE(3876)] = 143025, - [SMALL_STATE(3877)] = 143041, - [SMALL_STATE(3878)] = 143057, - [SMALL_STATE(3879)] = 143073, - [SMALL_STATE(3880)] = 143085, - [SMALL_STATE(3881)] = 143101, - [SMALL_STATE(3882)] = 143117, - [SMALL_STATE(3883)] = 143133, - [SMALL_STATE(3884)] = 143149, - [SMALL_STATE(3885)] = 143161, - [SMALL_STATE(3886)] = 143177, - [SMALL_STATE(3887)] = 143189, - [SMALL_STATE(3888)] = 143209, - [SMALL_STATE(3889)] = 143221, - [SMALL_STATE(3890)] = 143233, - [SMALL_STATE(3891)] = 143245, - [SMALL_STATE(3892)] = 143257, - [SMALL_STATE(3893)] = 143269, - [SMALL_STATE(3894)] = 143281, - [SMALL_STATE(3895)] = 143293, - [SMALL_STATE(3896)] = 143305, - [SMALL_STATE(3897)] = 143317, - [SMALL_STATE(3898)] = 143329, - [SMALL_STATE(3899)] = 143341, - [SMALL_STATE(3900)] = 143359, - [SMALL_STATE(3901)] = 143371, - [SMALL_STATE(3902)] = 143383, - [SMALL_STATE(3903)] = 143399, - [SMALL_STATE(3904)] = 143415, - [SMALL_STATE(3905)] = 143427, - [SMALL_STATE(3906)] = 143443, - [SMALL_STATE(3907)] = 143455, - [SMALL_STATE(3908)] = 143471, - [SMALL_STATE(3909)] = 143487, - [SMALL_STATE(3910)] = 143499, - [SMALL_STATE(3911)] = 143511, - [SMALL_STATE(3912)] = 143523, - [SMALL_STATE(3913)] = 143535, - [SMALL_STATE(3914)] = 143555, - [SMALL_STATE(3915)] = 143569, - [SMALL_STATE(3916)] = 143589, - [SMALL_STATE(3917)] = 143605, - [SMALL_STATE(3918)] = 143621, - [SMALL_STATE(3919)] = 143633, - [SMALL_STATE(3920)] = 143649, - [SMALL_STATE(3921)] = 143665, - [SMALL_STATE(3922)] = 143683, - [SMALL_STATE(3923)] = 143695, - [SMALL_STATE(3924)] = 143707, - [SMALL_STATE(3925)] = 143719, - [SMALL_STATE(3926)] = 143731, - [SMALL_STATE(3927)] = 143751, - [SMALL_STATE(3928)] = 143767, - [SMALL_STATE(3929)] = 143783, - [SMALL_STATE(3930)] = 143795, - [SMALL_STATE(3931)] = 143811, - [SMALL_STATE(3932)] = 143827, - [SMALL_STATE(3933)] = 143843, - [SMALL_STATE(3934)] = 143859, - [SMALL_STATE(3935)] = 143875, - [SMALL_STATE(3936)] = 143895, - [SMALL_STATE(3937)] = 143913, - [SMALL_STATE(3938)] = 143929, - [SMALL_STATE(3939)] = 143945, - [SMALL_STATE(3940)] = 143961, - [SMALL_STATE(3941)] = 143981, - [SMALL_STATE(3942)] = 143997, - [SMALL_STATE(3943)] = 144013, - [SMALL_STATE(3944)] = 144025, - [SMALL_STATE(3945)] = 144041, - [SMALL_STATE(3946)] = 144057, - [SMALL_STATE(3947)] = 144073, - [SMALL_STATE(3948)] = 144089, - [SMALL_STATE(3949)] = 144105, - [SMALL_STATE(3950)] = 144121, - [SMALL_STATE(3951)] = 144137, - [SMALL_STATE(3952)] = 144153, - [SMALL_STATE(3953)] = 144165, - [SMALL_STATE(3954)] = 144185, - [SMALL_STATE(3955)] = 144197, - [SMALL_STATE(3956)] = 144209, - [SMALL_STATE(3957)] = 144221, - [SMALL_STATE(3958)] = 144237, - [SMALL_STATE(3959)] = 144253, - [SMALL_STATE(3960)] = 144273, - [SMALL_STATE(3961)] = 144287, - [SMALL_STATE(3962)] = 144305, - [SMALL_STATE(3963)] = 144321, - [SMALL_STATE(3964)] = 144341, - [SMALL_STATE(3965)] = 144353, - [SMALL_STATE(3966)] = 144369, - [SMALL_STATE(3967)] = 144385, - [SMALL_STATE(3968)] = 144397, - [SMALL_STATE(3969)] = 144409, - [SMALL_STATE(3970)] = 144421, - [SMALL_STATE(3971)] = 144433, - [SMALL_STATE(3972)] = 144445, - [SMALL_STATE(3973)] = 144457, - [SMALL_STATE(3974)] = 144469, - [SMALL_STATE(3975)] = 144485, - [SMALL_STATE(3976)] = 144499, - [SMALL_STATE(3977)] = 144513, - [SMALL_STATE(3978)] = 144533, - [SMALL_STATE(3979)] = 144551, - [SMALL_STATE(3980)] = 144565, - [SMALL_STATE(3981)] = 144585, - [SMALL_STATE(3982)] = 144601, - [SMALL_STATE(3983)] = 144621, - [SMALL_STATE(3984)] = 144633, - [SMALL_STATE(3985)] = 144649, - [SMALL_STATE(3986)] = 144669, - [SMALL_STATE(3987)] = 144689, - [SMALL_STATE(3988)] = 144705, - [SMALL_STATE(3989)] = 144721, - [SMALL_STATE(3990)] = 144733, - [SMALL_STATE(3991)] = 144745, - [SMALL_STATE(3992)] = 144757, - [SMALL_STATE(3993)] = 144773, - [SMALL_STATE(3994)] = 144785, - [SMALL_STATE(3995)] = 144801, - [SMALL_STATE(3996)] = 144813, - [SMALL_STATE(3997)] = 144833, - [SMALL_STATE(3998)] = 144845, - [SMALL_STATE(3999)] = 144861, - [SMALL_STATE(4000)] = 144873, - [SMALL_STATE(4001)] = 144885, - [SMALL_STATE(4002)] = 144901, - [SMALL_STATE(4003)] = 144913, - [SMALL_STATE(4004)] = 144925, - [SMALL_STATE(4005)] = 144945, - [SMALL_STATE(4006)] = 144961, - [SMALL_STATE(4007)] = 144973, - [SMALL_STATE(4008)] = 144985, - [SMALL_STATE(4009)] = 144997, - [SMALL_STATE(4010)] = 145009, - [SMALL_STATE(4011)] = 145021, - [SMALL_STATE(4012)] = 145041, - [SMALL_STATE(4013)] = 145053, - [SMALL_STATE(4014)] = 145065, - [SMALL_STATE(4015)] = 145077, - [SMALL_STATE(4016)] = 145089, - [SMALL_STATE(4017)] = 145101, - [SMALL_STATE(4018)] = 145121, - [SMALL_STATE(4019)] = 145133, - [SMALL_STATE(4020)] = 145153, - [SMALL_STATE(4021)] = 145165, - [SMALL_STATE(4022)] = 145177, - [SMALL_STATE(4023)] = 145195, - [SMALL_STATE(4024)] = 145207, - [SMALL_STATE(4025)] = 145223, - [SMALL_STATE(4026)] = 145235, - [SMALL_STATE(4027)] = 145251, - [SMALL_STATE(4028)] = 145271, - [SMALL_STATE(4029)] = 145283, - [SMALL_STATE(4030)] = 145303, - [SMALL_STATE(4031)] = 145321, - [SMALL_STATE(4032)] = 145337, - [SMALL_STATE(4033)] = 145349, - [SMALL_STATE(4034)] = 145369, - [SMALL_STATE(4035)] = 145381, - [SMALL_STATE(4036)] = 145397, - [SMALL_STATE(4037)] = 145409, - [SMALL_STATE(4038)] = 145425, - [SMALL_STATE(4039)] = 145441, - [SMALL_STATE(4040)] = 145453, - [SMALL_STATE(4041)] = 145465, - [SMALL_STATE(4042)] = 145477, - [SMALL_STATE(4043)] = 145489, - [SMALL_STATE(4044)] = 145501, - [SMALL_STATE(4045)] = 145513, - [SMALL_STATE(4046)] = 145525, - [SMALL_STATE(4047)] = 145537, - [SMALL_STATE(4048)] = 145549, - [SMALL_STATE(4049)] = 145565, - [SMALL_STATE(4050)] = 145581, - [SMALL_STATE(4051)] = 145597, - [SMALL_STATE(4052)] = 145609, - [SMALL_STATE(4053)] = 145625, - [SMALL_STATE(4054)] = 145641, - [SMALL_STATE(4055)] = 145657, - [SMALL_STATE(4056)] = 145673, - [SMALL_STATE(4057)] = 145685, - [SMALL_STATE(4058)] = 145703, - [SMALL_STATE(4059)] = 145715, - [SMALL_STATE(4060)] = 145727, - [SMALL_STATE(4061)] = 145739, - [SMALL_STATE(4062)] = 145751, - [SMALL_STATE(4063)] = 145763, - [SMALL_STATE(4064)] = 145781, - [SMALL_STATE(4065)] = 145797, - [SMALL_STATE(4066)] = 145813, - [SMALL_STATE(4067)] = 145829, - [SMALL_STATE(4068)] = 145845, - [SMALL_STATE(4069)] = 145861, - [SMALL_STATE(4070)] = 145873, - [SMALL_STATE(4071)] = 145889, - [SMALL_STATE(4072)] = 145905, - [SMALL_STATE(4073)] = 145921, - [SMALL_STATE(4074)] = 145937, - [SMALL_STATE(4075)] = 145953, - [SMALL_STATE(4076)] = 145973, - [SMALL_STATE(4077)] = 145989, - [SMALL_STATE(4078)] = 146005, - [SMALL_STATE(4079)] = 146021, - [SMALL_STATE(4080)] = 146037, - [SMALL_STATE(4081)] = 146053, - [SMALL_STATE(4082)] = 146071, - [SMALL_STATE(4083)] = 146087, - [SMALL_STATE(4084)] = 146103, - [SMALL_STATE(4085)] = 146119, - [SMALL_STATE(4086)] = 146137, - [SMALL_STATE(4087)] = 146153, - [SMALL_STATE(4088)] = 146169, - [SMALL_STATE(4089)] = 146185, - [SMALL_STATE(4090)] = 146201, - [SMALL_STATE(4091)] = 146217, - [SMALL_STATE(4092)] = 146233, - [SMALL_STATE(4093)] = 146249, - [SMALL_STATE(4094)] = 146265, - [SMALL_STATE(4095)] = 146281, - [SMALL_STATE(4096)] = 146297, - [SMALL_STATE(4097)] = 146313, - [SMALL_STATE(4098)] = 146329, - [SMALL_STATE(4099)] = 146345, - [SMALL_STATE(4100)] = 146361, - [SMALL_STATE(4101)] = 146377, - [SMALL_STATE(4102)] = 146393, - [SMALL_STATE(4103)] = 146409, - [SMALL_STATE(4104)] = 146427, - [SMALL_STATE(4105)] = 146443, - [SMALL_STATE(4106)] = 146461, - [SMALL_STATE(4107)] = 146477, - [SMALL_STATE(4108)] = 146495, - [SMALL_STATE(4109)] = 146511, - [SMALL_STATE(4110)] = 146529, - [SMALL_STATE(4111)] = 146547, - [SMALL_STATE(4112)] = 146563, - [SMALL_STATE(4113)] = 146575, - [SMALL_STATE(4114)] = 146591, - [SMALL_STATE(4115)] = 146607, - [SMALL_STATE(4116)] = 146623, - [SMALL_STATE(4117)] = 146639, - [SMALL_STATE(4118)] = 146655, - [SMALL_STATE(4119)] = 146671, - [SMALL_STATE(4120)] = 146691, - [SMALL_STATE(4121)] = 146703, - [SMALL_STATE(4122)] = 146719, - [SMALL_STATE(4123)] = 146735, - [SMALL_STATE(4124)] = 146751, - [SMALL_STATE(4125)] = 146767, - [SMALL_STATE(4126)] = 146787, - [SMALL_STATE(4127)] = 146807, - [SMALL_STATE(4128)] = 146827, - [SMALL_STATE(4129)] = 146845, - [SMALL_STATE(4130)] = 146861, - [SMALL_STATE(4131)] = 146881, - [SMALL_STATE(4132)] = 146897, - [SMALL_STATE(4133)] = 146909, - [SMALL_STATE(4134)] = 146925, - [SMALL_STATE(4135)] = 146945, - [SMALL_STATE(4136)] = 146965, - [SMALL_STATE(4137)] = 146981, - [SMALL_STATE(4138)] = 146999, - [SMALL_STATE(4139)] = 147015, - [SMALL_STATE(4140)] = 147031, - [SMALL_STATE(4141)] = 147047, - [SMALL_STATE(4142)] = 147063, - [SMALL_STATE(4143)] = 147075, - [SMALL_STATE(4144)] = 147095, - [SMALL_STATE(4145)] = 147107, - [SMALL_STATE(4146)] = 147119, - [SMALL_STATE(4147)] = 147131, - [SMALL_STATE(4148)] = 147147, - [SMALL_STATE(4149)] = 147167, - [SMALL_STATE(4150)] = 147187, - [SMALL_STATE(4151)] = 147207, - [SMALL_STATE(4152)] = 147227, - [SMALL_STATE(4153)] = 147239, - [SMALL_STATE(4154)] = 147251, - [SMALL_STATE(4155)] = 147271, - [SMALL_STATE(4156)] = 147289, - [SMALL_STATE(4157)] = 147305, - [SMALL_STATE(4158)] = 147325, - [SMALL_STATE(4159)] = 147345, - [SMALL_STATE(4160)] = 147361, - [SMALL_STATE(4161)] = 147381, - [SMALL_STATE(4162)] = 147397, - [SMALL_STATE(4163)] = 147413, - [SMALL_STATE(4164)] = 147433, - [SMALL_STATE(4165)] = 147453, - [SMALL_STATE(4166)] = 147473, - [SMALL_STATE(4167)] = 147489, - [SMALL_STATE(4168)] = 147509, - [SMALL_STATE(4169)] = 147525, - [SMALL_STATE(4170)] = 147545, - [SMALL_STATE(4171)] = 147561, - [SMALL_STATE(4172)] = 147577, - [SMALL_STATE(4173)] = 147597, - [SMALL_STATE(4174)] = 147615, - [SMALL_STATE(4175)] = 147627, - [SMALL_STATE(4176)] = 147643, - [SMALL_STATE(4177)] = 147659, - [SMALL_STATE(4178)] = 147679, - [SMALL_STATE(4179)] = 147695, - [SMALL_STATE(4180)] = 147715, - [SMALL_STATE(4181)] = 147731, - [SMALL_STATE(4182)] = 147751, - [SMALL_STATE(4183)] = 147767, - [SMALL_STATE(4184)] = 147783, - [SMALL_STATE(4185)] = 147803, - [SMALL_STATE(4186)] = 147819, - [SMALL_STATE(4187)] = 147835, - [SMALL_STATE(4188)] = 147851, - [SMALL_STATE(4189)] = 147867, - [SMALL_STATE(4190)] = 147883, - [SMALL_STATE(4191)] = 147899, - [SMALL_STATE(4192)] = 147919, - [SMALL_STATE(4193)] = 147933, - [SMALL_STATE(4194)] = 147945, - [SMALL_STATE(4195)] = 147957, - [SMALL_STATE(4196)] = 147977, - [SMALL_STATE(4197)] = 147997, - [SMALL_STATE(4198)] = 148009, - [SMALL_STATE(4199)] = 148029, - [SMALL_STATE(4200)] = 148041, - [SMALL_STATE(4201)] = 148061, - [SMALL_STATE(4202)] = 148077, - [SMALL_STATE(4203)] = 148097, - [SMALL_STATE(4204)] = 148113, - [SMALL_STATE(4205)] = 148129, - [SMALL_STATE(4206)] = 148145, - [SMALL_STATE(4207)] = 148157, - [SMALL_STATE(4208)] = 148177, - [SMALL_STATE(4209)] = 148193, - [SMALL_STATE(4210)] = 148211, - [SMALL_STATE(4211)] = 148227, - [SMALL_STATE(4212)] = 148243, - [SMALL_STATE(4213)] = 148259, - [SMALL_STATE(4214)] = 148275, - [SMALL_STATE(4215)] = 148291, - [SMALL_STATE(4216)] = 148307, - [SMALL_STATE(4217)] = 148323, - [SMALL_STATE(4218)] = 148339, - [SMALL_STATE(4219)] = 148355, - [SMALL_STATE(4220)] = 148371, - [SMALL_STATE(4221)] = 148383, - [SMALL_STATE(4222)] = 148399, - [SMALL_STATE(4223)] = 148411, - [SMALL_STATE(4224)] = 148431, - [SMALL_STATE(4225)] = 148443, - [SMALL_STATE(4226)] = 148461, - [SMALL_STATE(4227)] = 148481, - [SMALL_STATE(4228)] = 148501, - [SMALL_STATE(4229)] = 148513, - [SMALL_STATE(4230)] = 148533, - [SMALL_STATE(4231)] = 148553, - [SMALL_STATE(4232)] = 148565, - [SMALL_STATE(4233)] = 148583, - [SMALL_STATE(4234)] = 148595, - [SMALL_STATE(4235)] = 148607, - [SMALL_STATE(4236)] = 148623, - [SMALL_STATE(4237)] = 148635, - [SMALL_STATE(4238)] = 148651, - [SMALL_STATE(4239)] = 148663, - [SMALL_STATE(4240)] = 148675, - [SMALL_STATE(4241)] = 148695, - [SMALL_STATE(4242)] = 148711, - [SMALL_STATE(4243)] = 148727, - [SMALL_STATE(4244)] = 148739, - [SMALL_STATE(4245)] = 148751, - [SMALL_STATE(4246)] = 148763, - [SMALL_STATE(4247)] = 148775, - [SMALL_STATE(4248)] = 148787, - [SMALL_STATE(4249)] = 148799, - [SMALL_STATE(4250)] = 148811, - [SMALL_STATE(4251)] = 148827, - [SMALL_STATE(4252)] = 148839, - [SMALL_STATE(4253)] = 148851, - [SMALL_STATE(4254)] = 148865, - [SMALL_STATE(4255)] = 148877, - [SMALL_STATE(4256)] = 148889, - [SMALL_STATE(4257)] = 148901, - [SMALL_STATE(4258)] = 148913, - [SMALL_STATE(4259)] = 148925, - [SMALL_STATE(4260)] = 148945, - [SMALL_STATE(4261)] = 148963, - [SMALL_STATE(4262)] = 148983, - [SMALL_STATE(4263)] = 148995, - [SMALL_STATE(4264)] = 149011, - [SMALL_STATE(4265)] = 149031, - [SMALL_STATE(4266)] = 149047, - [SMALL_STATE(4267)] = 149067, - [SMALL_STATE(4268)] = 149087, - [SMALL_STATE(4269)] = 149107, - [SMALL_STATE(4270)] = 149127, - [SMALL_STATE(4271)] = 149143, - [SMALL_STATE(4272)] = 149155, - [SMALL_STATE(4273)] = 149175, - [SMALL_STATE(4274)] = 149187, - [SMALL_STATE(4275)] = 149207, - [SMALL_STATE(4276)] = 149227, - [SMALL_STATE(4277)] = 149239, - [SMALL_STATE(4278)] = 149251, - [SMALL_STATE(4279)] = 149271, - [SMALL_STATE(4280)] = 149283, - [SMALL_STATE(4281)] = 149299, - [SMALL_STATE(4282)] = 149315, - [SMALL_STATE(4283)] = 149327, - [SMALL_STATE(4284)] = 149343, - [SMALL_STATE(4285)] = 149355, - [SMALL_STATE(4286)] = 149367, - [SMALL_STATE(4287)] = 149387, - [SMALL_STATE(4288)] = 149403, - [SMALL_STATE(4289)] = 149423, - [SMALL_STATE(4290)] = 149435, - [SMALL_STATE(4291)] = 149451, - [SMALL_STATE(4292)] = 149467, - [SMALL_STATE(4293)] = 149487, - [SMALL_STATE(4294)] = 149499, - [SMALL_STATE(4295)] = 149515, - [SMALL_STATE(4296)] = 149531, - [SMALL_STATE(4297)] = 149547, - [SMALL_STATE(4298)] = 149567, - [SMALL_STATE(4299)] = 149583, - [SMALL_STATE(4300)] = 149599, - [SMALL_STATE(4301)] = 149615, - [SMALL_STATE(4302)] = 149631, - [SMALL_STATE(4303)] = 149651, - [SMALL_STATE(4304)] = 149667, - [SMALL_STATE(4305)] = 149683, - [SMALL_STATE(4306)] = 149695, - [SMALL_STATE(4307)] = 149707, - [SMALL_STATE(4308)] = 149719, - [SMALL_STATE(4309)] = 149731, - [SMALL_STATE(4310)] = 149747, - [SMALL_STATE(4311)] = 149763, - [SMALL_STATE(4312)] = 149779, - [SMALL_STATE(4313)] = 149795, - [SMALL_STATE(4314)] = 149811, - [SMALL_STATE(4315)] = 149827, - [SMALL_STATE(4316)] = 149847, - [SMALL_STATE(4317)] = 149863, - [SMALL_STATE(4318)] = 149879, - [SMALL_STATE(4319)] = 149895, - [SMALL_STATE(4320)] = 149911, - [SMALL_STATE(4321)] = 149927, - [SMALL_STATE(4322)] = 149943, - [SMALL_STATE(4323)] = 149955, - [SMALL_STATE(4324)] = 149971, - [SMALL_STATE(4325)] = 149987, - [SMALL_STATE(4326)] = 150003, - [SMALL_STATE(4327)] = 150019, - [SMALL_STATE(4328)] = 150035, - [SMALL_STATE(4329)] = 150051, - [SMALL_STATE(4330)] = 150067, - [SMALL_STATE(4331)] = 150083, - [SMALL_STATE(4332)] = 150099, - [SMALL_STATE(4333)] = 150115, - [SMALL_STATE(4334)] = 150135, - [SMALL_STATE(4335)] = 150151, - [SMALL_STATE(4336)] = 150167, - [SMALL_STATE(4337)] = 150183, - [SMALL_STATE(4338)] = 150199, - [SMALL_STATE(4339)] = 150215, - [SMALL_STATE(4340)] = 150231, - [SMALL_STATE(4341)] = 150251, - [SMALL_STATE(4342)] = 150268, - [SMALL_STATE(4343)] = 150285, - [SMALL_STATE(4344)] = 150300, - [SMALL_STATE(4345)] = 150315, - [SMALL_STATE(4346)] = 150328, - [SMALL_STATE(4347)] = 150345, - [SMALL_STATE(4348)] = 150362, - [SMALL_STATE(4349)] = 150379, - [SMALL_STATE(4350)] = 150396, - [SMALL_STATE(4351)] = 150413, - [SMALL_STATE(4352)] = 150428, - [SMALL_STATE(4353)] = 150445, - [SMALL_STATE(4354)] = 150462, - [SMALL_STATE(4355)] = 150479, - [SMALL_STATE(4356)] = 150496, - [SMALL_STATE(4357)] = 150513, - [SMALL_STATE(4358)] = 150530, - [SMALL_STATE(4359)] = 150547, - [SMALL_STATE(4360)] = 150564, - [SMALL_STATE(4361)] = 150581, - [SMALL_STATE(4362)] = 150596, - [SMALL_STATE(4363)] = 150613, - [SMALL_STATE(4364)] = 150630, - [SMALL_STATE(4365)] = 150647, - [SMALL_STATE(4366)] = 150664, - [SMALL_STATE(4367)] = 150681, - [SMALL_STATE(4368)] = 150696, - [SMALL_STATE(4369)] = 150709, - [SMALL_STATE(4370)] = 150726, - [SMALL_STATE(4371)] = 150743, - [SMALL_STATE(4372)] = 150760, - [SMALL_STATE(4373)] = 150775, - [SMALL_STATE(4374)] = 150792, - [SMALL_STATE(4375)] = 150809, - [SMALL_STATE(4376)] = 150826, - [SMALL_STATE(4377)] = 150841, - [SMALL_STATE(4378)] = 150856, - [SMALL_STATE(4379)] = 150873, - [SMALL_STATE(4380)] = 150888, - [SMALL_STATE(4381)] = 150905, - [SMALL_STATE(4382)] = 150920, - [SMALL_STATE(4383)] = 150937, - [SMALL_STATE(4384)] = 150954, - [SMALL_STATE(4385)] = 150971, - [SMALL_STATE(4386)] = 150986, - [SMALL_STATE(4387)] = 151003, - [SMALL_STATE(4388)] = 151018, - [SMALL_STATE(4389)] = 151035, - [SMALL_STATE(4390)] = 151050, - [SMALL_STATE(4391)] = 151067, - [SMALL_STATE(4392)] = 151084, - [SMALL_STATE(4393)] = 151101, - [SMALL_STATE(4394)] = 151116, - [SMALL_STATE(4395)] = 151131, - [SMALL_STATE(4396)] = 151144, - [SMALL_STATE(4397)] = 151161, - [SMALL_STATE(4398)] = 151178, - [SMALL_STATE(4399)] = 151195, - [SMALL_STATE(4400)] = 151212, - [SMALL_STATE(4401)] = 151227, - [SMALL_STATE(4402)] = 151244, - [SMALL_STATE(4403)] = 151261, - [SMALL_STATE(4404)] = 151276, - [SMALL_STATE(4405)] = 151293, - [SMALL_STATE(4406)] = 151310, - [SMALL_STATE(4407)] = 151327, - [SMALL_STATE(4408)] = 151344, - [SMALL_STATE(4409)] = 151361, - [SMALL_STATE(4410)] = 151378, - [SMALL_STATE(4411)] = 151395, - [SMALL_STATE(4412)] = 151410, - [SMALL_STATE(4413)] = 151425, - [SMALL_STATE(4414)] = 151442, - [SMALL_STATE(4415)] = 151457, - [SMALL_STATE(4416)] = 151474, - [SMALL_STATE(4417)] = 151491, - [SMALL_STATE(4418)] = 151508, - [SMALL_STATE(4419)] = 151523, - [SMALL_STATE(4420)] = 151540, - [SMALL_STATE(4421)] = 151555, - [SMALL_STATE(4422)] = 151572, - [SMALL_STATE(4423)] = 151589, - [SMALL_STATE(4424)] = 151606, - [SMALL_STATE(4425)] = 151623, - [SMALL_STATE(4426)] = 151640, - [SMALL_STATE(4427)] = 151657, - [SMALL_STATE(4428)] = 151672, - [SMALL_STATE(4429)] = 151689, - [SMALL_STATE(4430)] = 151706, - [SMALL_STATE(4431)] = 151721, - [SMALL_STATE(4432)] = 151736, - [SMALL_STATE(4433)] = 151753, - [SMALL_STATE(4434)] = 151770, - [SMALL_STATE(4435)] = 151787, - [SMALL_STATE(4436)] = 151802, - [SMALL_STATE(4437)] = 151819, - [SMALL_STATE(4438)] = 151834, - [SMALL_STATE(4439)] = 151849, - [SMALL_STATE(4440)] = 151860, - [SMALL_STATE(4441)] = 151877, - [SMALL_STATE(4442)] = 151894, - [SMALL_STATE(4443)] = 151909, - [SMALL_STATE(4444)] = 151926, - [SMALL_STATE(4445)] = 151943, - [SMALL_STATE(4446)] = 151958, - [SMALL_STATE(4447)] = 151975, - [SMALL_STATE(4448)] = 151992, - [SMALL_STATE(4449)] = 152009, - [SMALL_STATE(4450)] = 152024, - [SMALL_STATE(4451)] = 152041, - [SMALL_STATE(4452)] = 152058, - [SMALL_STATE(4453)] = 152075, - [SMALL_STATE(4454)] = 152092, - [SMALL_STATE(4455)] = 152107, - [SMALL_STATE(4456)] = 152122, - [SMALL_STATE(4457)] = 152139, - [SMALL_STATE(4458)] = 152156, - [SMALL_STATE(4459)] = 152173, - [SMALL_STATE(4460)] = 152190, - [SMALL_STATE(4461)] = 152207, - [SMALL_STATE(4462)] = 152224, - [SMALL_STATE(4463)] = 152237, - [SMALL_STATE(4464)] = 152254, - [SMALL_STATE(4465)] = 152271, - [SMALL_STATE(4466)] = 152288, - [SMALL_STATE(4467)] = 152305, - [SMALL_STATE(4468)] = 152322, - [SMALL_STATE(4469)] = 152339, - [SMALL_STATE(4470)] = 152356, - [SMALL_STATE(4471)] = 152369, - [SMALL_STATE(4472)] = 152386, - [SMALL_STATE(4473)] = 152403, - [SMALL_STATE(4474)] = 152420, - [SMALL_STATE(4475)] = 152437, - [SMALL_STATE(4476)] = 152454, - [SMALL_STATE(4477)] = 152471, - [SMALL_STATE(4478)] = 152488, - [SMALL_STATE(4479)] = 152505, - [SMALL_STATE(4480)] = 152522, - [SMALL_STATE(4481)] = 152533, - [SMALL_STATE(4482)] = 152543, - [SMALL_STATE(4483)] = 152553, - [SMALL_STATE(4484)] = 152567, - [SMALL_STATE(4485)] = 152577, - [SMALL_STATE(4486)] = 152587, - [SMALL_STATE(4487)] = 152597, - [SMALL_STATE(4488)] = 152607, - [SMALL_STATE(4489)] = 152617, - [SMALL_STATE(4490)] = 152627, - [SMALL_STATE(4491)] = 152641, - [SMALL_STATE(4492)] = 152655, - [SMALL_STATE(4493)] = 152665, - [SMALL_STATE(4494)] = 152679, - [SMALL_STATE(4495)] = 152689, - [SMALL_STATE(4496)] = 152699, - [SMALL_STATE(4497)] = 152709, - [SMALL_STATE(4498)] = 152719, - [SMALL_STATE(4499)] = 152729, - [SMALL_STATE(4500)] = 152743, - [SMALL_STATE(4501)] = 152753, - [SMALL_STATE(4502)] = 152767, - [SMALL_STATE(4503)] = 152777, - [SMALL_STATE(4504)] = 152791, - [SMALL_STATE(4505)] = 152801, - [SMALL_STATE(4506)] = 152811, - [SMALL_STATE(4507)] = 152821, - [SMALL_STATE(4508)] = 152835, - [SMALL_STATE(4509)] = 152849, - [SMALL_STATE(4510)] = 152859, - [SMALL_STATE(4511)] = 152875, - [SMALL_STATE(4512)] = 152885, - [SMALL_STATE(4513)] = 152899, - [SMALL_STATE(4514)] = 152913, - [SMALL_STATE(4515)] = 152923, - [SMALL_STATE(4516)] = 152933, - [SMALL_STATE(4517)] = 152943, - [SMALL_STATE(4518)] = 152957, - [SMALL_STATE(4519)] = 152971, - [SMALL_STATE(4520)] = 152985, - [SMALL_STATE(4521)] = 152999, - [SMALL_STATE(4522)] = 153009, - [SMALL_STATE(4523)] = 153023, - [SMALL_STATE(4524)] = 153037, - [SMALL_STATE(4525)] = 153047, - [SMALL_STATE(4526)] = 153057, - [SMALL_STATE(4527)] = 153067, - [SMALL_STATE(4528)] = 153081, - [SMALL_STATE(4529)] = 153091, - [SMALL_STATE(4530)] = 153101, - [SMALL_STATE(4531)] = 153115, - [SMALL_STATE(4532)] = 153125, - [SMALL_STATE(4533)] = 153135, - [SMALL_STATE(4534)] = 153149, - [SMALL_STATE(4535)] = 153163, - [SMALL_STATE(4536)] = 153173, - [SMALL_STATE(4537)] = 153183, - [SMALL_STATE(4538)] = 153193, - [SMALL_STATE(4539)] = 153203, - [SMALL_STATE(4540)] = 153213, - [SMALL_STATE(4541)] = 153223, - [SMALL_STATE(4542)] = 153233, - [SMALL_STATE(4543)] = 153243, - [SMALL_STATE(4544)] = 153253, - [SMALL_STATE(4545)] = 153263, - [SMALL_STATE(4546)] = 153273, - [SMALL_STATE(4547)] = 153283, - [SMALL_STATE(4548)] = 153293, - [SMALL_STATE(4549)] = 153303, - [SMALL_STATE(4550)] = 153317, - [SMALL_STATE(4551)] = 153327, - [SMALL_STATE(4552)] = 153337, - [SMALL_STATE(4553)] = 153349, - [SMALL_STATE(4554)] = 153361, - [SMALL_STATE(4555)] = 153371, - [SMALL_STATE(4556)] = 153381, - [SMALL_STATE(4557)] = 153391, - [SMALL_STATE(4558)] = 153405, - [SMALL_STATE(4559)] = 153415, - [SMALL_STATE(4560)] = 153425, - [SMALL_STATE(4561)] = 153435, - [SMALL_STATE(4562)] = 153445, - [SMALL_STATE(4563)] = 153455, - [SMALL_STATE(4564)] = 153465, - [SMALL_STATE(4565)] = 153479, - [SMALL_STATE(4566)] = 153489, - [SMALL_STATE(4567)] = 153503, - [SMALL_STATE(4568)] = 153517, - [SMALL_STATE(4569)] = 153531, - [SMALL_STATE(4570)] = 153541, - [SMALL_STATE(4571)] = 153555, - [SMALL_STATE(4572)] = 153569, - [SMALL_STATE(4573)] = 153579, - [SMALL_STATE(4574)] = 153589, - [SMALL_STATE(4575)] = 153599, - [SMALL_STATE(4576)] = 153613, - [SMALL_STATE(4577)] = 153627, - [SMALL_STATE(4578)] = 153641, - [SMALL_STATE(4579)] = 153655, - [SMALL_STATE(4580)] = 153665, - [SMALL_STATE(4581)] = 153679, - [SMALL_STATE(4582)] = 153693, - [SMALL_STATE(4583)] = 153703, - [SMALL_STATE(4584)] = 153717, - [SMALL_STATE(4585)] = 153727, - [SMALL_STATE(4586)] = 153737, - [SMALL_STATE(4587)] = 153747, - [SMALL_STATE(4588)] = 153757, - [SMALL_STATE(4589)] = 153767, - [SMALL_STATE(4590)] = 153777, - [SMALL_STATE(4591)] = 153787, - [SMALL_STATE(4592)] = 153797, - [SMALL_STATE(4593)] = 153811, - [SMALL_STATE(4594)] = 153821, - [SMALL_STATE(4595)] = 153831, - [SMALL_STATE(4596)] = 153841, - [SMALL_STATE(4597)] = 153851, - [SMALL_STATE(4598)] = 153861, - [SMALL_STATE(4599)] = 153871, - [SMALL_STATE(4600)] = 153881, - [SMALL_STATE(4601)] = 153891, - [SMALL_STATE(4602)] = 153901, - [SMALL_STATE(4603)] = 153911, - [SMALL_STATE(4604)] = 153921, - [SMALL_STATE(4605)] = 153931, - [SMALL_STATE(4606)] = 153941, - [SMALL_STATE(4607)] = 153951, - [SMALL_STATE(4608)] = 153961, - [SMALL_STATE(4609)] = 153971, - [SMALL_STATE(4610)] = 153981, - [SMALL_STATE(4611)] = 153991, - [SMALL_STATE(4612)] = 154005, - [SMALL_STATE(4613)] = 154015, - [SMALL_STATE(4614)] = 154025, - [SMALL_STATE(4615)] = 154035, - [SMALL_STATE(4616)] = 154045, - [SMALL_STATE(4617)] = 154059, - [SMALL_STATE(4618)] = 154069, - [SMALL_STATE(4619)] = 154083, - [SMALL_STATE(4620)] = 154097, - [SMALL_STATE(4621)] = 154107, - [SMALL_STATE(4622)] = 154117, - [SMALL_STATE(4623)] = 154131, - [SMALL_STATE(4624)] = 154141, - [SMALL_STATE(4625)] = 154153, - [SMALL_STATE(4626)] = 154163, - [SMALL_STATE(4627)] = 154173, - [SMALL_STATE(4628)] = 154187, - [SMALL_STATE(4629)] = 154201, - [SMALL_STATE(4630)] = 154211, - [SMALL_STATE(4631)] = 154225, - [SMALL_STATE(4632)] = 154239, - [SMALL_STATE(4633)] = 154253, - [SMALL_STATE(4634)] = 154267, - [SMALL_STATE(4635)] = 154277, - [SMALL_STATE(4636)] = 154291, - [SMALL_STATE(4637)] = 154305, - [SMALL_STATE(4638)] = 154315, - [SMALL_STATE(4639)] = 154325, - [SMALL_STATE(4640)] = 154339, - [SMALL_STATE(4641)] = 154349, - [SMALL_STATE(4642)] = 154359, - [SMALL_STATE(4643)] = 154369, - [SMALL_STATE(4644)] = 154383, - [SMALL_STATE(4645)] = 154397, - [SMALL_STATE(4646)] = 154411, - [SMALL_STATE(4647)] = 154421, - [SMALL_STATE(4648)] = 154435, - [SMALL_STATE(4649)] = 154445, - [SMALL_STATE(4650)] = 154455, - [SMALL_STATE(4651)] = 154465, - [SMALL_STATE(4652)] = 154475, - [SMALL_STATE(4653)] = 154485, - [SMALL_STATE(4654)] = 154499, - [SMALL_STATE(4655)] = 154513, - [SMALL_STATE(4656)] = 154523, - [SMALL_STATE(4657)] = 154533, - [SMALL_STATE(4658)] = 154547, - [SMALL_STATE(4659)] = 154561, - [SMALL_STATE(4660)] = 154571, - [SMALL_STATE(4661)] = 154585, - [SMALL_STATE(4662)] = 154595, - [SMALL_STATE(4663)] = 154605, - [SMALL_STATE(4664)] = 154615, - [SMALL_STATE(4665)] = 154625, - [SMALL_STATE(4666)] = 154639, - [SMALL_STATE(4667)] = 154653, - [SMALL_STATE(4668)] = 154667, - [SMALL_STATE(4669)] = 154677, - [SMALL_STATE(4670)] = 154687, - [SMALL_STATE(4671)] = 154701, - [SMALL_STATE(4672)] = 154711, - [SMALL_STATE(4673)] = 154721, - [SMALL_STATE(4674)] = 154735, - [SMALL_STATE(4675)] = 154745, - [SMALL_STATE(4676)] = 154755, - [SMALL_STATE(4677)] = 154765, - [SMALL_STATE(4678)] = 154779, - [SMALL_STATE(4679)] = 154789, - [SMALL_STATE(4680)] = 154803, - [SMALL_STATE(4681)] = 154813, - [SMALL_STATE(4682)] = 154823, - [SMALL_STATE(4683)] = 154833, - [SMALL_STATE(4684)] = 154843, - [SMALL_STATE(4685)] = 154853, - [SMALL_STATE(4686)] = 154867, - [SMALL_STATE(4687)] = 154877, - [SMALL_STATE(4688)] = 154887, - [SMALL_STATE(4689)] = 154897, - [SMALL_STATE(4690)] = 154907, - [SMALL_STATE(4691)] = 154917, - [SMALL_STATE(4692)] = 154927, - [SMALL_STATE(4693)] = 154937, - [SMALL_STATE(4694)] = 154947, - [SMALL_STATE(4695)] = 154957, - [SMALL_STATE(4696)] = 154967, - [SMALL_STATE(4697)] = 154977, - [SMALL_STATE(4698)] = 154987, - [SMALL_STATE(4699)] = 154997, - [SMALL_STATE(4700)] = 155007, - [SMALL_STATE(4701)] = 155017, - [SMALL_STATE(4702)] = 155027, - [SMALL_STATE(4703)] = 155037, - [SMALL_STATE(4704)] = 155051, - [SMALL_STATE(4705)] = 155061, - [SMALL_STATE(4706)] = 155075, - [SMALL_STATE(4707)] = 155089, - [SMALL_STATE(4708)] = 155103, - [SMALL_STATE(4709)] = 155115, - [SMALL_STATE(4710)] = 155125, - [SMALL_STATE(4711)] = 155139, - [SMALL_STATE(4712)] = 155149, - [SMALL_STATE(4713)] = 155159, - [SMALL_STATE(4714)] = 155169, - [SMALL_STATE(4715)] = 155179, - [SMALL_STATE(4716)] = 155189, - [SMALL_STATE(4717)] = 155205, - [SMALL_STATE(4718)] = 155219, - [SMALL_STATE(4719)] = 155229, - [SMALL_STATE(4720)] = 155239, - [SMALL_STATE(4721)] = 155249, - [SMALL_STATE(4722)] = 155259, - [SMALL_STATE(4723)] = 155269, - [SMALL_STATE(4724)] = 155279, - [SMALL_STATE(4725)] = 155289, - [SMALL_STATE(4726)] = 155299, - [SMALL_STATE(4727)] = 155309, - [SMALL_STATE(4728)] = 155319, - [SMALL_STATE(4729)] = 155329, - [SMALL_STATE(4730)] = 155339, - [SMALL_STATE(4731)] = 155349, - [SMALL_STATE(4732)] = 155359, - [SMALL_STATE(4733)] = 155369, - [SMALL_STATE(4734)] = 155379, - [SMALL_STATE(4735)] = 155389, - [SMALL_STATE(4736)] = 155399, - [SMALL_STATE(4737)] = 155409, - [SMALL_STATE(4738)] = 155419, - [SMALL_STATE(4739)] = 155429, - [SMALL_STATE(4740)] = 155439, - [SMALL_STATE(4741)] = 155449, - [SMALL_STATE(4742)] = 155459, - [SMALL_STATE(4743)] = 155469, - [SMALL_STATE(4744)] = 155483, - [SMALL_STATE(4745)] = 155493, - [SMALL_STATE(4746)] = 155503, - [SMALL_STATE(4747)] = 155517, - [SMALL_STATE(4748)] = 155527, - [SMALL_STATE(4749)] = 155537, - [SMALL_STATE(4750)] = 155547, - [SMALL_STATE(4751)] = 155557, - [SMALL_STATE(4752)] = 155567, - [SMALL_STATE(4753)] = 155577, - [SMALL_STATE(4754)] = 155587, - [SMALL_STATE(4755)] = 155601, - [SMALL_STATE(4756)] = 155611, - [SMALL_STATE(4757)] = 155625, - [SMALL_STATE(4758)] = 155639, - [SMALL_STATE(4759)] = 155649, - [SMALL_STATE(4760)] = 155663, - [SMALL_STATE(4761)] = 155673, - [SMALL_STATE(4762)] = 155687, - [SMALL_STATE(4763)] = 155701, - [SMALL_STATE(4764)] = 155711, - [SMALL_STATE(4765)] = 155721, - [SMALL_STATE(4766)] = 155731, - [SMALL_STATE(4767)] = 155741, - [SMALL_STATE(4768)] = 155751, - [SMALL_STATE(4769)] = 155761, - [SMALL_STATE(4770)] = 155771, - [SMALL_STATE(4771)] = 155781, - [SMALL_STATE(4772)] = 155791, - [SMALL_STATE(4773)] = 155801, - [SMALL_STATE(4774)] = 155811, - [SMALL_STATE(4775)] = 155825, - [SMALL_STATE(4776)] = 155839, - [SMALL_STATE(4777)] = 155849, - [SMALL_STATE(4778)] = 155859, - [SMALL_STATE(4779)] = 155873, - [SMALL_STATE(4780)] = 155883, - [SMALL_STATE(4781)] = 155893, - [SMALL_STATE(4782)] = 155903, - [SMALL_STATE(4783)] = 155913, - [SMALL_STATE(4784)] = 155927, - [SMALL_STATE(4785)] = 155941, - [SMALL_STATE(4786)] = 155951, - [SMALL_STATE(4787)] = 155961, - [SMALL_STATE(4788)] = 155971, - [SMALL_STATE(4789)] = 155981, - [SMALL_STATE(4790)] = 155991, - [SMALL_STATE(4791)] = 156001, - [SMALL_STATE(4792)] = 156011, - [SMALL_STATE(4793)] = 156021, - [SMALL_STATE(4794)] = 156035, - [SMALL_STATE(4795)] = 156049, - [SMALL_STATE(4796)] = 156059, - [SMALL_STATE(4797)] = 156073, - [SMALL_STATE(4798)] = 156087, - [SMALL_STATE(4799)] = 156097, - [SMALL_STATE(4800)] = 156107, - [SMALL_STATE(4801)] = 156117, - [SMALL_STATE(4802)] = 156127, - [SMALL_STATE(4803)] = 156137, - [SMALL_STATE(4804)] = 156147, - [SMALL_STATE(4805)] = 156157, - [SMALL_STATE(4806)] = 156167, - [SMALL_STATE(4807)] = 156177, - [SMALL_STATE(4808)] = 156187, - [SMALL_STATE(4809)] = 156197, - [SMALL_STATE(4810)] = 156207, - [SMALL_STATE(4811)] = 156217, - [SMALL_STATE(4812)] = 156227, - [SMALL_STATE(4813)] = 156237, - [SMALL_STATE(4814)] = 156247, - [SMALL_STATE(4815)] = 156257, - [SMALL_STATE(4816)] = 156267, - [SMALL_STATE(4817)] = 156277, - [SMALL_STATE(4818)] = 156287, - [SMALL_STATE(4819)] = 156301, - [SMALL_STATE(4820)] = 156311, - [SMALL_STATE(4821)] = 156325, - [SMALL_STATE(4822)] = 156335, - [SMALL_STATE(4823)] = 156345, - [SMALL_STATE(4824)] = 156355, - [SMALL_STATE(4825)] = 156369, - [SMALL_STATE(4826)] = 156379, - [SMALL_STATE(4827)] = 156393, - [SMALL_STATE(4828)] = 156403, - [SMALL_STATE(4829)] = 156413, - [SMALL_STATE(4830)] = 156423, - [SMALL_STATE(4831)] = 156433, - [SMALL_STATE(4832)] = 156443, - [SMALL_STATE(4833)] = 156453, - [SMALL_STATE(4834)] = 156463, - [SMALL_STATE(4835)] = 156473, - [SMALL_STATE(4836)] = 156483, - [SMALL_STATE(4837)] = 156497, - [SMALL_STATE(4838)] = 156507, - [SMALL_STATE(4839)] = 156517, - [SMALL_STATE(4840)] = 156527, - [SMALL_STATE(4841)] = 156537, - [SMALL_STATE(4842)] = 156547, - [SMALL_STATE(4843)] = 156557, - [SMALL_STATE(4844)] = 156567, - [SMALL_STATE(4845)] = 156581, - [SMALL_STATE(4846)] = 156591, - [SMALL_STATE(4847)] = 156601, - [SMALL_STATE(4848)] = 156611, - [SMALL_STATE(4849)] = 156621, - [SMALL_STATE(4850)] = 156631, - [SMALL_STATE(4851)] = 156641, - [SMALL_STATE(4852)] = 156651, - [SMALL_STATE(4853)] = 156661, - [SMALL_STATE(4854)] = 156671, - [SMALL_STATE(4855)] = 156681, - [SMALL_STATE(4856)] = 156691, - [SMALL_STATE(4857)] = 156701, - [SMALL_STATE(4858)] = 156713, - [SMALL_STATE(4859)] = 156723, - [SMALL_STATE(4860)] = 156733, - [SMALL_STATE(4861)] = 156747, - [SMALL_STATE(4862)] = 156757, - [SMALL_STATE(4863)] = 156767, - [SMALL_STATE(4864)] = 156777, - [SMALL_STATE(4865)] = 156791, - [SMALL_STATE(4866)] = 156803, - [SMALL_STATE(4867)] = 156817, - [SMALL_STATE(4868)] = 156827, - [SMALL_STATE(4869)] = 156837, - [SMALL_STATE(4870)] = 156851, - [SMALL_STATE(4871)] = 156865, - [SMALL_STATE(4872)] = 156875, - [SMALL_STATE(4873)] = 156885, - [SMALL_STATE(4874)] = 156895, - [SMALL_STATE(4875)] = 156905, - [SMALL_STATE(4876)] = 156919, - [SMALL_STATE(4877)] = 156929, - [SMALL_STATE(4878)] = 156939, - [SMALL_STATE(4879)] = 156953, - [SMALL_STATE(4880)] = 156963, - [SMALL_STATE(4881)] = 156973, - [SMALL_STATE(4882)] = 156983, - [SMALL_STATE(4883)] = 156993, - [SMALL_STATE(4884)] = 157003, - [SMALL_STATE(4885)] = 157013, - [SMALL_STATE(4886)] = 157023, - [SMALL_STATE(4887)] = 157033, - [SMALL_STATE(4888)] = 157043, - [SMALL_STATE(4889)] = 157053, - [SMALL_STATE(4890)] = 157063, - [SMALL_STATE(4891)] = 157073, - [SMALL_STATE(4892)] = 157083, - [SMALL_STATE(4893)] = 157093, - [SMALL_STATE(4894)] = 157103, - [SMALL_STATE(4895)] = 157117, - [SMALL_STATE(4896)] = 157127, - [SMALL_STATE(4897)] = 157137, - [SMALL_STATE(4898)] = 157147, - [SMALL_STATE(4899)] = 157157, - [SMALL_STATE(4900)] = 157167, - [SMALL_STATE(4901)] = 157177, - [SMALL_STATE(4902)] = 157187, - [SMALL_STATE(4903)] = 157197, - [SMALL_STATE(4904)] = 157207, - [SMALL_STATE(4905)] = 157217, - [SMALL_STATE(4906)] = 157227, - [SMALL_STATE(4907)] = 157237, - [SMALL_STATE(4908)] = 157247, - [SMALL_STATE(4909)] = 157257, - [SMALL_STATE(4910)] = 157271, - [SMALL_STATE(4911)] = 157285, - [SMALL_STATE(4912)] = 157299, - [SMALL_STATE(4913)] = 157309, - [SMALL_STATE(4914)] = 157321, - [SMALL_STATE(4915)] = 157335, - [SMALL_STATE(4916)] = 157345, - [SMALL_STATE(4917)] = 157357, - [SMALL_STATE(4918)] = 157367, - [SMALL_STATE(4919)] = 157381, - [SMALL_STATE(4920)] = 157391, - [SMALL_STATE(4921)] = 157401, - [SMALL_STATE(4922)] = 157415, - [SMALL_STATE(4923)] = 157425, - [SMALL_STATE(4924)] = 157435, - [SMALL_STATE(4925)] = 157445, - [SMALL_STATE(4926)] = 157457, - [SMALL_STATE(4927)] = 157467, - [SMALL_STATE(4928)] = 157481, - [SMALL_STATE(4929)] = 157491, - [SMALL_STATE(4930)] = 157505, - [SMALL_STATE(4931)] = 157521, - [SMALL_STATE(4932)] = 157535, - [SMALL_STATE(4933)] = 157545, - [SMALL_STATE(4934)] = 157559, - [SMALL_STATE(4935)] = 157573, - [SMALL_STATE(4936)] = 157583, - [SMALL_STATE(4937)] = 157597, - [SMALL_STATE(4938)] = 157611, - [SMALL_STATE(4939)] = 157623, - [SMALL_STATE(4940)] = 157633, - [SMALL_STATE(4941)] = 157643, - [SMALL_STATE(4942)] = 157657, - [SMALL_STATE(4943)] = 157667, - [SMALL_STATE(4944)] = 157677, - [SMALL_STATE(4945)] = 157687, - [SMALL_STATE(4946)] = 157701, - [SMALL_STATE(4947)] = 157715, - [SMALL_STATE(4948)] = 157725, - [SMALL_STATE(4949)] = 157739, - [SMALL_STATE(4950)] = 157749, - [SMALL_STATE(4951)] = 157763, - [SMALL_STATE(4952)] = 157777, - [SMALL_STATE(4953)] = 157791, - [SMALL_STATE(4954)] = 157801, - [SMALL_STATE(4955)] = 157811, - [SMALL_STATE(4956)] = 157825, - [SMALL_STATE(4957)] = 157839, - [SMALL_STATE(4958)] = 157853, - [SMALL_STATE(4959)] = 157863, - [SMALL_STATE(4960)] = 157873, - [SMALL_STATE(4961)] = 157883, - [SMALL_STATE(4962)] = 157893, - [SMALL_STATE(4963)] = 157903, - [SMALL_STATE(4964)] = 157913, - [SMALL_STATE(4965)] = 157923, - [SMALL_STATE(4966)] = 157935, - [SMALL_STATE(4967)] = 157945, - [SMALL_STATE(4968)] = 157959, - [SMALL_STATE(4969)] = 157969, - [SMALL_STATE(4970)] = 157983, - [SMALL_STATE(4971)] = 157997, - [SMALL_STATE(4972)] = 158009, - [SMALL_STATE(4973)] = 158023, - [SMALL_STATE(4974)] = 158037, - [SMALL_STATE(4975)] = 158047, - [SMALL_STATE(4976)] = 158059, - [SMALL_STATE(4977)] = 158069, - [SMALL_STATE(4978)] = 158083, - [SMALL_STATE(4979)] = 158097, - [SMALL_STATE(4980)] = 158107, - [SMALL_STATE(4981)] = 158117, - [SMALL_STATE(4982)] = 158131, - [SMALL_STATE(4983)] = 158147, - [SMALL_STATE(4984)] = 158157, - [SMALL_STATE(4985)] = 158171, - [SMALL_STATE(4986)] = 158185, - [SMALL_STATE(4987)] = 158195, - [SMALL_STATE(4988)] = 158211, - [SMALL_STATE(4989)] = 158225, - [SMALL_STATE(4990)] = 158235, - [SMALL_STATE(4991)] = 158245, - [SMALL_STATE(4992)] = 158259, - [SMALL_STATE(4993)] = 158273, - [SMALL_STATE(4994)] = 158287, - [SMALL_STATE(4995)] = 158301, - [SMALL_STATE(4996)] = 158313, - [SMALL_STATE(4997)] = 158327, - [SMALL_STATE(4998)] = 158337, - [SMALL_STATE(4999)] = 158351, - [SMALL_STATE(5000)] = 158361, - [SMALL_STATE(5001)] = 158375, - [SMALL_STATE(5002)] = 158389, - [SMALL_STATE(5003)] = 158399, - [SMALL_STATE(5004)] = 158413, - [SMALL_STATE(5005)] = 158423, - [SMALL_STATE(5006)] = 158437, - [SMALL_STATE(5007)] = 158451, - [SMALL_STATE(5008)] = 158461, - [SMALL_STATE(5009)] = 158471, - [SMALL_STATE(5010)] = 158485, - [SMALL_STATE(5011)] = 158495, - [SMALL_STATE(5012)] = 158505, - [SMALL_STATE(5013)] = 158515, - [SMALL_STATE(5014)] = 158525, - [SMALL_STATE(5015)] = 158535, - [SMALL_STATE(5016)] = 158545, - [SMALL_STATE(5017)] = 158555, - [SMALL_STATE(5018)] = 158565, - [SMALL_STATE(5019)] = 158575, - [SMALL_STATE(5020)] = 158589, - [SMALL_STATE(5021)] = 158599, - [SMALL_STATE(5022)] = 158609, - [SMALL_STATE(5023)] = 158619, - [SMALL_STATE(5024)] = 158629, - [SMALL_STATE(5025)] = 158643, - [SMALL_STATE(5026)] = 158653, - [SMALL_STATE(5027)] = 158663, - [SMALL_STATE(5028)] = 158675, - [SMALL_STATE(5029)] = 158685, - [SMALL_STATE(5030)] = 158695, - [SMALL_STATE(5031)] = 158705, - [SMALL_STATE(5032)] = 158715, - [SMALL_STATE(5033)] = 158725, - [SMALL_STATE(5034)] = 158735, - [SMALL_STATE(5035)] = 158745, - [SMALL_STATE(5036)] = 158755, - [SMALL_STATE(5037)] = 158767, - [SMALL_STATE(5038)] = 158779, - [SMALL_STATE(5039)] = 158789, - [SMALL_STATE(5040)] = 158803, - [SMALL_STATE(5041)] = 158813, - [SMALL_STATE(5042)] = 158827, - [SMALL_STATE(5043)] = 158837, - [SMALL_STATE(5044)] = 158847, - [SMALL_STATE(5045)] = 158857, - [SMALL_STATE(5046)] = 158869, - [SMALL_STATE(5047)] = 158883, - [SMALL_STATE(5048)] = 158893, - [SMALL_STATE(5049)] = 158905, - [SMALL_STATE(5050)] = 158915, - [SMALL_STATE(5051)] = 158925, - [SMALL_STATE(5052)] = 158935, - [SMALL_STATE(5053)] = 158945, - [SMALL_STATE(5054)] = 158955, - [SMALL_STATE(5055)] = 158969, - [SMALL_STATE(5056)] = 158979, - [SMALL_STATE(5057)] = 158989, - [SMALL_STATE(5058)] = 159001, - [SMALL_STATE(5059)] = 159013, - [SMALL_STATE(5060)] = 159023, - [SMALL_STATE(5061)] = 159033, - [SMALL_STATE(5062)] = 159043, - [SMALL_STATE(5063)] = 159053, - [SMALL_STATE(5064)] = 159063, - [SMALL_STATE(5065)] = 159073, - [SMALL_STATE(5066)] = 159083, - [SMALL_STATE(5067)] = 159093, - [SMALL_STATE(5068)] = 159103, - [SMALL_STATE(5069)] = 159113, - [SMALL_STATE(5070)] = 159123, - [SMALL_STATE(5071)] = 159133, - [SMALL_STATE(5072)] = 159143, - [SMALL_STATE(5073)] = 159155, - [SMALL_STATE(5074)] = 159165, - [SMALL_STATE(5075)] = 159179, - [SMALL_STATE(5076)] = 159189, - [SMALL_STATE(5077)] = 159199, - [SMALL_STATE(5078)] = 159209, - [SMALL_STATE(5079)] = 159219, - [SMALL_STATE(5080)] = 159229, - [SMALL_STATE(5081)] = 159239, - [SMALL_STATE(5082)] = 159249, - [SMALL_STATE(5083)] = 159259, - [SMALL_STATE(5084)] = 159269, - [SMALL_STATE(5085)] = 159279, - [SMALL_STATE(5086)] = 159291, - [SMALL_STATE(5087)] = 159301, - [SMALL_STATE(5088)] = 159311, - [SMALL_STATE(5089)] = 159321, - [SMALL_STATE(5090)] = 159331, - [SMALL_STATE(5091)] = 159345, - [SMALL_STATE(5092)] = 159355, - [SMALL_STATE(5093)] = 159365, - [SMALL_STATE(5094)] = 159375, - [SMALL_STATE(5095)] = 159385, - [SMALL_STATE(5096)] = 159395, - [SMALL_STATE(5097)] = 159409, - [SMALL_STATE(5098)] = 159420, - [SMALL_STATE(5099)] = 159431, - [SMALL_STATE(5100)] = 159440, - [SMALL_STATE(5101)] = 159451, - [SMALL_STATE(5102)] = 159460, - [SMALL_STATE(5103)] = 159471, - [SMALL_STATE(5104)] = 159482, - [SMALL_STATE(5105)] = 159493, - [SMALL_STATE(5106)] = 159504, - [SMALL_STATE(5107)] = 159513, - [SMALL_STATE(5108)] = 159524, - [SMALL_STATE(5109)] = 159535, - [SMALL_STATE(5110)] = 159544, - [SMALL_STATE(5111)] = 159555, - [SMALL_STATE(5112)] = 159566, - [SMALL_STATE(5113)] = 159577, - [SMALL_STATE(5114)] = 159588, - [SMALL_STATE(5115)] = 159599, - [SMALL_STATE(5116)] = 159610, - [SMALL_STATE(5117)] = 159621, - [SMALL_STATE(5118)] = 159632, - [SMALL_STATE(5119)] = 159643, - [SMALL_STATE(5120)] = 159654, - [SMALL_STATE(5121)] = 159663, - [SMALL_STATE(5122)] = 159672, - [SMALL_STATE(5123)] = 159683, - [SMALL_STATE(5124)] = 159692, - [SMALL_STATE(5125)] = 159701, - [SMALL_STATE(5126)] = 159712, - [SMALL_STATE(5127)] = 159723, - [SMALL_STATE(5128)] = 159734, - [SMALL_STATE(5129)] = 159745, - [SMALL_STATE(5130)] = 159756, - [SMALL_STATE(5131)] = 159767, - [SMALL_STATE(5132)] = 159778, - [SMALL_STATE(5133)] = 159789, - [SMALL_STATE(5134)] = 159800, - [SMALL_STATE(5135)] = 159811, - [SMALL_STATE(5136)] = 159822, - [SMALL_STATE(5137)] = 159833, - [SMALL_STATE(5138)] = 159844, - [SMALL_STATE(5139)] = 159855, - [SMALL_STATE(5140)] = 159866, - [SMALL_STATE(5141)] = 159875, - [SMALL_STATE(5142)] = 159886, - [SMALL_STATE(5143)] = 159895, - [SMALL_STATE(5144)] = 159906, - [SMALL_STATE(5145)] = 159917, - [SMALL_STATE(5146)] = 159928, - [SMALL_STATE(5147)] = 159939, - [SMALL_STATE(5148)] = 159950, - [SMALL_STATE(5149)] = 159961, - [SMALL_STATE(5150)] = 159972, - [SMALL_STATE(5151)] = 159983, - [SMALL_STATE(5152)] = 159994, - [SMALL_STATE(5153)] = 160005, - [SMALL_STATE(5154)] = 160016, - [SMALL_STATE(5155)] = 160027, - [SMALL_STATE(5156)] = 160038, - [SMALL_STATE(5157)] = 160049, - [SMALL_STATE(5158)] = 160060, - [SMALL_STATE(5159)] = 160069, - [SMALL_STATE(5160)] = 160080, - [SMALL_STATE(5161)] = 160091, - [SMALL_STATE(5162)] = 160102, - [SMALL_STATE(5163)] = 160113, - [SMALL_STATE(5164)] = 160124, - [SMALL_STATE(5165)] = 160135, - [SMALL_STATE(5166)] = 160146, - [SMALL_STATE(5167)] = 160157, - [SMALL_STATE(5168)] = 160168, - [SMALL_STATE(5169)] = 160179, - [SMALL_STATE(5170)] = 160190, - [SMALL_STATE(5171)] = 160201, - [SMALL_STATE(5172)] = 160210, - [SMALL_STATE(5173)] = 160219, - [SMALL_STATE(5174)] = 160228, - [SMALL_STATE(5175)] = 160239, - [SMALL_STATE(5176)] = 160248, - [SMALL_STATE(5177)] = 160257, - [SMALL_STATE(5178)] = 160266, - [SMALL_STATE(5179)] = 160275, - [SMALL_STATE(5180)] = 160286, - [SMALL_STATE(5181)] = 160297, - [SMALL_STATE(5182)] = 160308, - [SMALL_STATE(5183)] = 160319, - [SMALL_STATE(5184)] = 160330, - [SMALL_STATE(5185)] = 160341, - [SMALL_STATE(5186)] = 160352, - [SMALL_STATE(5187)] = 160361, - [SMALL_STATE(5188)] = 160372, - [SMALL_STATE(5189)] = 160383, - [SMALL_STATE(5190)] = 160392, - [SMALL_STATE(5191)] = 160401, - [SMALL_STATE(5192)] = 160412, - [SMALL_STATE(5193)] = 160421, - [SMALL_STATE(5194)] = 160432, - [SMALL_STATE(5195)] = 160443, - [SMALL_STATE(5196)] = 160454, - [SMALL_STATE(5197)] = 160465, - [SMALL_STATE(5198)] = 160476, - [SMALL_STATE(5199)] = 160487, - [SMALL_STATE(5200)] = 160496, - [SMALL_STATE(5201)] = 160505, - [SMALL_STATE(5202)] = 160516, - [SMALL_STATE(5203)] = 160527, - [SMALL_STATE(5204)] = 160538, - [SMALL_STATE(5205)] = 160549, - [SMALL_STATE(5206)] = 160560, - [SMALL_STATE(5207)] = 160571, - [SMALL_STATE(5208)] = 160582, - [SMALL_STATE(5209)] = 160591, - [SMALL_STATE(5210)] = 160602, - [SMALL_STATE(5211)] = 160613, - [SMALL_STATE(5212)] = 160624, - [SMALL_STATE(5213)] = 160635, - [SMALL_STATE(5214)] = 160646, - [SMALL_STATE(5215)] = 160657, - [SMALL_STATE(5216)] = 160668, - [SMALL_STATE(5217)] = 160677, - [SMALL_STATE(5218)] = 160688, - [SMALL_STATE(5219)] = 160699, - [SMALL_STATE(5220)] = 160710, - [SMALL_STATE(5221)] = 160721, - [SMALL_STATE(5222)] = 160732, - [SMALL_STATE(5223)] = 160743, - [SMALL_STATE(5224)] = 160754, - [SMALL_STATE(5225)] = 160763, - [SMALL_STATE(5226)] = 160774, - [SMALL_STATE(5227)] = 160785, - [SMALL_STATE(5228)] = 160796, - [SMALL_STATE(5229)] = 160807, - [SMALL_STATE(5230)] = 160818, - [SMALL_STATE(5231)] = 160829, - [SMALL_STATE(5232)] = 160840, - [SMALL_STATE(5233)] = 160851, - [SMALL_STATE(5234)] = 160862, - [SMALL_STATE(5235)] = 160873, - [SMALL_STATE(5236)] = 160884, - [SMALL_STATE(5237)] = 160893, - [SMALL_STATE(5238)] = 160904, - [SMALL_STATE(5239)] = 160915, - [SMALL_STATE(5240)] = 160926, - [SMALL_STATE(5241)] = 160937, - [SMALL_STATE(5242)] = 160946, - [SMALL_STATE(5243)] = 160957, - [SMALL_STATE(5244)] = 160968, - [SMALL_STATE(5245)] = 160979, - [SMALL_STATE(5246)] = 160988, - [SMALL_STATE(5247)] = 160997, - [SMALL_STATE(5248)] = 161008, - [SMALL_STATE(5249)] = 161019, - [SMALL_STATE(5250)] = 161028, - [SMALL_STATE(5251)] = 161037, - [SMALL_STATE(5252)] = 161048, - [SMALL_STATE(5253)] = 161057, - [SMALL_STATE(5254)] = 161068, - [SMALL_STATE(5255)] = 161079, - [SMALL_STATE(5256)] = 161090, - [SMALL_STATE(5257)] = 161101, - [SMALL_STATE(5258)] = 161112, - [SMALL_STATE(5259)] = 161121, - [SMALL_STATE(5260)] = 161130, - [SMALL_STATE(5261)] = 161141, - [SMALL_STATE(5262)] = 161150, - [SMALL_STATE(5263)] = 161161, - [SMALL_STATE(5264)] = 161172, - [SMALL_STATE(5265)] = 161183, - [SMALL_STATE(5266)] = 161194, - [SMALL_STATE(5267)] = 161205, - [SMALL_STATE(5268)] = 161216, - [SMALL_STATE(5269)] = 161227, - [SMALL_STATE(5270)] = 161238, - [SMALL_STATE(5271)] = 161249, - [SMALL_STATE(5272)] = 161258, - [SMALL_STATE(5273)] = 161267, - [SMALL_STATE(5274)] = 161278, - [SMALL_STATE(5275)] = 161289, - [SMALL_STATE(5276)] = 161300, - [SMALL_STATE(5277)] = 161311, - [SMALL_STATE(5278)] = 161322, - [SMALL_STATE(5279)] = 161333, - [SMALL_STATE(5280)] = 161342, - [SMALL_STATE(5281)] = 161353, - [SMALL_STATE(5282)] = 161362, - [SMALL_STATE(5283)] = 161373, - [SMALL_STATE(5284)] = 161384, - [SMALL_STATE(5285)] = 161393, - [SMALL_STATE(5286)] = 161404, - [SMALL_STATE(5287)] = 161413, - [SMALL_STATE(5288)] = 161424, - [SMALL_STATE(5289)] = 161435, - [SMALL_STATE(5290)] = 161446, - [SMALL_STATE(5291)] = 161457, - [SMALL_STATE(5292)] = 161468, - [SMALL_STATE(5293)] = 161479, - [SMALL_STATE(5294)] = 161490, - [SMALL_STATE(5295)] = 161499, - [SMALL_STATE(5296)] = 161508, - [SMALL_STATE(5297)] = 161517, - [SMALL_STATE(5298)] = 161528, - [SMALL_STATE(5299)] = 161539, - [SMALL_STATE(5300)] = 161550, - [SMALL_STATE(5301)] = 161559, - [SMALL_STATE(5302)] = 161570, - [SMALL_STATE(5303)] = 161579, - [SMALL_STATE(5304)] = 161590, - [SMALL_STATE(5305)] = 161601, - [SMALL_STATE(5306)] = 161610, - [SMALL_STATE(5307)] = 161621, - [SMALL_STATE(5308)] = 161632, - [SMALL_STATE(5309)] = 161643, - [SMALL_STATE(5310)] = 161654, - [SMALL_STATE(5311)] = 161665, - [SMALL_STATE(5312)] = 161676, - [SMALL_STATE(5313)] = 161687, - [SMALL_STATE(5314)] = 161698, - [SMALL_STATE(5315)] = 161709, - [SMALL_STATE(5316)] = 161720, - [SMALL_STATE(5317)] = 161731, - [SMALL_STATE(5318)] = 161742, - [SMALL_STATE(5319)] = 161753, - [SMALL_STATE(5320)] = 161762, - [SMALL_STATE(5321)] = 161771, - [SMALL_STATE(5322)] = 161780, - [SMALL_STATE(5323)] = 161791, - [SMALL_STATE(5324)] = 161802, - [SMALL_STATE(5325)] = 161811, - [SMALL_STATE(5326)] = 161822, - [SMALL_STATE(5327)] = 161831, - [SMALL_STATE(5328)] = 161842, - [SMALL_STATE(5329)] = 161853, - [SMALL_STATE(5330)] = 161864, - [SMALL_STATE(5331)] = 161873, - [SMALL_STATE(5332)] = 161882, - [SMALL_STATE(5333)] = 161891, - [SMALL_STATE(5334)] = 161902, - [SMALL_STATE(5335)] = 161913, - [SMALL_STATE(5336)] = 161924, - [SMALL_STATE(5337)] = 161935, - [SMALL_STATE(5338)] = 161946, - [SMALL_STATE(5339)] = 161957, - [SMALL_STATE(5340)] = 161968, - [SMALL_STATE(5341)] = 161977, - [SMALL_STATE(5342)] = 161988, - [SMALL_STATE(5343)] = 161999, - [SMALL_STATE(5344)] = 162010, - [SMALL_STATE(5345)] = 162021, - [SMALL_STATE(5346)] = 162032, - [SMALL_STATE(5347)] = 162041, - [SMALL_STATE(5348)] = 162052, - [SMALL_STATE(5349)] = 162063, - [SMALL_STATE(5350)] = 162074, - [SMALL_STATE(5351)] = 162085, - [SMALL_STATE(5352)] = 162094, - [SMALL_STATE(5353)] = 162105, - [SMALL_STATE(5354)] = 162114, - [SMALL_STATE(5355)] = 162125, - [SMALL_STATE(5356)] = 162136, - [SMALL_STATE(5357)] = 162147, - [SMALL_STATE(5358)] = 162158, - [SMALL_STATE(5359)] = 162167, - [SMALL_STATE(5360)] = 162178, - [SMALL_STATE(5361)] = 162189, - [SMALL_STATE(5362)] = 162200, - [SMALL_STATE(5363)] = 162211, - [SMALL_STATE(5364)] = 162220, - [SMALL_STATE(5365)] = 162231, - [SMALL_STATE(5366)] = 162242, - [SMALL_STATE(5367)] = 162253, - [SMALL_STATE(5368)] = 162264, - [SMALL_STATE(5369)] = 162275, - [SMALL_STATE(5370)] = 162286, - [SMALL_STATE(5371)] = 162295, - [SMALL_STATE(5372)] = 162304, - [SMALL_STATE(5373)] = 162315, - [SMALL_STATE(5374)] = 162326, - [SMALL_STATE(5375)] = 162337, - [SMALL_STATE(5376)] = 162348, - [SMALL_STATE(5377)] = 162359, - [SMALL_STATE(5378)] = 162370, - [SMALL_STATE(5379)] = 162381, - [SMALL_STATE(5380)] = 162392, - [SMALL_STATE(5381)] = 162403, - [SMALL_STATE(5382)] = 162414, - [SMALL_STATE(5383)] = 162423, - [SMALL_STATE(5384)] = 162434, - [SMALL_STATE(5385)] = 162445, - [SMALL_STATE(5386)] = 162456, - [SMALL_STATE(5387)] = 162467, - [SMALL_STATE(5388)] = 162478, - [SMALL_STATE(5389)] = 162489, - [SMALL_STATE(5390)] = 162500, - [SMALL_STATE(5391)] = 162511, - [SMALL_STATE(5392)] = 162522, - [SMALL_STATE(5393)] = 162533, - [SMALL_STATE(5394)] = 162544, - [SMALL_STATE(5395)] = 162553, - [SMALL_STATE(5396)] = 162562, - [SMALL_STATE(5397)] = 162573, - [SMALL_STATE(5398)] = 162584, - [SMALL_STATE(5399)] = 162595, - [SMALL_STATE(5400)] = 162606, - [SMALL_STATE(5401)] = 162617, - [SMALL_STATE(5402)] = 162628, - [SMALL_STATE(5403)] = 162639, - [SMALL_STATE(5404)] = 162650, - [SMALL_STATE(5405)] = 162661, - [SMALL_STATE(5406)] = 162672, - [SMALL_STATE(5407)] = 162681, - [SMALL_STATE(5408)] = 162692, - [SMALL_STATE(5409)] = 162701, - [SMALL_STATE(5410)] = 162712, - [SMALL_STATE(5411)] = 162723, - [SMALL_STATE(5412)] = 162732, - [SMALL_STATE(5413)] = 162741, - [SMALL_STATE(5414)] = 162752, - [SMALL_STATE(5415)] = 162763, - [SMALL_STATE(5416)] = 162774, - [SMALL_STATE(5417)] = 162785, - [SMALL_STATE(5418)] = 162794, - [SMALL_STATE(5419)] = 162805, - [SMALL_STATE(5420)] = 162816, - [SMALL_STATE(5421)] = 162827, - [SMALL_STATE(5422)] = 162838, - [SMALL_STATE(5423)] = 162849, - [SMALL_STATE(5424)] = 162860, - [SMALL_STATE(5425)] = 162871, - [SMALL_STATE(5426)] = 162882, - [SMALL_STATE(5427)] = 162893, - [SMALL_STATE(5428)] = 162904, - [SMALL_STATE(5429)] = 162915, - [SMALL_STATE(5430)] = 162926, - [SMALL_STATE(5431)] = 162935, - [SMALL_STATE(5432)] = 162946, - [SMALL_STATE(5433)] = 162955, - [SMALL_STATE(5434)] = 162966, - [SMALL_STATE(5435)] = 162977, - [SMALL_STATE(5436)] = 162985, - [SMALL_STATE(5437)] = 162995, - [SMALL_STATE(5438)] = 163003, - [SMALL_STATE(5439)] = 163011, - [SMALL_STATE(5440)] = 163019, - [SMALL_STATE(5441)] = 163027, - [SMALL_STATE(5442)] = 163037, - [SMALL_STATE(5443)] = 163045, - [SMALL_STATE(5444)] = 163053, - [SMALL_STATE(5445)] = 163061, - [SMALL_STATE(5446)] = 163069, - [SMALL_STATE(5447)] = 163077, - [SMALL_STATE(5448)] = 163085, - [SMALL_STATE(5449)] = 163093, - [SMALL_STATE(5450)] = 163101, - [SMALL_STATE(5451)] = 163109, - [SMALL_STATE(5452)] = 163117, - [SMALL_STATE(5453)] = 163125, - [SMALL_STATE(5454)] = 163133, - [SMALL_STATE(5455)] = 163141, - [SMALL_STATE(5456)] = 163149, - [SMALL_STATE(5457)] = 163157, - [SMALL_STATE(5458)] = 163165, - [SMALL_STATE(5459)] = 163173, - [SMALL_STATE(5460)] = 163181, - [SMALL_STATE(5461)] = 163189, - [SMALL_STATE(5462)] = 163197, - [SMALL_STATE(5463)] = 163205, - [SMALL_STATE(5464)] = 163213, - [SMALL_STATE(5465)] = 163221, - [SMALL_STATE(5466)] = 163229, - [SMALL_STATE(5467)] = 163237, - [SMALL_STATE(5468)] = 163245, - [SMALL_STATE(5469)] = 163253, - [SMALL_STATE(5470)] = 163261, - [SMALL_STATE(5471)] = 163269, - [SMALL_STATE(5472)] = 163277, - [SMALL_STATE(5473)] = 163285, - [SMALL_STATE(5474)] = 163293, - [SMALL_STATE(5475)] = 163301, - [SMALL_STATE(5476)] = 163309, - [SMALL_STATE(5477)] = 163317, - [SMALL_STATE(5478)] = 163325, - [SMALL_STATE(5479)] = 163333, - [SMALL_STATE(5480)] = 163341, - [SMALL_STATE(5481)] = 163349, - [SMALL_STATE(5482)] = 163357, - [SMALL_STATE(5483)] = 163365, - [SMALL_STATE(5484)] = 163373, - [SMALL_STATE(5485)] = 163381, - [SMALL_STATE(5486)] = 163389, - [SMALL_STATE(5487)] = 163397, - [SMALL_STATE(5488)] = 163405, - [SMALL_STATE(5489)] = 163413, - [SMALL_STATE(5490)] = 163421, - [SMALL_STATE(5491)] = 163429, - [SMALL_STATE(5492)] = 163437, - [SMALL_STATE(5493)] = 163445, - [SMALL_STATE(5494)] = 163453, - [SMALL_STATE(5495)] = 163461, - [SMALL_STATE(5496)] = 163469, - [SMALL_STATE(5497)] = 163477, - [SMALL_STATE(5498)] = 163485, - [SMALL_STATE(5499)] = 163493, - [SMALL_STATE(5500)] = 163501, - [SMALL_STATE(5501)] = 163509, - [SMALL_STATE(5502)] = 163517, - [SMALL_STATE(5503)] = 163525, - [SMALL_STATE(5504)] = 163533, - [SMALL_STATE(5505)] = 163541, - [SMALL_STATE(5506)] = 163549, - [SMALL_STATE(5507)] = 163557, - [SMALL_STATE(5508)] = 163565, - [SMALL_STATE(5509)] = 163573, - [SMALL_STATE(5510)] = 163581, - [SMALL_STATE(5511)] = 163589, - [SMALL_STATE(5512)] = 163597, - [SMALL_STATE(5513)] = 163605, - [SMALL_STATE(5514)] = 163613, - [SMALL_STATE(5515)] = 163621, - [SMALL_STATE(5516)] = 163629, - [SMALL_STATE(5517)] = 163637, - [SMALL_STATE(5518)] = 163645, - [SMALL_STATE(5519)] = 163653, - [SMALL_STATE(5520)] = 163661, - [SMALL_STATE(5521)] = 163669, - [SMALL_STATE(5522)] = 163677, - [SMALL_STATE(5523)] = 163685, - [SMALL_STATE(5524)] = 163693, - [SMALL_STATE(5525)] = 163701, - [SMALL_STATE(5526)] = 163709, - [SMALL_STATE(5527)] = 163717, - [SMALL_STATE(5528)] = 163725, - [SMALL_STATE(5529)] = 163733, - [SMALL_STATE(5530)] = 163741, - [SMALL_STATE(5531)] = 163749, - [SMALL_STATE(5532)] = 163757, - [SMALL_STATE(5533)] = 163765, - [SMALL_STATE(5534)] = 163773, - [SMALL_STATE(5535)] = 163781, - [SMALL_STATE(5536)] = 163789, - [SMALL_STATE(5537)] = 163797, - [SMALL_STATE(5538)] = 163805, - [SMALL_STATE(5539)] = 163813, - [SMALL_STATE(5540)] = 163821, - [SMALL_STATE(5541)] = 163829, - [SMALL_STATE(5542)] = 163837, - [SMALL_STATE(5543)] = 163845, - [SMALL_STATE(5544)] = 163853, - [SMALL_STATE(5545)] = 163861, - [SMALL_STATE(5546)] = 163869, - [SMALL_STATE(5547)] = 163877, - [SMALL_STATE(5548)] = 163885, - [SMALL_STATE(5549)] = 163893, - [SMALL_STATE(5550)] = 163901, - [SMALL_STATE(5551)] = 163909, - [SMALL_STATE(5552)] = 163917, - [SMALL_STATE(5553)] = 163925, - [SMALL_STATE(5554)] = 163933, - [SMALL_STATE(5555)] = 163941, - [SMALL_STATE(5556)] = 163949, - [SMALL_STATE(5557)] = 163959, - [SMALL_STATE(5558)] = 163967, - [SMALL_STATE(5559)] = 163975, - [SMALL_STATE(5560)] = 163983, - [SMALL_STATE(5561)] = 163991, - [SMALL_STATE(5562)] = 163999, - [SMALL_STATE(5563)] = 164007, - [SMALL_STATE(5564)] = 164017, - [SMALL_STATE(5565)] = 164025, - [SMALL_STATE(5566)] = 164033, - [SMALL_STATE(5567)] = 164041, - [SMALL_STATE(5568)] = 164049, - [SMALL_STATE(5569)] = 164057, - [SMALL_STATE(5570)] = 164065, - [SMALL_STATE(5571)] = 164073, - [SMALL_STATE(5572)] = 164081, - [SMALL_STATE(5573)] = 164089, - [SMALL_STATE(5574)] = 164097, - [SMALL_STATE(5575)] = 164105, - [SMALL_STATE(5576)] = 164113, - [SMALL_STATE(5577)] = 164121, - [SMALL_STATE(5578)] = 164129, - [SMALL_STATE(5579)] = 164137, - [SMALL_STATE(5580)] = 164145, - [SMALL_STATE(5581)] = 164153, - [SMALL_STATE(5582)] = 164161, - [SMALL_STATE(5583)] = 164169, - [SMALL_STATE(5584)] = 164177, - [SMALL_STATE(5585)] = 164185, - [SMALL_STATE(5586)] = 164193, - [SMALL_STATE(5587)] = 164201, - [SMALL_STATE(5588)] = 164209, - [SMALL_STATE(5589)] = 164217, - [SMALL_STATE(5590)] = 164225, - [SMALL_STATE(5591)] = 164233, - [SMALL_STATE(5592)] = 164241, - [SMALL_STATE(5593)] = 164249, - [SMALL_STATE(5594)] = 164259, - [SMALL_STATE(5595)] = 164267, - [SMALL_STATE(5596)] = 164275, - [SMALL_STATE(5597)] = 164283, - [SMALL_STATE(5598)] = 164291, - [SMALL_STATE(5599)] = 164299, - [SMALL_STATE(5600)] = 164307, - [SMALL_STATE(5601)] = 164315, - [SMALL_STATE(5602)] = 164323, - [SMALL_STATE(5603)] = 164331, - [SMALL_STATE(5604)] = 164339, - [SMALL_STATE(5605)] = 164347, - [SMALL_STATE(5606)] = 164357, - [SMALL_STATE(5607)] = 164365, - [SMALL_STATE(5608)] = 164373, - [SMALL_STATE(5609)] = 164381, - [SMALL_STATE(5610)] = 164389, - [SMALL_STATE(5611)] = 164397, - [SMALL_STATE(5612)] = 164405, - [SMALL_STATE(5613)] = 164413, - [SMALL_STATE(5614)] = 164421, - [SMALL_STATE(5615)] = 164429, - [SMALL_STATE(5616)] = 164437, - [SMALL_STATE(5617)] = 164445, - [SMALL_STATE(5618)] = 164453, - [SMALL_STATE(5619)] = 164461, - [SMALL_STATE(5620)] = 164469, - [SMALL_STATE(5621)] = 164477, - [SMALL_STATE(5622)] = 164485, - [SMALL_STATE(5623)] = 164493, - [SMALL_STATE(5624)] = 164501, - [SMALL_STATE(5625)] = 164509, - [SMALL_STATE(5626)] = 164517, - [SMALL_STATE(5627)] = 164525, - [SMALL_STATE(5628)] = 164533, - [SMALL_STATE(5629)] = 164541, - [SMALL_STATE(5630)] = 164549, - [SMALL_STATE(5631)] = 164557, - [SMALL_STATE(5632)] = 164565, - [SMALL_STATE(5633)] = 164573, - [SMALL_STATE(5634)] = 164581, - [SMALL_STATE(5635)] = 164589, - [SMALL_STATE(5636)] = 164597, - [SMALL_STATE(5637)] = 164605, - [SMALL_STATE(5638)] = 164613, - [SMALL_STATE(5639)] = 164621, - [SMALL_STATE(5640)] = 164629, - [SMALL_STATE(5641)] = 164637, - [SMALL_STATE(5642)] = 164645, - [SMALL_STATE(5643)] = 164653, - [SMALL_STATE(5644)] = 164661, - [SMALL_STATE(5645)] = 164669, - [SMALL_STATE(5646)] = 164677, - [SMALL_STATE(5647)] = 164685, - [SMALL_STATE(5648)] = 164693, - [SMALL_STATE(5649)] = 164701, - [SMALL_STATE(5650)] = 164709, - [SMALL_STATE(5651)] = 164717, - [SMALL_STATE(5652)] = 164725, - [SMALL_STATE(5653)] = 164733, - [SMALL_STATE(5654)] = 164741, - [SMALL_STATE(5655)] = 164749, - [SMALL_STATE(5656)] = 164757, - [SMALL_STATE(5657)] = 164767, - [SMALL_STATE(5658)] = 164775, - [SMALL_STATE(5659)] = 164783, - [SMALL_STATE(5660)] = 164791, - [SMALL_STATE(5661)] = 164799, - [SMALL_STATE(5662)] = 164807, - [SMALL_STATE(5663)] = 164815, - [SMALL_STATE(5664)] = 164823, - [SMALL_STATE(5665)] = 164831, - [SMALL_STATE(5666)] = 164839, - [SMALL_STATE(5667)] = 164847, - [SMALL_STATE(5668)] = 164855, - [SMALL_STATE(5669)] = 164863, - [SMALL_STATE(5670)] = 164871, - [SMALL_STATE(5671)] = 164879, - [SMALL_STATE(5672)] = 164887, - [SMALL_STATE(5673)] = 164895, - [SMALL_STATE(5674)] = 164903, - [SMALL_STATE(5675)] = 164911, - [SMALL_STATE(5676)] = 164919, - [SMALL_STATE(5677)] = 164927, - [SMALL_STATE(5678)] = 164935, - [SMALL_STATE(5679)] = 164943, - [SMALL_STATE(5680)] = 164951, - [SMALL_STATE(5681)] = 164959, - [SMALL_STATE(5682)] = 164967, - [SMALL_STATE(5683)] = 164975, - [SMALL_STATE(5684)] = 164983, - [SMALL_STATE(5685)] = 164991, - [SMALL_STATE(5686)] = 164999, - [SMALL_STATE(5687)] = 165007, - [SMALL_STATE(5688)] = 165015, - [SMALL_STATE(5689)] = 165023, - [SMALL_STATE(5690)] = 165031, - [SMALL_STATE(5691)] = 165039, - [SMALL_STATE(5692)] = 165047, - [SMALL_STATE(5693)] = 165055, - [SMALL_STATE(5694)] = 165063, - [SMALL_STATE(5695)] = 165071, - [SMALL_STATE(5696)] = 165079, - [SMALL_STATE(5697)] = 165087, - [SMALL_STATE(5698)] = 165095, - [SMALL_STATE(5699)] = 165103, - [SMALL_STATE(5700)] = 165111, - [SMALL_STATE(5701)] = 165119, - [SMALL_STATE(5702)] = 165127, - [SMALL_STATE(5703)] = 165135, - [SMALL_STATE(5704)] = 165143, - [SMALL_STATE(5705)] = 165151, - [SMALL_STATE(5706)] = 165159, - [SMALL_STATE(5707)] = 165167, - [SMALL_STATE(5708)] = 165175, - [SMALL_STATE(5709)] = 165183, - [SMALL_STATE(5710)] = 165191, - [SMALL_STATE(5711)] = 165199, - [SMALL_STATE(5712)] = 165207, - [SMALL_STATE(5713)] = 165215, - [SMALL_STATE(5714)] = 165223, - [SMALL_STATE(5715)] = 165231, - [SMALL_STATE(5716)] = 165239, - [SMALL_STATE(5717)] = 165247, - [SMALL_STATE(5718)] = 165255, - [SMALL_STATE(5719)] = 165263, - [SMALL_STATE(5720)] = 165271, - [SMALL_STATE(5721)] = 165279, - [SMALL_STATE(5722)] = 165287, - [SMALL_STATE(5723)] = 165295, - [SMALL_STATE(5724)] = 165303, - [SMALL_STATE(5725)] = 165311, - [SMALL_STATE(5726)] = 165319, - [SMALL_STATE(5727)] = 165327, - [SMALL_STATE(5728)] = 165335, - [SMALL_STATE(5729)] = 165343, - [SMALL_STATE(5730)] = 165351, - [SMALL_STATE(5731)] = 165359, - [SMALL_STATE(5732)] = 165367, - [SMALL_STATE(5733)] = 165375, - [SMALL_STATE(5734)] = 165383, - [SMALL_STATE(5735)] = 165391, - [SMALL_STATE(5736)] = 165399, - [SMALL_STATE(5737)] = 165407, - [SMALL_STATE(5738)] = 165415, - [SMALL_STATE(5739)] = 165423, - [SMALL_STATE(5740)] = 165431, - [SMALL_STATE(5741)] = 165439, - [SMALL_STATE(5742)] = 165447, - [SMALL_STATE(5743)] = 165455, - [SMALL_STATE(5744)] = 165463, - [SMALL_STATE(5745)] = 165471, - [SMALL_STATE(5746)] = 165479, - [SMALL_STATE(5747)] = 165487, - [SMALL_STATE(5748)] = 165495, - [SMALL_STATE(5749)] = 165503, - [SMALL_STATE(5750)] = 165511, - [SMALL_STATE(5751)] = 165519, - [SMALL_STATE(5752)] = 165527, - [SMALL_STATE(5753)] = 165535, - [SMALL_STATE(5754)] = 165543, - [SMALL_STATE(5755)] = 165551, - [SMALL_STATE(5756)] = 165559, - [SMALL_STATE(5757)] = 165567, - [SMALL_STATE(5758)] = 165575, - [SMALL_STATE(5759)] = 165583, - [SMALL_STATE(5760)] = 165591, - [SMALL_STATE(5761)] = 165599, - [SMALL_STATE(5762)] = 165607, - [SMALL_STATE(5763)] = 165615, - [SMALL_STATE(5764)] = 165623, - [SMALL_STATE(5765)] = 165631, - [SMALL_STATE(5766)] = 165641, - [SMALL_STATE(5767)] = 165649, - [SMALL_STATE(5768)] = 165657, - [SMALL_STATE(5769)] = 165665, - [SMALL_STATE(5770)] = 165673, - [SMALL_STATE(5771)] = 165681, - [SMALL_STATE(5772)] = 165689, - [SMALL_STATE(5773)] = 165697, - [SMALL_STATE(5774)] = 165705, - [SMALL_STATE(5775)] = 165713, - [SMALL_STATE(5776)] = 165721, - [SMALL_STATE(5777)] = 165729, - [SMALL_STATE(5778)] = 165737, - [SMALL_STATE(5779)] = 165745, - [SMALL_STATE(5780)] = 165753, - [SMALL_STATE(5781)] = 165761, - [SMALL_STATE(5782)] = 165769, - [SMALL_STATE(5783)] = 165777, - [SMALL_STATE(5784)] = 165785, - [SMALL_STATE(5785)] = 165793, - [SMALL_STATE(5786)] = 165803, - [SMALL_STATE(5787)] = 165811, - [SMALL_STATE(5788)] = 165821, - [SMALL_STATE(5789)] = 165829, - [SMALL_STATE(5790)] = 165837, - [SMALL_STATE(5791)] = 165845, - [SMALL_STATE(5792)] = 165853, - [SMALL_STATE(5793)] = 165861, - [SMALL_STATE(5794)] = 165869, - [SMALL_STATE(5795)] = 165877, - [SMALL_STATE(5796)] = 165885, - [SMALL_STATE(5797)] = 165893, - [SMALL_STATE(5798)] = 165901, - [SMALL_STATE(5799)] = 165909, - [SMALL_STATE(5800)] = 165917, - [SMALL_STATE(5801)] = 165925, - [SMALL_STATE(5802)] = 165933, - [SMALL_STATE(5803)] = 165941, - [SMALL_STATE(5804)] = 165949, - [SMALL_STATE(5805)] = 165957, - [SMALL_STATE(5806)] = 165965, - [SMALL_STATE(5807)] = 165973, - [SMALL_STATE(5808)] = 165981, - [SMALL_STATE(5809)] = 165989, - [SMALL_STATE(5810)] = 165997, - [SMALL_STATE(5811)] = 166005, - [SMALL_STATE(5812)] = 166013, - [SMALL_STATE(5813)] = 166021, - [SMALL_STATE(5814)] = 166029, - [SMALL_STATE(5815)] = 166037, - [SMALL_STATE(5816)] = 166045, - [SMALL_STATE(5817)] = 166053, - [SMALL_STATE(5818)] = 166061, - [SMALL_STATE(5819)] = 166069, - [SMALL_STATE(5820)] = 166077, - [SMALL_STATE(5821)] = 166085, + [SMALL_STATE(2757)] = 113847, + [SMALL_STATE(2758)] = 113927, + [SMALL_STATE(2759)] = 113984, + [SMALL_STATE(2760)] = 114025, + [SMALL_STATE(2761)] = 114082, + [SMALL_STATE(2762)] = 114123, + [SMALL_STATE(2763)] = 114180, + [SMALL_STATE(2764)] = 114237, + [SMALL_STATE(2765)] = 114280, + [SMALL_STATE(2766)] = 114337, + [SMALL_STATE(2767)] = 114394, + [SMALL_STATE(2768)] = 114451, + [SMALL_STATE(2769)] = 114508, + [SMALL_STATE(2770)] = 114565, + [SMALL_STATE(2771)] = 114606, + [SMALL_STATE(2772)] = 114663, + [SMALL_STATE(2773)] = 114704, + [SMALL_STATE(2774)] = 114755, + [SMALL_STATE(2775)] = 114812, + [SMALL_STATE(2776)] = 114853, + [SMALL_STATE(2777)] = 114906, + [SMALL_STATE(2778)] = 114963, + [SMALL_STATE(2779)] = 115016, + [SMALL_STATE(2780)] = 115073, + [SMALL_STATE(2781)] = 115130, + [SMALL_STATE(2782)] = 115187, + [SMALL_STATE(2783)] = 115244, + [SMALL_STATE(2784)] = 115294, + [SMALL_STATE(2785)] = 115342, + [SMALL_STATE(2786)] = 115390, + [SMALL_STATE(2787)] = 115438, + [SMALL_STATE(2788)] = 115486, + [SMALL_STATE(2789)] = 115534, + [SMALL_STATE(2790)] = 115582, + [SMALL_STATE(2791)] = 115630, + [SMALL_STATE(2792)] = 115678, + [SMALL_STATE(2793)] = 115728, + [SMALL_STATE(2794)] = 115776, + [SMALL_STATE(2795)] = 115826, + [SMALL_STATE(2796)] = 115874, + [SMALL_STATE(2797)] = 115922, + [SMALL_STATE(2798)] = 115972, + [SMALL_STATE(2799)] = 116020, + [SMALL_STATE(2800)] = 116068, + [SMALL_STATE(2801)] = 116116, + [SMALL_STATE(2802)] = 116164, + [SMALL_STATE(2803)] = 116212, + [SMALL_STATE(2804)] = 116260, + [SMALL_STATE(2805)] = 116310, + [SMALL_STATE(2806)] = 116358, + [SMALL_STATE(2807)] = 116406, + [SMALL_STATE(2808)] = 116456, + [SMALL_STATE(2809)] = 116504, + [SMALL_STATE(2810)] = 116554, + [SMALL_STATE(2811)] = 116602, + [SMALL_STATE(2812)] = 116650, + [SMALL_STATE(2813)] = 116698, + [SMALL_STATE(2814)] = 116746, + [SMALL_STATE(2815)] = 116794, + [SMALL_STATE(2816)] = 116842, + [SMALL_STATE(2817)] = 116890, + [SMALL_STATE(2818)] = 116940, + [SMALL_STATE(2819)] = 116988, + [SMALL_STATE(2820)] = 117036, + [SMALL_STATE(2821)] = 117086, + [SMALL_STATE(2822)] = 117134, + [SMALL_STATE(2823)] = 117184, + [SMALL_STATE(2824)] = 117232, + [SMALL_STATE(2825)] = 117280, + [SMALL_STATE(2826)] = 117328, + [SMALL_STATE(2827)] = 117376, + [SMALL_STATE(2828)] = 117424, + [SMALL_STATE(2829)] = 117472, + [SMALL_STATE(2830)] = 117520, + [SMALL_STATE(2831)] = 117568, + [SMALL_STATE(2832)] = 117616, + [SMALL_STATE(2833)] = 117664, + [SMALL_STATE(2834)] = 117714, + [SMALL_STATE(2835)] = 117762, + [SMALL_STATE(2836)] = 117810, + [SMALL_STATE(2837)] = 117858, + [SMALL_STATE(2838)] = 117906, + [SMALL_STATE(2839)] = 117954, + [SMALL_STATE(2840)] = 118002, + [SMALL_STATE(2841)] = 118052, + [SMALL_STATE(2842)] = 118102, + [SMALL_STATE(2843)] = 118152, + [SMALL_STATE(2844)] = 118200, + [SMALL_STATE(2845)] = 118235, + [SMALL_STATE(2846)] = 118276, + [SMALL_STATE(2847)] = 118317, + [SMALL_STATE(2848)] = 118358, + [SMALL_STATE(2849)] = 118386, + [SMALL_STATE(2850)] = 118414, + [SMALL_STATE(2851)] = 118442, + [SMALL_STATE(2852)] = 118470, + [SMALL_STATE(2853)] = 118498, + [SMALL_STATE(2854)] = 118526, + [SMALL_STATE(2855)] = 118554, + [SMALL_STATE(2856)] = 118582, + [SMALL_STATE(2857)] = 118610, + [SMALL_STATE(2858)] = 118638, + [SMALL_STATE(2859)] = 118666, + [SMALL_STATE(2860)] = 118694, + [SMALL_STATE(2861)] = 118722, + [SMALL_STATE(2862)] = 118750, + [SMALL_STATE(2863)] = 118778, + [SMALL_STATE(2864)] = 118806, + [SMALL_STATE(2865)] = 118834, + [SMALL_STATE(2866)] = 118862, + [SMALL_STATE(2867)] = 118890, + [SMALL_STATE(2868)] = 118918, + [SMALL_STATE(2869)] = 118946, + [SMALL_STATE(2870)] = 118974, + [SMALL_STATE(2871)] = 119002, + [SMALL_STATE(2872)] = 119030, + [SMALL_STATE(2873)] = 119058, + [SMALL_STATE(2874)] = 119086, + [SMALL_STATE(2875)] = 119114, + [SMALL_STATE(2876)] = 119142, + [SMALL_STATE(2877)] = 119170, + [SMALL_STATE(2878)] = 119198, + [SMALL_STATE(2879)] = 119226, + [SMALL_STATE(2880)] = 119254, + [SMALL_STATE(2881)] = 119282, + [SMALL_STATE(2882)] = 119310, + [SMALL_STATE(2883)] = 119337, + [SMALL_STATE(2884)] = 119364, + [SMALL_STATE(2885)] = 119413, + [SMALL_STATE(2886)] = 119439, + [SMALL_STATE(2887)] = 119465, + [SMALL_STATE(2888)] = 119493, + [SMALL_STATE(2889)] = 119519, + [SMALL_STATE(2890)] = 119545, + [SMALL_STATE(2891)] = 119571, + [SMALL_STATE(2892)] = 119605, + [SMALL_STATE(2893)] = 119635, + [SMALL_STATE(2894)] = 119661, + [SMALL_STATE(2895)] = 119687, + [SMALL_STATE(2896)] = 119717, + [SMALL_STATE(2897)] = 119755, + [SMALL_STATE(2898)] = 119781, + [SMALL_STATE(2899)] = 119813, + [SMALL_STATE(2900)] = 119841, + [SMALL_STATE(2901)] = 119867, + [SMALL_STATE(2902)] = 119905, + [SMALL_STATE(2903)] = 119943, + [SMALL_STATE(2904)] = 119968, + [SMALL_STATE(2905)] = 119995, + [SMALL_STATE(2906)] = 120026, + [SMALL_STATE(2907)] = 120055, + [SMALL_STATE(2908)] = 120080, + [SMALL_STATE(2909)] = 120105, + [SMALL_STATE(2910)] = 120130, + [SMALL_STATE(2911)] = 120164, + [SMALL_STATE(2912)] = 120188, + [SMALL_STATE(2913)] = 120210, + [SMALL_STATE(2914)] = 120234, + [SMALL_STATE(2915)] = 120258, + [SMALL_STATE(2916)] = 120282, + [SMALL_STATE(2917)] = 120306, + [SMALL_STATE(2918)] = 120330, + [SMALL_STATE(2919)] = 120354, + [SMALL_STATE(2920)] = 120382, + [SMALL_STATE(2921)] = 120406, + [SMALL_STATE(2922)] = 120430, + [SMALL_STATE(2923)] = 120462, + [SMALL_STATE(2924)] = 120486, + [SMALL_STATE(2925)] = 120510, + [SMALL_STATE(2926)] = 120544, + [SMALL_STATE(2927)] = 120578, + [SMALL_STATE(2928)] = 120602, + [SMALL_STATE(2929)] = 120626, + [SMALL_STATE(2930)] = 120650, + [SMALL_STATE(2931)] = 120684, + [SMALL_STATE(2932)] = 120708, + [SMALL_STATE(2933)] = 120742, + [SMALL_STATE(2934)] = 120764, + [SMALL_STATE(2935)] = 120798, + [SMALL_STATE(2936)] = 120832, + [SMALL_STATE(2937)] = 120856, + [SMALL_STATE(2938)] = 120878, + [SMALL_STATE(2939)] = 120902, + [SMALL_STATE(2940)] = 120926, + [SMALL_STATE(2941)] = 120948, + [SMALL_STATE(2942)] = 120970, + [SMALL_STATE(2943)] = 120994, + [SMALL_STATE(2944)] = 121018, + [SMALL_STATE(2945)] = 121042, + [SMALL_STATE(2946)] = 121066, + [SMALL_STATE(2947)] = 121090, + [SMALL_STATE(2948)] = 121114, + [SMALL_STATE(2949)] = 121140, + [SMALL_STATE(2950)] = 121162, + [SMALL_STATE(2951)] = 121186, + [SMALL_STATE(2952)] = 121220, + [SMALL_STATE(2953)] = 121244, + [SMALL_STATE(2954)] = 121268, + [SMALL_STATE(2955)] = 121302, + [SMALL_STATE(2956)] = 121326, + [SMALL_STATE(2957)] = 121348, + [SMALL_STATE(2958)] = 121372, + [SMALL_STATE(2959)] = 121404, + [SMALL_STATE(2960)] = 121428, + [SMALL_STATE(2961)] = 121452, + [SMALL_STATE(2962)] = 121476, + [SMALL_STATE(2963)] = 121498, + [SMALL_STATE(2964)] = 121530, + [SMALL_STATE(2965)] = 121564, + [SMALL_STATE(2966)] = 121598, + [SMALL_STATE(2967)] = 121632, + [SMALL_STATE(2968)] = 121656, + [SMALL_STATE(2969)] = 121680, + [SMALL_STATE(2970)] = 121704, + [SMALL_STATE(2971)] = 121728, + [SMALL_STATE(2972)] = 121752, + [SMALL_STATE(2973)] = 121776, + [SMALL_STATE(2974)] = 121800, + [SMALL_STATE(2975)] = 121832, + [SMALL_STATE(2976)] = 121856, + [SMALL_STATE(2977)] = 121880, + [SMALL_STATE(2978)] = 121904, + [SMALL_STATE(2979)] = 121928, + [SMALL_STATE(2980)] = 121952, + [SMALL_STATE(2981)] = 121976, + [SMALL_STATE(2982)] = 122010, + [SMALL_STATE(2983)] = 122034, + [SMALL_STATE(2984)] = 122058, + [SMALL_STATE(2985)] = 122082, + [SMALL_STATE(2986)] = 122106, + [SMALL_STATE(2987)] = 122130, + [SMALL_STATE(2988)] = 122154, + [SMALL_STATE(2989)] = 122176, + [SMALL_STATE(2990)] = 122200, + [SMALL_STATE(2991)] = 122232, + [SMALL_STATE(2992)] = 122256, + [SMALL_STATE(2993)] = 122280, + [SMALL_STATE(2994)] = 122304, + [SMALL_STATE(2995)] = 122336, + [SMALL_STATE(2996)] = 122370, + [SMALL_STATE(2997)] = 122394, + [SMALL_STATE(2998)] = 122428, + [SMALL_STATE(2999)] = 122462, + [SMALL_STATE(3000)] = 122486, + [SMALL_STATE(3001)] = 122508, + [SMALL_STATE(3002)] = 122532, + [SMALL_STATE(3003)] = 122556, + [SMALL_STATE(3004)] = 122580, + [SMALL_STATE(3005)] = 122604, + [SMALL_STATE(3006)] = 122628, + [SMALL_STATE(3007)] = 122662, + [SMALL_STATE(3008)] = 122688, + [SMALL_STATE(3009)] = 122712, + [SMALL_STATE(3010)] = 122736, + [SMALL_STATE(3011)] = 122770, + [SMALL_STATE(3012)] = 122794, + [SMALL_STATE(3013)] = 122823, + [SMALL_STATE(3014)] = 122848, + [SMALL_STATE(3015)] = 122877, + [SMALL_STATE(3016)] = 122902, + [SMALL_STATE(3017)] = 122931, + [SMALL_STATE(3018)] = 122974, + [SMALL_STATE(3019)] = 123017, + [SMALL_STATE(3020)] = 123060, + [SMALL_STATE(3021)] = 123103, + [SMALL_STATE(3022)] = 123146, + [SMALL_STATE(3023)] = 123189, + [SMALL_STATE(3024)] = 123228, + [SMALL_STATE(3025)] = 123255, + [SMALL_STATE(3026)] = 123284, + [SMALL_STATE(3027)] = 123323, + [SMALL_STATE(3028)] = 123366, + [SMALL_STATE(3029)] = 123395, + [SMALL_STATE(3030)] = 123434, + [SMALL_STATE(3031)] = 123473, + [SMALL_STATE(3032)] = 123512, + [SMALL_STATE(3033)] = 123541, + [SMALL_STATE(3034)] = 123584, + [SMALL_STATE(3035)] = 123627, + [SMALL_STATE(3036)] = 123670, + [SMALL_STATE(3037)] = 123699, + [SMALL_STATE(3038)] = 123742, + [SMALL_STATE(3039)] = 123785, + [SMALL_STATE(3040)] = 123828, + [SMALL_STATE(3041)] = 123853, + [SMALL_STATE(3042)] = 123896, + [SMALL_STATE(3043)] = 123939, + [SMALL_STATE(3044)] = 123982, + [SMALL_STATE(3045)] = 124025, + [SMALL_STATE(3046)] = 124068, + [SMALL_STATE(3047)] = 124111, + [SMALL_STATE(3048)] = 124154, + [SMALL_STATE(3049)] = 124197, + [SMALL_STATE(3050)] = 124240, + [SMALL_STATE(3051)] = 124269, + [SMALL_STATE(3052)] = 124312, + [SMALL_STATE(3053)] = 124357, + [SMALL_STATE(3054)] = 124386, + [SMALL_STATE(3055)] = 124410, + [SMALL_STATE(3056)] = 124438, + [SMALL_STATE(3057)] = 124460, + [SMALL_STATE(3058)] = 124482, + [SMALL_STATE(3059)] = 124504, + [SMALL_STATE(3060)] = 124540, + [SMALL_STATE(3061)] = 124564, + [SMALL_STATE(3062)] = 124586, + [SMALL_STATE(3063)] = 124608, + [SMALL_STATE(3064)] = 124632, + [SMALL_STATE(3065)] = 124654, + [SMALL_STATE(3066)] = 124676, + [SMALL_STATE(3067)] = 124698, + [SMALL_STATE(3068)] = 124720, + [SMALL_STATE(3069)] = 124756, + [SMALL_STATE(3070)] = 124792, + [SMALL_STATE(3071)] = 124820, + [SMALL_STATE(3072)] = 124846, + [SMALL_STATE(3073)] = 124874, + [SMALL_STATE(3074)] = 124910, + [SMALL_STATE(3075)] = 124938, + [SMALL_STATE(3076)] = 124966, + [SMALL_STATE(3077)] = 124992, + [SMALL_STATE(3078)] = 125030, + [SMALL_STATE(3079)] = 125066, + [SMALL_STATE(3080)] = 125094, + [SMALL_STATE(3081)] = 125130, + [SMALL_STATE(3082)] = 125158, + [SMALL_STATE(3083)] = 125186, + [SMALL_STATE(3084)] = 125210, + [SMALL_STATE(3085)] = 125232, + [SMALL_STATE(3086)] = 125254, + [SMALL_STATE(3087)] = 125282, + [SMALL_STATE(3088)] = 125306, + [SMALL_STATE(3089)] = 125328, + [SMALL_STATE(3090)] = 125350, + [SMALL_STATE(3091)] = 125372, + [SMALL_STATE(3092)] = 125394, + [SMALL_STATE(3093)] = 125430, + [SMALL_STATE(3094)] = 125466, + [SMALL_STATE(3095)] = 125492, + [SMALL_STATE(3096)] = 125512, + [SMALL_STATE(3097)] = 125532, + [SMALL_STATE(3098)] = 125552, + [SMALL_STATE(3099)] = 125572, + [SMALL_STATE(3100)] = 125592, + [SMALL_STATE(3101)] = 125612, + [SMALL_STATE(3102)] = 125632, + [SMALL_STATE(3103)] = 125652, + [SMALL_STATE(3104)] = 125672, + [SMALL_STATE(3105)] = 125692, + [SMALL_STATE(3106)] = 125712, + [SMALL_STATE(3107)] = 125748, + [SMALL_STATE(3108)] = 125768, + [SMALL_STATE(3109)] = 125788, + [SMALL_STATE(3110)] = 125824, + [SMALL_STATE(3111)] = 125844, + [SMALL_STATE(3112)] = 125864, + [SMALL_STATE(3113)] = 125884, + [SMALL_STATE(3114)] = 125904, + [SMALL_STATE(3115)] = 125924, + [SMALL_STATE(3116)] = 125944, + [SMALL_STATE(3117)] = 125964, + [SMALL_STATE(3118)] = 125984, + [SMALL_STATE(3119)] = 126004, + [SMALL_STATE(3120)] = 126024, + [SMALL_STATE(3121)] = 126044, + [SMALL_STATE(3122)] = 126064, + [SMALL_STATE(3123)] = 126084, + [SMALL_STATE(3124)] = 126104, + [SMALL_STATE(3125)] = 126124, + [SMALL_STATE(3126)] = 126144, + [SMALL_STATE(3127)] = 126164, + [SMALL_STATE(3128)] = 126184, + [SMALL_STATE(3129)] = 126204, + [SMALL_STATE(3130)] = 126224, + [SMALL_STATE(3131)] = 126244, + [SMALL_STATE(3132)] = 126281, + [SMALL_STATE(3133)] = 126304, + [SMALL_STATE(3134)] = 126337, + [SMALL_STATE(3135)] = 126368, + [SMALL_STATE(3136)] = 126397, + [SMALL_STATE(3137)] = 126426, + [SMALL_STATE(3138)] = 126449, + [SMALL_STATE(3139)] = 126486, + [SMALL_STATE(3140)] = 126523, + [SMALL_STATE(3141)] = 126560, + [SMALL_STATE(3142)] = 126597, + [SMALL_STATE(3143)] = 126634, + [SMALL_STATE(3144)] = 126673, + [SMALL_STATE(3145)] = 126696, + [SMALL_STATE(3146)] = 126733, + [SMALL_STATE(3147)] = 126770, + [SMALL_STATE(3148)] = 126803, + [SMALL_STATE(3149)] = 126828, + [SMALL_STATE(3150)] = 126861, + [SMALL_STATE(3151)] = 126898, + [SMALL_STATE(3152)] = 126923, + [SMALL_STATE(3153)] = 126944, + [SMALL_STATE(3154)] = 126981, + [SMALL_STATE(3155)] = 127002, + [SMALL_STATE(3156)] = 127039, + [SMALL_STATE(3157)] = 127076, + [SMALL_STATE(3158)] = 127113, + [SMALL_STATE(3159)] = 127144, + [SMALL_STATE(3160)] = 127181, + [SMALL_STATE(3161)] = 127212, + [SMALL_STATE(3162)] = 127249, + [SMALL_STATE(3163)] = 127286, + [SMALL_STATE(3164)] = 127309, + [SMALL_STATE(3165)] = 127340, + [SMALL_STATE(3166)] = 127377, + [SMALL_STATE(3167)] = 127414, + [SMALL_STATE(3168)] = 127447, + [SMALL_STATE(3169)] = 127480, + [SMALL_STATE(3170)] = 127513, + [SMALL_STATE(3171)] = 127550, + [SMALL_STATE(3172)] = 127583, + [SMALL_STATE(3173)] = 127620, + [SMALL_STATE(3174)] = 127653, + [SMALL_STATE(3175)] = 127686, + [SMALL_STATE(3176)] = 127723, + [SMALL_STATE(3177)] = 127756, + [SMALL_STATE(3178)] = 127793, + [SMALL_STATE(3179)] = 127830, + [SMALL_STATE(3180)] = 127859, + [SMALL_STATE(3181)] = 127878, + [SMALL_STATE(3182)] = 127907, + [SMALL_STATE(3183)] = 127928, + [SMALL_STATE(3184)] = 127949, + [SMALL_STATE(3185)] = 127968, + [SMALL_STATE(3186)] = 127997, + [SMALL_STATE(3187)] = 128028, + [SMALL_STATE(3188)] = 128048, + [SMALL_STATE(3189)] = 128068, + [SMALL_STATE(3190)] = 128088, + [SMALL_STATE(3191)] = 128110, + [SMALL_STATE(3192)] = 128132, + [SMALL_STATE(3193)] = 128152, + [SMALL_STATE(3194)] = 128170, + [SMALL_STATE(3195)] = 128190, + [SMALL_STATE(3196)] = 128210, + [SMALL_STATE(3197)] = 128228, + [SMALL_STATE(3198)] = 128246, + [SMALL_STATE(3199)] = 128264, + [SMALL_STATE(3200)] = 128288, + [SMALL_STATE(3201)] = 128308, + [SMALL_STATE(3202)] = 128326, + [SMALL_STATE(3203)] = 128344, + [SMALL_STATE(3204)] = 128364, + [SMALL_STATE(3205)] = 128382, + [SMALL_STATE(3206)] = 128400, + [SMALL_STATE(3207)] = 128418, + [SMALL_STATE(3208)] = 128436, + [SMALL_STATE(3209)] = 128456, + [SMALL_STATE(3210)] = 128478, + [SMALL_STATE(3211)] = 128502, + [SMALL_STATE(3212)] = 128520, + [SMALL_STATE(3213)] = 128540, + [SMALL_STATE(3214)] = 128560, + [SMALL_STATE(3215)] = 128578, + [SMALL_STATE(3216)] = 128598, + [SMALL_STATE(3217)] = 128618, + [SMALL_STATE(3218)] = 128638, + [SMALL_STATE(3219)] = 128658, + [SMALL_STATE(3220)] = 128678, + [SMALL_STATE(3221)] = 128698, + [SMALL_STATE(3222)] = 128718, + [SMALL_STATE(3223)] = 128740, + [SMALL_STATE(3224)] = 128760, + [SMALL_STATE(3225)] = 128784, + [SMALL_STATE(3226)] = 128806, + [SMALL_STATE(3227)] = 128824, + [SMALL_STATE(3228)] = 128844, + [SMALL_STATE(3229)] = 128864, + [SMALL_STATE(3230)] = 128888, + [SMALL_STATE(3231)] = 128908, + [SMALL_STATE(3232)] = 128928, + [SMALL_STATE(3233)] = 128952, + [SMALL_STATE(3234)] = 128976, + [SMALL_STATE(3235)] = 129000, + [SMALL_STATE(3236)] = 129026, + [SMALL_STATE(3237)] = 129046, + [SMALL_STATE(3238)] = 129066, + [SMALL_STATE(3239)] = 129086, + [SMALL_STATE(3240)] = 129106, + [SMALL_STATE(3241)] = 129126, + [SMALL_STATE(3242)] = 129144, + [SMALL_STATE(3243)] = 129164, + [SMALL_STATE(3244)] = 129190, + [SMALL_STATE(3245)] = 129210, + [SMALL_STATE(3246)] = 129230, + [SMALL_STATE(3247)] = 129252, + [SMALL_STATE(3248)] = 129272, + [SMALL_STATE(3249)] = 129292, + [SMALL_STATE(3250)] = 129312, + [SMALL_STATE(3251)] = 129334, + [SMALL_STATE(3252)] = 129354, + [SMALL_STATE(3253)] = 129374, + [SMALL_STATE(3254)] = 129410, + [SMALL_STATE(3255)] = 129430, + [SMALL_STATE(3256)] = 129450, + [SMALL_STATE(3257)] = 129472, + [SMALL_STATE(3258)] = 129496, + [SMALL_STATE(3259)] = 129527, + [SMALL_STATE(3260)] = 129562, + [SMALL_STATE(3261)] = 129597, + [SMALL_STATE(3262)] = 129632, + [SMALL_STATE(3263)] = 129667, + [SMALL_STATE(3264)] = 129690, + [SMALL_STATE(3265)] = 129719, + [SMALL_STATE(3266)] = 129742, + [SMALL_STATE(3267)] = 129763, + [SMALL_STATE(3268)] = 129788, + [SMALL_STATE(3269)] = 129823, + [SMALL_STATE(3270)] = 129856, + [SMALL_STATE(3271)] = 129875, + [SMALL_STATE(3272)] = 129896, + [SMALL_STATE(3273)] = 129915, + [SMALL_STATE(3274)] = 129950, + [SMALL_STATE(3275)] = 129983, + [SMALL_STATE(3276)] = 130000, + [SMALL_STATE(3277)] = 130021, + [SMALL_STATE(3278)] = 130056, + [SMALL_STATE(3279)] = 130073, + [SMALL_STATE(3280)] = 130108, + [SMALL_STATE(3281)] = 130125, + [SMALL_STATE(3282)] = 130144, + [SMALL_STATE(3283)] = 130161, + [SMALL_STATE(3284)] = 130196, + [SMALL_STATE(3285)] = 130227, + [SMALL_STATE(3286)] = 130262, + [SMALL_STATE(3287)] = 130281, + [SMALL_STATE(3288)] = 130316, + [SMALL_STATE(3289)] = 130339, + [SMALL_STATE(3290)] = 130368, + [SMALL_STATE(3291)] = 130396, + [SMALL_STATE(3292)] = 130428, + [SMALL_STATE(3293)] = 130460, + [SMALL_STATE(3294)] = 130488, + [SMALL_STATE(3295)] = 130520, + [SMALL_STATE(3296)] = 130552, + [SMALL_STATE(3297)] = 130584, + [SMALL_STATE(3298)] = 130616, + [SMALL_STATE(3299)] = 130632, + [SMALL_STATE(3300)] = 130664, + [SMALL_STATE(3301)] = 130692, + [SMALL_STATE(3302)] = 130718, + [SMALL_STATE(3303)] = 130744, + [SMALL_STATE(3304)] = 130776, + [SMALL_STATE(3305)] = 130808, + [SMALL_STATE(3306)] = 130824, + [SMALL_STATE(3307)] = 130850, + [SMALL_STATE(3308)] = 130882, + [SMALL_STATE(3309)] = 130914, + [SMALL_STATE(3310)] = 130946, + [SMALL_STATE(3311)] = 130962, + [SMALL_STATE(3312)] = 130994, + [SMALL_STATE(3313)] = 131022, + [SMALL_STATE(3314)] = 131052, + [SMALL_STATE(3315)] = 131084, + [SMALL_STATE(3316)] = 131106, + [SMALL_STATE(3317)] = 131138, + [SMALL_STATE(3318)] = 131160, + [SMALL_STATE(3319)] = 131192, + [SMALL_STATE(3320)] = 131224, + [SMALL_STATE(3321)] = 131252, + [SMALL_STATE(3322)] = 131268, + [SMALL_STATE(3323)] = 131294, + [SMALL_STATE(3324)] = 131320, + [SMALL_STATE(3325)] = 131352, + [SMALL_STATE(3326)] = 131380, + [SMALL_STATE(3327)] = 131408, + [SMALL_STATE(3328)] = 131434, + [SMALL_STATE(3329)] = 131462, + [SMALL_STATE(3330)] = 131486, + [SMALL_STATE(3331)] = 131514, + [SMALL_STATE(3332)] = 131542, + [SMALL_STATE(3333)] = 131574, + [SMALL_STATE(3334)] = 131602, + [SMALL_STATE(3335)] = 131630, + [SMALL_STATE(3336)] = 131658, + [SMALL_STATE(3337)] = 131678, + [SMALL_STATE(3338)] = 131710, + [SMALL_STATE(3339)] = 131738, + [SMALL_STATE(3340)] = 131766, + [SMALL_STATE(3341)] = 131798, + [SMALL_STATE(3342)] = 131826, + [SMALL_STATE(3343)] = 131842, + [SMALL_STATE(3344)] = 131870, + [SMALL_STATE(3345)] = 131886, + [SMALL_STATE(3346)] = 131902, + [SMALL_STATE(3347)] = 131918, + [SMALL_STATE(3348)] = 131936, + [SMALL_STATE(3349)] = 131952, + [SMALL_STATE(3350)] = 131968, + [SMALL_STATE(3351)] = 131994, + [SMALL_STATE(3352)] = 132020, + [SMALL_STATE(3353)] = 132046, + [SMALL_STATE(3354)] = 132078, + [SMALL_STATE(3355)] = 132094, + [SMALL_STATE(3356)] = 132120, + [SMALL_STATE(3357)] = 132142, + [SMALL_STATE(3358)] = 132170, + [SMALL_STATE(3359)] = 132186, + [SMALL_STATE(3360)] = 132202, + [SMALL_STATE(3361)] = 132218, + [SMALL_STATE(3362)] = 132236, + [SMALL_STATE(3363)] = 132252, + [SMALL_STATE(3364)] = 132268, + [SMALL_STATE(3365)] = 132284, + [SMALL_STATE(3366)] = 132306, + [SMALL_STATE(3367)] = 132326, + [SMALL_STATE(3368)] = 132344, + [SMALL_STATE(3369)] = 132362, + [SMALL_STATE(3370)] = 132392, + [SMALL_STATE(3371)] = 132408, + [SMALL_STATE(3372)] = 132426, + [SMALL_STATE(3373)] = 132458, + [SMALL_STATE(3374)] = 132484, + [SMALL_STATE(3375)] = 132512, + [SMALL_STATE(3376)] = 132544, + [SMALL_STATE(3377)] = 132576, + [SMALL_STATE(3378)] = 132592, + [SMALL_STATE(3379)] = 132620, + [SMALL_STATE(3380)] = 132646, + [SMALL_STATE(3381)] = 132662, + [SMALL_STATE(3382)] = 132690, + [SMALL_STATE(3383)] = 132706, + [SMALL_STATE(3384)] = 132734, + [SMALL_STATE(3385)] = 132762, + [SMALL_STATE(3386)] = 132790, + [SMALL_STATE(3387)] = 132818, + [SMALL_STATE(3388)] = 132834, + [SMALL_STATE(3389)] = 132850, + [SMALL_STATE(3390)] = 132878, + [SMALL_STATE(3391)] = 132894, + [SMALL_STATE(3392)] = 132916, + [SMALL_STATE(3393)] = 132944, + [SMALL_STATE(3394)] = 132972, + [SMALL_STATE(3395)] = 132988, + [SMALL_STATE(3396)] = 133010, + [SMALL_STATE(3397)] = 133038, + [SMALL_STATE(3398)] = 133066, + [SMALL_STATE(3399)] = 133098, + [SMALL_STATE(3400)] = 133116, + [SMALL_STATE(3401)] = 133144, + [SMALL_STATE(3402)] = 133160, + [SMALL_STATE(3403)] = 133178, + [SMALL_STATE(3404)] = 133206, + [SMALL_STATE(3405)] = 133222, + [SMALL_STATE(3406)] = 133238, + [SMALL_STATE(3407)] = 133270, + [SMALL_STATE(3408)] = 133298, + [SMALL_STATE(3409)] = 133324, + [SMALL_STATE(3410)] = 133352, + [SMALL_STATE(3411)] = 133380, + [SMALL_STATE(3412)] = 133408, + [SMALL_STATE(3413)] = 133436, + [SMALL_STATE(3414)] = 133468, + [SMALL_STATE(3415)] = 133484, + [SMALL_STATE(3416)] = 133516, + [SMALL_STATE(3417)] = 133548, + [SMALL_STATE(3418)] = 133564, + [SMALL_STATE(3419)] = 133580, + [SMALL_STATE(3420)] = 133602, + [SMALL_STATE(3421)] = 133620, + [SMALL_STATE(3422)] = 133636, + [SMALL_STATE(3423)] = 133652, + [SMALL_STATE(3424)] = 133674, + [SMALL_STATE(3425)] = 133690, + [SMALL_STATE(3426)] = 133722, + [SMALL_STATE(3427)] = 133754, + [SMALL_STATE(3428)] = 133770, + [SMALL_STATE(3429)] = 133786, + [SMALL_STATE(3430)] = 133806, + [SMALL_STATE(3431)] = 133822, + [SMALL_STATE(3432)] = 133838, + [SMALL_STATE(3433)] = 133868, + [SMALL_STATE(3434)] = 133894, + [SMALL_STATE(3435)] = 133926, + [SMALL_STATE(3436)] = 133942, + [SMALL_STATE(3437)] = 133958, + [SMALL_STATE(3438)] = 133980, + [SMALL_STATE(3439)] = 134008, + [SMALL_STATE(3440)] = 134024, + [SMALL_STATE(3441)] = 134050, + [SMALL_STATE(3442)] = 134078, + [SMALL_STATE(3443)] = 134094, + [SMALL_STATE(3444)] = 134110, + [SMALL_STATE(3445)] = 134126, + [SMALL_STATE(3446)] = 134142, + [SMALL_STATE(3447)] = 134170, + [SMALL_STATE(3448)] = 134202, + [SMALL_STATE(3449)] = 134230, + [SMALL_STATE(3450)] = 134258, + [SMALL_STATE(3451)] = 134286, + [SMALL_STATE(3452)] = 134314, + [SMALL_STATE(3453)] = 134342, + [SMALL_STATE(3454)] = 134370, + [SMALL_STATE(3455)] = 134386, + [SMALL_STATE(3456)] = 134415, + [SMALL_STATE(3457)] = 134434, + [SMALL_STATE(3458)] = 134459, + [SMALL_STATE(3459)] = 134488, + [SMALL_STATE(3460)] = 134511, + [SMALL_STATE(3461)] = 134526, + [SMALL_STATE(3462)] = 134551, + [SMALL_STATE(3463)] = 134568, + [SMALL_STATE(3464)] = 134583, + [SMALL_STATE(3465)] = 134608, + [SMALL_STATE(3466)] = 134631, + [SMALL_STATE(3467)] = 134654, + [SMALL_STATE(3468)] = 134679, + [SMALL_STATE(3469)] = 134700, + [SMALL_STATE(3470)] = 134721, + [SMALL_STATE(3471)] = 134750, + [SMALL_STATE(3472)] = 134773, + [SMALL_STATE(3473)] = 134790, + [SMALL_STATE(3474)] = 134819, + [SMALL_STATE(3475)] = 134836, + [SMALL_STATE(3476)] = 134861, + [SMALL_STATE(3477)] = 134886, + [SMALL_STATE(3478)] = 134911, + [SMALL_STATE(3479)] = 134936, + [SMALL_STATE(3480)] = 134961, + [SMALL_STATE(3481)] = 134986, + [SMALL_STATE(3482)] = 135009, + [SMALL_STATE(3483)] = 135032, + [SMALL_STATE(3484)] = 135053, + [SMALL_STATE(3485)] = 135078, + [SMALL_STATE(3486)] = 135099, + [SMALL_STATE(3487)] = 135124, + [SMALL_STATE(3488)] = 135145, + [SMALL_STATE(3489)] = 135166, + [SMALL_STATE(3490)] = 135189, + [SMALL_STATE(3491)] = 135204, + [SMALL_STATE(3492)] = 135227, + [SMALL_STATE(3493)] = 135256, + [SMALL_STATE(3494)] = 135279, + [SMALL_STATE(3495)] = 135308, + [SMALL_STATE(3496)] = 135330, + [SMALL_STATE(3497)] = 135352, + [SMALL_STATE(3498)] = 135378, + [SMALL_STATE(3499)] = 135404, + [SMALL_STATE(3500)] = 135426, + [SMALL_STATE(3501)] = 135446, + [SMALL_STATE(3502)] = 135466, + [SMALL_STATE(3503)] = 135486, + [SMALL_STATE(3504)] = 135506, + [SMALL_STATE(3505)] = 135532, + [SMALL_STATE(3506)] = 135556, + [SMALL_STATE(3507)] = 135570, + [SMALL_STATE(3508)] = 135588, + [SMALL_STATE(3509)] = 135610, + [SMALL_STATE(3510)] = 135636, + [SMALL_STATE(3511)] = 135656, + [SMALL_STATE(3512)] = 135678, + [SMALL_STATE(3513)] = 135692, + [SMALL_STATE(3514)] = 135718, + [SMALL_STATE(3515)] = 135736, + [SMALL_STATE(3516)] = 135754, + [SMALL_STATE(3517)] = 135772, + [SMALL_STATE(3518)] = 135798, + [SMALL_STATE(3519)] = 135824, + [SMALL_STATE(3520)] = 135846, + [SMALL_STATE(3521)] = 135864, + [SMALL_STATE(3522)] = 135886, + [SMALL_STATE(3523)] = 135904, + [SMALL_STATE(3524)] = 135922, + [SMALL_STATE(3525)] = 135948, + [SMALL_STATE(3526)] = 135970, + [SMALL_STATE(3527)] = 135992, + [SMALL_STATE(3528)] = 136006, + [SMALL_STATE(3529)] = 136020, + [SMALL_STATE(3530)] = 136042, + [SMALL_STATE(3531)] = 136064, + [SMALL_STATE(3532)] = 136086, + [SMALL_STATE(3533)] = 136104, + [SMALL_STATE(3534)] = 136126, + [SMALL_STATE(3535)] = 136152, + [SMALL_STATE(3536)] = 136166, + [SMALL_STATE(3537)] = 136192, + [SMALL_STATE(3538)] = 136214, + [SMALL_STATE(3539)] = 136236, + [SMALL_STATE(3540)] = 136258, + [SMALL_STATE(3541)] = 136276, + [SMALL_STATE(3542)] = 136298, + [SMALL_STATE(3543)] = 136320, + [SMALL_STATE(3544)] = 136342, + [SMALL_STATE(3545)] = 136364, + [SMALL_STATE(3546)] = 136386, + [SMALL_STATE(3547)] = 136408, + [SMALL_STATE(3548)] = 136430, + [SMALL_STATE(3549)] = 136452, + [SMALL_STATE(3550)] = 136478, + [SMALL_STATE(3551)] = 136500, + [SMALL_STATE(3552)] = 136522, + [SMALL_STATE(3553)] = 136540, + [SMALL_STATE(3554)] = 136558, + [SMALL_STATE(3555)] = 136572, + [SMALL_STATE(3556)] = 136594, + [SMALL_STATE(3557)] = 136616, + [SMALL_STATE(3558)] = 136630, + [SMALL_STATE(3559)] = 136648, + [SMALL_STATE(3560)] = 136674, + [SMALL_STATE(3561)] = 136688, + [SMALL_STATE(3562)] = 136710, + [SMALL_STATE(3563)] = 136732, + [SMALL_STATE(3564)] = 136754, + [SMALL_STATE(3565)] = 136780, + [SMALL_STATE(3566)] = 136802, + [SMALL_STATE(3567)] = 136824, + [SMALL_STATE(3568)] = 136846, + [SMALL_STATE(3569)] = 136872, + [SMALL_STATE(3570)] = 136894, + [SMALL_STATE(3571)] = 136916, + [SMALL_STATE(3572)] = 136938, + [SMALL_STATE(3573)] = 136964, + [SMALL_STATE(3574)] = 136986, + [SMALL_STATE(3575)] = 137008, + [SMALL_STATE(3576)] = 137030, + [SMALL_STATE(3577)] = 137052, + [SMALL_STATE(3578)] = 137070, + [SMALL_STATE(3579)] = 137092, + [SMALL_STATE(3580)] = 137114, + [SMALL_STATE(3581)] = 137136, + [SMALL_STATE(3582)] = 137162, + [SMALL_STATE(3583)] = 137188, + [SMALL_STATE(3584)] = 137210, + [SMALL_STATE(3585)] = 137224, + [SMALL_STATE(3586)] = 137242, + [SMALL_STATE(3587)] = 137264, + [SMALL_STATE(3588)] = 137286, + [SMALL_STATE(3589)] = 137308, + [SMALL_STATE(3590)] = 137334, + [SMALL_STATE(3591)] = 137352, + [SMALL_STATE(3592)] = 137374, + [SMALL_STATE(3593)] = 137400, + [SMALL_STATE(3594)] = 137414, + [SMALL_STATE(3595)] = 137432, + [SMALL_STATE(3596)] = 137446, + [SMALL_STATE(3597)] = 137462, + [SMALL_STATE(3598)] = 137484, + [SMALL_STATE(3599)] = 137506, + [SMALL_STATE(3600)] = 137528, + [SMALL_STATE(3601)] = 137550, + [SMALL_STATE(3602)] = 137572, + [SMALL_STATE(3603)] = 137594, + [SMALL_STATE(3604)] = 137616, + [SMALL_STATE(3605)] = 137634, + [SMALL_STATE(3606)] = 137656, + [SMALL_STATE(3607)] = 137678, + [SMALL_STATE(3608)] = 137704, + [SMALL_STATE(3609)] = 137730, + [SMALL_STATE(3610)] = 137756, + [SMALL_STATE(3611)] = 137782, + [SMALL_STATE(3612)] = 137804, + [SMALL_STATE(3613)] = 137830, + [SMALL_STATE(3614)] = 137852, + [SMALL_STATE(3615)] = 137874, + [SMALL_STATE(3616)] = 137896, + [SMALL_STATE(3617)] = 137918, + [SMALL_STATE(3618)] = 137940, + [SMALL_STATE(3619)] = 137962, + [SMALL_STATE(3620)] = 137976, + [SMALL_STATE(3621)] = 137998, + [SMALL_STATE(3622)] = 138020, + [SMALL_STATE(3623)] = 138046, + [SMALL_STATE(3624)] = 138068, + [SMALL_STATE(3625)] = 138090, + [SMALL_STATE(3626)] = 138112, + [SMALL_STATE(3627)] = 138130, + [SMALL_STATE(3628)] = 138152, + [SMALL_STATE(3629)] = 138174, + [SMALL_STATE(3630)] = 138200, + [SMALL_STATE(3631)] = 138226, + [SMALL_STATE(3632)] = 138252, + [SMALL_STATE(3633)] = 138274, + [SMALL_STATE(3634)] = 138288, + [SMALL_STATE(3635)] = 138310, + [SMALL_STATE(3636)] = 138328, + [SMALL_STATE(3637)] = 138350, + [SMALL_STATE(3638)] = 138376, + [SMALL_STATE(3639)] = 138402, + [SMALL_STATE(3640)] = 138420, + [SMALL_STATE(3641)] = 138442, + [SMALL_STATE(3642)] = 138464, + [SMALL_STATE(3643)] = 138486, + [SMALL_STATE(3644)] = 138508, + [SMALL_STATE(3645)] = 138534, + [SMALL_STATE(3646)] = 138556, + [SMALL_STATE(3647)] = 138578, + [SMALL_STATE(3648)] = 138602, + [SMALL_STATE(3649)] = 138624, + [SMALL_STATE(3650)] = 138646, + [SMALL_STATE(3651)] = 138672, + [SMALL_STATE(3652)] = 138694, + [SMALL_STATE(3653)] = 138716, + [SMALL_STATE(3654)] = 138738, + [SMALL_STATE(3655)] = 138754, + [SMALL_STATE(3656)] = 138770, + [SMALL_STATE(3657)] = 138790, + [SMALL_STATE(3658)] = 138806, + [SMALL_STATE(3659)] = 138826, + [SMALL_STATE(3660)] = 138842, + [SMALL_STATE(3661)] = 138864, + [SMALL_STATE(3662)] = 138880, + [SMALL_STATE(3663)] = 138902, + [SMALL_STATE(3664)] = 138920, + [SMALL_STATE(3665)] = 138938, + [SMALL_STATE(3666)] = 138956, + [SMALL_STATE(3667)] = 138978, + [SMALL_STATE(3668)] = 138996, + [SMALL_STATE(3669)] = 139018, + [SMALL_STATE(3670)] = 139040, + [SMALL_STATE(3671)] = 139058, + [SMALL_STATE(3672)] = 139080, + [SMALL_STATE(3673)] = 139102, + [SMALL_STATE(3674)] = 139124, + [SMALL_STATE(3675)] = 139146, + [SMALL_STATE(3676)] = 139168, + [SMALL_STATE(3677)] = 139190, + [SMALL_STATE(3678)] = 139212, + [SMALL_STATE(3679)] = 139238, + [SMALL_STATE(3680)] = 139256, + [SMALL_STATE(3681)] = 139282, + [SMALL_STATE(3682)] = 139300, + [SMALL_STATE(3683)] = 139322, + [SMALL_STATE(3684)] = 139348, + [SMALL_STATE(3685)] = 139362, + [SMALL_STATE(3686)] = 139376, + [SMALL_STATE(3687)] = 139402, + [SMALL_STATE(3688)] = 139424, + [SMALL_STATE(3689)] = 139446, + [SMALL_STATE(3690)] = 139472, + [SMALL_STATE(3691)] = 139494, + [SMALL_STATE(3692)] = 139516, + [SMALL_STATE(3693)] = 139538, + [SMALL_STATE(3694)] = 139560, + [SMALL_STATE(3695)] = 139582, + [SMALL_STATE(3696)] = 139604, + [SMALL_STATE(3697)] = 139626, + [SMALL_STATE(3698)] = 139652, + [SMALL_STATE(3699)] = 139674, + [SMALL_STATE(3700)] = 139690, + [SMALL_STATE(3701)] = 139716, + [SMALL_STATE(3702)] = 139736, + [SMALL_STATE(3703)] = 139758, + [SMALL_STATE(3704)] = 139780, + [SMALL_STATE(3705)] = 139798, + [SMALL_STATE(3706)] = 139814, + [SMALL_STATE(3707)] = 139836, + [SMALL_STATE(3708)] = 139858, + [SMALL_STATE(3709)] = 139884, + [SMALL_STATE(3710)] = 139906, + [SMALL_STATE(3711)] = 139924, + [SMALL_STATE(3712)] = 139946, + [SMALL_STATE(3713)] = 139960, + [SMALL_STATE(3714)] = 139982, + [SMALL_STATE(3715)] = 140004, + [SMALL_STATE(3716)] = 140026, + [SMALL_STATE(3717)] = 140052, + [SMALL_STATE(3718)] = 140074, + [SMALL_STATE(3719)] = 140096, + [SMALL_STATE(3720)] = 140118, + [SMALL_STATE(3721)] = 140140, + [SMALL_STATE(3722)] = 140157, + [SMALL_STATE(3723)] = 140170, + [SMALL_STATE(3724)] = 140193, + [SMALL_STATE(3725)] = 140210, + [SMALL_STATE(3726)] = 140225, + [SMALL_STATE(3727)] = 140244, + [SMALL_STATE(3728)] = 140259, + [SMALL_STATE(3729)] = 140282, + [SMALL_STATE(3730)] = 140297, + [SMALL_STATE(3731)] = 140310, + [SMALL_STATE(3732)] = 140327, + [SMALL_STATE(3733)] = 140346, + [SMALL_STATE(3734)] = 140363, + [SMALL_STATE(3735)] = 140380, + [SMALL_STATE(3736)] = 140403, + [SMALL_STATE(3737)] = 140420, + [SMALL_STATE(3738)] = 140443, + [SMALL_STATE(3739)] = 140462, + [SMALL_STATE(3740)] = 140479, + [SMALL_STATE(3741)] = 140502, + [SMALL_STATE(3742)] = 140521, + [SMALL_STATE(3743)] = 140538, + [SMALL_STATE(3744)] = 140555, + [SMALL_STATE(3745)] = 140578, + [SMALL_STATE(3746)] = 140601, + [SMALL_STATE(3747)] = 140622, + [SMALL_STATE(3748)] = 140641, + [SMALL_STATE(3749)] = 140664, + [SMALL_STATE(3750)] = 140681, + [SMALL_STATE(3751)] = 140698, + [SMALL_STATE(3752)] = 140715, + [SMALL_STATE(3753)] = 140738, + [SMALL_STATE(3754)] = 140761, + [SMALL_STATE(3755)] = 140778, + [SMALL_STATE(3756)] = 140797, + [SMALL_STATE(3757)] = 140820, + [SMALL_STATE(3758)] = 140843, + [SMALL_STATE(3759)] = 140866, + [SMALL_STATE(3760)] = 140885, + [SMALL_STATE(3761)] = 140904, + [SMALL_STATE(3762)] = 140921, + [SMALL_STATE(3763)] = 140938, + [SMALL_STATE(3764)] = 140955, + [SMALL_STATE(3765)] = 140972, + [SMALL_STATE(3766)] = 140995, + [SMALL_STATE(3767)] = 141012, + [SMALL_STATE(3768)] = 141029, + [SMALL_STATE(3769)] = 141052, + [SMALL_STATE(3770)] = 141067, + [SMALL_STATE(3771)] = 141090, + [SMALL_STATE(3772)] = 141107, + [SMALL_STATE(3773)] = 141124, + [SMALL_STATE(3774)] = 141141, + [SMALL_STATE(3775)] = 141158, + [SMALL_STATE(3776)] = 141181, + [SMALL_STATE(3777)] = 141204, + [SMALL_STATE(3778)] = 141223, + [SMALL_STATE(3779)] = 141246, + [SMALL_STATE(3780)] = 141265, + [SMALL_STATE(3781)] = 141284, + [SMALL_STATE(3782)] = 141297, + [SMALL_STATE(3783)] = 141320, + [SMALL_STATE(3784)] = 141337, + [SMALL_STATE(3785)] = 141360, + [SMALL_STATE(3786)] = 141379, + [SMALL_STATE(3787)] = 141402, + [SMALL_STATE(3788)] = 141425, + [SMALL_STATE(3789)] = 141448, + [SMALL_STATE(3790)] = 141465, + [SMALL_STATE(3791)] = 141478, + [SMALL_STATE(3792)] = 141501, + [SMALL_STATE(3793)] = 141524, + [SMALL_STATE(3794)] = 141547, + [SMALL_STATE(3795)] = 141570, + [SMALL_STATE(3796)] = 141587, + [SMALL_STATE(3797)] = 141604, + [SMALL_STATE(3798)] = 141617, + [SMALL_STATE(3799)] = 141636, + [SMALL_STATE(3800)] = 141653, + [SMALL_STATE(3801)] = 141676, + [SMALL_STATE(3802)] = 141699, + [SMALL_STATE(3803)] = 141716, + [SMALL_STATE(3804)] = 141739, + [SMALL_STATE(3805)] = 141762, + [SMALL_STATE(3806)] = 141785, + [SMALL_STATE(3807)] = 141802, + [SMALL_STATE(3808)] = 141825, + [SMALL_STATE(3809)] = 141844, + [SMALL_STATE(3810)] = 141857, + [SMALL_STATE(3811)] = 141872, + [SMALL_STATE(3812)] = 141889, + [SMALL_STATE(3813)] = 141906, + [SMALL_STATE(3814)] = 141923, + [SMALL_STATE(3815)] = 141936, + [SMALL_STATE(3816)] = 141949, + [SMALL_STATE(3817)] = 141972, + [SMALL_STATE(3818)] = 141985, + [SMALL_STATE(3819)] = 142008, + [SMALL_STATE(3820)] = 142031, + [SMALL_STATE(3821)] = 142052, + [SMALL_STATE(3822)] = 142075, + [SMALL_STATE(3823)] = 142088, + [SMALL_STATE(3824)] = 142107, + [SMALL_STATE(3825)] = 142130, + [SMALL_STATE(3826)] = 142149, + [SMALL_STATE(3827)] = 142166, + [SMALL_STATE(3828)] = 142179, + [SMALL_STATE(3829)] = 142192, + [SMALL_STATE(3830)] = 142215, + [SMALL_STATE(3831)] = 142238, + [SMALL_STATE(3832)] = 142261, + [SMALL_STATE(3833)] = 142284, + [SMALL_STATE(3834)] = 142307, + [SMALL_STATE(3835)] = 142330, + [SMALL_STATE(3836)] = 142349, + [SMALL_STATE(3837)] = 142366, + [SMALL_STATE(3838)] = 142389, + [SMALL_STATE(3839)] = 142412, + [SMALL_STATE(3840)] = 142435, + [SMALL_STATE(3841)] = 142458, + [SMALL_STATE(3842)] = 142471, + [SMALL_STATE(3843)] = 142488, + [SMALL_STATE(3844)] = 142505, + [SMALL_STATE(3845)] = 142528, + [SMALL_STATE(3846)] = 142545, + [SMALL_STATE(3847)] = 142564, + [SMALL_STATE(3848)] = 142583, + [SMALL_STATE(3849)] = 142606, + [SMALL_STATE(3850)] = 142629, + [SMALL_STATE(3851)] = 142652, + [SMALL_STATE(3852)] = 142675, + [SMALL_STATE(3853)] = 142698, + [SMALL_STATE(3854)] = 142721, + [SMALL_STATE(3855)] = 142744, + [SMALL_STATE(3856)] = 142767, + [SMALL_STATE(3857)] = 142784, + [SMALL_STATE(3858)] = 142801, + [SMALL_STATE(3859)] = 142818, + [SMALL_STATE(3860)] = 142835, + [SMALL_STATE(3861)] = 142854, + [SMALL_STATE(3862)] = 142871, + [SMALL_STATE(3863)] = 142894, + [SMALL_STATE(3864)] = 142913, + [SMALL_STATE(3865)] = 142930, + [SMALL_STATE(3866)] = 142943, + [SMALL_STATE(3867)] = 142960, + [SMALL_STATE(3868)] = 142981, + [SMALL_STATE(3869)] = 142998, + [SMALL_STATE(3870)] = 143015, + [SMALL_STATE(3871)] = 143030, + [SMALL_STATE(3872)] = 143047, + [SMALL_STATE(3873)] = 143064, + [SMALL_STATE(3874)] = 143078, + [SMALL_STATE(3875)] = 143094, + [SMALL_STATE(3876)] = 143114, + [SMALL_STATE(3877)] = 143130, + [SMALL_STATE(3878)] = 143142, + [SMALL_STATE(3879)] = 143154, + [SMALL_STATE(3880)] = 143166, + [SMALL_STATE(3881)] = 143178, + [SMALL_STATE(3882)] = 143196, + [SMALL_STATE(3883)] = 143212, + [SMALL_STATE(3884)] = 143228, + [SMALL_STATE(3885)] = 143246, + [SMALL_STATE(3886)] = 143262, + [SMALL_STATE(3887)] = 143274, + [SMALL_STATE(3888)] = 143290, + [SMALL_STATE(3889)] = 143302, + [SMALL_STATE(3890)] = 143314, + [SMALL_STATE(3891)] = 143326, + [SMALL_STATE(3892)] = 143338, + [SMALL_STATE(3893)] = 143350, + [SMALL_STATE(3894)] = 143362, + [SMALL_STATE(3895)] = 143374, + [SMALL_STATE(3896)] = 143386, + [SMALL_STATE(3897)] = 143398, + [SMALL_STATE(3898)] = 143410, + [SMALL_STATE(3899)] = 143422, + [SMALL_STATE(3900)] = 143442, + [SMALL_STATE(3901)] = 143458, + [SMALL_STATE(3902)] = 143474, + [SMALL_STATE(3903)] = 143490, + [SMALL_STATE(3904)] = 143506, + [SMALL_STATE(3905)] = 143518, + [SMALL_STATE(3906)] = 143534, + [SMALL_STATE(3907)] = 143546, + [SMALL_STATE(3908)] = 143558, + [SMALL_STATE(3909)] = 143574, + [SMALL_STATE(3910)] = 143592, + [SMALL_STATE(3911)] = 143604, + [SMALL_STATE(3912)] = 143620, + [SMALL_STATE(3913)] = 143632, + [SMALL_STATE(3914)] = 143648, + [SMALL_STATE(3915)] = 143664, + [SMALL_STATE(3916)] = 143680, + [SMALL_STATE(3917)] = 143692, + [SMALL_STATE(3918)] = 143712, + [SMALL_STATE(3919)] = 143728, + [SMALL_STATE(3920)] = 143744, + [SMALL_STATE(3921)] = 143764, + [SMALL_STATE(3922)] = 143780, + [SMALL_STATE(3923)] = 143792, + [SMALL_STATE(3924)] = 143808, + [SMALL_STATE(3925)] = 143828, + [SMALL_STATE(3926)] = 143840, + [SMALL_STATE(3927)] = 143856, + [SMALL_STATE(3928)] = 143874, + [SMALL_STATE(3929)] = 143890, + [SMALL_STATE(3930)] = 143902, + [SMALL_STATE(3931)] = 143914, + [SMALL_STATE(3932)] = 143926, + [SMALL_STATE(3933)] = 143938, + [SMALL_STATE(3934)] = 143950, + [SMALL_STATE(3935)] = 143962, + [SMALL_STATE(3936)] = 143982, + [SMALL_STATE(3937)] = 143998, + [SMALL_STATE(3938)] = 144010, + [SMALL_STATE(3939)] = 144022, + [SMALL_STATE(3940)] = 144034, + [SMALL_STATE(3941)] = 144046, + [SMALL_STATE(3942)] = 144058, + [SMALL_STATE(3943)] = 144070, + [SMALL_STATE(3944)] = 144082, + [SMALL_STATE(3945)] = 144098, + [SMALL_STATE(3946)] = 144114, + [SMALL_STATE(3947)] = 144130, + [SMALL_STATE(3948)] = 144150, + [SMALL_STATE(3949)] = 144166, + [SMALL_STATE(3950)] = 144184, + [SMALL_STATE(3951)] = 144200, + [SMALL_STATE(3952)] = 144216, + [SMALL_STATE(3953)] = 144236, + [SMALL_STATE(3954)] = 144248, + [SMALL_STATE(3955)] = 144260, + [SMALL_STATE(3956)] = 144276, + [SMALL_STATE(3957)] = 144292, + [SMALL_STATE(3958)] = 144308, + [SMALL_STATE(3959)] = 144328, + [SMALL_STATE(3960)] = 144344, + [SMALL_STATE(3961)] = 144364, + [SMALL_STATE(3962)] = 144376, + [SMALL_STATE(3963)] = 144388, + [SMALL_STATE(3964)] = 144408, + [SMALL_STATE(3965)] = 144422, + [SMALL_STATE(3966)] = 144434, + [SMALL_STATE(3967)] = 144452, + [SMALL_STATE(3968)] = 144464, + [SMALL_STATE(3969)] = 144484, + [SMALL_STATE(3970)] = 144496, + [SMALL_STATE(3971)] = 144508, + [SMALL_STATE(3972)] = 144524, + [SMALL_STATE(3973)] = 144536, + [SMALL_STATE(3974)] = 144548, + [SMALL_STATE(3975)] = 144560, + [SMALL_STATE(3976)] = 144572, + [SMALL_STATE(3977)] = 144588, + [SMALL_STATE(3978)] = 144604, + [SMALL_STATE(3979)] = 144618, + [SMALL_STATE(3980)] = 144638, + [SMALL_STATE(3981)] = 144656, + [SMALL_STATE(3982)] = 144668, + [SMALL_STATE(3983)] = 144680, + [SMALL_STATE(3984)] = 144694, + [SMALL_STATE(3985)] = 144714, + [SMALL_STATE(3986)] = 144734, + [SMALL_STATE(3987)] = 144746, + [SMALL_STATE(3988)] = 144766, + [SMALL_STATE(3989)] = 144778, + [SMALL_STATE(3990)] = 144798, + [SMALL_STATE(3991)] = 144810, + [SMALL_STATE(3992)] = 144830, + [SMALL_STATE(3993)] = 144846, + [SMALL_STATE(3994)] = 144858, + [SMALL_STATE(3995)] = 144870, + [SMALL_STATE(3996)] = 144882, + [SMALL_STATE(3997)] = 144894, + [SMALL_STATE(3998)] = 144906, + [SMALL_STATE(3999)] = 144918, + [SMALL_STATE(4000)] = 144930, + [SMALL_STATE(4001)] = 144942, + [SMALL_STATE(4002)] = 144954, + [SMALL_STATE(4003)] = 144966, + [SMALL_STATE(4004)] = 144978, + [SMALL_STATE(4005)] = 144994, + [SMALL_STATE(4006)] = 145014, + [SMALL_STATE(4007)] = 145030, + [SMALL_STATE(4008)] = 145048, + [SMALL_STATE(4009)] = 145064, + [SMALL_STATE(4010)] = 145076, + [SMALL_STATE(4011)] = 145090, + [SMALL_STATE(4012)] = 145106, + [SMALL_STATE(4013)] = 145120, + [SMALL_STATE(4014)] = 145136, + [SMALL_STATE(4015)] = 145154, + [SMALL_STATE(4016)] = 145170, + [SMALL_STATE(4017)] = 145190, + [SMALL_STATE(4018)] = 145206, + [SMALL_STATE(4019)] = 145224, + [SMALL_STATE(4020)] = 145240, + [SMALL_STATE(4021)] = 145260, + [SMALL_STATE(4022)] = 145276, + [SMALL_STATE(4023)] = 145292, + [SMALL_STATE(4024)] = 145304, + [SMALL_STATE(4025)] = 145320, + [SMALL_STATE(4026)] = 145332, + [SMALL_STATE(4027)] = 145344, + [SMALL_STATE(4028)] = 145360, + [SMALL_STATE(4029)] = 145376, + [SMALL_STATE(4030)] = 145392, + [SMALL_STATE(4031)] = 145408, + [SMALL_STATE(4032)] = 145424, + [SMALL_STATE(4033)] = 145440, + [SMALL_STATE(4034)] = 145456, + [SMALL_STATE(4035)] = 145474, + [SMALL_STATE(4036)] = 145490, + [SMALL_STATE(4037)] = 145506, + [SMALL_STATE(4038)] = 145524, + [SMALL_STATE(4039)] = 145544, + [SMALL_STATE(4040)] = 145564, + [SMALL_STATE(4041)] = 145584, + [SMALL_STATE(4042)] = 145600, + [SMALL_STATE(4043)] = 145616, + [SMALL_STATE(4044)] = 145632, + [SMALL_STATE(4045)] = 145648, + [SMALL_STATE(4046)] = 145664, + [SMALL_STATE(4047)] = 145680, + [SMALL_STATE(4048)] = 145696, + [SMALL_STATE(4049)] = 145712, + [SMALL_STATE(4050)] = 145728, + [SMALL_STATE(4051)] = 145744, + [SMALL_STATE(4052)] = 145762, + [SMALL_STATE(4053)] = 145782, + [SMALL_STATE(4054)] = 145802, + [SMALL_STATE(4055)] = 145818, + [SMALL_STATE(4056)] = 145836, + [SMALL_STATE(4057)] = 145852, + [SMALL_STATE(4058)] = 145864, + [SMALL_STATE(4059)] = 145884, + [SMALL_STATE(4060)] = 145896, + [SMALL_STATE(4061)] = 145912, + [SMALL_STATE(4062)] = 145928, + [SMALL_STATE(4063)] = 145944, + [SMALL_STATE(4064)] = 145960, + [SMALL_STATE(4065)] = 145972, + [SMALL_STATE(4066)] = 145984, + [SMALL_STATE(4067)] = 146004, + [SMALL_STATE(4068)] = 146016, + [SMALL_STATE(4069)] = 146036, + [SMALL_STATE(4070)] = 146048, + [SMALL_STATE(4071)] = 146060, + [SMALL_STATE(4072)] = 146072, + [SMALL_STATE(4073)] = 146092, + [SMALL_STATE(4074)] = 146104, + [SMALL_STATE(4075)] = 146116, + [SMALL_STATE(4076)] = 146128, + [SMALL_STATE(4077)] = 146140, + [SMALL_STATE(4078)] = 146156, + [SMALL_STATE(4079)] = 146172, + [SMALL_STATE(4080)] = 146188, + [SMALL_STATE(4081)] = 146200, + [SMALL_STATE(4082)] = 146212, + [SMALL_STATE(4083)] = 146224, + [SMALL_STATE(4084)] = 146236, + [SMALL_STATE(4085)] = 146248, + [SMALL_STATE(4086)] = 146268, + [SMALL_STATE(4087)] = 146284, + [SMALL_STATE(4088)] = 146300, + [SMALL_STATE(4089)] = 146320, + [SMALL_STATE(4090)] = 146340, + [SMALL_STATE(4091)] = 146356, + [SMALL_STATE(4092)] = 146376, + [SMALL_STATE(4093)] = 146396, + [SMALL_STATE(4094)] = 146412, + [SMALL_STATE(4095)] = 146432, + [SMALL_STATE(4096)] = 146448, + [SMALL_STATE(4097)] = 146468, + [SMALL_STATE(4098)] = 146484, + [SMALL_STATE(4099)] = 146504, + [SMALL_STATE(4100)] = 146520, + [SMALL_STATE(4101)] = 146540, + [SMALL_STATE(4102)] = 146552, + [SMALL_STATE(4103)] = 146568, + [SMALL_STATE(4104)] = 146580, + [SMALL_STATE(4105)] = 146596, + [SMALL_STATE(4106)] = 146614, + [SMALL_STATE(4107)] = 146630, + [SMALL_STATE(4108)] = 146644, + [SMALL_STATE(4109)] = 146660, + [SMALL_STATE(4110)] = 146676, + [SMALL_STATE(4111)] = 146692, + [SMALL_STATE(4112)] = 146708, + [SMALL_STATE(4113)] = 146726, + [SMALL_STATE(4114)] = 146742, + [SMALL_STATE(4115)] = 146762, + [SMALL_STATE(4116)] = 146782, + [SMALL_STATE(4117)] = 146802, + [SMALL_STATE(4118)] = 146822, + [SMALL_STATE(4119)] = 146838, + [SMALL_STATE(4120)] = 146858, + [SMALL_STATE(4121)] = 146870, + [SMALL_STATE(4122)] = 146882, + [SMALL_STATE(4123)] = 146898, + [SMALL_STATE(4124)] = 146914, + [SMALL_STATE(4125)] = 146930, + [SMALL_STATE(4126)] = 146950, + [SMALL_STATE(4127)] = 146970, + [SMALL_STATE(4128)] = 146986, + [SMALL_STATE(4129)] = 147002, + [SMALL_STATE(4130)] = 147018, + [SMALL_STATE(4131)] = 147036, + [SMALL_STATE(4132)] = 147052, + [SMALL_STATE(4133)] = 147072, + [SMALL_STATE(4134)] = 147092, + [SMALL_STATE(4135)] = 147108, + [SMALL_STATE(4136)] = 147128, + [SMALL_STATE(4137)] = 147144, + [SMALL_STATE(4138)] = 147162, + [SMALL_STATE(4139)] = 147182, + [SMALL_STATE(4140)] = 147200, + [SMALL_STATE(4141)] = 147216, + [SMALL_STATE(4142)] = 147228, + [SMALL_STATE(4143)] = 147240, + [SMALL_STATE(4144)] = 147260, + [SMALL_STATE(4145)] = 147272, + [SMALL_STATE(4146)] = 147284, + [SMALL_STATE(4147)] = 147296, + [SMALL_STATE(4148)] = 147308, + [SMALL_STATE(4149)] = 147320, + [SMALL_STATE(4150)] = 147332, + [SMALL_STATE(4151)] = 147344, + [SMALL_STATE(4152)] = 147356, + [SMALL_STATE(4153)] = 147368, + [SMALL_STATE(4154)] = 147384, + [SMALL_STATE(4155)] = 147400, + [SMALL_STATE(4156)] = 147412, + [SMALL_STATE(4157)] = 147428, + [SMALL_STATE(4158)] = 147444, + [SMALL_STATE(4159)] = 147456, + [SMALL_STATE(4160)] = 147474, + [SMALL_STATE(4161)] = 147490, + [SMALL_STATE(4162)] = 147508, + [SMALL_STATE(4163)] = 147528, + [SMALL_STATE(4164)] = 147540, + [SMALL_STATE(4165)] = 147556, + [SMALL_STATE(4166)] = 147576, + [SMALL_STATE(4167)] = 147592, + [SMALL_STATE(4168)] = 147612, + [SMALL_STATE(4169)] = 147632, + [SMALL_STATE(4170)] = 147652, + [SMALL_STATE(4171)] = 147672, + [SMALL_STATE(4172)] = 147688, + [SMALL_STATE(4173)] = 147708, + [SMALL_STATE(4174)] = 147728, + [SMALL_STATE(4175)] = 147744, + [SMALL_STATE(4176)] = 147764, + [SMALL_STATE(4177)] = 147780, + [SMALL_STATE(4178)] = 147792, + [SMALL_STATE(4179)] = 147812, + [SMALL_STATE(4180)] = 147824, + [SMALL_STATE(4181)] = 147844, + [SMALL_STATE(4182)] = 147864, + [SMALL_STATE(4183)] = 147880, + [SMALL_STATE(4184)] = 147896, + [SMALL_STATE(4185)] = 147914, + [SMALL_STATE(4186)] = 147926, + [SMALL_STATE(4187)] = 147942, + [SMALL_STATE(4188)] = 147954, + [SMALL_STATE(4189)] = 147970, + [SMALL_STATE(4190)] = 147990, + [SMALL_STATE(4191)] = 148002, + [SMALL_STATE(4192)] = 148022, + [SMALL_STATE(4193)] = 148042, + [SMALL_STATE(4194)] = 148058, + [SMALL_STATE(4195)] = 148074, + [SMALL_STATE(4196)] = 148090, + [SMALL_STATE(4197)] = 148106, + [SMALL_STATE(4198)] = 148124, + [SMALL_STATE(4199)] = 148140, + [SMALL_STATE(4200)] = 148156, + [SMALL_STATE(4201)] = 148172, + [SMALL_STATE(4202)] = 148184, + [SMALL_STATE(4203)] = 148204, + [SMALL_STATE(4204)] = 148220, + [SMALL_STATE(4205)] = 148236, + [SMALL_STATE(4206)] = 148252, + [SMALL_STATE(4207)] = 148268, + [SMALL_STATE(4208)] = 148284, + [SMALL_STATE(4209)] = 148300, + [SMALL_STATE(4210)] = 148316, + [SMALL_STATE(4211)] = 148332, + [SMALL_STATE(4212)] = 148344, + [SMALL_STATE(4213)] = 148360, + [SMALL_STATE(4214)] = 148376, + [SMALL_STATE(4215)] = 148392, + [SMALL_STATE(4216)] = 148408, + [SMALL_STATE(4217)] = 148424, + [SMALL_STATE(4218)] = 148440, + [SMALL_STATE(4219)] = 148456, + [SMALL_STATE(4220)] = 148472, + [SMALL_STATE(4221)] = 148488, + [SMALL_STATE(4222)] = 148504, + [SMALL_STATE(4223)] = 148520, + [SMALL_STATE(4224)] = 148536, + [SMALL_STATE(4225)] = 148552, + [SMALL_STATE(4226)] = 148568, + [SMALL_STATE(4227)] = 148584, + [SMALL_STATE(4228)] = 148600, + [SMALL_STATE(4229)] = 148616, + [SMALL_STATE(4230)] = 148632, + [SMALL_STATE(4231)] = 148648, + [SMALL_STATE(4232)] = 148668, + [SMALL_STATE(4233)] = 148684, + [SMALL_STATE(4234)] = 148700, + [SMALL_STATE(4235)] = 148716, + [SMALL_STATE(4236)] = 148732, + [SMALL_STATE(4237)] = 148748, + [SMALL_STATE(4238)] = 148764, + [SMALL_STATE(4239)] = 148780, + [SMALL_STATE(4240)] = 148796, + [SMALL_STATE(4241)] = 148812, + [SMALL_STATE(4242)] = 148828, + [SMALL_STATE(4243)] = 148844, + [SMALL_STATE(4244)] = 148856, + [SMALL_STATE(4245)] = 148876, + [SMALL_STATE(4246)] = 148888, + [SMALL_STATE(4247)] = 148900, + [SMALL_STATE(4248)] = 148920, + [SMALL_STATE(4249)] = 148932, + [SMALL_STATE(4250)] = 148944, + [SMALL_STATE(4251)] = 148956, + [SMALL_STATE(4252)] = 148968, + [SMALL_STATE(4253)] = 148986, + [SMALL_STATE(4254)] = 148998, + [SMALL_STATE(4255)] = 149010, + [SMALL_STATE(4256)] = 149022, + [SMALL_STATE(4257)] = 149040, + [SMALL_STATE(4258)] = 149060, + [SMALL_STATE(4259)] = 149080, + [SMALL_STATE(4260)] = 149100, + [SMALL_STATE(4261)] = 149116, + [SMALL_STATE(4262)] = 149134, + [SMALL_STATE(4263)] = 149154, + [SMALL_STATE(4264)] = 149170, + [SMALL_STATE(4265)] = 149186, + [SMALL_STATE(4266)] = 149206, + [SMALL_STATE(4267)] = 149224, + [SMALL_STATE(4268)] = 149240, + [SMALL_STATE(4269)] = 149252, + [SMALL_STATE(4270)] = 149264, + [SMALL_STATE(4271)] = 149276, + [SMALL_STATE(4272)] = 149296, + [SMALL_STATE(4273)] = 149312, + [SMALL_STATE(4274)] = 149328, + [SMALL_STATE(4275)] = 149340, + [SMALL_STATE(4276)] = 149352, + [SMALL_STATE(4277)] = 149368, + [SMALL_STATE(4278)] = 149388, + [SMALL_STATE(4279)] = 149404, + [SMALL_STATE(4280)] = 149416, + [SMALL_STATE(4281)] = 149428, + [SMALL_STATE(4282)] = 149440, + [SMALL_STATE(4283)] = 149460, + [SMALL_STATE(4284)] = 149472, + [SMALL_STATE(4285)] = 149488, + [SMALL_STATE(4286)] = 149504, + [SMALL_STATE(4287)] = 149516, + [SMALL_STATE(4288)] = 149528, + [SMALL_STATE(4289)] = 149540, + [SMALL_STATE(4290)] = 149556, + [SMALL_STATE(4291)] = 149572, + [SMALL_STATE(4292)] = 149584, + [SMALL_STATE(4293)] = 149600, + [SMALL_STATE(4294)] = 149612, + [SMALL_STATE(4295)] = 149624, + [SMALL_STATE(4296)] = 149636, + [SMALL_STATE(4297)] = 149652, + [SMALL_STATE(4298)] = 149668, + [SMALL_STATE(4299)] = 149684, + [SMALL_STATE(4300)] = 149700, + [SMALL_STATE(4301)] = 149716, + [SMALL_STATE(4302)] = 149736, + [SMALL_STATE(4303)] = 149752, + [SMALL_STATE(4304)] = 149768, + [SMALL_STATE(4305)] = 149784, + [SMALL_STATE(4306)] = 149804, + [SMALL_STATE(4307)] = 149820, + [SMALL_STATE(4308)] = 149832, + [SMALL_STATE(4309)] = 149848, + [SMALL_STATE(4310)] = 149864, + [SMALL_STATE(4311)] = 149882, + [SMALL_STATE(4312)] = 149894, + [SMALL_STATE(4313)] = 149906, + [SMALL_STATE(4314)] = 149918, + [SMALL_STATE(4315)] = 149934, + [SMALL_STATE(4316)] = 149950, + [SMALL_STATE(4317)] = 149966, + [SMALL_STATE(4318)] = 149982, + [SMALL_STATE(4319)] = 149998, + [SMALL_STATE(4320)] = 150014, + [SMALL_STATE(4321)] = 150030, + [SMALL_STATE(4322)] = 150046, + [SMALL_STATE(4323)] = 150062, + [SMALL_STATE(4324)] = 150078, + [SMALL_STATE(4325)] = 150094, + [SMALL_STATE(4326)] = 150110, + [SMALL_STATE(4327)] = 150126, + [SMALL_STATE(4328)] = 150142, + [SMALL_STATE(4329)] = 150154, + [SMALL_STATE(4330)] = 150166, + [SMALL_STATE(4331)] = 150178, + [SMALL_STATE(4332)] = 150194, + [SMALL_STATE(4333)] = 150210, + [SMALL_STATE(4334)] = 150226, + [SMALL_STATE(4335)] = 150242, + [SMALL_STATE(4336)] = 150262, + [SMALL_STATE(4337)] = 150278, + [SMALL_STATE(4338)] = 150298, + [SMALL_STATE(4339)] = 150314, + [SMALL_STATE(4340)] = 150332, + [SMALL_STATE(4341)] = 150348, + [SMALL_STATE(4342)] = 150364, + [SMALL_STATE(4343)] = 150380, + [SMALL_STATE(4344)] = 150396, + [SMALL_STATE(4345)] = 150412, + [SMALL_STATE(4346)] = 150428, + [SMALL_STATE(4347)] = 150444, + [SMALL_STATE(4348)] = 150464, + [SMALL_STATE(4349)] = 150480, + [SMALL_STATE(4350)] = 150496, + [SMALL_STATE(4351)] = 150512, + [SMALL_STATE(4352)] = 150528, + [SMALL_STATE(4353)] = 150544, + [SMALL_STATE(4354)] = 150564, + [SMALL_STATE(4355)] = 150581, + [SMALL_STATE(4356)] = 150598, + [SMALL_STATE(4357)] = 150615, + [SMALL_STATE(4358)] = 150632, + [SMALL_STATE(4359)] = 150649, + [SMALL_STATE(4360)] = 150666, + [SMALL_STATE(4361)] = 150683, + [SMALL_STATE(4362)] = 150700, + [SMALL_STATE(4363)] = 150717, + [SMALL_STATE(4364)] = 150728, + [SMALL_STATE(4365)] = 150745, + [SMALL_STATE(4366)] = 150760, + [SMALL_STATE(4367)] = 150777, + [SMALL_STATE(4368)] = 150794, + [SMALL_STATE(4369)] = 150811, + [SMALL_STATE(4370)] = 150828, + [SMALL_STATE(4371)] = 150845, + [SMALL_STATE(4372)] = 150856, + [SMALL_STATE(4373)] = 150873, + [SMALL_STATE(4374)] = 150888, + [SMALL_STATE(4375)] = 150905, + [SMALL_STATE(4376)] = 150922, + [SMALL_STATE(4377)] = 150937, + [SMALL_STATE(4378)] = 150954, + [SMALL_STATE(4379)] = 150971, + [SMALL_STATE(4380)] = 150988, + [SMALL_STATE(4381)] = 151005, + [SMALL_STATE(4382)] = 151020, + [SMALL_STATE(4383)] = 151037, + [SMALL_STATE(4384)] = 151054, + [SMALL_STATE(4385)] = 151071, + [SMALL_STATE(4386)] = 151088, + [SMALL_STATE(4387)] = 151105, + [SMALL_STATE(4388)] = 151122, + [SMALL_STATE(4389)] = 151139, + [SMALL_STATE(4390)] = 151156, + [SMALL_STATE(4391)] = 151173, + [SMALL_STATE(4392)] = 151188, + [SMALL_STATE(4393)] = 151199, + [SMALL_STATE(4394)] = 151216, + [SMALL_STATE(4395)] = 151233, + [SMALL_STATE(4396)] = 151250, + [SMALL_STATE(4397)] = 151267, + [SMALL_STATE(4398)] = 151284, + [SMALL_STATE(4399)] = 151301, + [SMALL_STATE(4400)] = 151318, + [SMALL_STATE(4401)] = 151335, + [SMALL_STATE(4402)] = 151352, + [SMALL_STATE(4403)] = 151369, + [SMALL_STATE(4404)] = 151386, + [SMALL_STATE(4405)] = 151399, + [SMALL_STATE(4406)] = 151416, + [SMALL_STATE(4407)] = 151431, + [SMALL_STATE(4408)] = 151446, + [SMALL_STATE(4409)] = 151461, + [SMALL_STATE(4410)] = 151478, + [SMALL_STATE(4411)] = 151495, + [SMALL_STATE(4412)] = 151512, + [SMALL_STATE(4413)] = 151529, + [SMALL_STATE(4414)] = 151544, + [SMALL_STATE(4415)] = 151561, + [SMALL_STATE(4416)] = 151578, + [SMALL_STATE(4417)] = 151595, + [SMALL_STATE(4418)] = 151612, + [SMALL_STATE(4419)] = 151629, + [SMALL_STATE(4420)] = 151646, + [SMALL_STATE(4421)] = 151663, + [SMALL_STATE(4422)] = 151680, + [SMALL_STATE(4423)] = 151697, + [SMALL_STATE(4424)] = 151710, + [SMALL_STATE(4425)] = 151725, + [SMALL_STATE(4426)] = 151740, + [SMALL_STATE(4427)] = 151757, + [SMALL_STATE(4428)] = 151772, + [SMALL_STATE(4429)] = 151787, + [SMALL_STATE(4430)] = 151802, + [SMALL_STATE(4431)] = 151819, + [SMALL_STATE(4432)] = 151836, + [SMALL_STATE(4433)] = 151853, + [SMALL_STATE(4434)] = 151870, + [SMALL_STATE(4435)] = 151883, + [SMALL_STATE(4436)] = 151900, + [SMALL_STATE(4437)] = 151915, + [SMALL_STATE(4438)] = 151930, + [SMALL_STATE(4439)] = 151947, + [SMALL_STATE(4440)] = 151964, + [SMALL_STATE(4441)] = 151979, + [SMALL_STATE(4442)] = 151994, + [SMALL_STATE(4443)] = 152009, + [SMALL_STATE(4444)] = 152026, + [SMALL_STATE(4445)] = 152043, + [SMALL_STATE(4446)] = 152056, + [SMALL_STATE(4447)] = 152073, + [SMALL_STATE(4448)] = 152090, + [SMALL_STATE(4449)] = 152107, + [SMALL_STATE(4450)] = 152124, + [SMALL_STATE(4451)] = 152139, + [SMALL_STATE(4452)] = 152156, + [SMALL_STATE(4453)] = 152173, + [SMALL_STATE(4454)] = 152190, + [SMALL_STATE(4455)] = 152207, + [SMALL_STATE(4456)] = 152224, + [SMALL_STATE(4457)] = 152241, + [SMALL_STATE(4458)] = 152256, + [SMALL_STATE(4459)] = 152273, + [SMALL_STATE(4460)] = 152290, + [SMALL_STATE(4461)] = 152307, + [SMALL_STATE(4462)] = 152324, + [SMALL_STATE(4463)] = 152341, + [SMALL_STATE(4464)] = 152358, + [SMALL_STATE(4465)] = 152375, + [SMALL_STATE(4466)] = 152388, + [SMALL_STATE(4467)] = 152405, + [SMALL_STATE(4468)] = 152422, + [SMALL_STATE(4469)] = 152437, + [SMALL_STATE(4470)] = 152452, + [SMALL_STATE(4471)] = 152469, + [SMALL_STATE(4472)] = 152486, + [SMALL_STATE(4473)] = 152501, + [SMALL_STATE(4474)] = 152518, + [SMALL_STATE(4475)] = 152535, + [SMALL_STATE(4476)] = 152552, + [SMALL_STATE(4477)] = 152567, + [SMALL_STATE(4478)] = 152584, + [SMALL_STATE(4479)] = 152601, + [SMALL_STATE(4480)] = 152612, + [SMALL_STATE(4481)] = 152627, + [SMALL_STATE(4482)] = 152642, + [SMALL_STATE(4483)] = 152657, + [SMALL_STATE(4484)] = 152674, + [SMALL_STATE(4485)] = 152689, + [SMALL_STATE(4486)] = 152706, + [SMALL_STATE(4487)] = 152723, + [SMALL_STATE(4488)] = 152740, + [SMALL_STATE(4489)] = 152757, + [SMALL_STATE(4490)] = 152774, + [SMALL_STATE(4491)] = 152784, + [SMALL_STATE(4492)] = 152794, + [SMALL_STATE(4493)] = 152804, + [SMALL_STATE(4494)] = 152814, + [SMALL_STATE(4495)] = 152824, + [SMALL_STATE(4496)] = 152834, + [SMALL_STATE(4497)] = 152844, + [SMALL_STATE(4498)] = 152854, + [SMALL_STATE(4499)] = 152864, + [SMALL_STATE(4500)] = 152874, + [SMALL_STATE(4501)] = 152888, + [SMALL_STATE(4502)] = 152898, + [SMALL_STATE(4503)] = 152912, + [SMALL_STATE(4504)] = 152922, + [SMALL_STATE(4505)] = 152932, + [SMALL_STATE(4506)] = 152942, + [SMALL_STATE(4507)] = 152954, + [SMALL_STATE(4508)] = 152964, + [SMALL_STATE(4509)] = 152978, + [SMALL_STATE(4510)] = 152988, + [SMALL_STATE(4511)] = 153002, + [SMALL_STATE(4512)] = 153016, + [SMALL_STATE(4513)] = 153030, + [SMALL_STATE(4514)] = 153044, + [SMALL_STATE(4515)] = 153054, + [SMALL_STATE(4516)] = 153068, + [SMALL_STATE(4517)] = 153078, + [SMALL_STATE(4518)] = 153088, + [SMALL_STATE(4519)] = 153102, + [SMALL_STATE(4520)] = 153112, + [SMALL_STATE(4521)] = 153126, + [SMALL_STATE(4522)] = 153140, + [SMALL_STATE(4523)] = 153150, + [SMALL_STATE(4524)] = 153164, + [SMALL_STATE(4525)] = 153174, + [SMALL_STATE(4526)] = 153188, + [SMALL_STATE(4527)] = 153202, + [SMALL_STATE(4528)] = 153216, + [SMALL_STATE(4529)] = 153230, + [SMALL_STATE(4530)] = 153240, + [SMALL_STATE(4531)] = 153254, + [SMALL_STATE(4532)] = 153264, + [SMALL_STATE(4533)] = 153274, + [SMALL_STATE(4534)] = 153288, + [SMALL_STATE(4535)] = 153298, + [SMALL_STATE(4536)] = 153312, + [SMALL_STATE(4537)] = 153322, + [SMALL_STATE(4538)] = 153332, + [SMALL_STATE(4539)] = 153342, + [SMALL_STATE(4540)] = 153352, + [SMALL_STATE(4541)] = 153362, + [SMALL_STATE(4542)] = 153376, + [SMALL_STATE(4543)] = 153386, + [SMALL_STATE(4544)] = 153396, + [SMALL_STATE(4545)] = 153412, + [SMALL_STATE(4546)] = 153422, + [SMALL_STATE(4547)] = 153432, + [SMALL_STATE(4548)] = 153442, + [SMALL_STATE(4549)] = 153452, + [SMALL_STATE(4550)] = 153462, + [SMALL_STATE(4551)] = 153472, + [SMALL_STATE(4552)] = 153486, + [SMALL_STATE(4553)] = 153496, + [SMALL_STATE(4554)] = 153510, + [SMALL_STATE(4555)] = 153520, + [SMALL_STATE(4556)] = 153530, + [SMALL_STATE(4557)] = 153540, + [SMALL_STATE(4558)] = 153550, + [SMALL_STATE(4559)] = 153562, + [SMALL_STATE(4560)] = 153572, + [SMALL_STATE(4561)] = 153582, + [SMALL_STATE(4562)] = 153592, + [SMALL_STATE(4563)] = 153602, + [SMALL_STATE(4564)] = 153614, + [SMALL_STATE(4565)] = 153624, + [SMALL_STATE(4566)] = 153638, + [SMALL_STATE(4567)] = 153648, + [SMALL_STATE(4568)] = 153658, + [SMALL_STATE(4569)] = 153672, + [SMALL_STATE(4570)] = 153686, + [SMALL_STATE(4571)] = 153698, + [SMALL_STATE(4572)] = 153708, + [SMALL_STATE(4573)] = 153718, + [SMALL_STATE(4574)] = 153728, + [SMALL_STATE(4575)] = 153738, + [SMALL_STATE(4576)] = 153748, + [SMALL_STATE(4577)] = 153762, + [SMALL_STATE(4578)] = 153772, + [SMALL_STATE(4579)] = 153786, + [SMALL_STATE(4580)] = 153800, + [SMALL_STATE(4581)] = 153810, + [SMALL_STATE(4582)] = 153824, + [SMALL_STATE(4583)] = 153838, + [SMALL_STATE(4584)] = 153848, + [SMALL_STATE(4585)] = 153858, + [SMALL_STATE(4586)] = 153868, + [SMALL_STATE(4587)] = 153878, + [SMALL_STATE(4588)] = 153892, + [SMALL_STATE(4589)] = 153906, + [SMALL_STATE(4590)] = 153920, + [SMALL_STATE(4591)] = 153934, + [SMALL_STATE(4592)] = 153944, + [SMALL_STATE(4593)] = 153958, + [SMALL_STATE(4594)] = 153968, + [SMALL_STATE(4595)] = 153982, + [SMALL_STATE(4596)] = 153992, + [SMALL_STATE(4597)] = 154006, + [SMALL_STATE(4598)] = 154016, + [SMALL_STATE(4599)] = 154026, + [SMALL_STATE(4600)] = 154036, + [SMALL_STATE(4601)] = 154046, + [SMALL_STATE(4602)] = 154056, + [SMALL_STATE(4603)] = 154066, + [SMALL_STATE(4604)] = 154076, + [SMALL_STATE(4605)] = 154086, + [SMALL_STATE(4606)] = 154096, + [SMALL_STATE(4607)] = 154106, + [SMALL_STATE(4608)] = 154116, + [SMALL_STATE(4609)] = 154126, + [SMALL_STATE(4610)] = 154136, + [SMALL_STATE(4611)] = 154146, + [SMALL_STATE(4612)] = 154156, + [SMALL_STATE(4613)] = 154166, + [SMALL_STATE(4614)] = 154176, + [SMALL_STATE(4615)] = 154186, + [SMALL_STATE(4616)] = 154196, + [SMALL_STATE(4617)] = 154206, + [SMALL_STATE(4618)] = 154216, + [SMALL_STATE(4619)] = 154226, + [SMALL_STATE(4620)] = 154236, + [SMALL_STATE(4621)] = 154246, + [SMALL_STATE(4622)] = 154260, + [SMALL_STATE(4623)] = 154274, + [SMALL_STATE(4624)] = 154284, + [SMALL_STATE(4625)] = 154294, + [SMALL_STATE(4626)] = 154304, + [SMALL_STATE(4627)] = 154320, + [SMALL_STATE(4628)] = 154330, + [SMALL_STATE(4629)] = 154340, + [SMALL_STATE(4630)] = 154354, + [SMALL_STATE(4631)] = 154368, + [SMALL_STATE(4632)] = 154382, + [SMALL_STATE(4633)] = 154392, + [SMALL_STATE(4634)] = 154402, + [SMALL_STATE(4635)] = 154412, + [SMALL_STATE(4636)] = 154426, + [SMALL_STATE(4637)] = 154436, + [SMALL_STATE(4638)] = 154446, + [SMALL_STATE(4639)] = 154456, + [SMALL_STATE(4640)] = 154466, + [SMALL_STATE(4641)] = 154478, + [SMALL_STATE(4642)] = 154490, + [SMALL_STATE(4643)] = 154500, + [SMALL_STATE(4644)] = 154510, + [SMALL_STATE(4645)] = 154520, + [SMALL_STATE(4646)] = 154530, + [SMALL_STATE(4647)] = 154544, + [SMALL_STATE(4648)] = 154558, + [SMALL_STATE(4649)] = 154572, + [SMALL_STATE(4650)] = 154582, + [SMALL_STATE(4651)] = 154596, + [SMALL_STATE(4652)] = 154606, + [SMALL_STATE(4653)] = 154616, + [SMALL_STATE(4654)] = 154626, + [SMALL_STATE(4655)] = 154636, + [SMALL_STATE(4656)] = 154646, + [SMALL_STATE(4657)] = 154656, + [SMALL_STATE(4658)] = 154666, + [SMALL_STATE(4659)] = 154676, + [SMALL_STATE(4660)] = 154690, + [SMALL_STATE(4661)] = 154700, + [SMALL_STATE(4662)] = 154710, + [SMALL_STATE(4663)] = 154720, + [SMALL_STATE(4664)] = 154730, + [SMALL_STATE(4665)] = 154740, + [SMALL_STATE(4666)] = 154754, + [SMALL_STATE(4667)] = 154768, + [SMALL_STATE(4668)] = 154778, + [SMALL_STATE(4669)] = 154788, + [SMALL_STATE(4670)] = 154802, + [SMALL_STATE(4671)] = 154814, + [SMALL_STATE(4672)] = 154824, + [SMALL_STATE(4673)] = 154834, + [SMALL_STATE(4674)] = 154844, + [SMALL_STATE(4675)] = 154858, + [SMALL_STATE(4676)] = 154872, + [SMALL_STATE(4677)] = 154882, + [SMALL_STATE(4678)] = 154892, + [SMALL_STATE(4679)] = 154906, + [SMALL_STATE(4680)] = 154916, + [SMALL_STATE(4681)] = 154930, + [SMALL_STATE(4682)] = 154944, + [SMALL_STATE(4683)] = 154954, + [SMALL_STATE(4684)] = 154964, + [SMALL_STATE(4685)] = 154974, + [SMALL_STATE(4686)] = 154988, + [SMALL_STATE(4687)] = 154998, + [SMALL_STATE(4688)] = 155008, + [SMALL_STATE(4689)] = 155018, + [SMALL_STATE(4690)] = 155028, + [SMALL_STATE(4691)] = 155042, + [SMALL_STATE(4692)] = 155056, + [SMALL_STATE(4693)] = 155070, + [SMALL_STATE(4694)] = 155080, + [SMALL_STATE(4695)] = 155090, + [SMALL_STATE(4696)] = 155104, + [SMALL_STATE(4697)] = 155118, + [SMALL_STATE(4698)] = 155128, + [SMALL_STATE(4699)] = 155138, + [SMALL_STATE(4700)] = 155152, + [SMALL_STATE(4701)] = 155162, + [SMALL_STATE(4702)] = 155176, + [SMALL_STATE(4703)] = 155192, + [SMALL_STATE(4704)] = 155202, + [SMALL_STATE(4705)] = 155212, + [SMALL_STATE(4706)] = 155226, + [SMALL_STATE(4707)] = 155240, + [SMALL_STATE(4708)] = 155254, + [SMALL_STATE(4709)] = 155268, + [SMALL_STATE(4710)] = 155282, + [SMALL_STATE(4711)] = 155296, + [SMALL_STATE(4712)] = 155306, + [SMALL_STATE(4713)] = 155320, + [SMALL_STATE(4714)] = 155334, + [SMALL_STATE(4715)] = 155348, + [SMALL_STATE(4716)] = 155358, + [SMALL_STATE(4717)] = 155368, + [SMALL_STATE(4718)] = 155378, + [SMALL_STATE(4719)] = 155388, + [SMALL_STATE(4720)] = 155398, + [SMALL_STATE(4721)] = 155408, + [SMALL_STATE(4722)] = 155418, + [SMALL_STATE(4723)] = 155434, + [SMALL_STATE(4724)] = 155444, + [SMALL_STATE(4725)] = 155454, + [SMALL_STATE(4726)] = 155464, + [SMALL_STATE(4727)] = 155474, + [SMALL_STATE(4728)] = 155484, + [SMALL_STATE(4729)] = 155498, + [SMALL_STATE(4730)] = 155512, + [SMALL_STATE(4731)] = 155522, + [SMALL_STATE(4732)] = 155532, + [SMALL_STATE(4733)] = 155542, + [SMALL_STATE(4734)] = 155552, + [SMALL_STATE(4735)] = 155562, + [SMALL_STATE(4736)] = 155572, + [SMALL_STATE(4737)] = 155582, + [SMALL_STATE(4738)] = 155596, + [SMALL_STATE(4739)] = 155606, + [SMALL_STATE(4740)] = 155620, + [SMALL_STATE(4741)] = 155630, + [SMALL_STATE(4742)] = 155640, + [SMALL_STATE(4743)] = 155650, + [SMALL_STATE(4744)] = 155660, + [SMALL_STATE(4745)] = 155672, + [SMALL_STATE(4746)] = 155682, + [SMALL_STATE(4747)] = 155696, + [SMALL_STATE(4748)] = 155710, + [SMALL_STATE(4749)] = 155724, + [SMALL_STATE(4750)] = 155738, + [SMALL_STATE(4751)] = 155748, + [SMALL_STATE(4752)] = 155758, + [SMALL_STATE(4753)] = 155768, + [SMALL_STATE(4754)] = 155782, + [SMALL_STATE(4755)] = 155796, + [SMALL_STATE(4756)] = 155810, + [SMALL_STATE(4757)] = 155824, + [SMALL_STATE(4758)] = 155834, + [SMALL_STATE(4759)] = 155844, + [SMALL_STATE(4760)] = 155854, + [SMALL_STATE(4761)] = 155868, + [SMALL_STATE(4762)] = 155878, + [SMALL_STATE(4763)] = 155892, + [SMALL_STATE(4764)] = 155902, + [SMALL_STATE(4765)] = 155912, + [SMALL_STATE(4766)] = 155922, + [SMALL_STATE(4767)] = 155932, + [SMALL_STATE(4768)] = 155942, + [SMALL_STATE(4769)] = 155952, + [SMALL_STATE(4770)] = 155962, + [SMALL_STATE(4771)] = 155972, + [SMALL_STATE(4772)] = 155982, + [SMALL_STATE(4773)] = 155992, + [SMALL_STATE(4774)] = 156002, + [SMALL_STATE(4775)] = 156016, + [SMALL_STATE(4776)] = 156026, + [SMALL_STATE(4777)] = 156040, + [SMALL_STATE(4778)] = 156054, + [SMALL_STATE(4779)] = 156064, + [SMALL_STATE(4780)] = 156076, + [SMALL_STATE(4781)] = 156090, + [SMALL_STATE(4782)] = 156104, + [SMALL_STATE(4783)] = 156118, + [SMALL_STATE(4784)] = 156128, + [SMALL_STATE(4785)] = 156138, + [SMALL_STATE(4786)] = 156152, + [SMALL_STATE(4787)] = 156166, + [SMALL_STATE(4788)] = 156176, + [SMALL_STATE(4789)] = 156186, + [SMALL_STATE(4790)] = 156200, + [SMALL_STATE(4791)] = 156210, + [SMALL_STATE(4792)] = 156220, + [SMALL_STATE(4793)] = 156230, + [SMALL_STATE(4794)] = 156244, + [SMALL_STATE(4795)] = 156258, + [SMALL_STATE(4796)] = 156268, + [SMALL_STATE(4797)] = 156282, + [SMALL_STATE(4798)] = 156292, + [SMALL_STATE(4799)] = 156302, + [SMALL_STATE(4800)] = 156312, + [SMALL_STATE(4801)] = 156322, + [SMALL_STATE(4802)] = 156332, + [SMALL_STATE(4803)] = 156342, + [SMALL_STATE(4804)] = 156356, + [SMALL_STATE(4805)] = 156366, + [SMALL_STATE(4806)] = 156376, + [SMALL_STATE(4807)] = 156388, + [SMALL_STATE(4808)] = 156398, + [SMALL_STATE(4809)] = 156408, + [SMALL_STATE(4810)] = 156422, + [SMALL_STATE(4811)] = 156432, + [SMALL_STATE(4812)] = 156442, + [SMALL_STATE(4813)] = 156456, + [SMALL_STATE(4814)] = 156466, + [SMALL_STATE(4815)] = 156480, + [SMALL_STATE(4816)] = 156490, + [SMALL_STATE(4817)] = 156500, + [SMALL_STATE(4818)] = 156510, + [SMALL_STATE(4819)] = 156520, + [SMALL_STATE(4820)] = 156530, + [SMALL_STATE(4821)] = 156540, + [SMALL_STATE(4822)] = 156554, + [SMALL_STATE(4823)] = 156564, + [SMALL_STATE(4824)] = 156578, + [SMALL_STATE(4825)] = 156588, + [SMALL_STATE(4826)] = 156598, + [SMALL_STATE(4827)] = 156608, + [SMALL_STATE(4828)] = 156618, + [SMALL_STATE(4829)] = 156628, + [SMALL_STATE(4830)] = 156642, + [SMALL_STATE(4831)] = 156654, + [SMALL_STATE(4832)] = 156664, + [SMALL_STATE(4833)] = 156674, + [SMALL_STATE(4834)] = 156688, + [SMALL_STATE(4835)] = 156702, + [SMALL_STATE(4836)] = 156712, + [SMALL_STATE(4837)] = 156722, + [SMALL_STATE(4838)] = 156732, + [SMALL_STATE(4839)] = 156742, + [SMALL_STATE(4840)] = 156752, + [SMALL_STATE(4841)] = 156766, + [SMALL_STATE(4842)] = 156778, + [SMALL_STATE(4843)] = 156788, + [SMALL_STATE(4844)] = 156798, + [SMALL_STATE(4845)] = 156808, + [SMALL_STATE(4846)] = 156818, + [SMALL_STATE(4847)] = 156828, + [SMALL_STATE(4848)] = 156842, + [SMALL_STATE(4849)] = 156852, + [SMALL_STATE(4850)] = 156862, + [SMALL_STATE(4851)] = 156872, + [SMALL_STATE(4852)] = 156882, + [SMALL_STATE(4853)] = 156892, + [SMALL_STATE(4854)] = 156902, + [SMALL_STATE(4855)] = 156912, + [SMALL_STATE(4856)] = 156922, + [SMALL_STATE(4857)] = 156932, + [SMALL_STATE(4858)] = 156946, + [SMALL_STATE(4859)] = 156956, + [SMALL_STATE(4860)] = 156966, + [SMALL_STATE(4861)] = 156976, + [SMALL_STATE(4862)] = 156986, + [SMALL_STATE(4863)] = 156996, + [SMALL_STATE(4864)] = 157006, + [SMALL_STATE(4865)] = 157018, + [SMALL_STATE(4866)] = 157028, + [SMALL_STATE(4867)] = 157038, + [SMALL_STATE(4868)] = 157048, + [SMALL_STATE(4869)] = 157058, + [SMALL_STATE(4870)] = 157072, + [SMALL_STATE(4871)] = 157082, + [SMALL_STATE(4872)] = 157092, + [SMALL_STATE(4873)] = 157102, + [SMALL_STATE(4874)] = 157112, + [SMALL_STATE(4875)] = 157126, + [SMALL_STATE(4876)] = 157136, + [SMALL_STATE(4877)] = 157146, + [SMALL_STATE(4878)] = 157156, + [SMALL_STATE(4879)] = 157166, + [SMALL_STATE(4880)] = 157176, + [SMALL_STATE(4881)] = 157190, + [SMALL_STATE(4882)] = 157200, + [SMALL_STATE(4883)] = 157210, + [SMALL_STATE(4884)] = 157220, + [SMALL_STATE(4885)] = 157230, + [SMALL_STATE(4886)] = 157240, + [SMALL_STATE(4887)] = 157250, + [SMALL_STATE(4888)] = 157260, + [SMALL_STATE(4889)] = 157270, + [SMALL_STATE(4890)] = 157280, + [SMALL_STATE(4891)] = 157290, + [SMALL_STATE(4892)] = 157300, + [SMALL_STATE(4893)] = 157316, + [SMALL_STATE(4894)] = 157330, + [SMALL_STATE(4895)] = 157340, + [SMALL_STATE(4896)] = 157350, + [SMALL_STATE(4897)] = 157360, + [SMALL_STATE(4898)] = 157370, + [SMALL_STATE(4899)] = 157380, + [SMALL_STATE(4900)] = 157390, + [SMALL_STATE(4901)] = 157400, + [SMALL_STATE(4902)] = 157410, + [SMALL_STATE(4903)] = 157420, + [SMALL_STATE(4904)] = 157434, + [SMALL_STATE(4905)] = 157444, + [SMALL_STATE(4906)] = 157458, + [SMALL_STATE(4907)] = 157468, + [SMALL_STATE(4908)] = 157478, + [SMALL_STATE(4909)] = 157488, + [SMALL_STATE(4910)] = 157498, + [SMALL_STATE(4911)] = 157510, + [SMALL_STATE(4912)] = 157520, + [SMALL_STATE(4913)] = 157530, + [SMALL_STATE(4914)] = 157544, + [SMALL_STATE(4915)] = 157556, + [SMALL_STATE(4916)] = 157566, + [SMALL_STATE(4917)] = 157576, + [SMALL_STATE(4918)] = 157586, + [SMALL_STATE(4919)] = 157596, + [SMALL_STATE(4920)] = 157610, + [SMALL_STATE(4921)] = 157624, + [SMALL_STATE(4922)] = 157634, + [SMALL_STATE(4923)] = 157644, + [SMALL_STATE(4924)] = 157658, + [SMALL_STATE(4925)] = 157668, + [SMALL_STATE(4926)] = 157682, + [SMALL_STATE(4927)] = 157692, + [SMALL_STATE(4928)] = 157706, + [SMALL_STATE(4929)] = 157716, + [SMALL_STATE(4930)] = 157726, + [SMALL_STATE(4931)] = 157740, + [SMALL_STATE(4932)] = 157750, + [SMALL_STATE(4933)] = 157760, + [SMALL_STATE(4934)] = 157774, + [SMALL_STATE(4935)] = 157788, + [SMALL_STATE(4936)] = 157798, + [SMALL_STATE(4937)] = 157812, + [SMALL_STATE(4938)] = 157826, + [SMALL_STATE(4939)] = 157836, + [SMALL_STATE(4940)] = 157846, + [SMALL_STATE(4941)] = 157860, + [SMALL_STATE(4942)] = 157874, + [SMALL_STATE(4943)] = 157884, + [SMALL_STATE(4944)] = 157894, + [SMALL_STATE(4945)] = 157908, + [SMALL_STATE(4946)] = 157918, + [SMALL_STATE(4947)] = 157928, + [SMALL_STATE(4948)] = 157942, + [SMALL_STATE(4949)] = 157956, + [SMALL_STATE(4950)] = 157970, + [SMALL_STATE(4951)] = 157980, + [SMALL_STATE(4952)] = 157990, + [SMALL_STATE(4953)] = 158000, + [SMALL_STATE(4954)] = 158010, + [SMALL_STATE(4955)] = 158020, + [SMALL_STATE(4956)] = 158030, + [SMALL_STATE(4957)] = 158040, + [SMALL_STATE(4958)] = 158050, + [SMALL_STATE(4959)] = 158060, + [SMALL_STATE(4960)] = 158074, + [SMALL_STATE(4961)] = 158084, + [SMALL_STATE(4962)] = 158094, + [SMALL_STATE(4963)] = 158104, + [SMALL_STATE(4964)] = 158118, + [SMALL_STATE(4965)] = 158128, + [SMALL_STATE(4966)] = 158138, + [SMALL_STATE(4967)] = 158152, + [SMALL_STATE(4968)] = 158162, + [SMALL_STATE(4969)] = 158172, + [SMALL_STATE(4970)] = 158182, + [SMALL_STATE(4971)] = 158196, + [SMALL_STATE(4972)] = 158206, + [SMALL_STATE(4973)] = 158216, + [SMALL_STATE(4974)] = 158230, + [SMALL_STATE(4975)] = 158244, + [SMALL_STATE(4976)] = 158254, + [SMALL_STATE(4977)] = 158264, + [SMALL_STATE(4978)] = 158278, + [SMALL_STATE(4979)] = 158288, + [SMALL_STATE(4980)] = 158298, + [SMALL_STATE(4981)] = 158308, + [SMALL_STATE(4982)] = 158318, + [SMALL_STATE(4983)] = 158328, + [SMALL_STATE(4984)] = 158342, + [SMALL_STATE(4985)] = 158352, + [SMALL_STATE(4986)] = 158362, + [SMALL_STATE(4987)] = 158372, + [SMALL_STATE(4988)] = 158382, + [SMALL_STATE(4989)] = 158396, + [SMALL_STATE(4990)] = 158410, + [SMALL_STATE(4991)] = 158420, + [SMALL_STATE(4992)] = 158430, + [SMALL_STATE(4993)] = 158440, + [SMALL_STATE(4994)] = 158450, + [SMALL_STATE(4995)] = 158460, + [SMALL_STATE(4996)] = 158474, + [SMALL_STATE(4997)] = 158484, + [SMALL_STATE(4998)] = 158494, + [SMALL_STATE(4999)] = 158504, + [SMALL_STATE(5000)] = 158514, + [SMALL_STATE(5001)] = 158524, + [SMALL_STATE(5002)] = 158534, + [SMALL_STATE(5003)] = 158548, + [SMALL_STATE(5004)] = 158562, + [SMALL_STATE(5005)] = 158572, + [SMALL_STATE(5006)] = 158586, + [SMALL_STATE(5007)] = 158600, + [SMALL_STATE(5008)] = 158610, + [SMALL_STATE(5009)] = 158624, + [SMALL_STATE(5010)] = 158634, + [SMALL_STATE(5011)] = 158644, + [SMALL_STATE(5012)] = 158654, + [SMALL_STATE(5013)] = 158664, + [SMALL_STATE(5014)] = 158674, + [SMALL_STATE(5015)] = 158684, + [SMALL_STATE(5016)] = 158694, + [SMALL_STATE(5017)] = 158704, + [SMALL_STATE(5018)] = 158714, + [SMALL_STATE(5019)] = 158724, + [SMALL_STATE(5020)] = 158734, + [SMALL_STATE(5021)] = 158744, + [SMALL_STATE(5022)] = 158754, + [SMALL_STATE(5023)] = 158768, + [SMALL_STATE(5024)] = 158778, + [SMALL_STATE(5025)] = 158788, + [SMALL_STATE(5026)] = 158798, + [SMALL_STATE(5027)] = 158808, + [SMALL_STATE(5028)] = 158818, + [SMALL_STATE(5029)] = 158832, + [SMALL_STATE(5030)] = 158842, + [SMALL_STATE(5031)] = 158852, + [SMALL_STATE(5032)] = 158862, + [SMALL_STATE(5033)] = 158876, + [SMALL_STATE(5034)] = 158886, + [SMALL_STATE(5035)] = 158896, + [SMALL_STATE(5036)] = 158906, + [SMALL_STATE(5037)] = 158916, + [SMALL_STATE(5038)] = 158926, + [SMALL_STATE(5039)] = 158936, + [SMALL_STATE(5040)] = 158946, + [SMALL_STATE(5041)] = 158956, + [SMALL_STATE(5042)] = 158966, + [SMALL_STATE(5043)] = 158976, + [SMALL_STATE(5044)] = 158986, + [SMALL_STATE(5045)] = 158996, + [SMALL_STATE(5046)] = 159006, + [SMALL_STATE(5047)] = 159016, + [SMALL_STATE(5048)] = 159030, + [SMALL_STATE(5049)] = 159042, + [SMALL_STATE(5050)] = 159054, + [SMALL_STATE(5051)] = 159066, + [SMALL_STATE(5052)] = 159076, + [SMALL_STATE(5053)] = 159086, + [SMALL_STATE(5054)] = 159096, + [SMALL_STATE(5055)] = 159106, + [SMALL_STATE(5056)] = 159116, + [SMALL_STATE(5057)] = 159126, + [SMALL_STATE(5058)] = 159136, + [SMALL_STATE(5059)] = 159146, + [SMALL_STATE(5060)] = 159156, + [SMALL_STATE(5061)] = 159166, + [SMALL_STATE(5062)] = 159178, + [SMALL_STATE(5063)] = 159192, + [SMALL_STATE(5064)] = 159206, + [SMALL_STATE(5065)] = 159216, + [SMALL_STATE(5066)] = 159230, + [SMALL_STATE(5067)] = 159240, + [SMALL_STATE(5068)] = 159252, + [SMALL_STATE(5069)] = 159262, + [SMALL_STATE(5070)] = 159274, + [SMALL_STATE(5071)] = 159286, + [SMALL_STATE(5072)] = 159296, + [SMALL_STATE(5073)] = 159306, + [SMALL_STATE(5074)] = 159316, + [SMALL_STATE(5075)] = 159326, + [SMALL_STATE(5076)] = 159336, + [SMALL_STATE(5077)] = 159346, + [SMALL_STATE(5078)] = 159356, + [SMALL_STATE(5079)] = 159370, + [SMALL_STATE(5080)] = 159380, + [SMALL_STATE(5081)] = 159392, + [SMALL_STATE(5082)] = 159402, + [SMALL_STATE(5083)] = 159412, + [SMALL_STATE(5084)] = 159422, + [SMALL_STATE(5085)] = 159432, + [SMALL_STATE(5086)] = 159442, + [SMALL_STATE(5087)] = 159452, + [SMALL_STATE(5088)] = 159462, + [SMALL_STATE(5089)] = 159472, + [SMALL_STATE(5090)] = 159482, + [SMALL_STATE(5091)] = 159492, + [SMALL_STATE(5092)] = 159502, + [SMALL_STATE(5093)] = 159512, + [SMALL_STATE(5094)] = 159526, + [SMALL_STATE(5095)] = 159536, + [SMALL_STATE(5096)] = 159546, + [SMALL_STATE(5097)] = 159556, + [SMALL_STATE(5098)] = 159566, + [SMALL_STATE(5099)] = 159576, + [SMALL_STATE(5100)] = 159586, + [SMALL_STATE(5101)] = 159596, + [SMALL_STATE(5102)] = 159606, + [SMALL_STATE(5103)] = 159616, + [SMALL_STATE(5104)] = 159627, + [SMALL_STATE(5105)] = 159638, + [SMALL_STATE(5106)] = 159649, + [SMALL_STATE(5107)] = 159658, + [SMALL_STATE(5108)] = 159669, + [SMALL_STATE(5109)] = 159680, + [SMALL_STATE(5110)] = 159691, + [SMALL_STATE(5111)] = 159700, + [SMALL_STATE(5112)] = 159711, + [SMALL_STATE(5113)] = 159720, + [SMALL_STATE(5114)] = 159729, + [SMALL_STATE(5115)] = 159740, + [SMALL_STATE(5116)] = 159749, + [SMALL_STATE(5117)] = 159760, + [SMALL_STATE(5118)] = 159769, + [SMALL_STATE(5119)] = 159780, + [SMALL_STATE(5120)] = 159791, + [SMALL_STATE(5121)] = 159802, + [SMALL_STATE(5122)] = 159813, + [SMALL_STATE(5123)] = 159824, + [SMALL_STATE(5124)] = 159835, + [SMALL_STATE(5125)] = 159844, + [SMALL_STATE(5126)] = 159855, + [SMALL_STATE(5127)] = 159864, + [SMALL_STATE(5128)] = 159875, + [SMALL_STATE(5129)] = 159886, + [SMALL_STATE(5130)] = 159897, + [SMALL_STATE(5131)] = 159908, + [SMALL_STATE(5132)] = 159919, + [SMALL_STATE(5133)] = 159930, + [SMALL_STATE(5134)] = 159941, + [SMALL_STATE(5135)] = 159952, + [SMALL_STATE(5136)] = 159963, + [SMALL_STATE(5137)] = 159974, + [SMALL_STATE(5138)] = 159985, + [SMALL_STATE(5139)] = 159994, + [SMALL_STATE(5140)] = 160005, + [SMALL_STATE(5141)] = 160016, + [SMALL_STATE(5142)] = 160025, + [SMALL_STATE(5143)] = 160036, + [SMALL_STATE(5144)] = 160047, + [SMALL_STATE(5145)] = 160058, + [SMALL_STATE(5146)] = 160069, + [SMALL_STATE(5147)] = 160080, + [SMALL_STATE(5148)] = 160091, + [SMALL_STATE(5149)] = 160102, + [SMALL_STATE(5150)] = 160113, + [SMALL_STATE(5151)] = 160124, + [SMALL_STATE(5152)] = 160133, + [SMALL_STATE(5153)] = 160144, + [SMALL_STATE(5154)] = 160155, + [SMALL_STATE(5155)] = 160166, + [SMALL_STATE(5156)] = 160177, + [SMALL_STATE(5157)] = 160188, + [SMALL_STATE(5158)] = 160199, + [SMALL_STATE(5159)] = 160208, + [SMALL_STATE(5160)] = 160219, + [SMALL_STATE(5161)] = 160230, + [SMALL_STATE(5162)] = 160241, + [SMALL_STATE(5163)] = 160252, + [SMALL_STATE(5164)] = 160263, + [SMALL_STATE(5165)] = 160274, + [SMALL_STATE(5166)] = 160283, + [SMALL_STATE(5167)] = 160294, + [SMALL_STATE(5168)] = 160305, + [SMALL_STATE(5169)] = 160314, + [SMALL_STATE(5170)] = 160325, + [SMALL_STATE(5171)] = 160336, + [SMALL_STATE(5172)] = 160345, + [SMALL_STATE(5173)] = 160356, + [SMALL_STATE(5174)] = 160365, + [SMALL_STATE(5175)] = 160376, + [SMALL_STATE(5176)] = 160387, + [SMALL_STATE(5177)] = 160398, + [SMALL_STATE(5178)] = 160409, + [SMALL_STATE(5179)] = 160420, + [SMALL_STATE(5180)] = 160431, + [SMALL_STATE(5181)] = 160440, + [SMALL_STATE(5182)] = 160451, + [SMALL_STATE(5183)] = 160462, + [SMALL_STATE(5184)] = 160473, + [SMALL_STATE(5185)] = 160484, + [SMALL_STATE(5186)] = 160495, + [SMALL_STATE(5187)] = 160504, + [SMALL_STATE(5188)] = 160515, + [SMALL_STATE(5189)] = 160526, + [SMALL_STATE(5190)] = 160537, + [SMALL_STATE(5191)] = 160548, + [SMALL_STATE(5192)] = 160559, + [SMALL_STATE(5193)] = 160568, + [SMALL_STATE(5194)] = 160579, + [SMALL_STATE(5195)] = 160590, + [SMALL_STATE(5196)] = 160599, + [SMALL_STATE(5197)] = 160608, + [SMALL_STATE(5198)] = 160619, + [SMALL_STATE(5199)] = 160630, + [SMALL_STATE(5200)] = 160641, + [SMALL_STATE(5201)] = 160652, + [SMALL_STATE(5202)] = 160663, + [SMALL_STATE(5203)] = 160672, + [SMALL_STATE(5204)] = 160683, + [SMALL_STATE(5205)] = 160694, + [SMALL_STATE(5206)] = 160705, + [SMALL_STATE(5207)] = 160716, + [SMALL_STATE(5208)] = 160725, + [SMALL_STATE(5209)] = 160736, + [SMALL_STATE(5210)] = 160747, + [SMALL_STATE(5211)] = 160758, + [SMALL_STATE(5212)] = 160769, + [SMALL_STATE(5213)] = 160780, + [SMALL_STATE(5214)] = 160791, + [SMALL_STATE(5215)] = 160800, + [SMALL_STATE(5216)] = 160811, + [SMALL_STATE(5217)] = 160822, + [SMALL_STATE(5218)] = 160833, + [SMALL_STATE(5219)] = 160844, + [SMALL_STATE(5220)] = 160853, + [SMALL_STATE(5221)] = 160864, + [SMALL_STATE(5222)] = 160875, + [SMALL_STATE(5223)] = 160884, + [SMALL_STATE(5224)] = 160893, + [SMALL_STATE(5225)] = 160904, + [SMALL_STATE(5226)] = 160915, + [SMALL_STATE(5227)] = 160926, + [SMALL_STATE(5228)] = 160937, + [SMALL_STATE(5229)] = 160948, + [SMALL_STATE(5230)] = 160959, + [SMALL_STATE(5231)] = 160970, + [SMALL_STATE(5232)] = 160981, + [SMALL_STATE(5233)] = 160992, + [SMALL_STATE(5234)] = 161003, + [SMALL_STATE(5235)] = 161014, + [SMALL_STATE(5236)] = 161025, + [SMALL_STATE(5237)] = 161036, + [SMALL_STATE(5238)] = 161045, + [SMALL_STATE(5239)] = 161056, + [SMALL_STATE(5240)] = 161067, + [SMALL_STATE(5241)] = 161076, + [SMALL_STATE(5242)] = 161085, + [SMALL_STATE(5243)] = 161096, + [SMALL_STATE(5244)] = 161107, + [SMALL_STATE(5245)] = 161118, + [SMALL_STATE(5246)] = 161129, + [SMALL_STATE(5247)] = 161140, + [SMALL_STATE(5248)] = 161151, + [SMALL_STATE(5249)] = 161162, + [SMALL_STATE(5250)] = 161171, + [SMALL_STATE(5251)] = 161182, + [SMALL_STATE(5252)] = 161191, + [SMALL_STATE(5253)] = 161200, + [SMALL_STATE(5254)] = 161211, + [SMALL_STATE(5255)] = 161220, + [SMALL_STATE(5256)] = 161231, + [SMALL_STATE(5257)] = 161240, + [SMALL_STATE(5258)] = 161249, + [SMALL_STATE(5259)] = 161260, + [SMALL_STATE(5260)] = 161269, + [SMALL_STATE(5261)] = 161280, + [SMALL_STATE(5262)] = 161291, + [SMALL_STATE(5263)] = 161302, + [SMALL_STATE(5264)] = 161313, + [SMALL_STATE(5265)] = 161322, + [SMALL_STATE(5266)] = 161333, + [SMALL_STATE(5267)] = 161344, + [SMALL_STATE(5268)] = 161355, + [SMALL_STATE(5269)] = 161366, + [SMALL_STATE(5270)] = 161377, + [SMALL_STATE(5271)] = 161388, + [SMALL_STATE(5272)] = 161399, + [SMALL_STATE(5273)] = 161410, + [SMALL_STATE(5274)] = 161421, + [SMALL_STATE(5275)] = 161430, + [SMALL_STATE(5276)] = 161441, + [SMALL_STATE(5277)] = 161452, + [SMALL_STATE(5278)] = 161463, + [SMALL_STATE(5279)] = 161472, + [SMALL_STATE(5280)] = 161483, + [SMALL_STATE(5281)] = 161494, + [SMALL_STATE(5282)] = 161505, + [SMALL_STATE(5283)] = 161516, + [SMALL_STATE(5284)] = 161527, + [SMALL_STATE(5285)] = 161538, + [SMALL_STATE(5286)] = 161547, + [SMALL_STATE(5287)] = 161558, + [SMALL_STATE(5288)] = 161569, + [SMALL_STATE(5289)] = 161580, + [SMALL_STATE(5290)] = 161591, + [SMALL_STATE(5291)] = 161602, + [SMALL_STATE(5292)] = 161613, + [SMALL_STATE(5293)] = 161624, + [SMALL_STATE(5294)] = 161635, + [SMALL_STATE(5295)] = 161646, + [SMALL_STATE(5296)] = 161657, + [SMALL_STATE(5297)] = 161668, + [SMALL_STATE(5298)] = 161679, + [SMALL_STATE(5299)] = 161690, + [SMALL_STATE(5300)] = 161701, + [SMALL_STATE(5301)] = 161710, + [SMALL_STATE(5302)] = 161721, + [SMALL_STATE(5303)] = 161730, + [SMALL_STATE(5304)] = 161739, + [SMALL_STATE(5305)] = 161750, + [SMALL_STATE(5306)] = 161761, + [SMALL_STATE(5307)] = 161772, + [SMALL_STATE(5308)] = 161781, + [SMALL_STATE(5309)] = 161790, + [SMALL_STATE(5310)] = 161801, + [SMALL_STATE(5311)] = 161810, + [SMALL_STATE(5312)] = 161821, + [SMALL_STATE(5313)] = 161832, + [SMALL_STATE(5314)] = 161843, + [SMALL_STATE(5315)] = 161854, + [SMALL_STATE(5316)] = 161865, + [SMALL_STATE(5317)] = 161876, + [SMALL_STATE(5318)] = 161885, + [SMALL_STATE(5319)] = 161896, + [SMALL_STATE(5320)] = 161907, + [SMALL_STATE(5321)] = 161918, + [SMALL_STATE(5322)] = 161929, + [SMALL_STATE(5323)] = 161940, + [SMALL_STATE(5324)] = 161951, + [SMALL_STATE(5325)] = 161962, + [SMALL_STATE(5326)] = 161971, + [SMALL_STATE(5327)] = 161982, + [SMALL_STATE(5328)] = 161993, + [SMALL_STATE(5329)] = 162002, + [SMALL_STATE(5330)] = 162013, + [SMALL_STATE(5331)] = 162022, + [SMALL_STATE(5332)] = 162033, + [SMALL_STATE(5333)] = 162044, + [SMALL_STATE(5334)] = 162055, + [SMALL_STATE(5335)] = 162064, + [SMALL_STATE(5336)] = 162073, + [SMALL_STATE(5337)] = 162084, + [SMALL_STATE(5338)] = 162095, + [SMALL_STATE(5339)] = 162106, + [SMALL_STATE(5340)] = 162117, + [SMALL_STATE(5341)] = 162128, + [SMALL_STATE(5342)] = 162139, + [SMALL_STATE(5343)] = 162150, + [SMALL_STATE(5344)] = 162161, + [SMALL_STATE(5345)] = 162172, + [SMALL_STATE(5346)] = 162183, + [SMALL_STATE(5347)] = 162194, + [SMALL_STATE(5348)] = 162205, + [SMALL_STATE(5349)] = 162216, + [SMALL_STATE(5350)] = 162225, + [SMALL_STATE(5351)] = 162236, + [SMALL_STATE(5352)] = 162247, + [SMALL_STATE(5353)] = 162258, + [SMALL_STATE(5354)] = 162269, + [SMALL_STATE(5355)] = 162278, + [SMALL_STATE(5356)] = 162289, + [SMALL_STATE(5357)] = 162300, + [SMALL_STATE(5358)] = 162311, + [SMALL_STATE(5359)] = 162322, + [SMALL_STATE(5360)] = 162333, + [SMALL_STATE(5361)] = 162344, + [SMALL_STATE(5362)] = 162355, + [SMALL_STATE(5363)] = 162366, + [SMALL_STATE(5364)] = 162377, + [SMALL_STATE(5365)] = 162388, + [SMALL_STATE(5366)] = 162399, + [SMALL_STATE(5367)] = 162410, + [SMALL_STATE(5368)] = 162421, + [SMALL_STATE(5369)] = 162432, + [SMALL_STATE(5370)] = 162443, + [SMALL_STATE(5371)] = 162454, + [SMALL_STATE(5372)] = 162465, + [SMALL_STATE(5373)] = 162476, + [SMALL_STATE(5374)] = 162487, + [SMALL_STATE(5375)] = 162498, + [SMALL_STATE(5376)] = 162509, + [SMALL_STATE(5377)] = 162520, + [SMALL_STATE(5378)] = 162531, + [SMALL_STATE(5379)] = 162540, + [SMALL_STATE(5380)] = 162551, + [SMALL_STATE(5381)] = 162560, + [SMALL_STATE(5382)] = 162571, + [SMALL_STATE(5383)] = 162582, + [SMALL_STATE(5384)] = 162593, + [SMALL_STATE(5385)] = 162602, + [SMALL_STATE(5386)] = 162613, + [SMALL_STATE(5387)] = 162624, + [SMALL_STATE(5388)] = 162635, + [SMALL_STATE(5389)] = 162646, + [SMALL_STATE(5390)] = 162657, + [SMALL_STATE(5391)] = 162668, + [SMALL_STATE(5392)] = 162679, + [SMALL_STATE(5393)] = 162690, + [SMALL_STATE(5394)] = 162699, + [SMALL_STATE(5395)] = 162708, + [SMALL_STATE(5396)] = 162717, + [SMALL_STATE(5397)] = 162726, + [SMALL_STATE(5398)] = 162737, + [SMALL_STATE(5399)] = 162748, + [SMALL_STATE(5400)] = 162759, + [SMALL_STATE(5401)] = 162768, + [SMALL_STATE(5402)] = 162779, + [SMALL_STATE(5403)] = 162790, + [SMALL_STATE(5404)] = 162801, + [SMALL_STATE(5405)] = 162810, + [SMALL_STATE(5406)] = 162821, + [SMALL_STATE(5407)] = 162832, + [SMALL_STATE(5408)] = 162843, + [SMALL_STATE(5409)] = 162854, + [SMALL_STATE(5410)] = 162863, + [SMALL_STATE(5411)] = 162874, + [SMALL_STATE(5412)] = 162883, + [SMALL_STATE(5413)] = 162892, + [SMALL_STATE(5414)] = 162903, + [SMALL_STATE(5415)] = 162912, + [SMALL_STATE(5416)] = 162921, + [SMALL_STATE(5417)] = 162932, + [SMALL_STATE(5418)] = 162943, + [SMALL_STATE(5419)] = 162954, + [SMALL_STATE(5420)] = 162965, + [SMALL_STATE(5421)] = 162974, + [SMALL_STATE(5422)] = 162985, + [SMALL_STATE(5423)] = 162996, + [SMALL_STATE(5424)] = 163007, + [SMALL_STATE(5425)] = 163018, + [SMALL_STATE(5426)] = 163027, + [SMALL_STATE(5427)] = 163038, + [SMALL_STATE(5428)] = 163049, + [SMALL_STATE(5429)] = 163060, + [SMALL_STATE(5430)] = 163071, + [SMALL_STATE(5431)] = 163080, + [SMALL_STATE(5432)] = 163091, + [SMALL_STATE(5433)] = 163102, + [SMALL_STATE(5434)] = 163113, + [SMALL_STATE(5435)] = 163124, + [SMALL_STATE(5436)] = 163135, + [SMALL_STATE(5437)] = 163146, + [SMALL_STATE(5438)] = 163157, + [SMALL_STATE(5439)] = 163166, + [SMALL_STATE(5440)] = 163175, + [SMALL_STATE(5441)] = 163184, + [SMALL_STATE(5442)] = 163192, + [SMALL_STATE(5443)] = 163200, + [SMALL_STATE(5444)] = 163208, + [SMALL_STATE(5445)] = 163216, + [SMALL_STATE(5446)] = 163224, + [SMALL_STATE(5447)] = 163232, + [SMALL_STATE(5448)] = 163240, + [SMALL_STATE(5449)] = 163248, + [SMALL_STATE(5450)] = 163256, + [SMALL_STATE(5451)] = 163264, + [SMALL_STATE(5452)] = 163272, + [SMALL_STATE(5453)] = 163280, + [SMALL_STATE(5454)] = 163288, + [SMALL_STATE(5455)] = 163296, + [SMALL_STATE(5456)] = 163304, + [SMALL_STATE(5457)] = 163312, + [SMALL_STATE(5458)] = 163320, + [SMALL_STATE(5459)] = 163328, + [SMALL_STATE(5460)] = 163336, + [SMALL_STATE(5461)] = 163344, + [SMALL_STATE(5462)] = 163352, + [SMALL_STATE(5463)] = 163360, + [SMALL_STATE(5464)] = 163368, + [SMALL_STATE(5465)] = 163376, + [SMALL_STATE(5466)] = 163384, + [SMALL_STATE(5467)] = 163392, + [SMALL_STATE(5468)] = 163400, + [SMALL_STATE(5469)] = 163408, + [SMALL_STATE(5470)] = 163416, + [SMALL_STATE(5471)] = 163424, + [SMALL_STATE(5472)] = 163434, + [SMALL_STATE(5473)] = 163442, + [SMALL_STATE(5474)] = 163450, + [SMALL_STATE(5475)] = 163458, + [SMALL_STATE(5476)] = 163466, + [SMALL_STATE(5477)] = 163474, + [SMALL_STATE(5478)] = 163482, + [SMALL_STATE(5479)] = 163490, + [SMALL_STATE(5480)] = 163498, + [SMALL_STATE(5481)] = 163506, + [SMALL_STATE(5482)] = 163514, + [SMALL_STATE(5483)] = 163522, + [SMALL_STATE(5484)] = 163530, + [SMALL_STATE(5485)] = 163538, + [SMALL_STATE(5486)] = 163546, + [SMALL_STATE(5487)] = 163554, + [SMALL_STATE(5488)] = 163562, + [SMALL_STATE(5489)] = 163570, + [SMALL_STATE(5490)] = 163578, + [SMALL_STATE(5491)] = 163586, + [SMALL_STATE(5492)] = 163594, + [SMALL_STATE(5493)] = 163602, + [SMALL_STATE(5494)] = 163610, + [SMALL_STATE(5495)] = 163618, + [SMALL_STATE(5496)] = 163626, + [SMALL_STATE(5497)] = 163634, + [SMALL_STATE(5498)] = 163642, + [SMALL_STATE(5499)] = 163650, + [SMALL_STATE(5500)] = 163658, + [SMALL_STATE(5501)] = 163666, + [SMALL_STATE(5502)] = 163674, + [SMALL_STATE(5503)] = 163682, + [SMALL_STATE(5504)] = 163690, + [SMALL_STATE(5505)] = 163698, + [SMALL_STATE(5506)] = 163706, + [SMALL_STATE(5507)] = 163714, + [SMALL_STATE(5508)] = 163722, + [SMALL_STATE(5509)] = 163732, + [SMALL_STATE(5510)] = 163740, + [SMALL_STATE(5511)] = 163748, + [SMALL_STATE(5512)] = 163756, + [SMALL_STATE(5513)] = 163766, + [SMALL_STATE(5514)] = 163774, + [SMALL_STATE(5515)] = 163782, + [SMALL_STATE(5516)] = 163790, + [SMALL_STATE(5517)] = 163798, + [SMALL_STATE(5518)] = 163806, + [SMALL_STATE(5519)] = 163814, + [SMALL_STATE(5520)] = 163822, + [SMALL_STATE(5521)] = 163830, + [SMALL_STATE(5522)] = 163838, + [SMALL_STATE(5523)] = 163846, + [SMALL_STATE(5524)] = 163854, + [SMALL_STATE(5525)] = 163862, + [SMALL_STATE(5526)] = 163870, + [SMALL_STATE(5527)] = 163878, + [SMALL_STATE(5528)] = 163886, + [SMALL_STATE(5529)] = 163894, + [SMALL_STATE(5530)] = 163902, + [SMALL_STATE(5531)] = 163910, + [SMALL_STATE(5532)] = 163918, + [SMALL_STATE(5533)] = 163926, + [SMALL_STATE(5534)] = 163934, + [SMALL_STATE(5535)] = 163942, + [SMALL_STATE(5536)] = 163950, + [SMALL_STATE(5537)] = 163958, + [SMALL_STATE(5538)] = 163966, + [SMALL_STATE(5539)] = 163974, + [SMALL_STATE(5540)] = 163982, + [SMALL_STATE(5541)] = 163990, + [SMALL_STATE(5542)] = 163998, + [SMALL_STATE(5543)] = 164006, + [SMALL_STATE(5544)] = 164014, + [SMALL_STATE(5545)] = 164022, + [SMALL_STATE(5546)] = 164030, + [SMALL_STATE(5547)] = 164038, + [SMALL_STATE(5548)] = 164046, + [SMALL_STATE(5549)] = 164054, + [SMALL_STATE(5550)] = 164062, + [SMALL_STATE(5551)] = 164070, + [SMALL_STATE(5552)] = 164078, + [SMALL_STATE(5553)] = 164086, + [SMALL_STATE(5554)] = 164094, + [SMALL_STATE(5555)] = 164102, + [SMALL_STATE(5556)] = 164110, + [SMALL_STATE(5557)] = 164118, + [SMALL_STATE(5558)] = 164126, + [SMALL_STATE(5559)] = 164134, + [SMALL_STATE(5560)] = 164142, + [SMALL_STATE(5561)] = 164150, + [SMALL_STATE(5562)] = 164158, + [SMALL_STATE(5563)] = 164166, + [SMALL_STATE(5564)] = 164174, + [SMALL_STATE(5565)] = 164182, + [SMALL_STATE(5566)] = 164190, + [SMALL_STATE(5567)] = 164198, + [SMALL_STATE(5568)] = 164206, + [SMALL_STATE(5569)] = 164214, + [SMALL_STATE(5570)] = 164222, + [SMALL_STATE(5571)] = 164230, + [SMALL_STATE(5572)] = 164238, + [SMALL_STATE(5573)] = 164246, + [SMALL_STATE(5574)] = 164254, + [SMALL_STATE(5575)] = 164262, + [SMALL_STATE(5576)] = 164270, + [SMALL_STATE(5577)] = 164278, + [SMALL_STATE(5578)] = 164286, + [SMALL_STATE(5579)] = 164294, + [SMALL_STATE(5580)] = 164302, + [SMALL_STATE(5581)] = 164310, + [SMALL_STATE(5582)] = 164320, + [SMALL_STATE(5583)] = 164328, + [SMALL_STATE(5584)] = 164336, + [SMALL_STATE(5585)] = 164344, + [SMALL_STATE(5586)] = 164352, + [SMALL_STATE(5587)] = 164360, + [SMALL_STATE(5588)] = 164368, + [SMALL_STATE(5589)] = 164376, + [SMALL_STATE(5590)] = 164384, + [SMALL_STATE(5591)] = 164392, + [SMALL_STATE(5592)] = 164400, + [SMALL_STATE(5593)] = 164408, + [SMALL_STATE(5594)] = 164416, + [SMALL_STATE(5595)] = 164424, + [SMALL_STATE(5596)] = 164432, + [SMALL_STATE(5597)] = 164440, + [SMALL_STATE(5598)] = 164448, + [SMALL_STATE(5599)] = 164456, + [SMALL_STATE(5600)] = 164464, + [SMALL_STATE(5601)] = 164472, + [SMALL_STATE(5602)] = 164480, + [SMALL_STATE(5603)] = 164488, + [SMALL_STATE(5604)] = 164496, + [SMALL_STATE(5605)] = 164504, + [SMALL_STATE(5606)] = 164512, + [SMALL_STATE(5607)] = 164520, + [SMALL_STATE(5608)] = 164528, + [SMALL_STATE(5609)] = 164536, + [SMALL_STATE(5610)] = 164544, + [SMALL_STATE(5611)] = 164552, + [SMALL_STATE(5612)] = 164560, + [SMALL_STATE(5613)] = 164568, + [SMALL_STATE(5614)] = 164576, + [SMALL_STATE(5615)] = 164584, + [SMALL_STATE(5616)] = 164592, + [SMALL_STATE(5617)] = 164600, + [SMALL_STATE(5618)] = 164608, + [SMALL_STATE(5619)] = 164616, + [SMALL_STATE(5620)] = 164624, + [SMALL_STATE(5621)] = 164632, + [SMALL_STATE(5622)] = 164640, + [SMALL_STATE(5623)] = 164648, + [SMALL_STATE(5624)] = 164656, + [SMALL_STATE(5625)] = 164664, + [SMALL_STATE(5626)] = 164672, + [SMALL_STATE(5627)] = 164680, + [SMALL_STATE(5628)] = 164688, + [SMALL_STATE(5629)] = 164696, + [SMALL_STATE(5630)] = 164704, + [SMALL_STATE(5631)] = 164712, + [SMALL_STATE(5632)] = 164722, + [SMALL_STATE(5633)] = 164732, + [SMALL_STATE(5634)] = 164740, + [SMALL_STATE(5635)] = 164748, + [SMALL_STATE(5636)] = 164756, + [SMALL_STATE(5637)] = 164764, + [SMALL_STATE(5638)] = 164772, + [SMALL_STATE(5639)] = 164780, + [SMALL_STATE(5640)] = 164788, + [SMALL_STATE(5641)] = 164796, + [SMALL_STATE(5642)] = 164804, + [SMALL_STATE(5643)] = 164812, + [SMALL_STATE(5644)] = 164820, + [SMALL_STATE(5645)] = 164828, + [SMALL_STATE(5646)] = 164836, + [SMALL_STATE(5647)] = 164844, + [SMALL_STATE(5648)] = 164852, + [SMALL_STATE(5649)] = 164860, + [SMALL_STATE(5650)] = 164868, + [SMALL_STATE(5651)] = 164876, + [SMALL_STATE(5652)] = 164884, + [SMALL_STATE(5653)] = 164892, + [SMALL_STATE(5654)] = 164900, + [SMALL_STATE(5655)] = 164908, + [SMALL_STATE(5656)] = 164916, + [SMALL_STATE(5657)] = 164924, + [SMALL_STATE(5658)] = 164932, + [SMALL_STATE(5659)] = 164940, + [SMALL_STATE(5660)] = 164948, + [SMALL_STATE(5661)] = 164956, + [SMALL_STATE(5662)] = 164964, + [SMALL_STATE(5663)] = 164972, + [SMALL_STATE(5664)] = 164980, + [SMALL_STATE(5665)] = 164988, + [SMALL_STATE(5666)] = 164996, + [SMALL_STATE(5667)] = 165004, + [SMALL_STATE(5668)] = 165012, + [SMALL_STATE(5669)] = 165020, + [SMALL_STATE(5670)] = 165028, + [SMALL_STATE(5671)] = 165036, + [SMALL_STATE(5672)] = 165044, + [SMALL_STATE(5673)] = 165052, + [SMALL_STATE(5674)] = 165060, + [SMALL_STATE(5675)] = 165068, + [SMALL_STATE(5676)] = 165076, + [SMALL_STATE(5677)] = 165084, + [SMALL_STATE(5678)] = 165092, + [SMALL_STATE(5679)] = 165100, + [SMALL_STATE(5680)] = 165108, + [SMALL_STATE(5681)] = 165116, + [SMALL_STATE(5682)] = 165124, + [SMALL_STATE(5683)] = 165132, + [SMALL_STATE(5684)] = 165140, + [SMALL_STATE(5685)] = 165148, + [SMALL_STATE(5686)] = 165156, + [SMALL_STATE(5687)] = 165164, + [SMALL_STATE(5688)] = 165172, + [SMALL_STATE(5689)] = 165180, + [SMALL_STATE(5690)] = 165188, + [SMALL_STATE(5691)] = 165196, + [SMALL_STATE(5692)] = 165204, + [SMALL_STATE(5693)] = 165212, + [SMALL_STATE(5694)] = 165220, + [SMALL_STATE(5695)] = 165228, + [SMALL_STATE(5696)] = 165236, + [SMALL_STATE(5697)] = 165244, + [SMALL_STATE(5698)] = 165252, + [SMALL_STATE(5699)] = 165260, + [SMALL_STATE(5700)] = 165268, + [SMALL_STATE(5701)] = 165276, + [SMALL_STATE(5702)] = 165284, + [SMALL_STATE(5703)] = 165292, + [SMALL_STATE(5704)] = 165300, + [SMALL_STATE(5705)] = 165308, + [SMALL_STATE(5706)] = 165316, + [SMALL_STATE(5707)] = 165324, + [SMALL_STATE(5708)] = 165332, + [SMALL_STATE(5709)] = 165340, + [SMALL_STATE(5710)] = 165348, + [SMALL_STATE(5711)] = 165356, + [SMALL_STATE(5712)] = 165364, + [SMALL_STATE(5713)] = 165372, + [SMALL_STATE(5714)] = 165380, + [SMALL_STATE(5715)] = 165388, + [SMALL_STATE(5716)] = 165396, + [SMALL_STATE(5717)] = 165404, + [SMALL_STATE(5718)] = 165412, + [SMALL_STATE(5719)] = 165420, + [SMALL_STATE(5720)] = 165428, + [SMALL_STATE(5721)] = 165436, + [SMALL_STATE(5722)] = 165444, + [SMALL_STATE(5723)] = 165452, + [SMALL_STATE(5724)] = 165460, + [SMALL_STATE(5725)] = 165468, + [SMALL_STATE(5726)] = 165476, + [SMALL_STATE(5727)] = 165484, + [SMALL_STATE(5728)] = 165492, + [SMALL_STATE(5729)] = 165500, + [SMALL_STATE(5730)] = 165508, + [SMALL_STATE(5731)] = 165516, + [SMALL_STATE(5732)] = 165524, + [SMALL_STATE(5733)] = 165532, + [SMALL_STATE(5734)] = 165540, + [SMALL_STATE(5735)] = 165548, + [SMALL_STATE(5736)] = 165556, + [SMALL_STATE(5737)] = 165564, + [SMALL_STATE(5738)] = 165572, + [SMALL_STATE(5739)] = 165580, + [SMALL_STATE(5740)] = 165588, + [SMALL_STATE(5741)] = 165596, + [SMALL_STATE(5742)] = 165604, + [SMALL_STATE(5743)] = 165612, + [SMALL_STATE(5744)] = 165620, + [SMALL_STATE(5745)] = 165628, + [SMALL_STATE(5746)] = 165636, + [SMALL_STATE(5747)] = 165644, + [SMALL_STATE(5748)] = 165652, + [SMALL_STATE(5749)] = 165660, + [SMALL_STATE(5750)] = 165668, + [SMALL_STATE(5751)] = 165676, + [SMALL_STATE(5752)] = 165684, + [SMALL_STATE(5753)] = 165692, + [SMALL_STATE(5754)] = 165700, + [SMALL_STATE(5755)] = 165708, + [SMALL_STATE(5756)] = 165716, + [SMALL_STATE(5757)] = 165724, + [SMALL_STATE(5758)] = 165732, + [SMALL_STATE(5759)] = 165740, + [SMALL_STATE(5760)] = 165748, + [SMALL_STATE(5761)] = 165756, + [SMALL_STATE(5762)] = 165764, + [SMALL_STATE(5763)] = 165772, + [SMALL_STATE(5764)] = 165780, + [SMALL_STATE(5765)] = 165788, + [SMALL_STATE(5766)] = 165796, + [SMALL_STATE(5767)] = 165806, + [SMALL_STATE(5768)] = 165814, + [SMALL_STATE(5769)] = 165822, + [SMALL_STATE(5770)] = 165830, + [SMALL_STATE(5771)] = 165838, + [SMALL_STATE(5772)] = 165846, + [SMALL_STATE(5773)] = 165854, + [SMALL_STATE(5774)] = 165862, + [SMALL_STATE(5775)] = 165870, + [SMALL_STATE(5776)] = 165878, + [SMALL_STATE(5777)] = 165886, + [SMALL_STATE(5778)] = 165894, + [SMALL_STATE(5779)] = 165902, + [SMALL_STATE(5780)] = 165910, + [SMALL_STATE(5781)] = 165920, + [SMALL_STATE(5782)] = 165928, + [SMALL_STATE(5783)] = 165936, + [SMALL_STATE(5784)] = 165944, + [SMALL_STATE(5785)] = 165952, + [SMALL_STATE(5786)] = 165960, + [SMALL_STATE(5787)] = 165968, + [SMALL_STATE(5788)] = 165976, + [SMALL_STATE(5789)] = 165984, + [SMALL_STATE(5790)] = 165992, + [SMALL_STATE(5791)] = 166000, + [SMALL_STATE(5792)] = 166008, + [SMALL_STATE(5793)] = 166016, + [SMALL_STATE(5794)] = 166024, + [SMALL_STATE(5795)] = 166032, + [SMALL_STATE(5796)] = 166040, + [SMALL_STATE(5797)] = 166048, + [SMALL_STATE(5798)] = 166056, + [SMALL_STATE(5799)] = 166064, + [SMALL_STATE(5800)] = 166072, + [SMALL_STATE(5801)] = 166080, + [SMALL_STATE(5802)] = 166088, + [SMALL_STATE(5803)] = 166096, + [SMALL_STATE(5804)] = 166104, + [SMALL_STATE(5805)] = 166112, + [SMALL_STATE(5806)] = 166120, + [SMALL_STATE(5807)] = 166128, + [SMALL_STATE(5808)] = 166136, + [SMALL_STATE(5809)] = 166144, + [SMALL_STATE(5810)] = 166152, + [SMALL_STATE(5811)] = 166160, + [SMALL_STATE(5812)] = 166170, + [SMALL_STATE(5813)] = 166178, + [SMALL_STATE(5814)] = 166186, + [SMALL_STATE(5815)] = 166194, + [SMALL_STATE(5816)] = 166202, + [SMALL_STATE(5817)] = 166212, + [SMALL_STATE(5818)] = 166220, + [SMALL_STATE(5819)] = 166228, + [SMALL_STATE(5820)] = 166236, + [SMALL_STATE(5821)] = 166244, + [SMALL_STATE(5822)] = 166252, + [SMALL_STATE(5823)] = 166260, + [SMALL_STATE(5824)] = 166268, + [SMALL_STATE(5825)] = 166276, + [SMALL_STATE(5826)] = 166284, + [SMALL_STATE(5827)] = 166292, + [SMALL_STATE(5828)] = 166300, + [SMALL_STATE(5829)] = 166308, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -275898,1440 +276127,1440 @@ 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(1300), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(484), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(522), [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(513), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(543), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5656), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5508), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(421), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(466), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(448), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(380), [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(329), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), [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(1300), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), [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(1269), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2880), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5127), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5152), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4754), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2884), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3623), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5116), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5131), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4755), [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(605), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5315), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4971), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4925), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5395), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4716), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4469), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4476), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3274), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5210), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5080), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4393), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4461), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5787), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5632), [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3856), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5803), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2166), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5718), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5503), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5511), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 95), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 95), - [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_default, 3, 0, 54), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2239), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(689), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5480), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5754), + [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, 3, 0, 95), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 95), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 238), + [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(725), [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(38), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(39), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(182), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(199), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(196), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(970), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3826), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3760), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(301), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 33), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 33), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(317), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 33), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(587), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(424), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(601), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(468), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 219), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 219), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 173), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 173), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 112), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 112), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1952] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3004), - [1956] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3200), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 191), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 191), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 219), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 219), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [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_nested_identifier, 3, 0, 90), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 113), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 113), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 114), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 114), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 150), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 150), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 169), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 169), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 173), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 173), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 173), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 173), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1964] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3194), + [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3004), [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [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(1837), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2821), - [2321] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(187), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(381), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [2334] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5074), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2802), + [2321] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(189), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(620), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [2334] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4893), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(187), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5074), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(189), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4893), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 270), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 270), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 39), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 39), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 149), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 149), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 153), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 153), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 153), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 153), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 172), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 172), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 190), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 190), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 153), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 153), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 201), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 201), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 265), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 265), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 85), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 85), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 87), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 87), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 88), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 88), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 26), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 26), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 39), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 39), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 270), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 270), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 149), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 149), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 153), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 153), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 153), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 153), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 113), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 113), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 114), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 114), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 172), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 172), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 26), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 26), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 28), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 28), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 41), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 41), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 40), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 40), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 186), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 186), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 190), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 190), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 150), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 150), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 153), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 153), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 85), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 85), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 87), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 87), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 88), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 88), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 201), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 201), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 169), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 169), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 173), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 173), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 145), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 145), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 146), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 146), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 269), [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 269), [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 199), @@ -277340,3195 +277569,3203 @@ static const TSParseActionEntry ts_parse_actions[] = { [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 200), [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 239), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 147), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 147), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 188), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 188), [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(427), - [3512] = {.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), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5565), - [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(987), - [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5138), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5571), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1051), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(487), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(470), + [3498] = {.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), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5569), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(972), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5598), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1109), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5391), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(241), [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4513), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(239), - [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3287), - [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(485), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3628] = {.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), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3285), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(3884), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(383), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(524), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(302), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3643] = {.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), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(589), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [3636] = {.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), + [3640] = {.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), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(318), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1481), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1710), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2454), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2108), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1650), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3224), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2793), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1465), - [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(371), - [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4370), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4371), - [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2225), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(5657), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3051), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4869), - [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1652), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2006), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2460), - [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1653), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2016), - [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2475), - [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2745), - [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2799), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1835), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4019] = {.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), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), - [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 181), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 181), - [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 137), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 137), - [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3241), + [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2788), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1457), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(304), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4367), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4370), + [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2371), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(5459), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3043), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1785), + [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2101), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2475), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1714), + [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2071), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2480), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2745), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2836), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1482), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2053), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1725), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1654), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2472), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1873), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4023] = {.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), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 291), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 291), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 189), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 189), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 180), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 180), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 264), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 264), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 291), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 291), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 21), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 21), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 32), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5429), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 81), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 81), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 82), - [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 82), - [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 86), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 86), - [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 31), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 31), - [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), - [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 148), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 148), - [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 151), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 151), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 152), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 152), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), - [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 95), - [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(460), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(145), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 27), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), REDUCE(sym_assignment_expression, 3, 0, 72), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(147), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 187), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), - [4939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(144), - [4942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(147), - [4945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(147), - [4948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(147), - [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(144), - [4954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(144), - [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(144), - [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 72), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(139), - [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(139), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 32), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(139), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5030] = {.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), - [5034] = {.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), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 72), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(139), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(150), - [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), - [5116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(146), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5204] = {.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), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 42), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 42), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), REDUCE(sym__parameter_name, 2, 0, 42), - [5267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), - [5270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), - [5273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 115), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(141), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(142), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5569] = {.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), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(141), - [5602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(141), - [5605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(141), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(142), - [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(142), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(142), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [5637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(615), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [5704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(149), - [5723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), - [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), - [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [5800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(140), - [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(140), - [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(140), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(140), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [5869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 219), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 219), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), - [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 173), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 173), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 156), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 156), - [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 292), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 292), - [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 267), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 267), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 268), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 268), - [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 293), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 293), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2682), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 311), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 311), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), SHIFT_REPEAT(2684), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), - [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), - [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 312), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 312), - [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 327), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 327), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4869), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 181), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 181), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 226), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 226), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 137), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 137), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), REDUCE(sym_assignment_expression, 3, 0, 72), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 73), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 73), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 187), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 81), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 81), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 32), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), + [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 82), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 82), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 83), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 83), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 86), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 86), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 29), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 29), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 31), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 31), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), + [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(141), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), + [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), + [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 148), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 148), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 151), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 151), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 152), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 152), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(145), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 95), + [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(500), + [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(141), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 50), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 50), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), + [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(141), + [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 27), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(141), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5306), + [4938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(142), + [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(142), + [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(142), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(142), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 21), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 21), + [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 72), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(144), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(144), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(144), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 32), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(144), + [5043] = {.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), + [5047] = {.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), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(149), + [5100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), + [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), + [5106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 72), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [5192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(143), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(143), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(143), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [5211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(143), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 42), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 42), + [5220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), REDUCE(sym__parameter_name, 2, 0, 42), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 42), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 42), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5272] = {.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), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5425] = {.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), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 102), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 102), + [5459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 106), + [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 106), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 115), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(630), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), + [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 160), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 160), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 45), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 45), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(148), + [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(139), + [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 202), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 202), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(148), + [5685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(148), + [5688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(148), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(139), + [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(139), + [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(139), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(150), + [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), + [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), + [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), + [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), + [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(146), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), + [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), + [5861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), + [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), + [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [5895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), + [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), + [5901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), + [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), + [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), + [5913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 156), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 156), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 267), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 267), + [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 268), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 268), + [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), + [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), + [5971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 219), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 219), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), + [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 173), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 173), + [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 292), + [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 292), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 293), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 293), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 311), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 311), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 312), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 312), + [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 327), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 327), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), + [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), SHIFT_REPEAT(2695), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2692), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), + [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), + [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 111), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1033), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 166), - [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [6626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5138), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), - [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 290), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 211), - [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 111), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 161), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 310), - [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 175), - [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 176), - [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 275), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 276), - [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 294), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 295), - [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 315), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 320), - [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 329), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 15), - [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 283), - [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 203), - [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 172), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 128), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(487), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 165), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), - [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3777), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [7343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4948), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5549), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(485), - [7493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(945), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), - [7520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1089), - [7523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(946), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1094), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), - [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 279), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), - [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 282), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 297), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 298), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), - [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), - [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(948), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1078), - [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(943), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), - [7615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4109), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 300), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 313), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 314), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 318), - [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(430), - [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), - [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 168), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 163), - [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 332), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), - [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(975), - [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 259), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 204), - [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 205), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), - [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), - [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(935), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 274), - [7735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1007), - [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(936), - [7741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1013), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), - [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(4362), - [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(427), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 272), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [7904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [7906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), - [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4407), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 116), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(503), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), SHIFT_REPEAT(305), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), - [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), - [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), - [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), - [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [8162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [8190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4927), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [8211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [8250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [8281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3364), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), - [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), - [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), - [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), - [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 333), - [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 296), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 334), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), - [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [8371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), - [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2375), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 294), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [8472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [8475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), - [8489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(2772), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 172), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 203), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 275), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 276), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [8560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(589), - [8563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 159), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 179), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 195), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 195), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 154), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), - [8867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 157), - [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [9259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [9301] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [9431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 111), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1073), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 166), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 211), + [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5391), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), + [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 161), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 290), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 111), + [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 283), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), + [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 176), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 15), + [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 128), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 275), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 276), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 310), + [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 203), + [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 172), + [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), + [7129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 143), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 143), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 294), + [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 295), + [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 315), + [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 320), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 329), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 165), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [7193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(524), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 175), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 144), + [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 144), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3808), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4105), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), + [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), + [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [7518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(949), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 168), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1053), + [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(944), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1009), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 300), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 163), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 313), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 314), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 318), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), + [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(383), + [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1005), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 332), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 204), + [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 205), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 279), + [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 282), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [7644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(934), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 297), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 298), + [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [7663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1039), + [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(946), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [7678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4137), + [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 259), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 274), + [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(942), + [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1044), + [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(943), + [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1065), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 185), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 185), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(993), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(4487), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 272), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(470), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [7921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [7975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4456), + [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4458), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), SHIFT_REPEAT(351), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 116), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), + [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), + [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 333), + [8175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [8178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [8181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4626), + [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 334), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 172), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 203), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 296), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 294), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [8335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), + [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5028), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(2773), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [8371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), + [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [8447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), + [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), + [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), + [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 275), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 276), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 154), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 179), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 195), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 157), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 195), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [8897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 159), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9253] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [9261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [9431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [9549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [9561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), }; enum ts_external_scanner_symbol_identifiers {